/*======================================================
MERIDIAN MARITIME
PREMIUM CSS
STEP 1A
Variables • Reset • Typography • Utilities • Buttons
======================================================*/

/*=========================
GOOGLE VARIABLES
==========================*/

:root{

    --primary:#143D26; /* Emerald Green */
    --primary-dark:#0F2E1F; /* Darker Emerald */
    --secondary:#D4AF37; /* Gold */

    --gold:#D4AF37;
    --gold-light:#D4AF37; /* Gold */
    --gold-dark:#D4AF37; /* Gold */

    --white:#ffffff;
    --background:#F8F8F8; /* Light Background */
    --ink:#1D1D1D; /* Dark text */
    --muted:#6B7280; /* Muted text */

    --green-dark:#143D26; /* Primary */

    --border:#E5E7EB;

    --shadow-sm:0 8px 20px rgba(0,0,0,.08);
    --shadow:0 20px 45px rgba(0,0,0,.10);
    --shadow-lg:0 35px 70px rgba(0,0,0,.15);

    --radius:18px;
    --radius-lg:28px;

    --transition:.35s ease;

}

/*=========================
RESET
==========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;
    outline:none;
    cursor:pointer;
    background:none;
    font-family:inherit;

}

input{

    font-family:inherit;

}

section{

    padding:110px 0;

}

/*=========================
CONTAINER
==========================*/

.container{

    width:min(1200px,92%);
    margin:auto;

}

/*=========================
HEADINGS
==========================*/

h1{

    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    line-height:1.1;
    color:var(--ink);

}

h2{

    font-family:'Playfair Display',serif;
    font-size:2.8rem;
    color:var(--ink);
    margin-bottom:20px;

}

h3{

    font-size:1.45rem;
    color:var(--ink);

}

p{

    color:var(--muted);
    margin-bottom:20px;

}

/*=========================
SECTION TITLE
==========================*/

.section-heading{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-block;
    color:var(--gold);
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:12px;
    text-transform:uppercase;
    position:relative;

}

.section-subtitle::after{

    content:"";
    width:70px;
    height:2px;
    background:var(--secondary);
    display:inline-block;
    margin-left:15px;
    vertical-align:middle;

}

/*=========================
BUTTONS
==========================*/

.marketplace-product-actions a,

.btn-primary{

background:linear-gradient(
135deg,
#D4AF37,
#F5D76E
);

color:#143D26;

padding:18px 42px;

border-radius:60px;

font-weight:700;

transition:.4s;

box-shadow:

0 20px 40px rgba(212,175,55,.35);

}


.btn-primary:hover{

transform:translateY(-5px);

box-shadow:

0 35px 70px rgba(212,175,55,.40);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:18px;

    border:1px solid var(--gold);

    background:var(--white);

    color:var(--ink);

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--gold);

    color:var(--white);

}

/*=========================
PAGE LOADER
==========================*/

.page-loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.6s;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:120px;

    margin:auto auto 20px;

    animation:spinLogo 4s linear infinite;

}

.loader-content h2{

    margin-bottom:10px;

    font-size:2rem;

}

.loader-content p{

    color:var(--gold);

    letter-spacing:2px;

    font-size:.9rem;

}

@keyframes spinLogo{

    from{

        transform:rotateY(0deg);

    }

    to{

        transform:rotateY(360deg);

    }

}

/*=========================
SCROLL PROGRESS BAR
==========================*/

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:rgba(0,0,0,.05);

    z-index:9999;

}

.progress-bar span{

    display:block;

    width:0%;

    height:100%;

    background:linear-gradient(
    90deg,
    var(--gold),
    var(--primary));

    transition:.15s;

}

/*=========================
UTILITY CLASSES
==========================*/

.text-center{

    text-align:center;

}

.mt-50{

    margin-top:50px;

}

.mb-50{

    margin-bottom:50px;

}

.hidden{

    display:none;

}

/*======================================================
STEP 1B
HEADER • NAVBAR • DROPDOWN • MOBILE
======================================================*/


/*=========================
HEADER
==========================*/

.header{
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);

    width: min(96%, 1400px);
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(212,175,55,.18);
    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    z-index:9999;

    transition:.35s;
}

.header.scrolled{

background:rgba(255,255,255,.92);

backdrop-filter:blur(25px);

box-shadow:

0 25px 70px rgba(0,0,0,.15);

}
/*=========================
NAV CONTAINER
==========================*/

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;

    gap:40px;

}


/*=========================
LOGO
==========================*/

.logo{

display:flex;

align-items:center;

gap:12px;

font-size:28px;

font-weight:700;

color:#143D26;

text-decoration:none;

white-space:nowrap;

}

.logo img{

height:52px;

width:auto;

display:block;

}

.logo:hover img{

    transform:rotate(-6deg) scale(1.05);

}

.logo h2{

    font-size:1.4rem;

    margin:0;

    color:var(--primary);

    line-height:1;

}

.logo span{

    display:block;

    font-size:.82rem;

    letter-spacing:4px;

    color:var(--gold);

    margin-top:5px;

}


/*=========================
NAVIGATION
==========================*/

nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.nav-links{
    display:flex;
    align-items:center;
    gap:22px;
}

.nav-links>li{

    position:relative;

}

.nav-links>li>a{

    position:relative;

    font-weight:600;

    color:var(--primary);

    padding:10px 0;

    transition:.3s;

}

.nav-links a{

    font-size:15px;
    font-weight:600;

    color:#143D26;

    padding:10px 14px;

    border-radius:12px;

    transition:.3s;
}

.nav-links a:hover{

background:rgba(212,175,55,.12);

color:#D4AF37;

}
.nav-links>li:hover>a::after,

.nav-links>li>a.active::after{

    width:100%;

}

.nav-links>li:hover>a{

    color:var(--gold);

}


/*=========================
RIGHT SIDE
==========================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}


/*=========================
DROPDOWN
==========================*/

.dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    min-width:270px;

    background:#fff;

    border-radius:18px;

    padding:14px 0;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:100;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 24px;

    color:var(--primary);

    transition:.3s;

}

.dropdown-menu a i{

    width:22px;

    color:var(--gold);

}

.dropdown-menu a:hover{

    background:rgba(212,175,55,.08);

    color:var(--gold);

    padding-left:30px;

}


/*=========================
QUOTE BUTTON
==========================*/

.nav-right .btn-primary{

    padding:14px 28px;

}


/*=========================
MOBILE TOGGLE
==========================*/

.mobile-toggle{

display:none;

font-size:28px;

cursor:pointer;

}

