/* 
  Global Design System
  Unified typography and base styles for the entire site.
*/

:root {
    /* Color Palette */
    --primary-color: #8B166A;
    --secondary-color: #301322;
    --text-dark: #1a1a1a;
    --text-medium: #2b2b2b;
    --text-grey: #555555;
    --text-light: #888888;
    --border-light: #eeeeee;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Jost', sans-serif;
    --font-secondary: 'Archivo', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1320px;
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .6s ease both;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .2s;
}

.delay-3 {
    animation-delay: .3s;
}

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: #222;
    line-height: 1.6;
    font-size: 16px;
    background-color: #fff;
    overflow-x: hidden;
}

/* Global Typography - Unified Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #282c30;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    /* Lightly reduced boldness */
    letter-spacing: 1px;
    line-height: 1.1;
    /* Increased to give rows more breathing room */
}

h2 {
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.2;
    margin-bottom: 20px;
    /* max-width: 600px; */
    /* align-items: center !important; */
}


h3 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #222;
    /* Standardized grey for readability */
    line-height: 1.8;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

span {
    font-size: 16px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global Components */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    /* Applied to all pages */
}

@media (max-width: 991px) {
    .container {
        padding: 0 60px;
        /* Applied to all pages on mobile */
    }
}

.section {
    padding: var(--section-padding);
}

.sub-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.sub-title-wrapper.center {
    justify-content: center;
}

.sub-title-wrapper .line {
    width: 38px;
    height: 3px;
    background: var(--primary-color);
}

