:root {
    --navy-dark: #0a2540;
    --navy-blue: #0f2b48;
    --gold-accent: #d4a340;
    --gold-light: #e5b855;
    --light-bg: #f8f9fa;
    --text-dark: #222222;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
}

/* ==========================================================================
   1. FLOATING HEADER & NAVIGATION
   ========================================================================== */
.floating-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 20px;
}

.curved-header-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.curved-navbar {
    background-color: #ffffff;
    border-radius: 60px;
    padding: 18px 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav-links a {
    text-decoration: none;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.btn-curved-contact {
    background-color: var(--navy-dark);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.3);
}

.btn-curved-contact:hover {
    background-color: var(--gold-accent);
    transform: scale(1.03);
}

.dropdown-desktop {
    position: relative;
}

.desktop-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-desktop:hover .desktop-submenu {
    opacity: 1;
    visibility: visible;
}

.desktop-submenu li a {
    padding: 8px 18px;
    display: block;
    color: #333;
    font-size: 13px;
    text-transform: capitalize;
}

.desktop-submenu li a:hover {
    background-color: var(--light-bg);
    color: var(--gold-accent);
}

.header-social-link {
    color: var(--navy-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    transition: all 0.3s ease;
}

.header-social-link:hover {
    background: var(--gold-accent);
    color: #fff;
}

.mobile-menu-trigger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy-dark);
    padding: 5px;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a,
.submenu-trigger {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: #222222;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.mobile-submenu li a {
    font-size: 1.1rem !important;
    opacity: 0.85;
    padding: 5px 0;
}

/* ==========================================================================
   2. HERO BANNER SECTION
   ========================================================================== */
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    display: block;
}

.hero-slide-item .banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.glass-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    z-index: 10;
}

.glass-hero-left-wrapper {
    width: 100%;
    max-width: 58%;
    padding-left: 0 !important;
}

.glass-card-left {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-left: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 35px 45px 35px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.glass-card-left h1 {
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.3px;
}

/* ==========================================================================
   3. SECTION TITLES & BUTTON WATERMARK FIX
   ========================================================================== */
.section-title-wrapper,
.welcome-title {
    position: relative;
    display: inline-block;
    /*padding-left: 55px !important;*/
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-title-wrapper::before,
.welcome-title::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 54px;
    background-image: url("../image/header-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.65;
    z-index: 1;
    pointer-events: none;
}

.section-title-wrapper h2,
.section-title-wrapper h3,
.section-title-wrapper h4,
.welcome-title h2,
.welcome-title h3 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
    margin: 0;
     padding-left: 55px !important;
}

/* ==========================================================================
   4. WELCOME SECTION
   ========================================================================== */
.welcome-img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.btn-navy {
    background-color: var(--navy-blue);
    color: #fff;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: var(--gold-accent);
    color: #fff;
}

.btn-outline-custom {
    border: 1px solid #ccc;
    background: #e9ecef;
    color: #333;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--navy-blue);
    color: #fff;
}

/* ==========================================================================
   5. SUSTAINABLE RIBBON BAR
   ========================================================================== */
.ribbon-bar {
    background-color: var(--navy-blue);
    color: #ffffff;
    padding: 15px 10px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ==========================================================================
   6. PROCESS SECTION
   ========================================================================== */
.process-card {
    background-color: var(--gold-accent, #cb9a36);
    color: #ffffff;
    border-radius: 28px;
    padding: 35px 28px 30px 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(203, 154, 54, 0.35);
}

.process-card .process-icon {
    width: 85px;
    height: 75px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.process-card .process-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) opacity(0.85);
}

.process-card .card-num {
    position: absolute;
    right: -31px;
    top: 0px;
    font-size: 166px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/*.process-card .card-num {*/
/*    position: absolute;*/
/*    right: 5px;*/
/*    top: 0px;*/
/*    font-size: 140px;*/
/*    font-weight: 800;*/
/*    color: rgba(255, 255, 255, 0.25);*/
/*    line-height: 1;*/
/*    pointer-events: none;*/
/*    z-index: 1;*/
/*    user-select: none;*/
/*}*/

.process-card .process-content-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.process-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0b2540;
    letter-spacing: -0.2px;
}

.process-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
    color: #0b2540;
    opacity: 0.9;
    line-height: 1.45;
}

/* ==========================================================================
   7. VIDEO BANNER SECTION
   ========================================================================== */
.video-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-dark);
}

.video-banner .video-bg-media {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.45);
    z-index: 2;
}

.video-play-btn-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 26px;
    padding-left: 4px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    animation: videoPulse 2s infinite;
}

.video-play-btn:hover {
    background: var(--gold-accent);
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 10px 25px rgba(212, 163, 64, 0.4);
}

.video-btn-label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes videoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ==========================================================================
   8. PRODUCT CATALOG SECTION
   ========================================================================== */