.mobile-toggle span{

    width:24px;

    height:2px;

    background:var(--primary);

    transition:.35s;

}


/*=========================
RESPONSIVE NAV
==========================*/

@media(max-width:992px){

    .mobile-toggle{

        display:flex;

    }

    .nav-links{

        position:fixed;

        top:90px;

        right:-100%;

        width:320px;

        height:calc(100vh - 90px);

        background:#fff;

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        padding:40px 30px;

        gap:10px;

        box-shadow:-20px 0 40px rgba(0,0,0,.10);

        transition:.4s;

        overflow-y:auto;

    }

    .nav-links.active{

        right:0;

    }

    .nav-links>li{

        width:100%;

    }

    .nav-links>li>a{

        display:block;

        width:100%;

        padding:14px 0;

    }

    .dropdown-menu{

        position:static;

        opacity:1;

        visibility:visible;

        transform:none;

        display:none;

        margin-top:8px;

        box-shadow:none;

        border-radius:12px;

        background:#f8fafb;

    }

    .dropdown.open .dropdown-menu{

        display:block;

    }

    .nav-right .btn-primary{

        display:none;

    }

}

@media(max-width:768px){

    .logo img{

        width:58px;

    }

    .logo h2{

        font-size:1.2rem;

    }

    .logo span{

        font-size:.72rem;

        letter-spacing:3px;

    }

}

/*======================================================
STEP 2
HERO SECTION
======================================================*/

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

padding:170px 0 120px;

background:
radial-gradient(circle at top right,
rgba(212,175,55,.15),
transparent 40%),

radial-gradient(circle at bottom left,
rgba(20,61,38,.18),
transparent 45%),

linear-gradient(
180deg,
#ffffff,
#f7faf8 45%,
#ffffff
);

}


/*=========================
OVERLAY
==========================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 45%);

}

.hero-map{

    position:absolute;

    right:-120px;

    top:50%;

    transform:translateY(-50%);

    width:700px;

    height:700px;

    background:url("images/world-map.png")
    center/contain
    no-repeat;

    opacity:.08;

    animation:mapFloat 10s ease-in-out infinite;

}

@keyframes mapFloat{

    0%{

        transform:translateY(-50%) translateX(0);

    }

    50%{

        transform:translateY(-53%) translateX(-20px);

    }

    100%{

        transform:translateY(-50%) translateX(0);

    }

}


/*=========================
PARTICLES
==========================*/

.hero-particles{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}

.hero-particles::before,

.hero-particles::after{

    content:"";

    position:absolute;

    width:12px;

    height:12px;

    border-radius:50%;

    background:rgba(212,175,55,.6);

    animation:particle 14s linear infinite;

}

.hero-particles::before{

    left:15%;

    bottom:-20px;

}

.hero-particles::after{

    right:20%;

    bottom:-30px;

    animation-delay:4s;

}

@keyframes particle{

    from{

        transform:translateY(0) scale(.5);

        opacity:0;

    }

    20%{

        opacity:1;

    }

    80%{

        opacity:1;

    }

    to{

        transform:translateY(-900px) scale(1.4);

        opacity:0;

    }

}


/*=========================
LAYOUT
==========================*/

.hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-left{

    color:#fff;

}

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}


/*=========================
BADGE
==========================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    margin-bottom:28px;

    font-weight:600;

}

.hero-badge i{

    color:var(--gold);

}


/*=========================
HEADINGS
==========================*/

.hero h1{

font-size:68px;

line-height:1.05;

font-weight:700;

color:#143D26;

margin-bottom:24px;

letter-spacing:-2px;

max-width:700px;

}

.hero h1 span{

    display:block;

    color:var(--gold);

}

.hero h2{

    color:#fff;

    font-size:1.45rem;

    margin-bottom:25px;

    font-family:'Poppins',sans-serif;

    letter-spacing:3px;

    font-weight:500;

}

.hero p{

font-size:20px;

line-height:1.9;

color:#5b5b5b;

max-width:640px;

margin-bottom:40px;

}


/*=========================
BUTTONS
==========================*/

.hero-buttons{

display:flex;

gap:22px;

margin-top:35px;

flex-wrap:wrap;

}


/*=========================
STATS
==========================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.hero-stats div{

    padding:28px;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.hero-stats div:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.10);

}

.hero-stats h3{

    color:var(--gold);

    font-size:2.3rem;

    margin-bottom:6px;

}

.hero-stats span{

    color:rgba(255,255,255,0.7);

    font-size:.95rem;

}


/*=========================
WORLD MAP IMAGE
==========================*/

.world-map{

    width:100%;

    max-width:650px;

    filter:drop-shadow(0 30px 50px rgba(0,0,0,.25));

    animation:shipFloat 6s ease-in-out infinite;

}

@keyframes shipFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=========================
SCROLL DOWN
==========================*/

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:34px;

    height:58px;

    border:2px solid rgba(255,255,255,.5);

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    width:6px;

    height:10px;

    border-radius:50px;

    background:var(--gold);

    animation:scrollWheel 1.8s infinite;

}

@keyframes scrollWheel{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translate(-50%,20px);

    }

}


/*=========================
RESPONSIVE HERO
==========================*/

@media(max-width:992px){

    .hero{

        text-align:center;

    }

    .hero-container{

        grid-template-columns:1fr;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        grid-template-columns:1fr;

    }

    .hero-map{

        display:none;

    }

}

@media(max-width:768px){

    .hero{

        min-height:auto;

        padding:160px 0 100px;

    }

    .hero h1{

        font-size:3rem;

    }

    .hero h2{

        font-size:1.1rem;

        letter-spacing:2px;

    }

}

/*======================================================
STEP 2B
TRUST BAR
======================================================*/

.trust-bar{

    position:relative;

    margin-top:-80px;

    z-index:20;

}

.trust-wrapper{

    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:25px;

}

.trust-item{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    gap:22px;

    padding:32px 28px;

    background:#fff;
    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s ease;

    border:1px solid rgba(0,0,0,.05);

}

.trust-item::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:linear-gradient(
    180deg,
    var(--gold),
    var(--primary));

}

.trust-item:hover{

    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.trust-item i{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:1.8rem;

    color:var(--gold);

    background:rgba(212,175,55,.12);

    transition:.35s;

}

.trust-item:hover i{

    background:var(--gold);

    color:#fff;

    transform:rotateY(360deg);

}

.trust-item h4{

    font-size:1.2rem;

    margin-bottom:0.5rem;

    color:var(--primary);

}

.trust-item p{

    margin:0;

    color:var(--muted);

    font-size:.95rem;

}


/*=========================
HOVER SHINE
==========================*/

.trust-item::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:40%;

    height:300%;

    background:rgba(255,255,255,.25);

    transform:rotate(25deg);

    transition:.7s;

}

