/* ===========================
RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.6;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));
    margin:auto;

}

/* ===========================
TYPOGRAPHY
=========================== */

h1,h2,h3,h4{

    font-family:'Poppins',sans-serif;
    color:var(--black);

}

.section{

    padding:90px 0;

}

.section-title{

    font-size:2.4rem;
    margin-bottom:15px;

}

.section-subtitle{

    max-width:650px;
    color:#666;
    margin:auto;

}

/* ===========================
BUTTONS
=========================== */

.btn{

display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:50px;
font-weight:600;
transition:var(--transition);

}

.btn-primary{

background:var(--gradient-green);
color:#fff;

}

.btn-primary:hover{

transform:translateY(-4px);
box-shadow:var(--shadow-md);

}

.btn-outline{

border:2px solid white;
color:white;

}

.btn-outline:hover{

background:white;
color:var(--black);

}

/* ==========================
HEADER
========================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    transition:.4s;

}

.header.scrolled{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(20px);

    box-shadow:0 5px 30px rgba(0,0,0,.08);

}

.navbar{

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:65px;

    transition:.3s;

}

.logo:hover img{

    transform:scale(1.05);

}

.nav-menu{

display:flex;

align-items:center;

gap:35px;

}

.nav-menu a{

font-weight:600;

font-size:.95rem;

transition:.3s;

position:relative;

}

.nav-menu a:hover{

color:var(--primary-dark);

}

.nav-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.nav-menu a:hover::after{

width:100%;

}

.book-btn{

padding:12px 26px;

border-radius:50px;

background:var(--gradient-green);

color:#fff !important;

box-shadow:var(--shadow-md);

}

.book-btn:hover{

transform:translateY(-3px);

}

/* ==========================================
   HAMBURGER
========================================== */

.hamburger{

    width:34px;
    height:26px;

    position:relative;

    cursor:pointer;

    display:none;

    z-index:2000;

}

.hamburger span{

    position:absolute;

    left:0;

    width:100%;
    height:3px;

    background:#222;

    border-radius:10px;

    transition:all .35s ease;

}

.hamburger span:nth-child(1){

    top:0;

}

.hamburger span:nth-child(2){

    top:11px;

}

.hamburger span:nth-child(3){

    top:22px;

}

/* When menu is open */

.hamburger.active span:nth-child(1){

    transform:rotate(45deg);

    top:11px;

    background:#222;

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:rotate(-45deg);

    top:11px;

    background:#222;

}

@media(max-width:991px){

    .hamburger{

        display:block;

    }

}


/* ==========================
   HERO
========================== */

.hero{

    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;

}

.hero-video{

    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;

}

.hero-overlay{

    position:absolute;
    inset:0;
    z-index:2;
    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.55));

}

.hero-content{

    position:relative;
    z-index:5;
    color:#fff;
    max-width:700px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

}

.hero h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:20px;

    color:#fff;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:1.15rem;

    color:#eee;

    margin-bottom:35px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    width:28px;

    height:50px;

    border:2px solid white;

    border-radius:30px;

    display:block;

    position:relative;

}

.scroll-indicator span::before{

    content:"";

    width:6px;

    height:6px;

    background:white;

    border-radius:50%;

    position:absolute;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

top:10px;
opacity:1;

}

100%{

top:28px;
opacity:0;

}

}

/*==============================
WELCOME SCREEN
==============================*/

#welcome-screen{

text-align:center;
position:fixed;

inset:0;

background:linear-gradient(
135deg,
#0d1f0d,
#1f4720);

display:flex;

align-items:center;

justify-content:center;

z-index:999999;

transition:1s;

}

#welcome-screen.hide{

opacity:0;

visibility:hidden;

}

.welcome-content{

text-align:center;

color:white;

padding:30px;

}

.welcome-logo{

width:120px;

margin:auto;

margin-bottom:30px;

animation:float 3s infinite;

}

.welcome-content h1{

font-size:clamp(2.2rem,5vw,4.5rem);

line-height:1.1;

color:white;

margin-bottom:15px;

}

.welcome-content p{

font-size:1.1rem;

opacity:.9;

margin-bottom:35px;

}

#enter-site{

padding:16px 40px;

border:none;

border-radius:50px;

cursor:pointer;

background:var(--gradient-green);

color:white;

font-size:1rem;

font-weight:600;

transition:.3s;

}

#enter-site:hover{

transform:translateY(-4px);

}

/* ===========================
   Nature Particle Container
=========================== */

#nature-particles{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:2;
}