.sub-title {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unified Buttons */
.btn-enquire,
.btn-primary,
.btn-contact {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;

}

.btn-enquire:hover,
.btn-primary:hover {
    background: #721156;
    transform: translateY(-2px);
}

/* .row>* {
    
    margin-top: 0 !important;
} */
/* .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .9) !important;
    padding-left: calc(var(--bs-gutter-x) * .9) !important;
    margin-top: var(--bs-gutter-y);
} */
@media (min-width: 992px) {
    .footer-col.col-lg-3 {
        margin-left: 30px;
        margin-left: 0px;
    }
}

.about-grid-2-col {
    --bs-gutter-x: 5.5rem;
    --bs-gutter-y: 3.5rem;
}

/* =========================
   Mission Vision Oval Cards
========================= */

.mission-vision-section {
    /* margin: 80px 0 0 0; */
    background: #fff;
    padding: 80px 0;
}

.dropdown-icon {
    font-size: 10px !important;
    font-weight: bold !important;
}

/* Oval Card */
.mv-oval-card {
    position: relative;
    background: #FFF;
    border-radius: 25px;
    padding: 50px 45px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;

    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover */
.mv-oval-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Colored Top Ring */


/* Mission Color */

/* Icon */
.mv-icon-circle img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Content */
.mv-content h4 {
    font-size: 22px;
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 1px;
}

/* .mv-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #807e7f;
    width: 100%;
    margin: 0 auto;
} */

/* Responsive */
@media (max-width: 991px) {

    .mv-oval-card {
        min-height: auto;
        padding: 40px 30px;
    }

    .mv-icon-circle {
        width: 110px;
        height: 110px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mv-icon-circle img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {

    .mission-vision-section {
        padding: 80px 0;
    }

    .mv-oval-card {
        border-radius: 25px;
        min-height: auto;
        padding: 40px 24px;
    }

    .mv-icon-circle {
        width: 130px;
        height: 130px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mv-icon-circle img {
        width: 75px;
        height: 75px;
    }

    .mv-content h4 {
        font-size: 26px;
    }

    .mv-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =========================
   Horizontal Timeline
========================= */

/* =========================
   Vertical Timeline
========================= */

.milestones-section {
    padding: 80px 0;
    overflow: hidden;
}

/* Heading */
/* .section-heading {
    margin-bottom: 60px;
} */

/* .section-heading h2 {
    font-size: clamp(38px, 4vw, 40px);
    line-height: 1.1;
    font-weight: 600;
    color: #242525;
    ;
} */

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding-left: 80px;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    top: 0;
    left: 20px;
    width: 3px;
    height: 100%;
    background: rgba(139, 22, 106, 0.15);
}

/* Timeline Item */
.timeline-card {
    position: relative;
    margin-bottom: 40px;
}

/* Circle Number */
.timeline-dot {
    position: absolute;
    left: -80px;
    top: 20px;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8b166a;

    color: #fff;
    font-size: 16px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
    box-shadow: 0 10px 25px rgba(139, 22, 106, 0.2);
}

/* Content Box */
.timeline-content {
    background: #EEE2E9;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(139, 22, 106, 0.08);
}

.timeline-content h4 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 14px;
    color: #242525;
    ;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.9;
    /* color: #807e7f; */
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .timeline-wrapper {
        padding-left: 60px;
    }

    .timeline-dot {
        left: -60px;
    }

    .timeline-content h4 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .milestones-section {
        padding: 60px 0;
    }

    .timeline-wrapper {
        padding-left: 50px;
    }

    .timeline-line {
        left: 15px;
    }

    .timeline-dot {
        left: -50px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .timeline-content {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .timeline-content h4 {
        font-size: 20px;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =========================
   Why Choose Us - Our Team & Infrastructure
========================= */
.market-segments-section {
    padding: 80px 0;
    background: #f8f8f8;
}

/* .section-heading {
    
    margin: 0 auto 50px;
} */

.mini-tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #8B166A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* .section-heading h2 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
} */

.section-heading p {
    font-size: 16px;
    line-height: 1.7;
    /* color: #807e7f; */
}

.segment-card {
    background: #fff;
    padding: 35px;
    height: 100%;
    display: flex;
    gap: 20px;
    border-radius: 14px;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.segment-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #8B166A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
    padding: 10px;
}



/* .segment-content p {
    margin: 0;
    color: #807e7f;
    line-height: 1.8;
    font-size: 15px;
} */

/* Responsive */
@media (max-width: 767px) {

    .market-segments-section {
        padding: 60px 0;
    }

    .segment-card {
        padding: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .segment-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }

    .segment-content h3 {
        font-size: 22px;
    }
}


.page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #3a122b 75%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.mission-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.mission-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%),
        url('../images/about/about-image.webp') center/cover no-repeat;
}

.mission-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.company-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.company-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/about/company-image.webp') center/cover no-repeat;

}

.company-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.why-choose-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.why-choose-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/about/why-choose-us.webp') center/cover no-repeat;

}

.why-choose-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.product-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.product-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/products/products-banner-image.webp') center/cover no-repeat;

}

.product-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.gallery-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.gallery-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/gallery/gallery-banner.webp') center/cover no-repeat;

}

.gallery-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.capabilities-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.capabilities-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/capabilities/capbilities-banner.webp') center/cover no-repeat;

}

.capabilities-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

.quality-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.quality-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/quality/quality-banner.webp') center/cover no-repeat;

}

.quality-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

/* ===========================
   Terms & Conditions Hero
=========================== */

.terms-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.terms-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%),
        url("../images/about/company-image.webp") center/cover no-repeat;
}

.terms-page-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 45px;
}

.terms-page-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.terms-page-hero .breadcrumb-wrapper a,
.terms-page-hero .breadcrumb-wrapper span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
}

.terms-page-hero .breadcrumb-wrapper a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .terms-page-hero {
        height: 220px;
    }

    .terms-page-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .terms-page-hero {
        height: 190px;
    }

    .terms-page-hero .container {
        padding-bottom: 30px;
    }

    .terms-page-hero h1 {
        font-size: 28px;
    }

    .terms-page-hero .breadcrumb-wrapper {
        font-size: 14px;
    }
}

/* ===========================
   Privacy Policy Hero
=========================== */

.privacy-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.privacy-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%),
        url("../images/about/company-image.webp") center/cover no-repeat;
}

.privacy-page-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 35px;
}

.privacy-page-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.privacy-page-hero .breadcrumb-wrapper {
    color: #fff;
    font-size: 15px;
}

.privacy-page-hero .breadcrumb-wrapper a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.privacy-page-hero .breadcrumb-wrapper a:hover {
    color: var(--primary-color);
}