.trust-item:hover::after{

    left:130%;

}


/*=========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

    .trust-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .trust-bar{

        margin-top:0;

        padding-top:70px;

    }

    .trust-wrapper{

        grid-template-columns:1fr;

    }

    .trust-item{

        padding:25px;

    }

    .trust-item i{

        width:60px;

        height:60px;

        font-size:24px;

    }

}

/*======================================================
STEP 3
ABOUT SECTION
======================================================*/

.about-section{

    position:relative;

    background:var(--background);

    overflow:hidden;

}

.about-section::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    top:-180px;
    right:-180px;

}

.about-grid{

    display:grid;

    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);

    align-items:center;

    gap:80px;

    position:relative;

    z-index:2;

}


/*=========================
IMAGE
==========================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:18px;

    object-fit:cover;

    box-shadow:0 35px 70px rgba(0,0,0,.15);

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}


/*=========================
EXPERIENCE BOX
==========================*/

.experience-box{

    position:absolute;

    right:-30px;

    bottom:40px;

    width:220px;

    padding:28px;

    border-radius:18px;

    background:#fff;

    text-align:center;

    box-shadow:0 25px 55px rgba(0,0,0,.15);

    border-top:5px solid var(--gold);

    animation:floatCard 4s ease-in-out infinite;

}

.experience-box h3{

    font-size:2.8rem;

    color:var(--gold);

    margin-bottom:5px;

}

.experience-box span{

    color:var(--muted);

    font-size:.95rem;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=========================
CONTENT
==========================*/

.about-content{

    position:relative;

}

.about-content h2{

    margin-bottom:1.5rem;

}

.about-content p{

    margin-bottom:20px;

    font-size:1.05rem;

}


/*=========================
FEATURES
==========================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2, minmax(0, 1fr));

    gap:18px;

    margin:40px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 20px;

    background:var(--background);

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

}

.feature:hover{

    transform:translateX(10px);

    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.feature i{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(212,175,55,.1);

    color:var(--gold);

    font-size:18px;

    flex-shrink:0;

}

.feature:hover i{

    background:var(--gold);

    color:#fff;

}


/*=========================
BUTTON
==========================*/

.about-content .btn-primary{

    margin-top:10px;

}


/*=========================
RESPONSIVE
==========================*/

@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .about-content{

        text-align:center;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .experience-box{

        right:20px;

    }

}

@media(max-width:768px){

    .about-section{

        padding:90px 0;

    }

    .experience-box{

        position:relative;

        right:auto;

        bottom:auto;

        margin:-60px auto 0;

    }

    .about-content h2{

        font-size:2.2rem;

    }

}

/*=========================
EXPORT PROCESS
==========================*/

.export-process{

    background:var(--background);

    position: relative;
    overflow: hidden;
    /* Add a subtle radial gradient for depth, aligning with luxury theme */
    background:
        radial-gradient(circle at 10% 90%, rgba(20, 61, 38, 0.03), transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.04), transparent 25%),
        var(--background);
}

.timeline{
    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:25px;

    gap: 30px; /* Slightly increased gap */
    margin-top:70px;

    position:relative;

    position:relative;

    text-align:center;

    padding:1.8rem 1.2rem;

    background:#fff;

/*=========================
EXPORT JOURNEY
==========================*/

.journey-section{

    position:relative;

    background:var(--background);

    overflow:hidden;

}

.journey-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(15,59,47,.06);

    left:-220px;
    top:-180px;

}

.journey{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:0;

    margin-top:70px;

    position:relative;

    z-index:2;

}

.journey-card{

    flex:1;

    background:#fff;

    padding:2.2rem 1.5rem;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    position:relative;

    box-shadow:0 14px 34px rgba(0,0,0,.07);

    border:1px solid rgba(0,0,0,.05);

}

.journey-card:hover{

    transform:translateY(-12px);

    box-shadow:0 24px 60px rgba(0,0,0,.12);

}

.journey-icon{

    width:90px;

    height:90px;

    margin:auto auto 1.5rem;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2.2rem;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#fff;

    transition:.4s;

}

.journey-card:hover .journey-icon{

    transform:rotateY(360deg) scale(1.08);

}

.journey-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.journey-card p{

    margin:0;

}

.journey-line{

    width:70px;

    height:4px;

    margin-top:70px;

    background:linear-gradient(90deg,var(--gold),var(--primary));

    border-radius:50px;

}


/*=========================
PRODUCTS
==========================*/

.products-section{

    background:var(--background);

    position:relative;

}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

@media(max-width:1200px){
.products-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:900px){
.products-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){
.products-grid{
grid-template-columns:1fr;
}
}

.product-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-image{
    height:180px;
}


.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}


.product-content{
    padding:1.2rem;
}



.product-content h3{
    font-size:20px;
}


.product-content p{

    margin-bottom:1.5rem;

    flex:1;

}

.product-content a{

    display:inline-flex;

    align-items:center;

    gap:0.5rem;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.product-content a i{

    transition:.3s;

    color:var(--gold);

}

.product-content a:hover{

    color:var(--gold);

}

.product-content a:hover i{

    transform:translateX(0.5rem);

}


/*=========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:992px){

    .journey{

        flex-direction:column;

        gap:25px;

    }

    .journey-line{

        display:none;

    }

}
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    align-items:stretch;
    margin-top:40px;
}

    .journey-card{

        padding:30px;

    }

    .journey-icon{

        width:75px;

        height:75px;

        font-size:28px;

    }


/*======================================================
STEP 4
WHY US • GLOBAL PRESENCE • STATS • EXPORT PROCESS
======================================================*/


/*=========================
WHY US
==========================*/
.why-us {
    background: var(--background);
    position: relative;
    overflow: hidden;
    /* Add a subtle radial gradient for depth, aligning with luxury theme */
    background:
        radial-gradient(circle at 10% 90%, rgba(20, 61, 38, 0.03), transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.04), transparent 25%),
        var(--background);
}

/* Adjust existing ::before for a more luxurious feel */
.why-us::before{

    content:"";
    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;
    /* More subtle gold tint and softer blur */
    background: rgba(212, 175, 55, 0.06);

    right:-180px;
    top:-180px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    padding:2.5rem 1.8rem;

    border-radius:24px;
    /* Increased border-radius for luxury */
    border-radius: 28px;
    text-align:center;
    /* Deeper, more luxurious shadow */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(20, 61, 38, 0.1); /* Subtle primary color border */
    transition:.4s;

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height: 6px; /* Slightly thicker top border */
    /* More prominent gold to primary gradient */
    background: linear-gradient(
        90deg,
        var(--gold-light), /* Use gold-light for a brighter start */
        var(--primary)
    );

}