.leaf{
    position:absolute;
    top:-80px;
    opacity:.65;
    pointer-events:none;
    user-select:none;
    will-change:transform,opacity;
    filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.hero-content{
    position:relative;
    z-index:5;
}

.hero-overlay{
    z-index:2;
}

.hero-video{
    z-index:1;
}

/* ==========================
   HERO GREETING
========================== */

.hero-greeting{

display:inline-flex;
align-items:center;
gap:12px;

padding:12px 24px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.2);

border-radius:50px;

color:white;

margin-bottom:30px;

animation:fadeUp .8s;

}

.hero-greeting span:first-child{

font-size:24px;

}

/* ==========================
   FOG
========================== */

.fog{

position:absolute;

left:-20%;

width:140%;

height:220px;

pointer-events:none;

background:radial-gradient(
rgba(255,255,255,.20),
transparent 70%
);

filter:blur(80px);

opacity:.45;

z-index:2;

animation:fogMove 35s linear infinite;

}

.fog-one{

top:18%;

}

.fog-two{

bottom:10%;

animation-direction:reverse;

animation-duration:45s;

}

@keyframes fogMove{

0%{

transform:translateX(-8%);

}

100%{

transform:translateX(8%);

}

}



/* ==========================
   HERO WAVE
========================== */

.hero-wave{

position:absolute;

bottom:-2px;

left:0;

width:100%;

line-height:0;

z-index:4;

}

.hero-wave svg{

display:block;

width:100%;

height:110px;

}

/* ==========================================
   AUDIO BUTTON
========================================== */



/*==================================
FLOATING AUDIO BUTTON
==================================*/

.audio-toggle{

position:fixed;

right:25px;

bottom:100px;

display:flex;

align-items:center;

gap:10px;

padding:14px 18px;

border:none;

border-radius:50px;

cursor:pointer;

background:rgba(255,255,255,.12);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.2);

box-shadow:0 12px 35px rgba(0,0,0,.18);

z-index:9999;

transition:.35s;

color:white;

}

.audio-toggle:hover{

transform:translateY(-4px);

background:rgba(124,200,74,.25);

}

.audio-icon{

font-size:22px;

}

.audio-text{

font-size:.95rem;

font-weight:600;

}

.audio-toggle.muted{

opacity:.65;

}

/* ==========================================
WELCOME SCREEN
========================================== */

#welcome-screen{

position:fixed;

inset:0;

z-index:999999;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

background:#081b0d;

transition:1.2s ease;

}

#welcome-screen.hide{

opacity:0;

visibility:hidden;

pointer-events:none;

}

.welcome-background{

position:absolute;

inset:0;

background:

linear-gradient(rgba(4,18,6,.80),
rgba(4,18,6,.88)),

url("../images/hero/meghalaya.jpg");

background-position:center center;
background-size:cover;



animation:zoomBackground 25s ease-in-out infinite alternate;

}

@keyframes zoomBackground{

from{

transform:scale(1);

}

to{

transform:scale(1.08);

}

}

.welcome-content{

position:relative;

z-index:5;

text-align:center;

max-width:700px;

padding:20px;

color:white;

}

.welcome-logo{

width:140px;

margin-bottom:25px;

animation:

float 4s ease-in-out infinite,

glow 3s ease-in-out infinite;

}

@keyframes glow{

0%,100%{

filter:drop-shadow(0 0 10px rgba(124,200,74,.2));

}

50%{

filter:drop-shadow(0 0 35px rgba(124,200,74,.8));

}

}

.welcome-content h1{

font-size:4rem;

font-weight:700;

margin-bottom:15px;

color:white;

}

#typing-text{

font-size:clamp(.95rem,2vw,1.2rem);

letter-spacing:3px;

min-height:32px;

color:#b8f18f;

margin-bottom:25px;

}

.welcome-divider{

width:100px;

height:3px;

background:var(--primary);

margin:30px auto;

border-radius:10px;

}

.welcome-subtitle{

font-size:clamp(.9rem,1.5vw,1.05rem);

max-width:550px;

margin:auto;

margin-bottom:40px;

line-height:1.8;

opacity:.85;



}

.welcome-btn{

display:inline-flex;

justify-content:center;

align-items:center;

gap:10px;

padding:18px 45px;

border:none;

border-radius:60px;

background:var(--gradient-green);

color:white;

font-size:1rem;

font-weight:600;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.welcome-btn:hover{

transform:translateY(-5px);

}

.welcome-content small{

display:block;

margin-top:25px;

opacity:.7;

font-size:.9rem;

}

.welcome-fog{

position:absolute;

width:140%;

height:220px;

background:

radial-gradient(

rgba(255,255,255,.15),

transparent 70%

);

filter:blur(90px);

opacity:.35;

animation:fogMove 35s linear infinite;

}

.fog-one{

top:15%;

}

.fog-two{

bottom:10%;

animation-direction:reverse;

animation-duration:45s;

}

#welcome-particles{

position:absolute;

inset:0;

pointer-events:none;

}

