:root {
    --primary: #0a1c2a;
    /* Midnight Blue */
    --primary-light: #12283a;
    --primary-dark: #050e16;
    --accent: #eb3170;
    /* Classic Gold */
    --accent-hover: #d0235e;
    --accent-light: #f7f3eb;
    --green-bg: #1e352f;
    /* Sustainability Dark Green */
    --cream: #faf9f6;
    /* Warm Off-white */
    --white: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Utility classes */
.bg-cream {
    background-color: var(--cream);
}

.bg-navy {
    background-color: var(--primary);
}

.bg-green {
    background-color: var(--green-bg);
}

.text-accent {
    color: var(--accent) !important;
}

.btn-gold {
    background-color: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

.btn-navy:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .social-links a {
    margin-left: 12px;
    font-size: 0.9rem;
}

/* Sticky Navbar */
.main-nav {
    background-color: #000 !important;
    box-shadow: none;
    transition: var(--transition);
    position: sticky !important;
    top: -1px !important;
    z-index: 9999 !important;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 1px;
}

.navbar-brand .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
}

.nav-link {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    color: white !important;
    text-transform: uppercase;
    padding: 15px 9px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

#products .px-lg-5 {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

#products .row>* {
    padding-right: 2px !important;
    padding-left: 2px !important;
}




.nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    background: var(--cream);
    min-height: 600px;
    padding: 0rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Slider Column & Container */
.hero-slider-column {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    padding: 0;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slides-wrapper {
    display: flex;
    width: 300%;
    /* 3 slides */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide {
    width: 33.3333%;
    height: 100%;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

/* Gradient Overlay to blend with the text background */
.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--cream) 0%, rgba(250, 249, 246, 0.8) 40%, rgba(250, 249, 246, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 10%;
    z-index: 3;
    display: flex;
    gap: 0.6rem;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(10, 28, 42, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dots .dot:hover {
    background-color: var(--accent);
}

.hero-slider-dots .dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(181, 137, 61, 0.4);
}

@media (max-width: 991px) {
    .hero-slider-column {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 2.5rem;
    }

    .hero-slider-container {
        height: 480px;
        border: 2px solid var(--accent);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .hero-slider-overlay {
        width: 100%;
        height: 25%;
        background: linear-gradient(to bottom, var(--cream) 0%, rgba(250, 249, 246, 0) 100%);
        display:none;
    }
    

    .hero-slider-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-slider-container {
        height: 350px;
    }
}

.hero-sub {
    font-size: 1.15rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: inline-block;
}



.hero-title {
    font-size: 2.7rem;
    line-height: 1.05;
    margin-bottom: 3.2rem;
    font-weight: 500;
    /* letter-spacing: -1.5px; */
}

.woven-title-wrapper {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-divider {
    border-top: 1px solid rgba(10, 28, 42, 0.15);
    opacity: 1;
    width: 90%;
    margin: 0;
}

.woven-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2px;
    max-width: 600px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.hero-badge-item:hover {
    transform: translateY(-2px);
}

.hero-badge-icon {
    font-size: 28px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    flex-shrink: 0;
    transition: var(--transition);
}

.hero-badge-item:hover .hero-badge-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    line-height: 1.25;
}

.hero-badge-text span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
    margin-bottom: 2px;
}

@media (max-width: 991px) {
    .hero-section {
        background: var(--cream);
        padding: 5rem 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .mobile-hero-img-wrapper {
        position: relative;
        overflow: hidden;
        border: 2px solid var(--accent);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
    }

    .mobile-hero-img-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid var(--white);
        pointer-events: none;
    }

    .mobile-hero-img-wrapper:hover {
        box-shadow: 0 20px 50px rgba(181, 137, 61, 0.15);
    }

    .mobile-hero-img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-hero-img-wrapper:hover .mobile-hero-img {
        transform: scale(1.03);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .woven-title {
        font-size: 1rem;
    }

    .mobile-hero-img {
        height: 350px;
    }
}

/* Section Styling */
.section-padding {
    padding: 1.5rem 0;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 1px;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-top: 1rem;
    display: block;
}

/* Category Cards */
.categories-swiper-container .swiper-wrapper,
.industry-swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
}

.category-slide-wrapper {
    width: 280px !important;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 396px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 28, 42, 0.9) 10%, rgba(10, 28, 42, 0.2) 60%, rgba(10, 28, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    align-items: center;
    transition: var(--transition);
}

.category-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transform: translateY(15px);
    transition: var(--transition);
    letter-spacing: 1px;
}

.category-icon {
    color: var(--accent);
    font-size: 1.3rem;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(10, 28, 42, 0.95) 20%, rgba(10, 28, 42, 0.4) 70%, rgba(10, 28, 42, 0.1) 100%);
}

.category-card:hover .category-title {
    transform: translateY(0);
}

.category-card:hover .category-icon {
    transform: translateY(0);
    opacity: 1;
}

/* About Section Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.about-features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1.2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.7rem 1.0rem;
    background-color: #ffffff;
    border: 1px solid rgba(10, 28, 42, 0.06);
    border-radius: 8px;
    color: var(--primary);
    position: relative;
    box-shadow: 0 4px 15px rgba(10, 28, 42, 0.02);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 28, 42, 0.05);
    border-color: rgba(235, 49, 112, 0.2);
}

.about-feature-item i.feature-icon {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 0;
    transition: var(--transition);
}

.about-feature-item:hover i.feature-icon {
    transform: scale(1.1);
}

.feature-chevron {
    color: var(--accent);
    font-weight: 900;
    margin: 0 10px;
    font-size: 0.75rem;
    opacity: 0.9;
}

.feature-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--primary);
    position: relative;
    white-space: nowrap;
}

/* .feature-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
} */

.about-feature-item:hover .feature-text::after {
    width: 26px;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: 451px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius:25px;
}

.about-tag-overlay {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem;
    max-width: 250px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-tag-overlay {
        position: relative;
        bottom: 0;
        right: 0;
        max-width: 100%;
        margin-top: 1.5rem;
    }
}

/* Capabilities Section */
.capabilities-section {
    background-image: linear-gradient(rgba(10, 14, 18, 0.86), rgba(10, 14, 18, 0.86)), url('../images/capabilities_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    position: relative;
}

.capabilities-section .section-title {
    font-family: var(--font-heading);
    color: var(--white);
}

.capability-card {
    border: 1.5px solid rgba(181, 137, 61, 0.35);
    background-color: rgba(10, 15, 20, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.capability-card:hover {
    border-color: var(--accent);
    background-color: rgba(181, 137, 61, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.capability-icon svg.icon-svg {
    width: 44px;
    height: 44px;
    stroke: var(--accent);
    fill: none;
    transition: var(--transition);
}

.capability-card:hover .capability-icon svg.icon-svg {
    stroke: var(--white);
    transform: scale(1.1);
}

.capability-title {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.capability-card:hover .capability-title {
    color: var(--accent);
}

.capability-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

/* Stats Bar */
.stats-bar {
    background-color: #050e16;
    border-top: 1.5px solid var(--accent);
    padding: 2rem 0;
}

.stats-bar .col-lg-2-4 {
    position: relative;
}

@media (min-width: 992px) {
    .stats-bar .col-lg-2-4:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 50px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.15);
    }



}

.stat-item-flex {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-content: flex-start;
    max-width: max-content;
    margin: 0 auto;
}

.stat-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-item-flex:hover .stat-icon-circle {
    background-color: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

.stat-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stat-num-large {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.1rem;
}

.stat-label-small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .stats-bar .col-lg-2-4 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.2rem;
        padding-top: 1.2rem;
    }

    .stats-bar .col-lg-2-4:last-child {
        border-bottom: none;
    }

    .stat-item-flex {
        justify-content: center;
    }



}

/* Why Choose Us Cards */
.benefit-col {
    position: relative;
}

@media (min-width: 992px) {
    .benefit-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 70px;
        width: 1px;
        background-color: rgba(10, 28, 42, 0.12);
    }

    .blog-card-desc {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}

@media (max-width: 991px) {
    .benefit-col {
        border-bottom: 1px solid rgba(10, 28, 42, 0.05);
        padding-bottom: 1.2rem;
        padding-top: 1.2rem;
    }

    .benefit-col:last-child {
        border-bottom: none;
    }
}

.benefit-card {
    text-align: center;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrapper {
    color: var(--accent);
}

.benefit-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    color: var(--primary);
}

.benefit-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Industries We Serve */
.industry-slide-wrapper {
    width: 280px !important;
}

.industry-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 28, 42, 0.65) 0%, rgba(10, 28, 42, 0.2) 60%, rgba(10, 28, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.industry-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.0rem;
    font-weight: 700;
    text-align: left;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(10, 28, 42, 0.8) 0%, rgba(10, 28, 42, 0.3) 60%, rgba(10, 28, 42, 0) 100%);
}

/* Manufacturing Process (Timeline) */
.process-timeline-container {
    position: relative;
    padding: 4px 0;
}

.process-line {
    position: absolute;
    top: 20px;
    left: 0%;
    right: 0%;
    height: 2px;
    background: repeating-linear-gradient(to right, transparent, transparent 4px, var(--accent) 4px, var(--accent) 8px);
    z-index: 1;
}

.process-line::before,
.process-line::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    transform: rotate(45deg);
}

.process-line::before {
    left: 0;
}

.process-line::after {
    right: 0;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--cream);
    color: var(--accent);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.process-step:hover .process-badge {
    background-color: var(--accent);
    color: var(--white);
    transform: scale(1.15);
}

.process-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.process-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 150px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .process-line {
        display: none;
    }

    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .process-badge {
        margin: 0 1.5rem 0 0;
        flex-shrink: 0;
    }

    .process-desc {
        max-width: 100%;
        margin: 0;
    }
}

/* Sustainability Section */
.sustainability-card {
    background-color: #050e16;
    color: var(--white);
    padding: 36px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sustainability-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.sustainability-card h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.sustainability-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.sus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sus-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sus-item i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.25rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.0rem;
    height: 100%;
    align-content: center;
}

@media (max-width: 576px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.compliance-card {
    background-color: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.compliance-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(181, 137, 61, 0.2);
}

.compliance-logo-placeholder {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.compliance-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Compliance Badge Colors */
.compliance-sedex {
    color: #931922;
}

.compliance-bsci {
    color: #409244;
}

.compliance-oeko {
    color: #123762;
}

.compliance-wrap {
    color: #bd7d21;
}

.compliance-iso {
    color: #215cbd;
}

.compliance-grs {
    color: #3b938f;
}

/* Export Map Section */
.map-section {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.map-bg-svg {
    opacity: 0.8;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 110%;
    max-width: 1100px;
    pointer-events: none;
}

.map-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Map Label Position Clean-up */
.map-labels-container {
    height: 350px;
}

.map-label-canada {
    top: 10%;
    left: 15%;
}

.map-label-usa {
    top: 25%;
    left: 22%;
}

.map-label-germany {
    top: 12%;
    left: 52%;
}

.map-label-india {
    top: 35%;
    left: 63%;
}

.map-label-australia {
    top: 75%;
    left: 78%;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--cream);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(181, 137, 61, 0.15);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent);
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    opacity: 0.3;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: var(--accent);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Blog Section */
.blog-card {
    border: none;
    background-color: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.blog-body {
    padding: 2rem 1.8rem;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--accent);
}

.blog-link {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.blog-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--accent);
}

.blog-link:hover i {
    transform: translateX(4px);
}

/* Call To Action Banner */
.cta-banner {
    background-image: linear-gradient(90deg, rgba(10, 28, 42, 1) 0%, rgba(10, 28, 42, 0.9) 45%, rgba(10, 28, 42, 0.2) 100%), url('https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center right;
    color: var(--white);
    padding: 2.5rem 0;
}

.cta-title {
    color: var(--white);
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.section-padding.bg-cream.Featured-Collections .category-card {
    position: relative;
    overflow: hidden;
    height: 290px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-links a:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* SVG Route paths animation for Map */
@keyframes dash {
    to {
        stroke-dashoffset: -40;
    }
}

.map-route-path {
    stroke-dasharray: 8, 4;
    animation: dash 1.5s linear infinite;
}

.map-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        r: 3;
        opacity: 1;
    }

    100% {
        r: 8;
        opacity: 0;
    }
}

/* Custom Columns for Grid */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-lg-1-7 {
        flex: 0 0 14.285%;
        max-width: 14.285%;
    }
}

/* Blog Card Custom Styles */
.blog-card {
    display: flex;
    background-color: var(--white);
    height: 100%;
    border: 1px solid rgba(10, 28, 42, 0.08) !important;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 28, 42, 0.06);
    border-color: rgba(181, 137, 61, 0.25) !important;
}

.blog-card-img-wrapper {
    flex: 0 0 45%;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.blog-card-title {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--primary) !important;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #b5893d !important;
}

.blog-card-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-read-more {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: #b5893d !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: #8c682b !important;
    gap: 10px;
}

/* ============================================
   RESPONSIVE STYLES — Tablet (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
    /* Native sticky-top will handle this now that overflow-x is removed */

    .main-nav .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3) !important;
        padding: 8px 12px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        background-color: #000;
        padding: 1rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: 75vh;
        overflow-y: auto;
    }

    .nav-link {
        padding: 10px 15px !important;
        font-size: 14px;
    }

    .nav-link::after {
        display: none;
    }

    /* Section spacing */
    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Categories */
    .category-card {
        height: 220px;
        margin-bottom: 15px;
    }

    .category-overlay {
        padding: 1.2rem;
    }

    .category-title {
        font-size: 16px;
    }

    /* About */
    .about-features {
        padding: 1.8rem 1.5rem;
        gap: 1.5rem;
    }

    .about-img {
        height: 350px;
    }

    /* Capabilities */
    .capability-card {
        padding: 2rem 1rem;
    }

    .capability-icon {
        font-size: 2rem;
    }

    /* Industries */
    .industry-card {
        height: 240px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-banner .row {
        text-align: center;
    }

    .cta-banner .col-lg-6:last-child {
        justify-content: center !important;
    }

    /* Map Section */
    .map-section {
        padding: 3rem 0;
    }

    .map-labels-container {
        display: none !important;
    }

    .map-bg-svg {
        opacity: 0.3;
        left: 50%;
        width: 150%;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
}

/* ============================================
   RESPONSIVE STYLES — Small Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.0rem;
    }

    .hero-sub {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .woven-title {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-badge-icon {
        font-size: 1.4rem;
        margin-right: 8px;
    }

    .hero-badge-text {
        font-size: 0.65rem;
    }

    .hero-badge-text span {
        font-size: 0.85rem;
    }

    .hero-divider {
        width: 100%;
    }

    /* Section Title */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .card-text.text-muted{
    color: gray !important;}

    /* Categories */
    .category-card {
        height: 200px;
        margin-bottom: 10px;
    }


    .category-title {
        font-size: 14px;
    }

    .category-overlay {
        padding: 1rem;
    }

    /* About */
    .about-img {
        height: 300px;
    }

    .about-features {
        padding: 0;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-features-row {
        flex-direction: column;
        gap: 1rem;
    }
    .what-we {
    padding: 0 !important;
}
.ps-lg-5{
margin-top: 40px;}

    #contact-hero .feature-desc {
    font-size: 12px !important;
}
#contact-hero .feature-icon-circle {
    width: 30px !important;
    height: 30px !important;
    font-size: 15px !important;
}
#contact-hero .feature-title {
    font-size: 14px !important;
}

    .about-feature-item {
        flex: none;
        width: 100%;
        padding: 0.9rem 1.2rem;
        justify-content: flex-start;
    }

    .about-features-row .about-feature-item:not(:last-child) {
        border-right: none;
        border-bottom: none;
        padding-bottom: 0.9rem;
    }

    .feature-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    /* Capabilities */
    .capability-card {
        padding: 1.5rem 1rem;
    }

    .capability-title {
        font-size: 0.8rem;
    }

    /* Stats */
    .stat-num-large {
        font-size: 1.8rem;
    }
    .py-5{
      padding-top: 0 !important;}

    .stat-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Sustainability */
    .sustainability-card {
        padding: 2.5rem 2rem;
    }

    .sustainability-card h3 {
        font-size: 1.8rem;
    }

    .sus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Blog Cards */
    #blog .d-flex.bg-white {
        flex-direction: row;
    }

    /* CTA */
    .cta-banner {
        padding: 2.5rem 0;
        background-position: center;
    }

    .cta-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .cta-desc {
        font-size: 0.85rem;
    }

    .cta-banner .col-lg-6:last-child a.btn {
        padding: 10px 20px !important;
        font-size: 0.75rem !important;
    }

    /* Industries */
    .industry-card {
        height: 200px;
    }

    /* Process Timeline */
    .process-timeline-container {
        padding: 2rem 0;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-name {
        font-size: 0.9rem;
    }

    .hero-slider-column {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 0rem;
    }

    /* Featured Collections */
    .Featured-Collections .category-card {
        height: 220px !important;
    }

    /* Footer */
    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    #heroTextContainer{
    margin-top: 30px;}

    .footer-links li {
        margin-bottom: 8px;
    }
}