.why-card:hover{

    transform:translateY(-0.8rem);
    /* Stronger shadow on hover */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
    border-color: var(--gold); /* Highlight border on hover */
}

.why-icon{

    width: 100px; /* Larger icon container */
    height: 100px;
    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
    /* Larger icon font size */
    font-size: 2.8rem;
    /* Solid gold gradient background for icons */
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white); /* White icon color */
    /* Add shadow to icon */
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    transition:.45s;
}

.why-card:hover .why-icon{
    /* Reverse gradient on hover for effect */
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--white);
    transform:rotateY(360deg);
}

.why-card h3{

    margin-bottom:1rem;

}

.why-card p{

    margin:0;

}


/*=========================
GLOBAL PRESENCE
==========================*/

.global-presence{

    background:var(--primary);

}

.global-wrapper{

    margin-top:60px;

}

.map-container{

    position:relative;

    background:var(--background);

    padding:50px;

    border-radius:30px;

    box-shadow:var(--shadow);

}

.map-container img{

    width:100%;

}

.pin{

    position:absolute;

    padding:8px 16px;

    background:var(--gold);

    color:#fff;

    border-radius:50px;

    font-size:.82rem;

    font-weight:600;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    animation:pinFloat 3s ease-in-out infinite;

}

.india{

    top:53%;
    left:63%;

}

.usa{

    top:38%;
    left:20%;

}

.germany{

    top:31%;
    left:49%;

}

.uae{

    top:48%;
    left:56%;

}

.australia{

    bottom:18%;
    right:15%;

}

.canada{

    top:20%;
    left:20%;

}

@keyframes pinFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}


/*=========================
STATISTICS
==========================*/

.stats-section{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:30px;

}

.stat-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:40px 20px;

    border-radius:22px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-0.5rem);

    background:rgba(255,255,255,.12);

}

.stat-card h2{

    color:var(--gold);

    font-size:2.8rem;

    margin-bottom:10px;

}

.stat-card span{

    color:rgba(255,255,255,0.8);

    letter-spacing:1px;

}


/*=========================
EXPORT PROCESS
==========================*/

.export-process{

    background:var(--background);

}

.timeline{

    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:25px;

    margin-top:70px;

}

.timeline-item{

    position:relative;

    text-align:center;

    padding:1.8rem 1.2rem;

    background:#fff;

    border-radius:20px;

    box-shadow:0 18px 40px rgba(0,0,0,.07);

    transition:.35s;

}

.timeline-item:hover{

    transform:translateY(-0.5rem);

}

.timeline-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.8rem;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    transition:.4s;

}

.timeline-item:hover .timeline-icon{

    transform:rotateY(360deg);

}

.timeline-item h3{

    margin-bottom:0.8rem;

}


/*=========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .timeline{

        grid-template-columns:repeat(3,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .timeline{

        grid-template-columns:1fr;

    }

    .map-container{

        padding:25px;

    }

    .pin{

        display:none;

    }

}

/*======================================================
STEP 5
CERTIFICATIONS • TESTIMONIALS • CTA • FOOTER
BACK TO TOP • SCROLLBAR • ANIMATIONS
======================================================*/


/*=========================
CERTIFICATIONS
==========================*/

.certifications{

    background:var(--background);

    position:relative;

}

.cert-grid{

    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:30px;

    margin-top:60px;

}

.cert-card{

    background:#fff;

    padding:2.8rem 1.5rem;

    text-align:center;

    border-radius:22px;

    transition:.35s;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.cert-card:hover{

    transform:translateY(-0.5rem);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.cert-card i{

    font-size:50px;

    color:var(--secondary);

    margin-bottom:25px;

}

.cert-card h3{

    margin:0;

}


/*=========================
TESTIMONIALS
==========================*/

.testimonials{

    background:var(--background);

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:30px;

    margin-top:60px;

}

.testimonial-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.testimonial-card:hover{

    transform:translateY(-0.5rem);

}

.stars{

    margin-bottom:20px;

}

.stars i{

    color:var(--secondary);

    margin-right:4px;

}

.client{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:30px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%; /* Keep as is for now */

    object-fit:cover;

    border:4px solid rgba(212,175,55,.2);

}

.client h4{

    margin-bottom:0.2rem;

    color:var(--primary);

}

.client span{

    color:var(--gray);

    font-size:0.9rem;

}


/*=========================
CTA
==========================*/

.cta{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark)); /* Keep as is for now */

    color:#fff;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-220px;

    right:-220px;

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

}

.cta h2{

    color:#fff;

}

.cta p{

    color:#ddd;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:1.2rem;

    margin-top:40px;

    flex-wrap:wrap;

}


/*=========================
FOOTER
==========================*/

.footer{

    background:var(--ink);

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer h3,

.footer h4{

    color:#fff;

    margin-bottom:25px;

}

.footer p{

    color:#b9c2bf;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:rgba(255,255,255,0.7);

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.footer ul li i{

    color:var(--secondary);

    margin-right:10px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:46px;

    height:46px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.1);

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:3.5rem;

    padding-top:25px;

    text-align:center;

}


/*=========================
BACK TO TOP
==========================*/

.back-to-top{

    position: fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-0.5rem);

}


/*=========================
CUSTOM SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--gold),var(--primary));

    border-radius:50px;

}


/*=========================
GLOBAL ANIMATIONS
==========================*/

.fade-up{

    opacity:0; /* Keep for JS animation */

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1; /* Keep for JS animation */

    transform:none;

}

.zoom{

    transition:.45s;

}

.zoom:hover{

    transform:scale(1.05);

}


/*=========================
FINAL RESPONSIVE
==========================*/