/* ==========================================
   HERO SEARCH CARD
========================================== */

.hero-search{

    margin-top:-70px;
    position:relative;
    z-index:50;

}

.search-card{

    background:white;

    border-radius:22px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

    padding:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.search-item{

    display:flex;

    flex-direction:column;

}

.search-item label{

    font-size:.9rem;

    margin-bottom:8px;

    color:#555;

    font-weight:600;

}

.search-item select{

    height:50px;

    border:none;

    background:#F5F7F5;

    border-radius:12px;

    padding:0 15px;

    font-size:.95rem;

    outline:none;

}

.search-btn{

    align-self:end;

    height:50px;

    border:none;

    border-radius:12px;

    background:var(--gradient-green);

    color:white;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.search-btn:hover{

    transform:translateY(-2px);

}

/* =====================================
   EXPLORE NORTHEAST
===================================== */

.explore{

padding:120px 0;

background:#f8fbf6;

}

.section-heading{

text-align:center;

max-width:750px;

margin:auto;

margin-bottom:70px;

}

.section-heading h2{

font-size:3rem;

margin:20px 0;

}

.section-heading p{

color:#666;

font-size:1.05rem;

line-height:1.8;

}

.section-badge{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:#EAF8E1;

color:var(--primary-dark);

font-weight:600;

}

.state-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.state-card{

position:relative;

height:340px;

overflow:hidden;

border-radius:24px;

box-shadow:var(--shadow-lg);

}

.state-card.large{

height:420px;

}

.state-card.wide{

grid-column:1/-1;

height:400px;

}

.state-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.8s;

}

.state-card:hover img{

transform:scale(1.08);

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(
transparent,
rgba(0,0,0,.75));

}

.state-content{

position:absolute;

left:30px;

bottom:30px;

z-index:2;

color:white;

}

.state-name{

display:inline-block;

padding:6px 14px;

border-radius:30px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

margin-bottom:15px;

}

.state-content h3{

color:white;

font-size:1.8rem;

margin-bottom:12px;

line-height:1.3;

}

.state-content p{

color:#7CC84A;

font-weight:600;

}

/*==================================
UPCOMING TRIPS
==================================*/

.upcoming{

padding:120px 0;

background:white;

}

.trip-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.trip-card{

background:white;

border-radius:22px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.4s;

position:relative;

}

.trip-card:hover{

transform:translateY(-8px);

}

.trip-card img{

width:100%;

height:240px;

object-fit:cover;

}

.trip-content{

padding:25px;

}

.trip-content span{

color:#777;

display:block;

margin-bottom:15px;

}

.trip-content ul{

list-style:none;

padding:0;

margin:20px 0;

}

.trip-content li{

margin-bottom:12px;

}

.trip-footer{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:20px;

}

.trip-footer h4{

font-size:1.6rem;

color:var(--primary);

}

.trip-footer a{

background:var(--gradient-green);

padding:10px 20px;

border-radius:40px;

color:white;

text-decoration:none;

}

.trip-badge{

position:absolute;

top:20px;

left:20px;

padding:8px 15px;

border-radius:30px;

color:white;

font-size:.85rem;

font-weight:600;

}

.full{

background:#ff4d4d;

}

.open{

background:#38b000;

}

.new{

background:#0077ff;

}

/* ==========================================
   TRAVEL STYLES
========================================== */

.travel-style{

    padding:120px 0;

    background:#F8FBF6;

}

.style-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.style-card{

    background:white;
    border-radius:24px;
    padding:40px 30px;

    display:flex;
    flex-direction:column;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.style-card:hover{

    transform:translateY(-10px);

}

.style-icon{

    font-size:3rem;

    margin-bottom:20px;

}

.style-card h3{

    margin-bottom:15px;

}

.style-card p{

    min-height:90px;

    color:#666;

    line-height:1.8;

}

.style-card ul{

    flex:1;

    list-style:none;

    margin:25px 0;

    padding:0;

}

.style-card li{

    margin:12px 0;

}

.style-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    width:fit-content;

    margin:20px auto 0;

    padding:14px 24px;

    border-radius:50px;

    text-decoration:none;

    background:var(--gradient-green);

    color:white;

    font-weight:600;
      
    margin-top:auto;

    align-self:center;

    

}


.featured{

    transform:scale(1.05);

    border:2px solid #7CC84A;

}

.popular-tag{

    position:absolute;

    top:20px;

    right:20px;

    background:#7CC84A;

    color:white;

    padding:6px 12px;

    border-radius:20px;

    font-size:.75rem;

    font-weight:600;

}

/*==================================
WHY CHOOSE US
==================================*/

.why-choose{

    padding:120px 0;

    background:#F8FBF6;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:white;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#7CC84A,#4E8B2B);

    color:white;

    font-size:2rem;

}

.why-card h3{

    margin-bottom:15px;

    font-size:1.35rem;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/*==================================
TRAVEL MOMENTS
==================================*/

.travel-moments{

padding:120px 0;

background:#fff;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:50px;

}

.gallery-grid img{

width:100%;

height:280px;

object-fit:cover;

border-radius:20px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

.gallery-btn{

margin-top:50px;

text-align:center;

}

.gallery-btn a{

display:inline-block;

padding:15px 35px;

background:var(--gradient-green);

border-radius:50px;

color:white;

text-decoration:none;

font-weight:600;

}

/*==================================
TESTIMONIALS
==================================*/

.testimonials{

    padding:120px 0;

    background:#fff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.testimonial-card{

    background:#F8FBF6;

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.stars{

    color:#FFC107;

    font-size:1.2rem;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.traveller{

    display:flex;

    align-items:center;

    gap:15px;

}

.traveller img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.traveller h4{

    margin-bottom:5px;

}

.traveller span{

    color:#777;

    font-size:.9rem;

}

/*==================================
FAQ
==================================*/

.faq{

padding:120px 0;

background:#F8FBF6;

}

.faq-wrapper{

max-width:900px;

margin:60px auto 0;

}

.faq-item{

background:white;

margin-bottom:20px;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.faq-question{

width:100%;

padding:22px 30px;

border:none;

background:white;

font-size:1.05rem;

font-weight:600;

cursor:pointer;

display:flex;

justify-content:space-between;

align-items:center;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:.4s;

}

.faq-answer p{

padding:0 30px 25px;

color:#666;

line-height:1.8;

}

.faq-item.active .faq-answer{

max-height:250px;

}

.faq-item.active span{

transform:rotate(45deg);

transition:.3s;

}

/*==================================
FINAL CTA
==================================*/

.cta-section{

    position:relative;

    padding:150px 0;

    background:url("../images/hero/cta.jpg") center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.70)
    );

}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:760px;

    margin:auto;

    color:white;

}

.cta-content h2{

    color:white;

    font-size:3.5rem;

    margin:20px 0;

    line-height:1.2;

}

.cta-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*==================================
FOOTER
==================================*/

.footer{

    background:#0E1A12;

    color:#D6E6D3;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:50px;

}

.footer-logo{

    width:80px;

    margin-bottom:20px;

}

.footer-about h3{

    color:#fff;

    margin-bottom:15px;

}

.footer-about p{

    line-height:1.9;

    color:#B8C9B5;

    margin-bottom:25px;

}

.footer h4{

    color:#fff;

    margin-bottom:20px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin:12px 0;

}

.footer a{

    color:#B8C9B5;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#7CC84A;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}

.footer-social a:hover{

    background:#7CC84A;

    color:#fff;

}

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:#AAB9A6;

}

/*==================================
DEVELOPER CREDIT
==================================*/

.developer-credit{

    color:#B8C9B5;

    font-size:.95rem;

}

.developer-credit a{

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.code-white{

    color:#ffffff;

}

.sensy-green{

    color:#7CC84A;

}

.developer-credit a:hover{

    opacity:.85;

}

/*==================================
TRAVEL MOMENTS
==================================*/

.gallery-grid{

    overflow:hidden;

    width:100%;

    position:relative;

    margin-top:60px;

}

.gallery-track{

    display:flex;

    gap:20px;

    width:max-content;

    will-change:transform;

}

.gallery-track img{

    width:300px;
    height:400px;

    object-fit:cover;

    border-radius:20px;

    flex-shrink:0;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.gallery-track img:hover{

    transform:scale(1.03);

}
.gallery-grid::before,
.gallery-grid::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:2;

    pointer-events:none;

}

.gallery-grid::before{

    left:0;

    background:linear-gradient(to right,#F8FBF6,transparent);

}

.gallery-grid::after{

    right:0;

    background:linear-gradient(to left,#F8FBF6,transparent);

}

/*==================================
TRUST STATS
==================================*/

.stats{

    padding:60px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:28px 20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid rgba(124,200,74,.08);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.stat-icon{

    width:58px;
    height:58px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#F3FAEE;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.6rem;

}

.stat-card h2{

    font-size:2.4rem;

    color:#69BE3C;

    margin-bottom:6px;

    font-weight:700;

}

.stat-card span{

    display:block;

    color:#555;

    font-size:.95rem;

    font-weight:500;

    line-height:1.5;

}

