/* Header Styles */
.topbar {
    background: var(--topbar-bg);
    color: var(--white);
    padding: 0;
    font-size: 14px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-info {
    display: flex;
    gap: 30px;
    margin-left: 150px;
    /* Aligned with Logo/Header Content */
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.topbar-item i {
    color: var(--primary);
}

.topbar-socials {
    background: var(--primary);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px 0 70px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.topbar-socials i {
    color: var(--white);
    cursor: pointer;
    transition: opacity 0.3s;
}

.topbar-socials i:hover {
    opacity: 0.7;
}

.header {
    height: var(--nav-height);
    background: var(--white);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    /* Higher priority */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 17px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #fff;
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #f1f5f9;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--secondary) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: var(--primary) !important;
    padding-left: 30px;
}

/* Sub-Dropdown Menu */
.sub-dropdown {
    position: relative;
}

.sub-dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.sub-dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.sub-dropdown-content {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid #f1f5f9;
    margin-left: 10px;
}

.sub-dropdown:hover .sub-dropdown-content {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}

.sub-dropdown:hover .sub-dropdown-toggle i {
    transform: translateX(5px);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--secondary);
    cursor: pointer;
    z-index: 3000;
    padding: 10px;
    min-width: 44px;
    /* Apple/Google accessibility standard */
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-only-btn {
    display: none !important;
}

.mobile-nav-toggle .close-icon {
    display: none;
}

.mobile-nav-toggle.active .bar-icon {
    display: none;
}

.mobile-nav-toggle.active .close-icon {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        /* Start below the header */
        left: 0;
        width: 100%;
        max-height: 70vh;
        /* Lower height as requested */
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 12px;
        z-index: 9999;
        overflow-y: auto;
        display: flex !important;
        transform: translateY(-120%);
        /* Hidden above */
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 40px rgba(9, 18, 44, 0.1);
        border-bottom: 4px solid var(--primary);
    }

    .header .nav-links.active {
        transform: translateY(0) !important;
    }

    /* Premium Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        /* Much lighter as requested */
        z-index: 1500;
        /* BELOW the header (2000) and menu */
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    .nav-links a.active {
        color: var(--primary);
        font-weight: 700;
    }

    /* Products Icon Rotation */
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        transform: rotate(0deg) !important;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }

    .nav-links a {
        font-size: 19px;
        width: 100%;
        text-align: center;
        /* Centered for top-down */
        position: relative;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        color: var(--secondary);
    }

    .nav-links a.active {
        color: var(--primary);
        font-weight: 700;
    }

    .nav-links a::after {
        display: none !important;
        /* Remove blue underline on mobile */
    }

    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        gap: 10px;
        transition: color 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
        /* Icon reverts when not active */
    }

    .dropdown.active .dropdown-toggle {
        color: var(--primary);
    }

    .dropdown-content {
        position: static;
        width: 100%;
        max-width: 100%;
        /* Full width for left-alignment */
        margin: 10px 0 0;
        background: #f8fafc;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        text-align: center;
        /* Centered per user request "cmter pelse" */
        border: 1px solid rgba(0, 0, 0, 0.05);
        transform: none !important;
        left: auto !important;
        padding: 0;
    }

    .dropdown.active .dropdown-content {
        max-height: 800px;
        /* Increased to allow sub-dropdowns */
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .dropdown-content a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        color: var(--secondary);
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    /* Mobile Sub-Dropdown */
    .sub-dropdown {
        width: 100%;
    }

    .sub-dropdown-toggle {
        display: flex !important;
        justify-content: center !important;
        /* Force centering */
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 12px 20px !important;
        text-align: center !important;
    }

    .sub-dropdown-toggle i {
        transform: rotate(90deg);
        margin: 0;
    }

    .sub-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.03);
        /* Subtle contrast */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        margin-left: 0;
        transform: none !important;
        text-align: center;
        /* Centered */
    }

    .sub-dropdown.active .sub-dropdown-content {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
        margin-top: 5px;
    }

    .sub-dropdown.active .sub-dropdown-toggle i {
        transform: rotate(270deg);
    }

    .sub-dropdown-content a {
        padding: 10px 20px !important;
        font-size: 15px !important;
        text-align: center;
    }

    .mobile-only-btn {
        display: flex !important;
        width: 100%;
        margin-top: 10px;
    }

    .desktop-only-btn {
        display: none !important;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-height));
    min-height: 800px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 80px 0;
    /* Responsive shifted look: -500px on ultra-wide, reducing on laptop sizes */
    margin-left: clamp(-500px, calc(-500px + (1700px - 100vw) * 1.5), 0px);
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 18px;
    /* Balanced tagline */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateX(-4px);
    /* Minor adjustment to align // with logo edge */
}

.hero-tagline span {
    color: var(--primary);
    font-weight: 900;
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.8rem);
    /* Refined "perfect small" headline size */
    line-height: 1;
    margin-bottom: 35px;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    /* Balanced descriptive text */
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Service Ticker */
/* Service Ticker (Flow based, shown after scroll) */
.ticker-wrap {
    position: relative;
    width: 100%;
    background: var(--primary);
    padding: 24px 0;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrap.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 50s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
}

.ticker-icon {
    font-size: 28px;
    opacity: 1;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        margin-left: 0;
    }

    .topbar-info {
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }


}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ticker-item {
        font-size: 18px;
        padding: 0 30px;
    }
}

.products-section {
    padding-top: 100px;
    padding-bottom: 120px;
    background: #fdfdfd;
}

.products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(20px, 3vw, 44px);
    margin-bottom: 46px;
    position: relative;
    z-index: 1;
    margin-left: 10px;
    text-align: left;
}