@media(max-width:1200px){

    .cert-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    section{

        padding:80px 0;

    }

    h1{

        font-size:2.7rem;

    }

    h2{

        font-size:2rem;

    }

    .cert-grid,

    .testimonial-grid,

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer{

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

    .back-to-top{

        width:48px;

        height:48px;

        right:20px;

        bottom:20px;

    }

}

/*==================================================
STEP 6
PREMIUM ANIMATIONS
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.reveal-left{

    opacity:0;

    transform:translateX(-80px);

    transition:all .8s ease;

}

.reveal-left.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-right{

    opacity:0;

    transform:translateX(80px);

    transition:all .8s ease;

}

.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}

.scale-up{

    opacity:0;

    transform:scale(.8);

    transition:.8s;

}

.scale-up.active{

    opacity:1;

    transform:scale(1);

}

.rotate-in{

    opacity:0;

    transform:rotate(-10deg);

    transition:.8s;

}

.rotate-in.active{

    opacity:1;

    transform:rotate(0);

}

body::before{

    content:"";

    position:fixed;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(212,175,55,.05);

    top:-250px;

    left:-250px;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(15,59,47,.04);

    right:-300px;

    bottom:-300px;

    z-index:-2;

}

::selection{

    background:var(--gold);

    color:#fff;

}

::-moz-selection{

    background:var(--gold);

    color:#fff;

}

img{

    transition:.5s;

}

.product-card:hover img,

.about-images img:hover,

.map-container:hover img{

    transform:scale(1.06);

}

.card,

.product-category-card,

.why-card,

.cert-card,

.testimonial-card{

    box-shadow: /* Keep for JS animation */

    0 12px 30px rgba(0,0,0,.08),

    0 2px 10px rgba(0,0,0,.05);

}

.btn-primary,

.btn-outline{

    overflow:hidden;

    position:relative;

}

.btn-primary::after,

.btn-outline::after{

    content:"";

    position:absolute;

    width:40px;

    height:200%;

    background:rgba(255,255,255,.3);

    top:-50%;

    left:-100px;

    transform:rotate(25deg);

    transition:.7s;

}

.btn-primary:hover::after,

.btn-outline:hover::after{

    left:150%;

}

.section-heading{

    max-width:760px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    position:relative;

}

.section-heading h2::after{

    content:""; /* Keep for JS animation */

    display:block;

    width:90px;

    height:4px;

    background:linear-gradient(to right,var(--gold),var(--primary));

    margin:1.2rem auto;

    border-radius:20px;

}

.header.sticky{

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(15px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/*==============================================================
  GLOBAL PRESENCE
==============================================================*/

.global-presence{
    position:relative;
    padding:clamp(4rem, 8vw, 7rem) 0;
    overflow:hidden;
    background: radial-gradient(circle at center, #0F2E1F 0%, #081C12 50%, #030A06 100%);
    color: #fff;
}

/* TWINKLING STARS BACKGROUND */
.stars-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
    background-image: 
        radial-gradient(circle, #fff 0.75px, transparent 1px),
        radial-gradient(circle, #fff 0.75px, transparent 1px);
    background-size: 160px 160px, 280px 280px;
    background-position: 0 0, 45px 85px;
    animation: starsTwinkle 15s ease-in-out infinite;
}
@keyframes starsTwinkle {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.75; }
}

.global-container-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: center;
    padding: 20px 0;
}

.global-info-side {
    display: flex;
    flex-direction: column;
}

.global-info-side h2 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 10px;
    margin-bottom: 15px;
}

.global-info-side .section-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* FLOATING STATS GRID */
.floating-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.stat-bubble:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 30px rgba(20, 61, 38, 0.25);
}

.stat-bubble .stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
}

.stat-bubble .stat-lbl {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* GLASSMORPHISM CARD */
.glass-info-card {
    background: rgba(15, 46, 31, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.04), transparent);
    transform: skewX(-30deg);
    pointer-events: none;
    transition: 1s ease-in-out;
}

.glass-info-card:hover::before {
    left: 100%;
}

.glass-info-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.glass-info-card .card-icon {
    color: var(--secondary);
    font-size: 1.3rem;
}

.glass-info-card .card-country {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.glass-info-card .card-data-row {
    margin-bottom: 14px;
}

.glass-info-card .card-data-row:last-child {
    margin-bottom: 0;
}

.glass-info-card .data-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.glass-info-card .data-label i {
    font-size: 0.85rem;
}

.glass-info-card .data-value {
    display: block;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    padding-left: 2px;
    transition: opacity 0.3s ease;
}

.glass-info-card .card-footer {
    margin-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}

.glass-info-card .card-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    display: block;
}

/* GLOBE SIDE STYLING */
.global-globe-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.globe-3d-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 600px;
    aspect-ratio: 1/1;
    margin: auto;
    border-radius: 50%;
    box-shadow: 
        0 0 100px rgba(20, 61, 38, 0.25), 
        0 0 40px rgba(212, 175, 55, 0.06);
    transition: transform 0.4s ease;
}

#3d-globe-canvas {
    width: 100%;
    height: 100%;
    cursor: grab;
    display: block;
}

#3d-globe-canvas:active {
    cursor: grabbing;
}

/* CUSTOM PULSING MARKERS */
.globe-marker {
    position: relative;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    pointer-events: auto !important;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 1.5px solid #fff;
    box-shadow: 0 0 8px var(--gold);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.globe-marker:hover .marker-dot {
    transform: scale(1.4);
    background: #fff;
    box-shadow: 0 0 12px var(--gold);
}

.pulse-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    position: absolute;
    top: 0;
    left: 0;
    animation: markerPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    pointer-events: none;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.3);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* RESPONSIVE DESIGN */