.category-tabs {
    gap: 15px;
}

.category-tabs .nav-link {
    color: var(--navy-blue, #1a2b4c);
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.category-tabs .nav-link.active {
    color: var(--navy-blue, #1a2b4c) !important;
    font-weight: 700;
}

.category-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--navy-blue, #1a2b4c);
}

.product-grid-card {
    background-color: #f8f8f8;
    padding: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-media-box {
    position: relative;
    width: 100%;
    padding-top: 125%;
    background-color: #ffffff;
    overflow: hidden;
}

.product-media-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

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

.gold-frame-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1.5px solid #c5a059;
    z-index: 2;
    pointer-events: none;
}

.product-info-box {
    margin-top: 14px;
}

.product-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-name a {
    color: var(--navy-blue, #1a2b4c);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-name a:hover {
    color: #c5a059;
}

.product-sku {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8c9196;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ==========================================================================
   9. INFRASTRUCTURE SECTION
   ========================================================================== */
.infra-section {
    background-color: #d8a738;
    padding: 70px 0 60px;
    color: #0a2540;
}

.infra-cloud-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cotton-badge-wrapper {
    position: relative;
    width: 170px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.cotton-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.cotton-badge-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infra-custom-icon {
    width: 48px;
    height: 38px;
    object-fit: contain;
    margin-bottom: 4px;
}

.infra-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2540;
    line-height: 1;
}

.infra-label-wrapper {
    width: 100%;
    max-width: 150px;
    border-top: 2px dashed rgba(10, 37, 64, 0.6);
    border-bottom: 2px dashed rgba(10, 37, 64, 0.6);
    padding: 6px 0;
    margin-top: 2px;
}

.infra-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a2540;
    text-transform: capitalize;
    display: block;
}

/* ==========================================================================
   10. CERTIFICATIONS & FOOTER
   ========================================================================== */
.cert-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.cert-card img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

footer {
    background-color: var(--navy-blue);
    color: #ffffff;
    padding: 50px 0 20px;
    font-size: 0.88rem;
}

.footer-logo {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

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

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 8px;
    opacity: 0.85;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer ul li a:hover {
    opacity: 1;
    color: var(--gold-accent);
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gold-accent);
    color: #fff;
}

/* ==========================================================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .glass-hero-left-wrapper {
        max-width: 70%;
    }
    .glass-card-left h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .desktop-nav-links {
        display: none;
    }
    .mobile-menu-trigger {
        display: block;
    }
    .btn-curved-contact {
        display: none;
    }
    .curved-navbar {
        padding: 8px 18px;
    }
    .glass-hero-left-wrapper {
        max-width: 85%;
    }
    .glass-card-left {
        padding: 25px 25px 25px 30px;
    }
    .glass-card-left h1 {
        font-size: 1.4rem;
    }
    .process-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    .process-card .process-icon {
        width: 70px;
        height: 60px;
    }
    .process-card .card-num {
        font-size: 110px;
    }
}

@media (max-width: 767px) {
    .hero-banner-section {
        min-height: 420px;
        position: relative;
    }

    .hero-slide-item {
        height: 420px;
    }

    .hero-slide-item .banner-img {
        height: 100% !important;
        width: 100%;
        object-fit: cover !important;
        object-position: center !important;
    }

    .glass-hero-overlay {
        position: absolute;
        inset: 0;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 15px 25px 15px !important;
        background: linear-gradient(180deg, rgba(10, 37, 64, 0.2) 0%, rgba(10, 37, 64, 0.65) 100%);
        z-index: 5;
    }

    .glass-hero-left-wrapper {
        max-width: 100% !important;
        width: 100%;
    }

    .glass-card-left {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
        border-radius: 14px !important;
        padding: 16px 20px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }

    .glass-card-left h1 {
        font-size: 1.05rem !important;
        line-height: 1.45 !important;
        font-weight: 600 !important;
        color: #0a2540 !important;
        letter-spacing: 0.2px !important;
        margin: 0 !important;
    }

    .glass-card-left h1 br {
        display: none !important;
    }

    .video-banner {
        height: 300px;
    }
    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }
    .video-btn-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .glass-hero-overlay {
        padding-top: 40px;
    }
    .glass-hero-left-wrapper {
        max-width: 100%;
    }
    .glass-card-left {
        padding: 15px 20px;
    }
    .section-title-wrapper,
    .welcome-title {
        padding-left: 42px !important;
    }
    .section-title-wrapper::before,
    .welcome-title::before {
        width: 35px;
        height: 35px;
    }
    .ribbon-bar {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .hero-banner-section,
    .hero-slide-item {
        min-height: 380px;
        height: 380px;
    }

    .glass-card-left {
        padding: 12px 16px !important;
    }

    .glass-card-left h1 {
        font-size: 0.92rem !important;
    }
}