.privacy-page-hero .breadcrumb-wrapper span {
    color: rgba(255, 255, 255, .85);
}

/* Tablet */
@media (max-width:991px) {
    .privacy-page-hero {
        height: 220px;
    }

    .privacy-page-hero h1 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width:576px) {
    .privacy-page-hero {
        height: 180px;
    }

    .privacy-page-hero h1 {
        font-size: 30px;
    }

    .privacy-page-hero .container {
        padding-bottom: 25px;
    }

    .privacy-page-hero .breadcrumb-wrapper {
        font-size: 14px;
    }
}

.contact-page-hero {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg,
            #1a0d1a 0%,
            #2d1a25 20%,
            #4a1535 50%,
            #4a1535 100%);
    display: flex;
    align-items: self-end;
    overflow: hidden;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(26, 13, 26, 0.85) 0%,
            rgba(26, 13, 26, 0.6) 35%,
            rgba(26, 13, 26, 0) 70%), url('../images/contact/contact-banner.webp') center/cover no-repeat;

}

.contact-page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}



.capabilities1 {
    /* background-image: url(../images/bgimg.png); */
    padding: 80px 0;
}

.capabilities2 {
    background-color: #EEE2E9;
    padding: 80px 0;
}

.capabilities3 {
    /* background-image: url(../images/bgimg.png); */
    padding: 80px 0;
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    /* font-size: 14px; */
}

.breadcrumb-wrapper a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;

}

.breadcrumb-wrapper a:hover {
    opacity: 0.8;
    color: #0eb3f2;
}

.breadcrumb-wrapper span {
    /* color: #8B166A; */
    color: #0eb3f2;
}

.capability-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.fabric-highlight-section {
    padding: 40px 0 0 0;
}

/* Card */
.fabric-highlight-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    background: linear-gradient(135deg, #fff, #fdf5fa);
    border-radius: 24px;
    padding: 35px 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #8b166a;
}

/* Decorative Background */
.fabric-highlight-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(178, 31, 123, 0.05);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

/* Accent Line */
.fabric-line {
    width: 6px;
    height: 130px;
    border-radius: 20px;
    background: linear-gradient(to bottom, #b21f7b, #e45cab);
    flex-shrink: 0;
}

/* Mini Tag */
.mini-tag {
    display: inline-block;
    background: rgba(178, 31, 123, 0.08);
    color: #b21f7b;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

/* Heading */
.fabric-highlight-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

/* Paragraph */
.fabric-highlight-content p {
    margin: 0;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.9;
    max-width: 900px;
    text-align: center;
}

/* Hover */
.fabric-highlight-card:hover {
    transform: translateY(-4px);
    transition: 0.4s ease;
    box-shadow: 0 18px 50px rgba(178, 31, 123, 0.10);
}

/* Responsive */
@media(max-width: 768px) {

    .fabric-highlight-card {
        padding: 35px 25px;
        gap: 20px;
    }

    .fabric-line {
        height: 100px;
    }

    .fabric-highlight-content p {
        font-size: 18px;
        line-height: 1.8;
        font-weight: 700;
    }
}

@media(max-width: 576px) {

    .fabric-highlight-card {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 18px;
    }

    .fabric-line {
        width: 100px;
        height: 5px;
    }

    .fabric-highlight-content h3 {
        font-size: 1.6rem;
    }
}

.certifications-slider-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.certifications-header {
    text-align: center;
    margin-bottom: 50px;
}

.certifications-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.7;
}

/* Grid */
.certifications-grid-manual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

/* Link */
.certification-item-box {
    display: block;
    text-decoration: none;
}

/* Remove card look */
.certification-item {
    text-align: center;
}

/* Image */
.certification-item img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* Hover effect only on image */
.certification-item img:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .certifications-grid-manual {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .certifications-grid-manual {
        grid-template-columns: 1fr;
    }

    .certification-item img {
        max-width: 260px;
    }
}

/* Optional PDF Icon */
/* .certification-item::after {
    content: "PDF";

    position: absolute;
    top: 15px;
    right: 15px;

    background: #8B166A;
    color: #fff;

    font-size: 11px;
    font-weight: 600;

    padding: 5px 10px;
    border-radius: 30px;

    letter-spacing: 1px;
} */

/* Responsive */
@media (max-width: 991px) {
    .certifications-grid-manual {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .certifications-grid-manual {
        grid-template-columns: 1fr;
    }


}

.products-three-column-section {
    padding: 80px 0;
    background: #fff;
}

/* Heading */
.products-header {
    text-align: center;
    margin-bottom: 70px;
}

.mini-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;

    background: rgba(149, 16, 119, 0.10);
    color: #951077;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 18px;
}



/* Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.product-card {
    position: relative;
    min-height: 620px;
    border-radius: 28px;
    overflow: hidden;

    display: flex;
    align-items: flex-end;
}

/* Image */
.product-image {
    position: absolute;
    inset: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.product-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(65, 65, 65, 0.82),
            rgba(170, 170, 170, 0.22));

    z-index: 1;
}