@media(max-width:992px){
    .global-container-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .global-info-side {
        align-items: center;
    }
    
    .global-info-side h2 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-stats-grid {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .glass-info-card {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    
    .globe-3d-wrapper {
        height: 520px;
        max-width: 520px;
    }
    
    /* Layout ordering for mobile/tablet */
    .global-info-side {
        order: 2;
    }
    
    .global-globe-side {
        order: 1;
    }
}

@media(max-width:768px){
    .global-presence {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }
    
    .globe-3d-wrapper {
        height: 420px;
        max-width: 420px;
    }
}

@media(max-width:576px){
    .globe-3d-wrapper {
        height: 330px;
        max-width: 330px;
    }
    
    .floating-stats-grid {
        gap: 12px;
    }
    
    .stat-bubble {
        padding: 12px 14px;
    }
    
    .stat-bubble .stat-num {
        font-size: 1.5rem;
    }
    
    .stat-bubble .stat-lbl {
        font-size: 0.78rem;
    }
}

.back-to-top{

    position: fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    opacity:0;

    visibility: hidden;

    transform:translateY(20px);

    transition:.35s;

}

.back-to-top.show{

    opacity:1;

    visibility: visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-0.5rem);

}

/* ============================
   INTRO SPLASH SCREEN
============================ */

.intro-loader {
    position: fixed;
    inset: 0; /* Keep for splash screen */
    background: #061b14;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* fade out state */
.intro-loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* LOGO */
.intro-logo img { /* Keep for splash screen */
    width: 140px;
    opacity: 0;
    transform: scale(0.6);
    animation: logoIn 1.2s ease forwards;
}

/* TAGLINE */
.intro-tagline { /* Keep for splash screen */
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 2px;
    color: #d4af37;

    opacity: 0;
    transform: translateY(20px);

    animation: textIn 1s ease forwards;
    animation-delay: 1.2s;
}

/* ANIMATIONS */
@keyframes logoIn { /* Keep for splash screen */
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textIn { /* Keep for splash screen */
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   CINEMATIC INTRO SYSTEM - ENHANCED
================================ */

.intro-cinematic {
    position: fixed;
    inset: 0; /* Keep for splash screen */
    z-index: 99999;
    background: linear-gradient(135deg, #020807 0%, #061b14 50%, #0a2e23 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

/* MULTIPLE LIGHT LAYERS */
.intro-light { /* Keep for splash screen */
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, rgba(212,175,55,0.15) 30%, transparent 70%);
    animation: lightSweepCinematic 3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    filter: blur(40px);
}

.intro-light::before { /* Keep for splash screen */
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(15,59,47,0.8), transparent);
    animation: pulseGlow 2.5s ease-out forwards;
}

@keyframes lightSweepCinematic { /* Keep for splash screen */
    0% {
        transform: scale(0.3) translateY(100px);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes pulseGlow { /* Keep for splash screen */
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* CONTENT WRAPPER */
.intro-content { /* Keep for splash screen */
    text-align: center;
    z-index: 10;
    position: relative;
}

/* LOGO - CINEMATIC ENTRANCE */
.intro-logo { /* Keep for splash screen */
    width: 180px;
    opacity: 0;
    transform: scale(0) rotate(-180deg) translateZ(0);
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.6));
    animation: logoInCinematic 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, logoPulse 2s ease-in-out 2.8s infinite;
    will-change: transform, filter, opacity;
}

@keyframes logoInCinematic { /* Keep for splash screen */
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
        filter: blur(20px) drop-shadow(0 0 50px rgba(212,175,55,0.2));
    }
    40% {
        opacity: 0.8;
        filter: blur(10px) drop-shadow(0 0 40px rgba(212,175,55,0.5));
    }
    70% {
        opacity: 1;
        transform: scale(1.1) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(212,175,55,0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(212,175,55,0.6));
    }
}

@keyframes logoPulse { /* Keep for splash screen */
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212,175,55,0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(212,175,55,0.9));
        transform: scale(1.05);
    }
}

/* TAGLINE - STAGGERED ENTRANCE */
.intro-tagline { /* Keep for splash screen */
    margin-top: 28px;
    color: #d4af37;
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: taglineInCinematic 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.3s;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.2));
}

@keyframes taglineInCinematic { /* Keep for splash screen */
    0% {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 8px;
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 4px;
        filter: blur(0);
    }
}

/* PAGE CONTENT FADE IN */
body { /* Keep for splash screen */
    opacity: 1;
    transition: opacity 1.2s ease;
}

body.loading-complete {
    animation: pageReveal 1.2s ease forwards;
    animation-delay: 0.1s;
}