/* ============================================
   RESPONSIVE STYLES — Phone (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {

    /* Global */
    body {
        font-size: 14px;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Section spacing */
    .section-padding {
        padding: 2rem 0;
    }

    /* Hero */
    .hero-section {
        padding: 0rem 0 1.5rem;
        min-height: auto;
    }

    .hero-title {
        letter-spacing: 0px;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }

    .hero-sub {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .woven-title {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .woven-title-wrapper {
        margin-bottom: 0.3rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-desc br {
        display: none;
    }

    .hero-divider {
        width: 100%;
        margin-bottom: 0.8rem !important;
    }

    .hero-badge-item {
        margin-bottom: 0.8rem;
    }

    .hero-badge-icon {
        font-size: 1.2rem;
        margin-right: 8px;
    }

    .hero-badge-text {
        font-size: 0.6rem;
    }

    .hero-badge-text span {
        font-size: 0.75rem;
    }

    .btn-navy,
    .btn-gold,
    .btn-outline-gold {
        padding: 8px 14px !important;
        font-size: 11px !important;
    }

    .d-flex.flex-wrap.gap-3 {
        gap: 0.5rem !important;
    }

    .mobile-hero-img {
        height: 280px;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 0.6rem;
    }

    /* Categories */
    .category-card {
        height: 390px;
        margin-bottom: 8px;
    }

    .category-overlay {
        padding: 0.8rem;
    }

    .category-title {
        font-size: 13px;
        margin-bottom: 1.25rem;
    }

    .category-icon {
        font-size: 1rem;
    }

    /* About */
    .about-img {
        height: 250px;
    }

    .about-tag-overlay {
        padding: 1.5rem;
    }

    .about-features {
        padding: 0;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .feature-text {
        font-size: 13px;
    }

    /* Capabilities */
    .capability-card {
        padding: 1.2rem 0.8rem;
    }

    .capability-icon {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .capability-title {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .capability-desc {
        font-size: 0.7rem;
    }

    /* Stats Bar */
    .stats-bar {
        padding: 1rem 0;
    }

    .stat-num-large {
        font-size: 1.5rem;
    }

    .stat-label-small {
        font-size: 0.6rem;
    }

    .stat-icon-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .stat-item-flex {
        gap: 0.8rem;
    }

    /* Why Choose Us */
    .benefit-card {
        padding: 1rem 0.5rem;
    }

    .benefit-icon-wrapper {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .benefit-title {
        font-size: 0.75rem;
    }

    .benefit-desc {
        font-size: 0.7rem;
    }

    /* Industries */
    .industry-card {
        height: 300px;
    }
    .section-padding.bg-cream.Featured-Collections .category-card {
     margin-bottom: 0px;
}

    .industry-swiper-container::before, .industry-swiper-container::after {
    content: "";
    height: 100%;
    position: absolute;
     width: 0px !important;
    z-index: 2;
    top: 0;
    pointer-events: none;
}



    .industry-title {
        font-size: 0.9rem;
    }

    .industry-overlay {
        padding: 1rem;
    }

    /* Process Timeline */
    .process-timeline-container {
        padding: 1.5rem 0;
    }

    .process-badge {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .process-title {
        font-size: 0.85rem;
    }

    .process-desc {
        font-size: 0.75rem;
    }

    /* Sustainability */
    .sustainability-card {
        padding: 2rem 1.5rem;
    }

    .sustainability-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .sustainability-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .sus-item {
        font-size: 0.7rem;
    }

    .sus-item i {
        font-size: 1rem;
    }

    /* Compliance grid */
    .compliance-card {
        padding: 1rem;
        min-height: 90px;
    }

    .compliance-logo-placeholder {
        font-size: 1rem;
    }

    /* Featured Collections */
    .Featured-Collections .category-card {
        height: 180px !important;
    }

    /* Blog Cards */
    .blog-card {
        flex-direction: column;
    }

    .blog-card-img-wrapper {
        flex: 0 0 auto !important;
        height: 320px;
    }
    .blog-card-title {
    font-size: 13px !important;  
}

    #blog h4.text-center,
    #blog h6.text-center {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

.blog-slide-wrapper {
    width: 100% !important;
}









    /* CTA Banner */
    .cta-banner {
        padding: 2rem 0;
        background-image: linear-gradient(rgba(10, 28, 42, 0.92), rgba(10, 28, 42, 0.92)), url('https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?auto=format&fit=crop&w=1500&q=80') !important;
    }

    .cta-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .cta-title br {
        display: none;
    }

    .cta-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .cta-desc br {
        display: none;
    }

    .cta-banner .col-lg-6 {
        text-align: center !important;
    }

    .cta-banner .col-lg-6:last-child {
        justify-content: center !important;
    }

    .cta-banner .col-lg-6:last-child a.btn {
        width: 100%;
        text-align: center;
    }

    /* Map Section */
    .map-section {
        padding: 2.5rem 10px;
    }

    .map-bg-svg {
        opacity: 0.2;
        width: 200%;
    }

    .map-section .col-lg-4 {
        padding: 1.5rem 0 !important;
        margin: 0 !important;
    }

    .map-section .col-lg-4 p {
        max-width: 100% !important;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: 8px;
        left: 12px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .testimonial-name {
        font-size: 0.85rem;
    }

    .testimonial-role {
        font-size: 0.7rem;
    }

    .carousel-indicators {
        margin-top: 2rem !important;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators .active {
        width: 20px;
    }

    /* Contact Form */
    #contact .bg-cream {
        padding: 1.5rem !important;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem 0;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo-sub {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
        padding-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-contact-item {
        font-size: 0.8rem;
    }

    .footer-social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }
}

/* ============================================
   RESPONSIVE STYLES — Extra Small (max-width: 400px)
   ============================================ */
@media (max-width: 400px) {

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 0.75rem;
    }

    .woven-title {
        font-size: 0.75rem;
    }

    .hero-desc {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .category-card {
        height: 420px I !important;
    }

    .cta-title {
        font-size: 1.1rem;
    }

    .stat-num-large {
        font-size: 1.3rem;
    }

    .capability-card {
        padding: 1rem 0.6rem;
    }
}

.footer-logo img {
    max-width: 100%;
    width: 180px;
    /* Apne logo ke hisab se adjust karein */
    height: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 767px) {
    .footer-logo img {
        width: 140px;
    }
    .heroTextContainer{
    margin-top: 20px !important;
}
}

.section-padding.bg-cream.pt-5.industry-section,
.section-padding.bg-cream.Featured-Collections,
.section-padding.bg-cream.pt-5.industry-section .row>* {
    padding-left: 3px;
    padding-right: 3px;
}

/* ============================================
   CONTACT US PAGE SPECIFIC STYLES
   ============================================ */

/* Page Header & Breadcrumbs */
.contact-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header .page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.industry-card-img-wrapper {
    height: 170px !important;
}
.industry-card-body {
    padding: 2.5rem 0.5rem 0.8rem 0.5rem !important;
}

.industry-card-title {
    font-size: 14px !important;
}
.industry-card-desc {
    font-size: 14px !important;
}
.industry-section-title {
    font-size: 26px !important;
}
.industry-cta-title {
    font-size: 1.5rem !important;
}
.industry-hero-title {
        font-size: 1.8rem !important;
    }
.mfg-about-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}
.mfg-about-section {
    padding: 1.5rem 0 !important;
}
.mfg-capabilities-section {
    padding: 1.5rem 0 !important;
}
.manu-bann{
color:white !important;}
.mfg-cta-title {
    font-size: 2.0rem !important;
    font-weight: 700 !important;
 
}




.contact-header .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.contact-header .breadcrumb-item a {
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-header .breadcrumb-item.active {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-header .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--text-muted);
}

/* Get In Touch Details */
.contact-details-section {
    padding: 5rem 0;
}

.contact-details-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 2.5rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
}

.contact-info-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-value a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-value a:hover {
    color: var(--accent);
}

/* Construction Site Image */
.contact-image-container {
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Quote Form Section */
.quote-form-section {
    background-color: var(--cream);
    padding: 5rem 0;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.quote-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
}

.quote-form-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-form .form-control {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: none;
    transition: var(--transition);
}

.quote-form .form-control::placeholder {
    color: rgba(102, 102, 102, 0.6);
}

.quote-form .form-control:focus {
    border-color: var(--accent);
    background-color: var(--white);
}

.quote-form textarea.form-control {
    resize: none;
    min-height: 150px;
}

/* Custom Submit Button styling */
.btn-submit-inquiry {
    background-color: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    padding: 14px 45px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

.btn-submit-inquiry:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 49, 112, 0.2);
}

/* Language selector button & dropdown overrides */
.nav-lang-selector .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 9px !important;
    text-decoration: none;
    transition: var(--transition);
}

.nav-lang-selector .dropdown-toggle:hover {
    color: var(--accent) !important;
}

.nav-lang-selector .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.nav-lang-selector .dropdown-menu {
    background-color: var(--primary-light);
    border-radius: 0;
    border: none;
    margin-top: 0;
}

.nav-lang-selector .dropdown-item {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    transition: var(--transition);
}

.nav-lang-selector .dropdown-item:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Footer newsletter specific input and button */
.footer-newsletter-form {
    display: flex;
    max-width: 100%;
}

.footer-newsletter-input {
    background-color: var(--white) !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 0.85rem !important;
    padding: 10px 15px !important;
    height: 42px !important;
    color: var(--text-dark) !important;
    font-family: var(--font-body);
}

.footer-newsletter-input::placeholder {
    color: rgba(34, 34, 34, 0.6) !important;
}

.footer-newsletter-btn {
    background-color: var(--primary-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: none !important;
    color: var(--white) !important;
    width: 45px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
    transition: var(--transition) !important;
}

.footer-newsletter-btn:hover {
    background-color: var(--accent) !important;
    color: var(--white) !important;
    border-color: var(--accent) !important;
}

/* responsive details */
@media (max-width: 991px) {
    .contact-details-section {
        padding: 3rem 0;
    }

    .contact-details-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-image-container {
        min-height: 300px;
        margin-top: 2rem;
    }

    .quote-form-section {
        padding: 3rem 0;
    }

    .quote-form-title {
        font-size: 2rem;
    }

    .quote-form-header {
        margin-bottom: 2.5rem;
    }
}

/* ============================================
   INDUSTRIES WE SERVE SPECIFIC STYLES
   ============================================ */

.industry-hero-section {
    background: linear-gradient(90deg, rgba(10, 28, 42, 1) 0%, rgba(10, 28, 42, 0.95) 40%, rgba(10, 28, 42, 0.3) 100%),
        url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=1200&q=80') center right;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 6rem 0;
}

.industry-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.industry-hero-title span.theme-accent,
.industry-accent-text {
    color: var(--accent) !important;
}

.industry-hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.industry-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 580px;
}

.industry-badges-bar {
    background-color: var(--primary-dark);
    padding: 2.5rem 0;
    border-top: 1.5px solid var(--accent);
}

.industry-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.industry-badge-icon {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.industry-badge-content {
    display: flex;
    flex-direction: column;
}

.industry-badge-title {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.industry-badge-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.75rem;
    margin-bottom: 0;
}

.industry-section-title-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.industry-section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: block;
}

.industry-section-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Industry Cards styling */
.industry-card-item {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    overflow: visible;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.industry-card-img-wrapper {
    height: 220px;
    overflow: visible;
    position: relative;
    border-radius: 4px 4px 0 0;
    width: 100%;
}

/* Inner div that actually clips the image */
.industry-card-img-inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.industry-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.industry-card-item:hover .industry-card-img {
    transform: scale(1.05);
}

.industry-card-icon {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.12);
    z-index: 10;
    transition: var(--transition);
}

.industry-card-body {
    padding: 2.5rem 1.5rem 1.8rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.industry-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.industry-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

.industry-card-arrow {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0.7;
    transition: var(--transition);
}

.industry-card-item:hover .industry-card-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Why Partner Section styling */
.why-partner-section {
    padding: 6rem 0;
}

.partner-check-list {
    margin-top: 2rem;
}

.partner-check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.partner-check-icon {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
}

.why-partner-images {
    position: relative;
}

.partner-img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.partner-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-img-wrapper:hover img {
    transform: scale(1.03);
}

.partner-img-large {
    height: 460px;
}

.partner-img-medium {
    height: 220px;
    margin-bottom: 20px;
}

.partner-img-small {
    height: 220px;
}

/* Call to Action banner */
.industry-cta-banner {
    background: linear-gradient(90deg, rgba(10, 28, 42, 0.96) 0%, rgba(10, 28, 42, 0.9) 50%, rgba(10, 28, 42, 0.6) 100%),
        url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=1200&q=80') center;
    background-size: cover;
    padding: 5rem 0;
    color: var(--white);
}

.industry-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    color: #eb3170;
}

.industry-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-right: 36px;
}

.whatsapp-link:hover {
    color: #25d366;
    /* WhatsApp Green */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .industry-hero-section {
        padding: 4rem 0;
        min-height: auto;
        background: linear-gradient(180deg, rgba(10, 28, 42, 1) 0%, rgba(10, 28, 42, 0.95) 60%, rgba(10, 28, 42, 0.8) 100%);
    }

    .industry-hero-title {
        font-size: 2.5rem;
    }

    .industry-hero-desc {
        font-size: 1.05rem;
    }

    .industry-badges-bar {
        padding: 2rem 0;
    }

    .industry-badge-item {
        margin-bottom: 1.5rem;
    }

    .industry-badge-item:last-child {
        margin-bottom: 0;
    }

    .why-partner-section {
        padding: 4rem 0;
    }

    .partner-img-large {
        height: 350px;
        margin-bottom: 20px;
    }
}

/* ============================================
   MANUFACTURING PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
.mfg-hero-section {
    background: linear-gradient(90deg, rgba(10, 28, 42, 1) 0%, rgba(10, 28, 42, 0.95) 42%, rgba(10, 28, 42, 0.2) 100%),
        url('../images/garment_factory_sewing_hero.png') center right / cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    color: var(--white);
}

.mfg-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.mfg-hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.4rem;
}

.mfg-hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin-bottom: 2.2rem;
}

/* About Manufacturing Section */
.mfg-about-section {
    padding: 5.5rem 0;
    background-color: var(--white);
}

.mfg-about-img-wrapper {
    height: 430px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.mfg-about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mfg-about-img-wrapper:hover img {
    transform: scale(1.04);
}

.mfg-about-eyebrow {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.8rem;
}

.mfg-about-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.mfg-about-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.mfg-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mfg-feature-list li:last-child {
    border-bottom: none;
}

.mfg-feature-list li i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Capabilities Section */
.mfg-capabilities-section {
    padding: 5rem 0;
    background-color: var(--cream);
}

.mfg-section-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    text-align: center;
    margin-bottom: 3rem;
}

.mfg-cap-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 2.4rem 1.6rem;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    height: 100%;
}

.mfg-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.mfg-cap-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: block;
}

.mfg-cap-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.mfg-cap-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Precision Section */
.mfg-precision-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.mfg-precision-img-wrapper {
    height: 460px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mfg-precision-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mfg-precision-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1.1rem;
}

.mfg-precision-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

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

.mfg-check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.mfg-check-list li i {
    color: var(--accent);
    font-size: 1rem;
}

/* Process Section */
.mfg-process-section {
    padding: 5rem 0;
    background: var(--cream);
}

.mfg-process-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.mfg-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 90px;
    max-width: 130px;
}

.mfg-process-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 16px rgba(10, 28, 42, 0.15);
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 2;
}

.mfg-process-step-number {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.mfg-process-step-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.mfg-process-connector {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 0.2rem;
    margin-top: 1.6rem;
}

.mfg-process-connector i {
    font-size: 1rem;
    color: var(--accent);
    opacity: 0.6;
}

/* Why Choose Section */
.mfg-why-section {
    padding: 5rem 0;
    background: var(--white);
}

.mfg-why-col {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: var(--transition);
}

.mfg-why-col:hover {
    transform: translateY(-4px);
}

.mfg-why-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.mfg-why-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* CTA Banner */
.mfg-cta-banner {
    background: linear-gradient(90deg, rgba(10, 28, 42, 0.97) 0%, rgba(10, 28, 42, 0.92) 60%, rgba(10, 28, 42, 0.7) 100%),
        url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=1400&q=80') center / cover no-repeat;
    padding: 5rem 0;
    color: var(--white);
}

.mfg-cta-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.mfg-cta-title span {
    color: var(--accent);
}

.mfg-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 500px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .mfg-hero-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .mfg-hero-title {
        font-size: 2.4rem;
    }

    .mfg-about-img-wrapper,
    .mfg-precision-img-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }

    .mfg-precision-title {
        font-size: 2rem;
    }

    .mfg-process-step {
        min-width: 70px;
    }

    .mfg-process-step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .mfg-hero-title {
        font-size: 2rem;
    }

    .mfg-process-connector {
        display: none;
    }

    .mfg-process-step {
        min-width: 80px;
        max-width: 90px;
        margin-bottom: 1.5rem;
    }
}

.industry-hero-section .industry-hero-title {
    color: #fff;
}

.tech-hero {
    background: linear-gradient(90deg, rgba(10, 28, 42, 1) 0%, rgba(10, 28, 42, 0.95) 38%, rgba(10, 28, 42, 0.15) 100%), url('../images/tech-bannn.webp') center right / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 5rem 0 0;
    color: #fff;
    position: relative;
}

.tech-hero-badges {
    background: rgba(10, 28, 42, 0.92);
    border-top: 1px solid rgba(200, 147, 58, 0.3);
    padding: 1.4rem 0;
}

.tech-badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tech-badge-icon {
    font-size: 1.5rem;
    color: var(--accent, #c8933a);
    flex-shrink: 0;
}

.tech-badge-label {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.tech-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.tech-hero-title .accent {
    color: var(--accent, #c8933a);
}

.tech-hero-title .underline-bar {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--accent, #c8933a);
    margin: 0.6rem 0 0;
}

.tech-hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 460px;
    margin-bottom: 2rem;
}

/* ==========================================================================
   TECHNOLOGY PAGE - INNOVATION SECTION
   ========================================================================== */

.tech-innovation-section {

    background-color: #fff;
}

.tech-eyebrow {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent, #eb3170);
    display: block;
    margin-bottom: 0.8rem;
}

.tech-section-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary, #0a1c2a);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.tech-section-divider {
    width: 40px;
    height: 3px;
    background: var(--accent, #eb3170);
    margin: 1rem 0 1.5rem;
}

.tech-section-desc {
    font-size: 1.05rem;
    color: var(--text-muted, #666666);
    line-height: 1.7;
}

.tech-innovation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
    margin-top: 3.5rem;
}

.tech-innovation-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-innovation-img-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2.2rem;
}

.tech-innovation-img-card {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.tech-innovation-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-innovation-icon {
    position: absolute;
    bottom: -22px;
    left: 37%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary, #0a1c2a);
    border: 2.5px solid var(--accent, #eb3170);
    color: var(--accent, #eb3170);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tech-innovation-col:hover .tech-innovation-icon {
    transform: translateX(-50%) scale(1.1);
    background-color: var(--accent, #eb3170);
    color: #fff;
    border-color: var(--accent, #eb3170);
}

.tech-innovation-col:hover .tech-innovation-img-card img {
    transform: scale(1.08);
}

.tech-innovation-card-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary, #0a1c2a);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.tech-innovation-card-desc {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.88rem;
    color: var(--text-muted, #666666);
    line-height: 1.6;
    margin: 0;
    padding: 0 5px;
}






/* Slanted effect on desktop */
@media (min-width: 992px) {
    .tech-innovation-img-card {
        clip-path: polygon(26% 0, 100% 0, 75% 100%, 0 100%);
    }


}

/* Responsive grid layout */
@media (max-width: 991px) {
    .tech-innovation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 767px) {
    .tech-innovation-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .tech-innovation-img-card {
    height: 200px;
}
    .tech-innovation-grid {
        grid-template-columns: 1fr;
        gap: 20px !important;
    }

    #contact-hero .hero-content-col {
        MARGIN-LEFT: 0PX !important;
    }
    .tech-hero-title {
    font-size: 2.2rem !important;
    font-weight: 600;
}
.tech-section-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.tech-eyebrow {
 margin-bottom: 0;
 margin-top: 14px; 
}
.tech-hero {
    min-height: 352px;
    padding: 1rem 0 0;
 
}
    .tech-innovation-grid {
        grid-template-columns: 2fr;
        /* gap: 40px; */
    }
    .tech-commitment-title {
    font-size: 1.5rem !important;
    font-weight: 700;
}

.tech-commit-card-title {
    font-size: 14px !important;
}
    #contact-hero .hero-title-contact {
        font-size: 26px !important;
    }


}




@media (max-width: 480px) {
    .tech-innovation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   TECHNOLOGY PAGE - EFFICIENCY SECTION
   ========================================================================== */

.tech-efficiency-section {
    background-color: #fff;
}

.tech-efficiency-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 992px) {
    .tech-efficiency-card {
        background: linear-gradient(102deg, var(--primary, #0a1c2a) 0%, var(--primary, #0a1c2a) 44%, transparent 44.2%, transparent 100%),
            url('../images/garment_factory_floor.png') center / cover no-repeat;
        min-height: 480px;
        display: flex;
        align-items: center;
    }

    .tech-efficiency-left {
        padding: 4.5rem 0 4.5rem 4.5rem;
    }
}

@media (max-width: 991px) {
    .tech-efficiency-card {
        background: var(--primary, #0a1c2a);
    }

    .tech-efficiency-left {
        padding: 4rem 2.5rem;
    }

    .tech-efficiency-mobile-img {
        height: 320px;
        width: 100%;
        overflow: hidden;
    }

    .tech-efficiency-mobile-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.tech-efficiency-check {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.tech-efficiency-check li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.1rem;
}

.tech-efficiency-check li i {
    color: var(--accent, #eb3170);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ==========================================================================
   TECHNOLOGY PAGE - COMMITMENT SECTION
   ========================================================================== */

.tech-commitment-section {
    background-color: #faf9f6;
}

.tech-commitment-label {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent, #eb3170);
    display: block;
    margin-bottom: 0.8rem;
}

.tech-commitment-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--primary, #0a1c2a);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.tech-commitment-divider {
    width: 40px;
    height: 3px;
    background: var(--accent, #eb3170);
    margin: 1rem auto 3rem;
}

.tech-commit-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-commit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.tech-commit-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent, #eb3170);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(235, 49, 112, 0.25);
}

.tech-commit-card-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary, #0a1c2a);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.tech-commit-card-desc {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.88rem;
    color: var(--text-muted, #666666);
    line-height: 1.6;
    margin: 0;
}
        #contact-hero .hero-title-contact {
            font-size: 26px ;
            font-weight: 700 !important;
        }
       .text-muted {
            color: gray !important;
        }

/* ==========================================================================
   TECHNOLOGY PAGE - CTA BANNER
   ========================================================================== */

.tech-cta-section {
    background-color: #fff;
    padding: 5.5rem 0;
}

.tech-cta-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 992px) {
    .tech-cta-card {
        background: linear-gradient(108deg, var(--primary, #0a1c2a) 0%, var(--primary, #0a1c2a) 60%, transparent 60.2%, transparent 100%),
            url('../images/cta_sewing_needle.png') center / cover no-repeat;
        min-height: 380px;
        display: flex;
        align-items: center;
    }

    .tech-cta-left {
        padding: 4.5rem 0 4.5rem 4.5rem;
    }
}

@media (max-width: 991px) {
    .tech-cta-card {
        background: var(--primary, #0a1c2a);
    }

    .tech-cta-left {
        padding: 4rem 2.5rem;
    }
}

.tech-cta-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.tech-cta-title .accent {
    color: var(--accent, #eb3170);
}

.tech-cta-desc {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-gold-cta {
    background-color: var(--accent, #eb3170);
    color: #fff;
    border: 1px solid var(--accent, #eb3170);
    border-radius: 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition, all 0.3s ease);
}

.btn-gold-cta:hover {
    background-color: var(--accent-hover, #d0235e);
    border-color: var(--accent-hover, #d0235e);
    color: #fff;
    transform: translateY(-2px);
}

.tech-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body, 'Outfit', sans-serif);
    transition: color 0.3s;
}

.tech-cta-whatsapp i {
    color: #25d366;
    font-size: 1.3rem;
}

.tech-cta-whatsapp:hover {
    color: #25d366;
}

#contact-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background-color: #0a1c2a;
    font-family: 'Outfit', sans-serif;
    z-index: 1;
}

#contact-hero .hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#contact-hero .hero-dark-overlay-svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.worldwide-section {
    background-color: #faf9f6;
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}


#contact-hero .hero-content-col {
    position: relative;
    z-index: 3;
    padding: 20px 7%;
    min-height: 580px;
}

#contact-hero .hero-content-inner {
    max-width: 500px;
    width: 100%;
}

#contact-hero .hero-subtitle-contact {
    color: #eb3170;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    MARGIN-LEFT: 5PX;

}

#contact-hero .hero-title-contact {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

#contact-hero .highlight-gold {
    color: #eb3170;
}

#contact-hero .hero-divider-contact {
    width: 50px;
    height: 3px;
    background-color: #eb3170;
    margin-bottom: 2rem;
}

#contact-hero .hero-desc-contact {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

#contact-hero .contact-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#contact-hero .feature-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #eb3170;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eb3170;
    font-size: 1.3rem;
    background-color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#contact-hero .feature-icon-circle {
    border-color: var(--accent);
    color: var(--accent);
}

#contact-hero .contact-feature-card:hover .feature-icon-circle {
    background-color: #eb3170;
    color: #0a1c2a;
    transform: translateY(-2px);
}

#contact-hero .feature-text {
    display: flex;
    flex-direction: column;
}

#contact-hero .feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

#contact-hero .feature-desc {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    #contact-hero {
        background-color: #0a1c2a;
    }

    #contact-hero .hero-content-col {
        padding: 80px 5%;
        min-height: auto;
        background-color: #0a1c2a;
    }

    #contact-hero .hero-image-col {
        height: auto;
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
    }

    #contact-hero .hero-title-contact {
        font-size: 2.8rem;
    }
}