/* Content */
.product-content {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 40px 35px;

    color: #fff;
}

/* Number */
.product-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 50%;
    margin-bottom: 22px;

    background: rgba(255, 255, 255, 0.16);

    font-size: 16px;
    font-weight: 600;

    backdrop-filter: blur(4px);
}

/* Title */
.product-content h3 {
    /* font-size: 2rem; */
    line-height: 1.25;
    margin-bottom: 18px;
    font-weight: 700;
    color: #fff;

    max-width: 320px;
}

/* Text */
.product-content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Feature Pills */
.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.feature-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b01273;
    font-weight: bold;
}

/* Responsive */
@media(max-width: 992px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .products-three-column-section {
        padding: 70px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 500px;
    }

    .product-content {
        padding: 28px;
    }

    .product-content h3 {
        font-size: 1.7rem;
    }
}

@media(max-width: 576px) {

    .products-header h2 {
        font-size: 2rem;
    }

    .products-header p {
        font-size: 15px;
    }

    .product-card {
        border-radius: 22px;
    }
}

html {
    scroll-behavior: smooth;
}



.page-hero h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
}

/* ─── SECTION WRAPPER ─── */
/* .section {
            padding: 72px 0;
        } */



/* ─── INTRO ─── */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.intro-grid-management {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* .intro-text h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
} */

/* .intro-text p {
    color: var(--mid);
    margin-bottom: 14px;
} */

.intro-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    display: block;
}

/* ─── DIVIDER ─── */
.label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.label-bar {
    width: 36px;
    height: 2px;
    background: var(--magenta);
}

.label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--magenta);
}

/* ─── CAPABILITY SECTIONS ─── */
/* .cap-section {
            padding: 60px 0;
             border-top: 1px solid #ececec;
        } */

.cap-section-top {
    padding: 0 0 60px 0;
    border-top: none;
}

.cap-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.cap-number {
    /* font-family: var(--font-display); */
    font-size: 56px;
    font-weight: 700;
    color: #951077;
    line-height: 1;
    min-width: 60px;
}

.cap-title-block h3 {
    /* font-family: var(--font-display); */
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.cap-title-block .subtitle {
    font-size: 13px;
    color: var(--magenta);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cap-body {
    color: var(--mid);
    /* max-width: 820px; */
    margin-bottom: 28px;
}



/* ─── PILL LIST ─── */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pill {
    background: var(--light);
    border: 1px solid #e0d6dc;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

/* ─── TWO-COL SPECS ─── */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 24px;
}

.spec-card {
    background: var(--light);
    border-radius: 8px;
    padding: 24px 28px;
}

.spec-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--magenta);
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    font-size: 13.5px;
    color: var(--mid);
    padding: 5px 0;
    border-bottom: 1px solid #e8e0e5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-card ul li:last-child {
    border-bottom: none;
}

.spec-card ul li::before {
    content: '✓';
    color: var(--magenta);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* ─── TC TABLE ─── */
.tc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.tc-cell {
    background: var(--light);
    border-radius: 6px;
    padding: 16px 12px;
    text-align: center;
    border-top: 3px solid var(--magenta);
}

.tc-cell .tc-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--magenta);
    display: block;
    margin-bottom: 4px;
}