@keyframes pageReveal { /* Keep for splash screen */
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* EXIT ANIMATION - SCALE UP AND FADE */
.intro-cinematic.hide { /* Keep for splash screen */
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* HIDE PAGE CONTENT INITIALLY */
.page-loader,
.progress-bar,
.header,
main,
section,
footer {
    animation: fadeInContent 1s ease forwards;
    animation-delay: 2.3s;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*=============================
PRODUCT HIGHLIGHTS
=============================*/

.product-highlights{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

    margin:40px 0;

}

.highlight-card{

    background:#fff;

    border:1px solid rgba(212,175,55,.15);

    border-radius:18px;

    padding:24px;

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

    cursor:pointer;

    position:relative;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.highlight-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        transparent 70%
    );

    opacity:0;

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.highlight-card:hover::before{

    opacity:1;

}

.highlight-icon{

    width:68px;

    height:68px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #D4AF37,
        #F7D774
    );

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    color:#fff;

    font-size:24px;

    box-shadow:0 10px 25px rgba(212,175,55,.35);

}

.highlight-content{

    display:flex;

    flex-direction:column;

}

.highlight-content .label{

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#8d8d8d;

    margin-bottom:8px;

}

.highlight-content h4{

    margin:0;

    font-size:20px;

    color:#093322;

    font-weight:700;

}

@media(max-width:991px){

.product-highlights{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.product-highlights{

grid-template-columns:1fr;

}

}

/*=========================================
        PRODUCTS SECTION
=========================================*/

.products-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #f7faf8,
    #ffffff);

}

.products-section .container{

    width:min(1400px,92%);

    margin:auto;

}

.section-header{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.subtitle{
    color:#888;
    font-size:14px;
    margin:8px 0 15px;
}

.section-header h2{

    font-size:3rem;

    color:#103b2f;

    margin:18px 0;

    font-weight:800;

}

.section-header p{

    color:#667;

    font-size:1.05rem;

    line-height:1.8;

}

/*=========================================
        GRID
=========================================*/

.products-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}

/*=========================================
        CARD
=========================================*/

.product-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    position:relative;

    transition:.45s;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:

    0 20px 45px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    height:100%;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 35px 60px rgba(0,0,0,.14);

}

.product-image{

    position:relative;

    height:270px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-overlay{

    position:absolute;

    inset:20px;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

}

.badge{

    padding:6px 12px;

    font-size:11px;

    border-radius:25px;

}

.export-badge{

position:absolute;

top:15px;

left:15px;

background:#D4AF37;

padding:8px 14px;

border-radius:30px;

color:#143D26;

font-weight:700;

font-size:12px;

}


.country-badge{

position:absolute;

top:15px;

right:15px;

background:#143D26;

color:white;

padding:8px 14px;

border-radius:30px;

}

.product-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.product-content h3{

    font-size:2rem;

    color:#103b2f;

    margin-bottom:15px;

}

.product-description{
    font-size:14px;
    line-height:1.5;
    margin-bottom:15px;
    color:#666;
}

.product-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-bottom:30px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature i{

    width:46px;

    height:46px;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:#eef8f3;

    color:#0d6b4f;

    font-size:18px;

}

.feature small{

    display:block;

    color:#888;

    font-size:.72rem;

}

.feature strong{

    color:#103b2f;

}

.price-box{

    margin-top:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    border-radius:18px;

    background:

    linear-gradient(

    135deg,

    #fffdf6,

    #f4f8f6);

    border:1px solid rgba(212,175,55,.25);

}

.price-box small{

    text-transform:uppercase;

    color:#777;

    font-size:.72rem;

}

.price-box h4{

    margin:6px 0;

    color:#103b2f;

    font-size:1.6rem;

}

.price-box span{

    color:#888;

    font-size:.9rem;

}

.btn-quote{

    padding:14px 24px;

    border-radius:14px;

    background:

    linear-gradient(

    135deg,

    #0d6b4f,

    #13835f);

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    white-space:nowrap;

}

.btn-quote:hover{

    transform:translateY(-4px);

    background:

    linear-gradient(

    135deg,

    #d4af37,

    #e4c14b);

    color:#17392d;

}

.details-link{

    margin-top:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#0d6b4f;

    font-weight:700;

    transition:.3s;

}

.details-link:hover{

    gap:18px;

    color:#d4af37;

}

/*============================
      RESPONSIVE
=============================*/

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.products-grid{

grid-template-columns:1fr;

}

.product-features{

grid-template-columns:1fr;

}

.price{
    font-size:24px;
    color:#D4AF37;
    font-weight:700;
    margin-bottom:15px;
}

.price-box{

flex-direction:column;

gap:20px;

align-items:flex-start;

}

.section-header h2{

font-size:2.2rem;

}

}


@media(max-width:1400px){

.products-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:640px){

.products-grid{

grid-template-columns:1fr;

}

}

/*==============================================================
PRODUCT COLLECTION
==============================================================*/

.product-collection{

    position:relative;

    padding:120px 0;

    background:
    radial-gradient(circle at top right,#d4af3712 0%,transparent 35%),
    linear-gradient(180deg,#f8fbf8 0%,#eef6f1 100%);

    overflow:hidden;

}

.product-collection::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.25;

    pointer-events:none;

}

/*==============================================================
SECTION HEADING
==============================================================*/

.section-heading.center{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading.center h2{

    font-size:clamp(2.4rem,4vw,4rem);

    color:var(--dark-green);

    margin:20px 0;

    line-height:1.15;

    font-weight:700;

}

.section-heading.center p{

    max-width:700px;

    margin:auto;

    color:#61726a;

    font-size:1.08rem;

    line-height:1.8;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:100px;

    background:#ffffff;

    border:1px solid rgba(212,175,55,.25);

    color:var(--gold);

    font-weight:700;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/*==============================================================
PRODUCT GRID
==============================================================*/

.subcategory-grid-products{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:35px;

    align-items:stretch;

}

.subcategory-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.15);

    border-radius:28px;

    overflow:hidden;

    transition:all .45s ease;

    box-shadow:

    0 15px 40px rgba(0,0,0,.08),

    0 3px 8px rgba(0,0,0,.04);

    height:100%;

}

.subcategory-card:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.5);

    box-shadow:

    0 30px 60px rgba(0,0,0,.15),

    0 0 35px rgba(212,175,55,.15);

}

/* Premium Gold Top Line */

.subcategory-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        #0b5d3b,

        #d4af37,

        #0b5d3b

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

    z-index:5;

}

.subcategory-card:hover::before{

    transform:scaleX(1);

}

/*==============================================================
PRODUCT IMAGE
==============================================================*/

.card-image{

    position:relative;

    overflow:hidden;

    aspect-ratio:16/10;

    background:#0b5d3b;

}

.card-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:

    transform .8s cubic-bezier(.22,.61,.36,1),

    filter .6s ease;

}

.subcategory-card:hover .card-image img{

    transform:scale(1.08);

    filter:brightness(1.08);

}

/*==============================================================
IMAGE OVERLAY
==============================================================*/

.image-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        180deg,

        rgba(0,0,0,.05) 0%,

        rgba(0,0,0,.15) 45%,

        rgba(7,33,24,.75) 100%

    );

    transition:.45s;

}

.subcategory-card:hover .image-overlay{

    background:

    linear-gradient(

        180deg,

        rgba(0,0,0,.02) 0%,

        rgba(11,93,59,.18) 45%,

        rgba(7,33,24,.82) 100%

    );

}

/*==============================================================
EXPORT BADGE
==============================================================*/

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.94);

    color:#0b5d3b;

    font-size:.78rem;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:

    0 8px 24px rgba(0,0,0,.12);

    z-index:2;

}

/*==============================================================
PREMIUM SHINE
==============================================================*/

.card-image::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-45%;

    width:35%;

    height:260%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transform:rotate(22deg);

    transition:1s;

}

.subcategory-card:hover .card-image::after{

    left:135%;

}

/*==============================================================
CARD CONTENT
==============================================================*/

.card-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:30px;

}

.card-content h3{

    font-size:1.55rem;

    font-weight:700;

    color:var(--dark-green);

    margin-bottom:14px;

    line-height:1.3;

    transition:.35s;

}

.subcategory-card:hover .card-content h3{

    color:var(--gold);

}

.card-content p{

    color:#68776e;

    font-size:1rem;

    line-height:1.8;

    margin-bottom:28px;

    flex:1;

}

/*==============================================================
EXPLORE BUTTON
==============================================================*/
.explore-btn{
    margin-top:18px;
    display:block;
    text-align:center;
    padding:12px;
    background:#143D26;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
}

.explore-btn:hover{
    background:#D4AF37;
    color:#143D26;
    transform:translateY(-3px);
}
.explore-btn i{

    transition:.35s;

}



.explore-btn:hover i{

    transform:translateX(8px);

}

/*==============================================================
BUTTON SHINE
==============================================================*/

.explore-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:70%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.7s;

}

.explore-btn:hover::before{

    left:140%;

}

/*==============================================================
CARD REVEAL
==============================================================*/

.subcategory-card{

    opacity:0;

    transform:translateY(40px);

    animation:cardReveal .8s ease forwards;

}

.subcategory-card:nth-child(2){

    animation-delay:.12s;

}

.subcategory-card:nth-child(3){

    animation-delay:.24s;

}

.subcategory-card:nth-child(4){

    animation-delay:.36s;

}

.subcategory-card:nth-child(5){

    animation-delay:.48s;

}

.subcategory-card:nth-child(6){

    animation-delay:.60s;

}