.products-section .header-content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 980px;
    padding-left: clamp(0px, 1vw, 12px);
}

.products-section .section-tagline {
    justify-content: flex-start;
    text-align: left;
}

.products-section .section-header h2 {
    text-align: left;
    max-width: 980px;
    text-wrap: balance;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-left: 30px;
}

.carousel-nav {
    display: none;
}

.section-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.section-tagline span {
    color: var(--primary);
    font-weight: 800;
}

.section-header h2 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    color: var(--secondary);
    line-height: 1.15;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.text-primary {
    color: var(--primary);
}

.products-container {
    overflow: hidden;
    padding: 20px 0;
}

.products-track {
    display: flex;
    /* Flex for carousel on desktop */
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Product Card Styling */
.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.product-image-box {
    width: 100%;
    height: 300px;
    background: #f1f3f6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
    padding: 0;
}

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

.product-card:hover .product-image-box img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.learn-more {
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: color 0.3s;
}

.product-card.featured .learn-more {
    color: var(--primary);
}

.product-card:hover .learn-more {
    color: var(--primary);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.products-section .header-action {
    flex: 0 0 auto;
    align-self: center;
    margin-left: auto;
    margin-top: 0;
    width: auto;
    padding-left: 0;
    justify-content: flex-end;
}

.products-section .header-action .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: transparent;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.products-container.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

/* Carousel / Responsive Logic */
@media (max-width: 1400px) {
    .products-section .section-header {
        gap: 28px;
        margin-left: 0;
    }

    .products-section .header-content {
        max-width: 900px;
        padding-left: 8px;
    }
}

@media (max-width: 1100px) {
    .products-section .section-header {
        flex-direction: column;
        row-gap: 0;
        gap: 20px;
        align-items: start;
        margin-left: 0;
    }

    .products-section .header-content {
        padding-left: 0;
        max-width: 100%;
    }

    .products-section .header-action {
        margin-left: 0;
        justify-content: flex-start;
        align-self: flex-start;
    }
}

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

@media (max-width: 768px) {
    .products-section .section-header {
        row-gap: 0;
        gap: 16px;
        align-items: start;
    }

    .products-section .header-content {
        padding-left: 0;
    }

    .products-section .header-action {
        justify-self: start;
        width: auto;
        padding-left: 0;
        margin-left: 0;
        justify-content: flex-start;
    }

    .carousel-nav {
        display: flex;
        gap: 12px;
    }

    .products-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-padding: 0 7.5vw;
    }

    .products-container::-webkit-scrollbar {
        display: none;
    }

    .products-track {
        display: flex;
        gap: 20px;
        width: fit-content;
        padding: 0 7.5vw;
    }

    .product-card {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

/* Industries Process Flow Section */
.industries-section {
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    /* Ensure visible section bg */
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    /* Reduced top gap */
    padding-bottom: 0;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
    margin-top: 40px;
}

.process-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-visual {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.icon-wrap {
    width: 110px;
    height: 110px;
    background: #4477ff;
    /* Exact blue from screenshot */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
    border: 8px solid var(--white);
    box-shadow: 0 0 0 1px #e2e8f0;
}

.process-item:hover .icon-wrap {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(68, 119, 255, 0.2);
}

.step-number {
    position: absolute;
    top: 10px;
    right: calc(50% - 65px);
    width: 32px;
    height: 32px;
    background: #0f172a;
    /* Dark badge from screenshot */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 20;
    border: 2px solid var(--white);
}

.connecting-line {
    position: absolute;
    top: 50%;
    left: calc(50% + 55px);
    width: calc(100% - 110px);
    height: 1.5px;
    background: #0f172a;
    /* Dark line from screenshot */
    z-index: 1;
}

.process-info h3 {
    font-size: 19px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.process-info p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Bottom Process Ticker (Same as screenshot blue bar) */
.process-ticker {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #4477ff;
    padding: 30px 0;
    display: flex;
    overflow: hidden;
}

.ticker-slide {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: ticker-slide 30s linear infinite;
    padding-left: 60px;
}

.ticker-slide span {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.ticker-slide i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Response for Industries */
@media (max-width: 1024px) {
    .process-flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        margin-bottom: 60px;
    }

    .process-item {
        width: 100%;
    }

    .connecting-line {
        display: none;
    }

    .icon-wrap {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }

    .step-number {
        right: calc(50% - 55px);
    }
}

/* Why Choose Us Section (Dark Theme) */
.trust-section {
    background: #05123d;
    /* Professional Dark Navy */
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 80px 0;
    /* Reduced from 120px */
}

.trust-ghost {
    display: none;
    /* Remove ghost text in Why Choose Us */
}

.trust-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    /* Reduced from 70px */
    position: relative;
    z-index: 2;
}

.trust-header-left {
    text-align: left;
    align-items: flex-start;
}

.trust-header-left .section-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.trust-header-left .section-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced columns for more width */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-image-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    width: 90%;
    /* Fill the column width */
}

/* Play button removed as requested */

.trust-image-box img {
    width: 100%;
    height: 420px;
    /* User's preferred height */
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.trust-image-box:hover img {
    transform: scale(1.08);
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    /* Tighter gap */
    padding-left: 10px;
}

.trust-feature-card {
    display: flex;
    flex-direction: column;
}

.trust-icon {
    width: 40px;
    /* Slightly smaller */
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 36px;
    /* Slightly smaller */
    color: #4477ff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.trust-feature-card:hover .trust-icon {
    transform: scale(1.1);
    color: var(--primary);
}

.trust-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.trust-info p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.btn-pill {
    border-radius: 50px;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(68, 119, 255, 0.2);
}

/* Responsive for Trust section */
@media (max-width: 1024px) {
    .trust-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trust-header-left {
        width: 100%;
        text-align: left;
    }

    .trust-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-left: 0;
    }

    .trust-header-right {
        align-self: flex-start;
    }

    .trust-image-box {
        width: min(100%, 640px);
        margin: 0 auto;
    }

    .trust-image-box img {
        height: 300px;
        /* Perfect small height for tablets/mobile */
    }
}

@media (max-width: 768px) {
    .trust-header-left .section-tagline {
        justify-content: flex-start;
    }

    .trust-header-left .section-title {
        text-align: left;
    }

    .trust-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding-left: 0;
        align-items: stretch;
    }

    .trust-feature-card {
        display: block;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 12px;
        padding: 12px 10px;
        text-align: left;
        height: 100%;
    }

    .trust-icon {
        font-size: 22px;
        width: 28px;
        height: 28px;
        margin-bottom: 10px;
    }

    .trust-info h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .trust-info p {
        font-size: 12px;
        line-height: 1.4;
    }

    .trust-ghost {
        font-size: 8rem;
    }

    .trust-image-box img {
        height: 250px;
        /* Even smaller for phone screens */
    }
}

@media (max-width: 480px) {
    .trust-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .trust-feature-card {
        padding: 10px 8px;
    }

    .trust-info h3 {
        font-size: 14px;
        line-height: 1.25;
    }

    .trust-info p {
        font-size: 11px;
        line-height: 1.35;
    }
}

/* Brands / Trusted Partners Marquee */
.brands-marquee {
    background: var(--primary);
    /* Matching Header Ticker Perfect Blue */
    padding: 26px 0;
    /* Matches Top Ticker Height Exactly */
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-ticker {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    gap: 120px;
    animation: brandsScroll 60s linear infinite;
    /* Slower for better readability */
    align-items: center;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item img {
    max-width: 190px;
    height: auto;
    filter: grayscale(1) brightness(0) invert(1) contrast(1.45) saturate(0);
    /* Pure white logos (no gray cast) */
    opacity: 1;
    transition: transform 0.25s ease, filter 0.25s ease;
    cursor: pointer;
}

/* IndiaMART logo needs softer contrast to avoid detail loss in white mode */
.brand-item img[src$="1.png"] {
    filter: grayscale(1) brightness(0) invert(1) contrast(1.28) saturate(0) drop-shadow(0 0 0.6px rgba(255, 255, 255, 1));
}

.brand-item:hover img {
    filter: none;
    /* Show original logo colors on hover */
    transform: scale(1.06);
}

@keyframes brandsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-33.33% - 40px));
    }

    /* Perfect loop for tripled set */
}