.tc-cell .tc-desc {
    font-size: 11px;
    color: var(--mid);
}

/* ─── STITCHING CARD ─── */
.stitch-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.stitch-item {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.stitch-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

/* ─── HIGHLIGHT BAND ─── */
.highlight-band {
    background: url('../images/reach-out.png') center/cover no-repeat;
    padding: 56px 0;
}

.highlight-band .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-item .stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.stat-item .stat-label {
    font-size: 13px;
    opacity: .8;
}



/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .6s ease both;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .2s;
}

.delay-3 {
    animation-delay: .3s;
}

@media (max-width: 768px) {

    .intro-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .tc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stitch-list {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-band .container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .intro-grid-management {
        grid-template-columns: 1fr;
    }


}

.cap-section-top {
    padding-top: 10px;
}

.cap-body {


    border-radius: 10px;

    height: 100%;
}

.cap-body p:last-child {
    margin-bottom: 0;
}

.spec-card {
    height: 100%;
    transition: 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pill {
    transition: 0.3s ease;
}

.pill:hover {
    background: var(--magenta);
    color: #fff;
    border-color: var(--magenta);
}

@media (max-width: 768px) {

    .cap-body,
    .spec-card {
        padding: 24px;
    }

    .cap-header {
        gap: 14px;
    }

    .cap-number {
        font-size: 42px;
    }

    .cap-title-block h3 {
        font-size: 22px;
    }
}

/* ─── NAV ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


:root {
    --magenta: #9b1f6e;
    --magenta-light: #b8308a;
    --dark: #1a1a1a;
    --mid: #4a4a4a;
    --light: #EEE2E9;
    --warm-white: #ffffff;
    --accent-line: #9b1f6e;
}

/* ==========================================================================
   Capabilities Page Styles (New Section)
   ========================================================================== */

.capabilities-main h2 {
    margin-bottom: 30px;
}

.capabilities-main {
    padding: 60px 0 !important;
}

.capability-block {
    margin-bottom: 60px;
}

.capability-block:last-child {
    margin-bottom: 0;
}

.capability-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.capability-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.construction-card {
    background: #fdfafd;
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #f1e1f1;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 22, 106, 0.1);
    border-color: var(--primary-color);
}

.construction-card h5 {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.tech-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.spec-list li {
    font-family: var(--font-secondary);
}

.tc-badge {
    transition: all 0.3s ease;
}

.tc-badge:hover {
    background: var(--secondary-color) !important;
    cursor: default;
}

.quality-section {
    padding: 60px 0 !important;
    text-align: center;
}

.cert-placeholder {
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cert-placeholder:hover {
    border-color: var(--primary-color) !important;
    background: #fff !important;
    color: var(--primary-color) !important;
}




/* ==========================================================================
   Capabilities Page Responsive (New Section)
   ========================================================================== */

@media (max-width: 991px) {
    .inner-hero {
        padding: 50px 0 !important;
    }

    .capabilities-main,
    .quality-section {
        padding: 40px 0 !important;
    }

    .inner-hero h1 {
        font-size: 32px !important;
    }

    .capability-block h3 {
        font-size: 26px !important;
        text-align: center;
    }

    .capability-block p {
        text-align: center;
    }

    .feature-list-check {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .tech-card {
        padding: 30px 20px !important;
    }

    .capability-img {
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .capability-block {
        margin-bottom: 60px !important;
    }

    .capability-block:last-child {
        margin-bottom: 0 !important;
    }

    .construction-card {
        padding: 20px 10px;
    }

    .construction-card h5 {
        font-size: 16px;
    }

    .cert-placeholder {
        height: 100px !important;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .capability-img {
        height: 250px !important;
    }
}

/* Weaving List Mobile (max-width: 448px) */
@media (max-width: 448px) {
    .weaving-col {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* ==========================================================================
   PRODUCTS 2 - ISOLATED DITTO MATCH STYLES (UNIFIED SECTION)
   ========================================================================== */

.products2-unified-section {
    padding: 60px 0 !important;
    margin: 0 !important;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* --- ABOUT CONTENT --- */
.products2-unified-section .about-grid-2-col {
    align-items: start;
}

.products2-unified-section .about-main-img {
    width: 100%;
    display: block;
    object-fit: cover;
    margin-top: 15px;
}

.products2-unified-section .about-secondary-img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
}

.products2-unified-section .about-text-content {
    padding-top: 15px;
}

.products2-unified-section .about-text-content h2 {
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.products2-unified-section .about-text-content .description {
    margin-bottom: 20px;
    max-width: 480px;
}

.products2-unified-section .about-stats-row-exact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    white-space: nowrap;
}

.products2-unified-section .stat-item {
    text-align: left;
}

.products2-unified-section .stat-item h3 {
    font-family: 'Jost', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1;
}

.products2-unified-section .stat-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #807e7f;
    font-weight: 200;
    white-space: nowrap;
    text-transform: capitalize;
}

.products2-unified-section .stat-divider {
    width: 1px;
    height: 55px;
    background: #9A9A9A;
}

.products2-unified-section .about-secondary-img-wrapper {
    margin-top: 50px;
}

/* --- GALLERY CONTENT --- */
.products2-unified-section .section-title {
    margin-bottom: 50px !important;
}

.products2-unified-section .gallery-grid {
    margin-bottom: 0;
}

.products2-unified-section .products2-gallery-content-row {
    margin-top: 0 !important;
}

.products2-unified-section .gallery-right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
}

.products2-unified-section .gallery-right-col>div {
    flex: 1;
}

.products2-unified-section .gallery-card {
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
}

.products2-unified-section .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.products2-unified-section .gallery-card:hover img {
    transform: scale(1.03);
}

.products2-unified-section .gallery-text-content {
    position: absolute;
    top: 25%;
    left: 7%;
    width: 85%;
    z-index: 2;
}

.products2-unified-section .large-card .gallery-text-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 11px;
    letter-spacing: -0.6px;
    color: #1a1a1a;
}

/* .products2-unified-section .large-card .gallery-text-content p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 320px;
    color: #807e7f;
} */

.products2-unified-section .small-card .gallery-text-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 90px;
    letter-spacing: -0.3px;
    color: #000000;
}

.products2-unified-section .small-card .gallery-text-content p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 350px;
    color: #222;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Mobile Responsive */

@media (max-width: 767px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

}

.feature-card {
    background: #fff;
    border: 1px solid #8B166A;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Left Side - 80% */
.feature-content {
    flex: 0 0 80%;
}

.feature-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8B166A;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Right Side - 20% */
.feature-image {
    flex: 0 0 20%;
    text-align: center;
}

.feature-image img {
    max-width: 90px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {

    .feature-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .feature-content,
    .feature-image {
        flex: 0 0 100%;
    }

    .feature-image img {
        max-width: 70px;
    }
}


/* =========================================
   WEAVING LIST
========================================= */

.weaving-listing {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.weaving-listing li {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
    padding: 12px 22px;

    background: rgba(255, 255, 255, 0.5);

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    font-size: 16px;
    font-weight: 500;
    color: #111;

    transition: 0.3s ease;
}

.weaving-listing li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.weaving-listing li i {
    color: var(--primary-color);
    font-size: 20px;
    transition: 0.3s ease;
}

.weaving-listing li:hover i {
    color: #fff;
}



/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .weaving-col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .weaving-listing li {
        font-size: 16px;
        padding: 12px 18px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .weaving-listing li i {
        font-size: 18px;
    }

}

.weaving-section {
    padding: 80px 0 20px 0;
    /* background: #f8f8f8; */
}

.weaving-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
    position: relative;
    /* padding-bottom: 50px; */
}

/* CENTER DIVIDER */
.weaving-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #d9d9d9;
    transform: translateX(-50%);
}

/* TITLE */



/* LEFT TEXT */

/* RIGHT */
/* .weaving-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 35px;
} */

/* GRID */
.weaving-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* PILLS */
.weaving-pill {
    border: 1px solid #8B166A;
    border-radius: 60px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    /* font-size: 22px; */
    /* font-weight: 600; */
    /* color: #111; */
    transition: 0.3s ease;
}

.weaving-pill i {
    color: #8B166A;
    font-size: 24px;
}

.weaving-pill:hover {
    background: #8B166A;
    color: #fff;
}

.weaving-pill:hover i {
    color: #fff;
}

/* BOTTOM */
.weaving-bottom {
    /* border-top: 1px solid #dcdcdc; */
    padding-top: 15px;
}



/* RESPONSIVE */
@media (max-width: 991px) {

    .weaving-wrapper {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .weaving-wrapper::after {
        display: none;
    }

    .section-title h2 {
        font-size: 48px;
    }

    .weaving-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .weaving-left p,
    .weaving-subtitle,
    .weaving-bottom p {
        font-size: 18px;
    }

    .weaving-pill {
        font-size: 18px;
        padding: 18px 24px;
    }
}

@media (max-width: 576px) {
    .weaving-bottom {
        /* border-top: 1px solid #dcdcdc; */
        padding-top: 35px;
    }

    .weaving-section {
        padding: 70px 0 35px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .weaving-left p,
    .weaving-subtitle,
    .weaving-bottom p {
        font-size: 16px;
        line-height: 1.9;
    }

    .weaving-pill {
        font-size: 16px;
        padding: 10px 14px;
    }
}

/* =========================
   Gallery Animation
========================= */

/* Initial State */
.gallery-card {
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(60px);

    animation: fadeUp 1s ease forwards;
}

/* Different Delay */
.large-card {
    animation-delay: 0.2s;
}

.gallery-right-col .small-card:nth-child(1) {
    animation-delay: 0.5s;
}

.gallery-right-col .small-card:nth-child(2) {
    animation-delay: 0.8s;
}

/* Image Animation */
.gallery-card img {
    transition: transform 0.6s ease;
}

/* Hover Effect */
.gallery-card:hover img {
    transform: scale(1.08);
}

/* Text Animation */
.gallery-text-content {
    position: relative;
    z-index: 2;

    transition: all 0.4s ease;
}

/* .gallery-card:hover .gallery-text-content {
    transform: translateY(-5px);
} */

/* Smooth Overlay Effect */
.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.05));

    opacity: 0;
    transition: opacity 0.4s ease;

    z-index: 1;
}

.gallery-card:hover::before {
    opacity: 1;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Hover */
.product-box {
    overflow: hidden;
    cursor: pointer;
}

.product-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.product-box:hover .product-img {
    transform: scale(1.05);
}

/* Lightbox */
/* =========================
   LIGHTBOX
========================= */

.custom-lightbox {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.92);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 99999;
}

.custom-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;

    border-radius: 12px;

    object-fit: contain;

    transform: scale(0.8);

    transition: 0.4s ease;
}

.custom-lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 35px;

    color: #fff;

    font-size: 40px;
    font-weight: 200;
    cursor: pointer;

    z-index: 100000;
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 100000;
}


/* Prev */
.lightbox-nav.prev {
    left: 20px;
}

/* Next */
.lightbox-nav.next {
    right: 20px;
}

/* Mobile */
@media (max-width: 768px) {

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }
}

/* =========================
   Trusted Logos
========================= */

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
}

/* Remove card styling completely */
.logo-item {
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Only image */
.logo-item img {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover */
.logo-item:hover img {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {

    .trusted-logos {
        flex-direction: column;
        gap: 25px;
        margin: 40px 0;
    }

    .logo-item img {
        max-width: 140px;
    }

}

.about-image-wrapper {
    height: 100%;
}

.about-row {
    display: flex;
    align-items: stretch;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {

    .about-image-wrapper {
        height: auto;
    }

    .about-image-wrapper img {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .about-image-wrapper img {
        height: auto;
    }
}

.contact-info-grid {
    margin-top: 30px;
}

.contact-column {
    margin-bottom: 30px;
}

.contact-item {
    padding: 30px;
    height: 100%;
    border-left: 4px solid #8b166a;
    background: #fff;
    transition: 0.4s ease;
    position: relative;
}

/* Hover */
.contact-item:hover {
    transform: translateX(8px);
    background: #faf7fb;
}

/* Icon */
.item-icon {
    margin-bottom: 20px;
}

.item-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Heading */
/* .contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    letter-spacing: 1px;
} */

/* Link */
.item-link {
    color: #666;
    text-decoration: none;
    line-height: 1.8;
    transition: 0.3s ease;
    display: inline-block;
}

.item-link:hover {
    color: #8b166a;
}

/* Mobile */
@media (max-width: 768px) {

    .contact-item {
        padding: 25px;
    }

}

.fabric-title {
    margin: 20px 0;
    padding-top: 50px;
}

/* Below 1024px remove only spacing */
@media (max-width:768px) {

    .fabric-title {
        margin: 0;
        padding-top: 0;
    }

}

/* ==========================
   Gallery Filter Buttons
========================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    position: relative;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: #d63384;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 6px 18px rgba(214, 51, 132, .15);
    border: 2px solid #ffc0dd;
}

.filter-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg,
            #ff69b4,
            #ff4fa3,
            #d63384);
    color: #fff;
    box-shadow: 0 12px 30px rgba(214, 51, 132, .35);
}

.filter-btn.active {
    background: linear-gradient(135deg, #8b166a);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(214, 51, 132, .35);
}

/* Smooth filtering */
.product-box {
    transition: .4s ease;
}

.product-box.hide {
    display: none;
}

@media(max-width:768px) {

    .gallery-filters {
        gap: 10px;
        margin-bottom: 25px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* cabablity */
/* Image */
.spinning-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

/* Fiber Portfolio */
/* .fiber-portfolio{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
} */

.fiber-portfolio h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.feature-list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Desktop */
@media (min-width:1200px) {
    .spinning-img {
        height: 380px;
    }
}

/* Tablet */
@media (max-width:991px) {

    .capability-block h2 {
        margin-top: 25px;
    }

    .spinning-img {
        height: 320px;
    }

    .fiber-portfolio {
        padding: 25px;
        margin-top: 15px;
    }

    .fiber-portfolio h4 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width:767px) {

    #spinnings {
        padding: 60px 0;
    }

    .spinning-img {
        height: 250px;
    }

    .capability-block h2 {
        font-size: 28px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .capability-block p {
        font-size: 15px;
        line-height: 1.8;
    }

    .fiber-portfolio {
        padding: 20px;
        margin-top: 10px;
    }

    .fiber-portfolio h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-list-check li {
        font-size: 14px;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    /* Stack portfolio columns */
    .fiber-portfolio .col-md-6 {
        margin-bottom: 10px;
    }
}

/* Small Mobile */
@media (max-width:480px) {

    .spinning-img {
        height: 220px;
    }

    .capability-block h2 {
        font-size: 24px;
    }

    .fiber-portfolio {
        padding: 18px;
    }

    .fiber-portfolio h4 {
        font-size: 18px;
    }

    .feature-list-check li {
        font-size: 13px;
        line-height: 1.6;
    }
}

.fiber-portfolio-section {
    margin-top: 60px;
}

.fiber-portfolio {
    padding-right: 30px;
}

.fiber-portfolio h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.fiber-portfolio p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.feature-list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.fiber-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* Tablet */
@media(max-width:991px) {

    .fiber-portfolio {
        padding-right: 0;
    }

    .fiber-img {
        height: 300px;
    }
}

/* Mobile */
@media(max-width:767px) {

    .fiber-portfolio-section {
        margin-top: 40px;
    }

    .fiber-portfolio h4 {
        font-size: 24px;
    }

    .fiber-img {
        height: 250px;
        margin-top: 20px;
    }

    .feature-list-check li {
        font-size: 14px;
    }
}

/* Small Mobile */
@media(max-width:480px) {

    .fiber-img {
        height: 220px;
    }

    .fiber-portfolio h4 {
        font-size: 22px;
    }
}