@keyframes cardReveal{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==============================================================
RESPONSIVE DESIGN
==============================================================*/

@media (max-width:1200px){

    .subcategory-grid-products{

        grid-template-columns:repeat(2,1fr);

        gap:30px;

    }

}

@media (max-width:768px){

    .product-collection{

        padding:80px 0;

    }

    .subcategory-grid-products{

        grid-template-columns:1fr;

        gap:25px;

    }

    .card-content{

        padding:24px;

    }

    .card-content h3{

        font-size:1.35rem;

    }

    .card-content p{

        font-size:.95rem;

    }

}

@media (max-width:576px){

    .section-heading.center{

        margin-bottom:50px;

    }

    .section-heading.center h2{

        font-size:2rem;

    }

    .card-image{

        aspect-ratio:4/3;

    }

}



/*==============================================================
PREMIUM CURSOR GLOW
==============================================================*/

.subcategory-card{

    --x:50%;
    --y:50%;

}

.subcategory-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at var(--x) var(--y),

        rgba(212,175,55,.20),

        transparent 45%

    );

    opacity:0;

    transition:opacity .35s;

    pointer-events:none;

    z-index:1;

}

.subcategory-card:hover::after{

    opacity:1;

}

/*==============================================================
FLOATING ANIMATION
==============================================================*/

@keyframes floatingCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0px);

    }

}

.subcategory-card:nth-child(odd){

    animation:

    cardReveal .8s ease forwards,

    floatingCard 6s ease-in-out infinite;

}

.subcategory-card:nth-child(even){

    animation:

    cardReveal .8s ease forwards,

    floatingCard 7s ease-in-out infinite;

}

/*==============================================================
SMOOTH IMAGE LOADING
==============================================================*/

.card-image img{

    opacity:0;

    animation:imageFade .8s ease forwards;

}

@keyframes imageFade{

    from{

        opacity:0;

        transform:scale(1.05);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==============================================================
BETTER PERFORMANCE
==============================================================*/

.subcategory-card,

.card-image img,

.explore-btn{

    will-change:transform;

}

.subcategory-card:hover{

    backface-visibility:hidden;

    transform:

    translateY(-12px)

    translateZ(0);

}

/* Large Desktop */
@media (max-width:1400px){
    .products-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* Laptop */
@media (max-width:1200px){
    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Tablet */
@media (max-width:768px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .products-grid{
        grid-template-columns:1fr;
    }
}

.product-specs{
    display:flex;
    flex-direction:column;
    gap:8px;
    font-size:13px;
    color:#555;
}

.product-specs div{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.product-specs strong{
    color:#143D26;
}

.product-specs span{
    color:#666;
}

.price-box{
    margin-top:20px;
    text-align:center;
}

.price-box small{
    color:#777;
    display:block;
}

.price-box h2{
    color:#D4AF37;
    font-size:28px;
    margin-top:5px;
}

.product-trust-strip{

display:flex;

gap:12px;

flex-wrap:wrap;

margin:20px 0;

}

.product-trust-strip span{

display:flex;

align-items:center;

gap:8px;

padding:10px 18px;

background:#eef7f1;

color:#143D26;

border-radius:30px;

font-size:13px;

font-weight:600;

border:1px solid rgba(20,61,38,.08);

}

.product-trust-strip i{

color:#D4AF37;

}

.product-price{

margin:25px 0;

padding:25px;

background:linear-gradient(135deg,#143D26,#1d5a3d);

border-radius:18px;

color:white;

box-shadow:0 20px 40px rgba(20,61,38,.18);

}

.product-price strong{

display:block;

font-size:34px;

font-weight:700;

margin-bottom:6px;

color:#D4AF37;

}

.product-price span{

opacity:.9;

font-size:14px;

}

.spec-box{

background:white;

border-radius:16px;

padding:20px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.35s;

border:1px solid rgba(212,175,55,.15);

}

.spec-box:hover{

transform:translateY(-6px);

box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.product-gallery-main{

border-radius:22px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.12);

cursor:pointer;

transition:.4s;

}

.product-gallery-main:hover{

transform:scale(1.02);

}

/* ==============================
   RELATED PRODUCTS
============================== */

.related-products-section{

    padding:90px 0;

    background:#f7f8f5;

}

.related-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:50px;

}

.related-grid .product-card{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.related-grid .product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.16);

}

.related-grid img{

    height:190px;

    width:100%;

    object-fit:cover;

}

@media(max-width:1200px){

.related-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.related-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.related-grid{

grid-template-columns:1fr;

}

}

.product-card img{

transition:.45s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card{

overflow:hidden;

}

.product-card img{

transition:.45s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card{

overflow:hidden;

}

}

/*==================================================
PREMIUM CATEGORY STRIP
==================================================*/

.premium-category-strip{

overflow:hidden;
padding:40px 0;
background:#fff;
position:relative;

}

.category-track{

display:flex;
width:max-content;
animation:scrollProducts 25s linear infinite;
gap:35px;

}

.category-item{

display:flex;
align-items:center;
gap:18px;

background:#fff;

padding:18px 32px;

border-radius:80px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

border:1px solid rgba(212,175,55,.15);

}

.category-item:hover{

transform:translateY(-8px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.category-item img{

width:55px;

height:55px;

object-fit:contain;

}

.category-item span{

font-size:18px;

font-weight:600;

color:#143D26;

white-space:nowrap;

}

@keyframes scrollProducts{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@media(max-width:768px){

.category-item{

padding:15px 22px;

}

.category-item img{

width:40px;

height:40px;

}

.category-item span{

font-size:15px;

}

}

.header::before{

content:"";

position:absolute;

inset:0;

border-radius:inherit;

padding:1px;

background:linear-gradient(
135deg,
rgba(255,255,255,.8),
rgba(212,175,55,.4),
rgba(20,61,38,.4)
);

-webkit-mask:

linear-gradient(#fff 0 0) content-box,

linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

mask-composite:exclude;

pointer-events:none;

}

/* Floating Background Glow */

.hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

right:-220px;

top:-180px;

border-radius:50%;

background:

radial-gradient(circle,
rgba(212,175,55,.22),
transparent 70%);

animation:heroGlow 10s ease-in-out infinite;

pointer-events:none;

}

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

left:-180px;

bottom:-150px;

border-radius:50%;

background:

radial-gradient(circle,
rgba(20,61,38,.16),
transparent 70%);

animation:heroGlow 12s ease-in-out infinite alternate;

pointer-events:none;

}

@keyframes heroGlow{

0%{

transform:translateY(0px) scale(1);

}

50%{

transform:translateY(-25px) scale(1.08);

}

100%{

transform:translateY(0px) scale(1);

}

}

@media (max-width:992px){

.header{

height:72px;

padding:0 18px;

width:95%;

}

.logo{

font-size:22px;

}

.logo img{

height:44px;

}

.nav-links{

gap:14px;

}

}