@media (max-width: 575px) {
    #contact-hero .hero-content-col {
        padding: 10px 4%;
    }

    #story.section-padding-1.bg-white.pt-5,
    .mb-5 {
        padding-top: 5px !important;
    }

    #contact-hero .hero-title-contact {
        font-size: 2.2rem;
    }
}



#contact-form-section .info-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    background-color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#contact-form-section .contact-info-item:hover .info-icon-circle {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

#contact-form-section .form-control,
#contact-form-section .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

#contact-form-section .form-control:focus,
#contact-form-section .form-select:focus {
    border-color: var(--accent);
    box-shadow: none;
}

#contact-form-section .dot-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(rgba(235, 49, 112, 0.15) 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 0;
    pointer-events: none;
}

/* Partner Card Hover Effect */
.partner-card {
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--accent) !important;
}

.partner-card .partner-icon i {
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon i {
    transform: scale(1.15);
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* Hero Section */
.about-hero {
    min-height: 500px;
}

.about-hero-content {
    max-width: 600px;
    margin-left: auto;
}

.hero-divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border: none;
    opacity: 1;
}

/* Values Section */
.about-values-section {
    position: relative;
    overflow: hidden;
}

/* Journey Timeline */
.journey-timeline-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(235, 49, 112, 0.3);
    z-index: -1;
}