@media (max-width: 768px) {
    .brands-marquee {
        padding: 35px 0;
    }

    .brand-item img {
        max-width: 150px;
    }

    .brands-track {
        gap: 80px;
    }
}

/* Contact Quote Section */
.contact-quote-section {
    background: #f5f5f5;
    /* Match product section white background */
    padding: 74px 0 64px;
}

.contact-quote-wrap {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-info-panel {
    background: radial-gradient(circle at top right, #12215b 0%, #091947 45%, #07153e 100%);
    border-radius: 20px;
    padding: 28px 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 610px;
}

.contact-info-block h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-block {
    margin-bottom: 22px;
}

.contact-info-block p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #3b82f6;
    font-size: 17px;
}

.contact-form-panel {
    position: relative;
}

.contact-form-header {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-form-header h2 {
    font-size: clamp(2.1rem, 3.3vw, 3.7rem);
    line-height: 1.1;
    color: #0c1840;
    margin-bottom: 22px;
    text-align: left;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 22px;
}

.contact-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-grid label span {
    font-size: 17px;
    font-weight: 600;
    color: #1d2749;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    border: 1px solid #d8dce5;
    background: #f2f3f5;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 20px;
    color: #3d4560;
    outline: none;
}

.contact-form-grid textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form-grid .full-width {
    grid-column: 1 / -1;
}

.contact-submit-btn {
    padding: 14px 34px;
    font-size: 20px;
    font-weight: 600;
}

/* Bottom marquee copied from first ticker style */
.bottom-service-marquee {
    position: relative;
    width: 100%;
    background: var(--primary);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
}

.bottom-marquee-track {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
    animation: bottomMarquee 120s linear infinite;
    /* Match first home marquee speed */
}

@keyframes bottomMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 1200px) {
    .contact-quote-wrap {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-quote-section {
        padding: 48px 0 40px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-block h3 {
        font-size: 28px;
    }

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

    .contact-form-grid label span {
        font-size: 16px;
    }

    .contact-form-grid input,
    .contact-form-grid select,
    .contact-form-grid textarea {
        font-size: 16px;
    }

    .contact-submit-btn {
        font-size: 16px;
        width: 100% !important;
        min-width: unset !important;
        padding: 14px 20px;
        display: flex !important;
    }
}

/* Testimonials */
.testimonials-section {
    background: #05123d;
    /* Match Why Choose Us background */
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.testimonials-ghost {
    display: none;
    /* Remove ghost text */
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonials-header .section-tagline {
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-header h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.15;
    max-width: 760px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 12px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.07) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 145, 255, 0.55);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-rating span {
    color: #8fb5ff;
    background: rgba(143, 181, 255, 0.16);
    border: 1px solid rgba(143, 181, 255, 0.35);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.testimonial-card h3 {
    font-size: 31px;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #3b82f6;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* Team */
.team-section {
    background: #fdfdfd;
    padding-top: 80px;
    padding-bottom: 100px;
}

.team-header {
    margin-left: 0;
}

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

.team-card {
    background: #fff;
    border: 1px solid #e7ebf3;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.team-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 40px;
    background: #e8f0ff;
    color: #2d66e8;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-card h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 4px;
}

.team-role {
    color: #2d66e8;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 1100px) {

    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 56px 0 40px;
        min-height: auto;
    }

    .testimonials-grid {
        gap: 14px;
    }

    .testimonial-card {
        padding: 18px;
        border-radius: 16px;
    }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-rating span {
        padding: 5px 10px;
        font-size: 12px;
    }

    .testimonial-card h3 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .testimonial-author {
        margin-top: 14px;
        align-items: flex-start;
        gap: 10px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .testimonial-author strong {
        font-size: 15px;
        line-height: 1.35;
    }

    .testimonial-author span {
        font-size: 13px;
        line-height: 1.35;
    }

    .team-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0 34px;
    }

    .testimonials-grid {
        gap: 12px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-card h3 {
        font-size: 22px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Footer */
.site-footer {
    background: #060c29;
    /* Deep premium blue */
    color: #dbe5ff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    padding: 70px 0 52px;
}

.footer-brand {
    margin-right: 0;
}

.footer-logo img {
    width: 220px;
    height: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    color: rgba(219, 229, 255, 0.8);
    font-size: 15px;
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(219, 229, 255, 0.86);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: #7fb1ff;
}

.footer-certs {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.footer-certs img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    filter: brightness(0) invert(1) contrast(1.1);
    opacity: 0.95;
}

.footer-bottom {
    background: #071d53;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p,
.footer-links a {
    color: #fff;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 50px 0 38px;
    }

    .footer-logo img {
        width: 190px;
    }

    .footer-certs {
        justify-content: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Inner Pages Shared Styles */
.inner-hero {
    position: relative;
    height: 40vh;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/hero_bg.png') no-repeat center center / cover;
    color: #fff;
    text-align: center;
}

.get-in-touch {
    background: url('../assets/get_in_touch.png') no-repeat center center / cover;
}

.about-us-hero {
    background: url('../assets/who_we_are.png') no-repeat center center / cover;
}

.our-product-hero {
    background: url('../assets/our_product.png') no-repeat center center / cover;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
    /* Professional Dark Blue Overlay */
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.breadcrumbs {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
    color: var(--primary);
}

.breadcrumbs span {
    margin: 0 10px;
    opacity: 0.5;
}

.content-section {
    background: #fdfdfd;
    padding: 70px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.content-grid h2 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 12px;
}

.content-grid p {
    color: #475569;
    margin-bottom: 14px;
    line-height: 1.75;
}

.products-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-list-card {
    background: #fff;
    border: 1px solid #e6ebf4;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    color: inherit;
}

.product-list-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-list-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
}

.product-list-card p {
    color: #64748b;
    font-size: 15px;
}

/* eCommerce Modern Gallery */
.product-gallery-modern {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.main-showcase {
    width: 100%;
    height: 520px;
    /* Bigger preview as requested */
    border-radius: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: background-image 0.25s ease-out, opacity 0.25s ease-out, transform 0.3s ease;
    will-change: background-image;
    transform: translateZ(0);
}

.main-showcase:hover {
    transform: scale(1.01);
}

.thumbnail-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.thumb-box {
    width: 80px;
    /* Smaller thumbnail boxes */
    height: 80px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f8fafc;
}

.thumb-box:hover,
.thumb-box.active {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: flex-start;
    /* Moved to top as requested */
    margin-bottom: 60px;
}

.product-detail-grid h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary);
    font-weight: 800;
}

.detail-list {
    margin: 20px 0 40px;
    padding-left: 0;
    list-style: none;
    color: #475569;
    line-height: 1.6;
    font-size: 17px;
}

.detail-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-weight: 500;
}

.detail-list li::before {
    content: "\f058";
    /* circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 19px;
    opacity: 0.9;
}

.product-detail-grid .btn-primary {
    padding: 18px 45px;
    font-size: 18px;
    letter-spacing: 0.5px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 116, 217, 0.15);
    transition: all 0.3s ease;
}

.product-detail-grid .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 116, 217, 0.25);
}

@media (max-width: 1200px) {
    .products-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .content-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 100px 0 60px;
    }

    .inner-hero p {
        font-size: 16px;
    }

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

    .product-detail-grid {
        gap: 30px;
    }

    .detail-list {
        font-size: 15px;
        line-height: 1.5;
    }

    .detail-list li {
        padding-left: 28px;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .detail-list li::before {
        font-size: 16px;
        top: 2px;
    }

    .main-showcase {
        height: 300px;
        border-radius: 20px;
    }

    .thumbnail-row {
        gap: 10px;
        flex-wrap: wrap;
        padding-bottom: 10px;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
    }

    .thumb-box {
        width: 65px;
        height: 65px;
        border-radius: 12px;
    }

    .section-header-centered {
        margin-bottom: 40px;
    }

    .section-header-centered h2 {
        font-size: 26px;
    }

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

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 20px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .detail-list {
        font-size: 14px;
        margin: 15px 0 30px;
    }

    .detail-list li {
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .detail-list li::before {
        font-size: 14px;
        top: 1px;
    }

    .product-detail-grid h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .contact-form-grid {
        gap: 16px 16px;
    }

    .contact-form-grid label span {
        font-size: 14px;
    }

    .contact-form-grid input,
    .contact-form-grid select,
    .contact-form-grid textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .contact-form-grid textarea {
        min-height: 120px;
    }

    .contact-submit-btn {
        width: 100%;
        min-width: unset !important;
        padding: 12px 16px;
        font-size: 14px;
    }

    .product-detail-grid .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }
}




.faq-page-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    /* More balanced padding */
}

.faq-page-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page-section .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
}

.faq-page-section .section-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

/* FAQ Accordion & Large Page Layout */
.faq-grid-large {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.faq-category {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-category h3 {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.faq-category h3 i {
    color: var(--primary);
}

.faq-accordion {
    width: 100%;
    margin: 0;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

/* Removed nested h3 from question to simplify markup in HTML */

.faq-question i {
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-question i.icon-minus {
    display: none;
}

.faq-item.active .faq-question i.icon-plus {
    display: none;
}

.faq-item.active .faq-question i.icon-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-answer p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testim-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testim-rating {
    color: #ffb300;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testim-text {
    font-size: 16px;
    color: #334155 !important;
    /* Ensure it is dark */
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testim-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testim-user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8fafc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testim-user-info h4 {
    font-size: 17px;
    color: var(--secondary);
    margin: 0;
    font-weight: 700;
}

.testim-user-info span {
    font-size: 13px;
    color: #94a3b8;
    display: block;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

/* Perfect Rounded Map Section */
.contact-map-centered-wrap {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-map-centered {
    max-width: 1600px;
    margin: 0 auto;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border: 3px solid #fff;
    position: relative;
    z-index: 1;
}

.contact-map-centered iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.1) contrast(1.1) brightness(1.05);
    /* Subtle premium filter */
}

@media (max-width: 1440px) {
    .contact-map-centered {
        margin: 0 40px;
    }
}

@media (max-width: 768px) {
    .contact-map-centered-wrap {
        padding: 60px 0;
    }

    .contact-map-centered {
        height: 400px;
        border-radius: 24px;
        margin: 0 20px;
        border-width: 4px;
    }
}

/* Premium About Intro Section */
.about-premium-intro {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-visuals {
    position: relative;
}

.img-grid-container {
    position: relative;
    width: 100%;
}

/* Decorative Blobs */
.deco-blob {
    position: absolute;
    z-index: 1;
}

.deco-blob-blue {
    top: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
    background: #3b82f6;
    border-radius: 60px 0 60px 60px;
    opacity: 0.9;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M44.5,-76.3C57.4,-69.5,67.5,-57.2,74.7,-43.6C81.9,-30.1,86.2,-15,84.7,-0.9C83.2,13.3,75.8,26.5,67.7,38.8C59.6,51.1,50.8,62.5,39.3,70.1C27.9,77.7,13.9,81.5,-0.6,82.5C-15.1,83.5,-30.2,81.8,-43.3,75.1C-56.4,68.4,-67.5,56.7,-74.6,43.3C-81.8,29.9,-85,14.9,-84.3,0.4C-83.6,-14.1,-79,-28.1,-71.4,-40.7C-63.7,-53.3,-53.1,-64.5,-40.5,-71.7C-27.9,-78.9,-13.9,-82,-0.2,-81.7C13.6,-81.4,27.2,-78.1,44.5,-76.3Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.deco-blob-dark {
    bottom: -30px;
    right: 20px;
    width: 280px;
    height: 240px;
    background: #0f172a;
    border-radius: 0 0 100px 0;
    z-index: 2;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 300px 300px;
    gap: 12px;
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
}

.img-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* slightly softer shadow */
    transition: transform 0.4s ease;
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    /* Prevents grid items from squishing below their content */
}

.img-top-left {
    grid-row: 1;
    grid-column: 1 / 4;
    /* Spans 3 of 5 cols => 60% */
    border-radius: 80px 4px 4px 4px;
}

.img-top-right {
    grid-row: 1;
    grid-column: 4 / 6;
    /* Spans 2 of 5 cols => 40% */
    border-radius: 4px 80px 4px 4px;
}

.img-bottom-left {
    grid-row: 2;
    grid-column: 1 / 3;
    /* Spans 2 of 5 cols => 40% */
    border-radius: 4px 4px 4px 80px;
    z-index: 2;
}

.img-bottom-right {
    grid-row: 2;
    grid-column: 3 / 6;
    /* Spans 3 of 5 cols => 60% */
    z-index: 4;
    border-radius: 4px 4px 80px 4px;
}

/* Precision SVG Stars - Positioned Left */
.deco-svg-star {
    position: absolute;
    color: var(--primary);
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.star-1 {
    bottom: 2%;
    left: -6%;
    width: 60px;
    height: 60px;
    color: #3b82f6;
    opacity: 0.8;
}

.star-2 {
    bottom: 12%;
    left: -12%;
    width: 35px;
    height: 35px;
    color: #60a5fa;
    opacity: 0.6;
}

.star-3 {
    bottom: -4%;
    left: 0%;
    width: 22px;
    height: 22px;
    color: #3b82f6;
    opacity: 0.9;
}

/* About Content */
.about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure left alignment */
}

.about-content .section-tagline {
    justify-content: flex-start;
    margin-bottom: 10px;
    color: var(--primary);
}

.main-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--secondary);
    font-weight: 800;
    margin-top: 20px;
}

/* Stats Refinement */
.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 30px 0;
}

.stat-card {
    flex: 1;
    text-align: left;
    padding: 0 15px;
}

.stat-card h3 {
    font-size: 42px;
    /* Polish: slightly bolder/larger numbers */
    color: var(--primary);
    margin-bottom: 2px;
    font-weight: 800;
}

.stat-sep {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
}

/* Founder Details */
.founder-info {
    margin-top: 30px;
}

.signature-font {
    font-family: 'Satisfy', cursive;
    font-size: 52px;
    color: var(--secondary);
    margin: 0;
    margin-bottom: -10px;
    display: block;
}

.founder-tag {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* Responsive Perfections */
@media (max-width: 1200px) {
    .about-intro-grid {
        gap: 60px;
    }

    .img-grid {
        grid-template-rows: 260px 260px;
    }
}

@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .about-visuals {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        align-items: center;
    }

    .about-content .section-tagline {
        justify-content: center;
    }

    .img-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        grid-template-rows: 240px 240px;
        gap: 12px;
        width: 100% !important;
        height: auto;
    }

    .img-top-left {
        border-radius: 60px 4px 4px 4px;
    }

    .img-top-right {
        border-radius: 4px 60px 4px 4px;
    }

    .img-bottom-left {
        border-radius: 4px 4px 4px 60px;
    }

    .img-bottom-right {
        border-radius: 4px 4px 60px 4px;
    }

    .about-stats {
        justify-content: center;
        margin-top: 30px;
    }

    .stat-card {
        padding: 0 10px;
    }

    .stat-sep {
        height: 30px;
    }

    .deco-svg-star {
        display: none;
    }

    /* Clean mobile view */

    .deco-blob {
        opacity: 0.1;
    }

    /* More subtle blobs on mobile */
}

@media (max-width: 576px) {
    .img-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        grid-template-rows: 160px 160px;
        gap: 8px;
        width: 100% !important;
    }

    .img-top-left {
        border-radius: 40px 4px 4px 4px;
    }

    .img-top-right {
        border-radius: 4px 40px 4px 4px;
    }

    .img-bottom-left {
        border-radius: 4px 4px 4px 40px;
    }

    .img-bottom-right {
        border-radius: 4px 4px 40px 4px;
    }

    .about-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 0;
        margin: 40px -15px;
    }

    .stat-card {
        flex: 0 0 50%;
        text-align: center;
        padding: 0 10px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .stat-sep {
        display: none;
    }

    .signature-font {
        font-size: 42px;
    }
}

/* Ticker Wrap Styling - Premium Blue */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary);
    padding: 25px 0;
    border: none;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ticker-icon {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 15px;
    font-size: 14px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Bottom Service Marquee - Matching Reference Image */
.bottom-service-marquee {
    background: var(--primary);
    padding: 30px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-marquee-track {
    display: flex;
    align-items: center;
    animation: marqueeScroll 80s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-icon {
    font-size: 16px;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ========================================
   VISION & MISSION SECTION (About Page)
   ======================================== */
.vision-mission-section {
    background-color: #f5f5f5;
    padding-top: 100px;
    padding-bottom: 150px;
    /* Extra padding to account for overlapping bar */
}

.vm-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.vm-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.vm-blob-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.vm-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin: 0;
    font-weight: 700;
}

.vm-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Image Container */
.vm-image-container {
    position: relative;
    border-radius: 24px;
}

.vm-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Overlapping Stats Bar */
.vm-stats-bar {
    position: absolute;
    bottom: -40px;
    left: 40px;
    right: 40px;
    background: #0a1128;
    /* Deep navy blue from screenshot */
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    padding: 35px 50px;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vm-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.vm-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.vm-stat h4 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.vm-stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .vm-cards-grid {
        grid-template-columns: 1fr;
    }

    .vm-stats-bar {
        left: 20px;
        right: 20px;
        flex-wrap: wrap;
        gap: 30px;
    }

    .vm-stat:not(:last-child)::after {
        display: none;
    }

    .vm-stat {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .vm-image-container {
        padding-bottom: 60px;
    }

    .vm-stats-bar {
        bottom: 0;
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .vision-mission-section {
        padding-bottom: 30px;
    }

    .vm-main-img {
        height: 350px;
    }

    .vm-stats-bar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: -40px;
        margin-left: 15px;
        margin-right: 15px;
        padding: 25px 15px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px 0;
        border-radius: 12px;
    }

    .vm-stat {
        width: 50%;
        text-align: center;
        padding: 0 5px;
        border-bottom: none;
    }

    .vm-stat h4 {
        font-size: 24px;
    }

    .vm-stat p {
        font-size: 13px;
    }
}

/* Products Page Enhancements */
.section-padding {
    padding: 100px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.section-header-centered .section-tagline {
    justify-content: center;
    margin-bottom: 16px;
}

.section-header-centered h2 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
}

.section-header-centered p {
    font-size: 19px;
    color: #64748b;
    line-height: 1.75;
}

.products-main-list {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 120px;
}

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

.product-list-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--primary);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(45, 102, 232, 0.35);
}

.product-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8fafc;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-weight: 700;
}

.product-info p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    transition: gap 0.3s ease;
}

.product-list-card:hover .view-details {
    gap: 12px;
}

/* Quality Section */
.products-quality {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.products-quality.section-padding {
    padding: 100px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.quality-features {
    display: grid;
    gap: 32px;
    margin-top: 44px;
}

.q-feat {
    display: flex;
    gap: 22px;
}

.q-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.q-feat h4 {
    font-size: 19px;
    margin-bottom: 6px;
    color: var(--secondary);
    font-weight: 700;
}

.q-feat p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.quality-visual {
    position: relative;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.quality-visual img {
    width: 85%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.experience-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 34px 44px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 24px 48px rgba(45, 102, 232, 0.45);
    z-index: 2;
}

.experience-card span {
    display: block;
    font-size: 48px;
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 4px;
}

.experience-card p {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Supply Chain Section */
.products-supply {
    background: linear-gradient(135deg, #09122c 0%, #050d24 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.supply-header {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supply-header .section-tagline {
    justify-content: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.supply-header .section-tagline span {
    color: var(--primary);
    opacity: 0.6;
}

.supply-header h2 {
    color: #fff;
}

.supply-header p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    margin: 0 auto;
}

.supply-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.supply-stat-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 50px 40px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.supply-stat-item:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.s-icon {
    width: 76px;
    height: 76px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 28px;
    box-shadow: 0 12px 24px rgba(45, 102, 232, 0.4);
}

.supply-stat-item h3 {
    font-size: 21px;
    margin-bottom: 14px;
    font-weight: 700;
}

.supply-stat-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.6;
}

/* Custom Solutions */
.custom-solutions-section.section-padding {
    padding: 80px 0;
    background: #fff;
}

.custom-card {
    background: #f8fafc;
    border-radius: 40px;
    display: flex;
    overflow: hidden;
    align-items: center;
    border: 1px solid #f1f5f9;
    height: 600px;
}

.custom-content {
    flex: 1.2;
    padding: 40px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

.custom-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.custom-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #22c55e;
    font-weight: 700;
    font-size: 16px;
}

.custom-visual {
    flex: 1;
    height: 100%;
}

.custom-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bulk CTA Banner */
.bulk-cta-section {
    padding-top: 60px;
    padding-bottom: 100px;
}

.bulk-cta-wrap {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 34px;
    padding: 48px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bulk-text h3 {
    font-size: 34px;
    margin-bottom: 12px;
    font-weight: 800;
}

.bulk-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    max-width: 620px;
    line-height: 1.6;
}

.bulk-btns {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.bulk-btns .btn {
    height: 56px;
    padding: 0 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.bulk-btns .btn-primary {
    border: 2px solid transparent;
    /* Match box model of outline btn */
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
    transform: translateY(-3px);
}

.bulk-btns .btn-primary:hover {
    transform: translateY(-3px);
}

/* Responsive for New Sections */
@media (max-width: 1200px) {
    .products-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-content {
        padding: 60px;
    }

    .custom-content h2 {
        font-size: 2.4rem;
    }

    .bulk-cta-wrap {
        padding: 50px 40px;
    }
}

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

    .custom-card {
        flex-direction: column !important;
        height: auto !important;
        border-radius: 24px !important;
    }

    .custom-visual {
        width: 100% !important;
        height: 280px !important;
        order: -1;
    }

    .custom-content {
        padding: 40px 20px !important;
    }

    .quality-visual {
        order: -1;
        padding-top: 0;
    }

    .bulk-cta-wrap {
        flex-direction: column;
        text-align: center;
    }

    .bulk-text p {
        margin: 0 auto;
    }

    .bulk-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .products-list-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .supply-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .supply-stat-item {
        padding: 50px 30px;
    }

    .custom-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .experience-card {
        padding: 15px 25px !important;
        left: 15px !important;
        right: 15px !important;
        bottom: -15px !important;
        border-radius: 12px !important;
    }

    .experience-card span {
        font-size: 28px !important;
    }

    .experience-card p {
        font-size: 12px !important;
        margin-top: 2px !important;
    }

    .bulk-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .bulk-btns .btn {
        width: 100%;
    }

    .supply-stat-item h3 {
        font-size: 24px;
    }
}

/* Legal Pages Styles */
.legal-section .legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 25px;
    margin-top: 50px;
    font-weight: 700;
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Team Section (Light Theme) */
.team-section {
    background: #f5f5f5;
    /* Light background */
    padding: 50px 0;
    /* Reduced from 100px */
    position: relative;
    overflow: hidden;
}

.team-ghost {
    display: none;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 50px */
    position: relative;
    z-index: 1;
}

.team-header .section-tagline {
    justify-content: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

.team-header h2 {
    color: var(--secondary);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 30px;
    /* Reduced from 40px */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(0, 116, 217, 0.1);
}

.team-role {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    width: fit-content;
}

.team-card h3 {
    color: var(--secondary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.team-card p {
    color: var(--text);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 25px;
    /* Reduced from 35px */
    flex-grow: 1;
}

.team-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    /* Reduced from 30px */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.team-info strong {
    display: block;
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 4px;
}

.team-info span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 35px;
    }
}


/* Form Submit Button States */
.contact-submit-btn {
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
}

.contact-submit-btn.loading {
    background-color: #64748b !important;
    border-color: #64748b !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.contact-submit-btn.success {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
}

.contact-submit-btn.error {
    background-color: #ef4444 !important;
    border-color: #ef4444 !important;
}

.contact-submit-btn i {
    font-size: 1.1em;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* ============================================================
   HOME PRODUCTS MOBILE MODERNIZATION (2x2 Grid)
   Moved to end to ensure cascading priority
   ============================================================ */
@media (max-width: 1024px) {

    /* Full-width container for products on mobile */
    .products-section .container {
        padding: 0 4px !important;
        max-width: 100% !important;
    }

    .products-container {
        overflow: hidden !important;
        width: 100% !important;
        padding: 0 4px !important;
        /* Minimized side gaps */
        margin: 0 auto !important;
        box-sizing: border-box !important;
        left: 0 !important;
    }

    .products-track {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        /* 4 columns for tablet */
        gap: 12px !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .product-card {
        padding: 10px !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03) !important;
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
        /* Prevent blowout */
    }

    .product-card p {
        display: none !important;
        /* Remove descriptions for clean mobile look */
    }

    .product-image-box {
        width: 100% !important;
        position: relative !important;
        height: 0 !important;
        padding-top: 100% !important;
        /* Guaranteed Perfect Square */
        background: #f1f3f6 !important;
        margin-bottom: 10px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .product-image-box img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .product-card h3 {
        font-size: clamp(14px, 4vw, 16px) !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .carousel-nav,
    .carousel-btn {
        display: none !important;
    }

    .learn-more {
        font-size: 13px !important;
        margin-top: auto !important;
        justify-content: center !important;
    }

    /* Centered Header for Mobile Grid */
    .section-header,
    .products-section .section-header {
        margin: 0 auto 25px !important;
        padding: 0 8px !important;
        /* Match container padding */
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .header-content h2 {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.1 !important;
        text-align: center !important;
        margin: 10px auto 0 !important;
    }

    .section-tagline {
        justify-content: center !important;
        width: 100% !important;
    }

    .header-action {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* Why Choose Us - Reverted to Left Align per user request */
    .trust-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 20px !important;
    }

    .trust-header-left,
    .trust-header-right {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .trust-header-left .section-title {
        text-align: left !important;
        margin: 10px 0 0 !important;
    }

    .trust-section .section-tagline {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    /* Keep Industries Centered if it was originally */
    .industries-section .section-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }

    .industries-section .section-title {
        text-align: center !important;
        margin: 10px auto 0 !important;
    }

    /* Faster Tickers for Tablet (1024px) */
    .ticker-content {
        animation-duration: 20s !important;
    }

    .ticker-slide {
        animation-duration: 10s !important;
    }

    .brands-track {
        animation-duration: 20s !important;
    }

    .bottom-marquee-track {
        animation-duration: 30s !important;
    }
}

@media (max-width: 768px) {
    .products-track {
        grid-template-columns: 1fr 1fr !important;
        /* 2x2 for mobile */
        gap: 10px !important;
    }

    .product-card h3 {
        font-size: 14px !important;
    }

    /* High-Velocity Tickers for Mobile (768px and below) */
    .ticker-content {
        animation-duration: 8s !important;
    }

    .ticker-slide {
        animation-duration: 6s !important;
    }

    .brands-track {
        animation-duration: 10s !important;
    }

    .bottom-marquee-track {
        animation-duration: 12s !important;
    }

}

/* Custom Specs Tabs and Tables Premium Redesign */
.product-specs-tabs {
    margin-top: 25px;
    margin-bottom: 45px;

}

.specs-tab-header {
    display: flex;
    gap: 12px;
}

.specs-tab-btn {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.specs-tab-btn::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.specs-tab-btn[data-color="yellow"]::before {
    background: #f59e0b;
}

.specs-tab-btn[data-color="red"]::before {
    background: #ef4444;
}

.specs-tab-btn[data-color="blue"]::before {
    background: #3b82f6;
}

.specs-tab-btn[data-color="white"]::before {
    background: #cbd5e1;
}

.specs-tab-btn[data-color="black"]::before {
    background: #334155;
}

.specs-tab-btn[data-color="green"]::before {
    background: #22c55e;
}

.specs-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    color: var(--secondary);
    border-color: #cbd5e1;
}

.specs-tab-btn.active {
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.specs-tab-btn.active::before {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.specs-tab-btn[data-color="yellow"].active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #d97706;
}

.specs-tab-btn[data-color="red"].active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #dc2626;
}

.specs-tab-btn[data-color="blue"].active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #2563eb;
}

.specs-tab-btn[data-color="white"].active {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-color: #cbd5e1;
    color: #1e293b;
}

.specs-tab-btn[data-color="white"].active::before {
    background: #475569;
    box-shadow: 0 0 0 2px rgba(100, 116, 139, 0.2);
}

.specs-tab-btn[data-color="black"].active {
    background: linear-gradient(135deg, #475569, #1e293b);
    border-color: #1e293b;
}

.specs-tab-btn[data-color="green"].active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #16a34a;
}

.specs-tab-content {
    display: none;
    padding-top: 15px;
    animation: slideUpFade 0.4s ease-out;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.specs-tab-content h3 {
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.specs-tab-content h3 i {
    font-size: 20px;
}

.specs-tab-content.yellow-theme h3 {
    color: #d97706;
}

.specs-tab-content.red-theme h3 {
    color: #dc2626;
}

.specs-tab-content.blue-theme h3 {
    color: #2563eb;
}

.specs-tab-content.white-theme h3 {
    color: #475569;
}

.specs-tab-content.black-theme h3 {
    color: #1e293b;
}

.specs-tab-content.green-theme h3 {
    color: #16a34a;
}

.specs-table-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: left;
}

.specs-table th,
.specs-table td {
    padding: 10px 10px;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    width: 35%;
    border-right: 1px solid #e2e8f0;
}

.specs-table td {
    background: #ffffff;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

.specs-table tr:hover td {
    background: #fcfcfc;
}

.specs-table tr:hover th {
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .specs-tab-header {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .specs-tab-btn {
        padding: 14px;
    }

    .specs-tab-content {
        padding: 20px;
    }

    .specs-table th,
    .specs-table td {
        display: block;
        width: 100%;
        border-right: none;
    }

    .specs-table th {
        background: #f8fafc;
        border-bottom: none;
        padding-bottom: 8px;
        font-size: 14px;
        color: #64748b;
    }

    .specs-table td {
        padding-top: 4px;
        border-bottom: 1px solid #e2e8f0;
    }

    .specs-table tr:last-child td {
        border-bottom: none;
    }
}