.journey-node .journey-icon-circle {
    transition: var(--transition);
}

.journey-node:hover .journey-icon-circle {
    background-color: var(--accent) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Why Partner Features */
.about-feature-card {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--accent) !important;
}

.about-feature-card i {
    transition: var(--transition);
}

.about-feature-card:hover i {
    transform: scale(1.1);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero-content {
        padding: 3rem 1.5rem !important;
        margin-left: 0;
    }

    .about-hero-right {
        height: 300px;
    }

    .about-hero-right img {
        min-height: auto !important;
    }

    .about-stats-box {
        margin-top: 1px !important;
        width: 100% !important;
    }

    .border-end-lg {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .journey-timeline-row::before {
        display: none;
    }

    .journey-node {
        position: relative;
    }

    .journey-node::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background-color: rgba(235, 49, 112, 0.3);
    }

    .journey-node:last-child::after {
        display: none;
    }
}

/* ==========================================================================
   CONTACT US HERO BANNER
   ========================================================================== */
#contact-hero {
    min-height: 480px;
    background-color: var(--primary);
    position: relative;
}

@media (min-width: 992px) {
    #contact-hero {
        min-height: 580px;
        display: flex;
        align-items: center;
    }
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-dark-overlay-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#contact-hero .container-fluid {
    width: 100%;
}

@media (min-width: 992px) {
    #contact-hero .container-fluid {
        min-height: auto;
        height: auto;
    }
}

#contact-hero .row {
    height: 100%;
}

.hero-content-col {
    padding-left: 8%;
}

.hero-content-inner {
    max-width: 550px;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .hero-content-col {
        padding-left: calc((100% - 960px) / 2 + 15px) !important;
    }
    .hero-content-inner {
        max-width: 480px;
    }
}

@media (min-width: 1200px) {
    .hero-content-col {
                padding-left: calc((96% - 1176px) / 1 + 0px) !important;
    }
}

@media (min-width: 1400px) {
    .hero-content-col {
        padding-left: calc((100% - 1320px) / 2 + 15px) !important;
    }
}

.hero-subtitle-contact {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title-contact {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

#contact-hero .highlight-gold {
    color: #ffffff !important;
}

.highlight-gold {
    color: #c8933a;
}

.hero-divider-contact {
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-desc-contact {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.contact-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon-circle {
    width: 45px;
    height: 45px;
    border: 1.5px solid #c8933a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8933a;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.feature-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    #contact-hero {
        background-color: var(--primary);
        min-height: auto;
    }

    .hero-content-col {
        padding: 3rem 1.5rem;
    }

    .hero-content-inner {
        max-width: 100%;
    }

    .hero-image-col {
        height: 300px;
    }
}

.Bluid-clr {
    background: linear-gradient(93deg, var(--primary, #0a1c2a) 25%, var(--primary, #0a1c2a) 100%, transparent 78.2%, transparent 100%);
    padding: 40px;
    border-radius: 10px;
}

.white {
    color: #fff;
}

.Bluid-clr h5,
.text-muted {
    color: #fff !important;
}

.about-stats-box {
    margin-top: -0px;
    z-index: 10;
    width: 100%;
    background: linear-gradient(93deg, var(--primary, #0a1c2a) 25%, var(--primary, #0a1c2a) 100%, transparent 78.2%, transparent 100%);
    border-top: 1.5px solid var(--accent);
}



@media (max-width: 1365px) {}

/* ==========================================================================
   MISSION & VISION SECTION
   ========================================================================== */
.mission-vission {
    background-color: var(--cream);
    position: relative;
}

.mv-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.0rem 1.5rem;
    box-shadow: 0 10px 30px rgba(10, 28, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
    border-top: 4px solid transparent;
}

@media (min-width: 768px) {
    .mv-card {
        /* padding: 3.5rem 3rem; */
    }

 
}

.mv-card.border-top-accent {
    border-top-color: var(--accent);
}

.mv-card.border-top-gold {
    border-top-color: #c8933a;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 28, 42, 0.08);
}

.mv-icon-circle {
    width: 65px;
    height: 65px;
    background-color: rgba(235, 49, 112, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}

/* .mv-card:hover .mv-icon-circle {
    background-color: var(--accent);
} */

.mv-card:hover .mv-icon-circle i {
    color: #ffffff !important;
}

.mv-icon-circle-gold {
    width: 65px;
    height: 65px;
    background-color: rgba(200, 147, 58, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}

.mv-card:hover .mv-icon-circle-gold {
    background-color: #c8933a;
}

.mv-card:hover .mv-icon-circle-gold i {
    color: #ffffff !important;
}

.text-gold {
    color: #c8933a !important;
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.mv-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ==========================================================================
   WHAT WE DO SECTION
   ========================================================================== */
.what-we {
    position: relative;
}

.wwd-card {
    border: 1px solid rgba(10, 28, 42, 0.08) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.wwd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 28, 42, 0.06) !important;
    border-color: rgba(235, 49, 112, 0.2) !important;
}

.wwd-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(235, 49, 112, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.wwd-card:hover .wwd-icon-box {
    background-color: var(--accent);
}

.wwd-card:hover .wwd-icon-box i {
    color: #ffffff !important;
}

.wwd-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.wwd-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   INDUSTRY SWIPER AUTO-SLIDER
   ========================================================================== */
.industry-swiper-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0;
}

/* Gradient fade masks on the edges for a premium slider feel */
.industry-swiper-container::before,
.industry-swiper-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120px;
    z-index: 2;
    top: 0;
    pointer-events: none;
}

.industry-swiper-container::before {
    left: 0;
       background: linear-gradient(to right, var(--cream) 0%, rgba(250, 273, 100, 0) 29%);
}

.industry-swiper-container::after {
    right: 0;
    background: linear-gradient(to left, var(--cream) 0%, rgba(250, 249, 246, 0) 100%);
}

.industry-swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
}

.industry-slide-wrapper {
    width: 250px;
    max-width: 80%;
    flex-shrink: 0;
}

.industry-slide-wrapper .industry-card {
    border-radius: 12px;
}

.py-60 {
    padding: 30px 0;
}

/* Categories Swiper Continuous Auto Slider (matching Industry section) */
.categories-swiper-container {
    overflow: hidden;
    position: relative;
}

.categories-swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
}

.category-slide-wrapper {
    width: 230px;
    max-width: 80%;
    flex-shrink: 0;
}

/* Blog Swiper Continuous Auto Slider */
.blog-swiper-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.blog-swiper-container .swiper-wrapper {
    transition-timing-function: linear !important;
}
.blog-slide-wrapper {
    width: 450px;
    max-width: 90%;
    flex-shrink: 0;
}
.blog-slide-wrapper .blog-card {
    height: 100%;
    margin-bottom: 0;
}
/* =========================================
   PROCESS SECTION
========================================= */

.process-section {
    width: 100%;
    padding: 90px 30px;
    background: #f8f6f2;
    overflow: hidden;
    box-sizing: border-box;
}

.process-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    align-items: center;
    gap: 35px;
}


/* =========================================
   COLUMNS
========================================= */

.process-column {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.process-item {
    position: relative;
    min-height: 105px;

    display: flex;
    align-items: center;
    gap: 18px;
}


/* =========================================
   LEFT SIDE
========================================= */

.process-left .process-item {
    justify-content: flex-end;
    text-align: right;
}

.process-left .process-content {
    max-width: 310px;
}


/* =========================================
   RIGHT SIDE
========================================= */

.process-right .process-content {
    max-width: 310px;
}


/* =========================================
   HEADINGS
========================================= */

.process-content h3 {
    margin: 0 0 8px;



    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;

    color: #eb3170;

    letter-spacing: 0.6px;
}

.process-content p {
    margin: 0;

  

    font-size: 14px;
    line-height: 1.55;

    color: #66605a;
}


/* =========================================
   NUMBER CIRCLE
========================================= */

.process-number {
    flex: 0 0 82px;

    width: 82px;
    height: 82px;

    border-radius: 50%;

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

    background: #ffffff;

    border: 1px solid #eb3170;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06),
        inset 0 0 0 7px #f3eee8;

    color: #eb3170;

    font-family: Arial, Helvetica, sans-serif;

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

    position: relative;
    z-index: 3;

    transition: all 0.3s ease;
}


/* =========================================
   CENTER
========================================= */

.process-center {
    position: relative;

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

    min-height: 500px;
}


/* =========================================
   CENTER CIRCLE
========================================= */

.center-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle,
            #ffffff 0%,
            #f8f5f0 65%,
            #eee7dd 100%
        );
    border: 1px solid #eb3170;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.09);

    position: relative;

    z-index: 2;
}


/* =========================================
   CENTER DECORATIVE RING
========================================= */

.center-circle::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    border: 1px dashed #b9a58c;
}


/* =========================================
   CENTER TEXT
========================================= */

.center-inner {
    position: relative;
    z-index: 3;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
}

.center-inner span {
    display: block;

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

    letter-spacing: 5px;

    color: #77716a;

    margin-bottom: 8px;
}

.center-inner strong {
    display: block;

    font-size: 32px;
    line-height: 1;

    color: #1f1f1f;

    letter-spacing: 2px;
}


/* =========================================
   DOTTED CONNECTION LINES
========================================= */

.process-left .process-item::after {
    content: "";

    position: absolute;

    right: -70px;
    top: 50%;

    width: 70px;

    border-top: 1px dashed #eb3170;

    transform: translateY(-50%);
}

.process-right .process-item::before {
    content: "";

    position: absolute;

    left: -70px;
    top: 50%;

    width: 70px;

    border-top: 1px dashed #eb3170;

    transform: translateY(-50%);
}


/* =========================================
   CONNECTION DOTS
========================================= */

.process-left .process-item::before {
    content: "";

    position: absolute;

    right: -74px;
    top: calc(50% - 3px);

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #eb3170;

    z-index: 5;
}

.process-right .process-item::after {
    content: "";

    position: absolute;

    left: -74px;
    top: calc(50% - 3px);

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #eb3170;

    z-index: 5;
}


/* =========================================
   HOVER
========================================= */

.process-item {
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-3px);
}

.process-item:hover .process-number {
    background: #1f1f1f;
    color: #ffffff;
    border-color: #eb3170;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .process-container {
        grid-template-columns: 1fr 220px 1fr;
        gap: 15px;
    }

    .process-center {
        min-height: 480px;
    }

    .center-circle {
        width: 210px;
        height: 210px;
    }

    .center-circle::before {
        width: 175px;
        height: 175px;
    }

    .center-inner strong {
        font-size: 27px;
    }

    .process-left .process-item::after {
        right: -35px;
        width: 35px;
    }

    .process-right .process-item::before {
        left: -35px;
        width: 35px;
    }

    .process-left .process-item::before {
        right: -39px;
    }

    .process-right .process-item::after {
        left: -39px;
    }

    .process-number {
        width: 65px;
        height: 65px;

        flex-basis: 65px;

        font-size: 18px;
    }

    .process-content h3 {
        font-size: 15px;
    }

    .process-content p {
        font-size: 13px;
    }
}


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

@media (max-width: 767px) {

    .process-section {
        padding: 60px 20px;
    }

    .process-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .process-center {
        order: 1;

        min-height: auto;
        width: 100%;
    }

    .process-left {
        order: 2;
    }

    .process-right {
        order: 3;
    }

    .center-circle {
        width: 190px;
        height: 190px;
    }

    .center-circle::before {
        width: 158px;
        height: 158px;
    }

    .center-inner strong {
        font-size: 25px;
    }

    .process-column {
        width: 100%;
        gap: 25px;
    }

    .process-item {
        width: 100%;
        min-height: auto;

        justify-content: flex-start !important;
        text-align: left !important;
    }

    .process-left .process-content,
    .process-right .process-content {
        max-width: none;
        order: 2;
    }

    .process-number {
        order: 1;

        width: 65px;
        height: 65px;

        flex-basis: 65px;

        font-size: 17px;
    }

    .process-left .process-item::before,
    .process-left .process-item::after,
    .process-right .process-item::before,
    .process-right .process-item::after {
        display: none;
    }

    .process-content h3 {
        font-size: 16px;
    }

    .process-content p {
        font-size: 13px;
    }
}





@media (max-width: 576px) {
    .blog-slide-wrapper {
        width: 320px;
    }
}

.card.partner-card .card-text.text-muted {
    color: gray !important;
}

/* Products Dropdown Hover Effect (Desktop only) */
@media (min-width: 992px) {
    .main-nav .navbar-nav .nav-item.dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        margin-top: 0;
        pointer-events: none;
    }

    .main-nav .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Elegant rotating caret animation on hover */
    .main-nav .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .main-nav .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}
