/* =========================================================
   COMPLETE DESKTOP CSS
   PREMIUM + RESPONSIVE FOUNDATION
   ORANGE NAVBAR DEFAULT
   BLUE NAVBAR ON SCROLL
   SMALLER IMAGE CARDS (35% SMALLER)
========================================================= */

/* ================= RESET ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8f9fb;
color:#333;
overflow-x:hidden;
}

/* ================= CONTAINER ================= */

.container{
width:90%;
max-width:1180px;
margin:auto;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:99999;

background: rgba(255, 102, 0, 0.96);

backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,0.12);

transition:
background .4s ease,
padding .4s ease,
box-shadow .4s ease;
}

/* NAVBAR AFTER SCROLL */

.navbar.scrolled{
background:rgba(251, 115, 4, 0.96);

box-shadow:
0 8px 30px rgba(0,0,0,0.12);
}

/* NAV INNER */

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 0;
transition:.3s;
}

.navbar.scrolled .nav{
padding:10px 0;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;

font-size:18px;
font-weight:700;
letter-spacing:.4px;

color:#fff;
}

.logo img{
width:46px;
height:46px;
border-radius:50%;
object-fit:cover;

border:2px solid rgba(255,255,255,0.25);
}

/* LINKS */

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#fff;
font-size:15px;
font-weight:500;
position:relative;
transition:.3s ease;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
border-radius:20px;
background:#fff;
transition:.35s;
}

nav a:hover::after{
width:100%;
}

/* BUTTONS */

.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;

padding:11px 24px;

border-radius:40px;
text-decoration:none;

background:#fff;
color:#111;

font-weight:600;

transition:.35s ease;
}

.btn-primary:hover{
transform:translateY(-3px);

box-shadow:
0 10px 25px rgba(0,0,0,0.15);
}

.btn-outline{
display:inline-flex;
align-items:center;
justify-content:center;

padding:11px 24px;

border-radius:40px;
text-decoration:none;

border:2px solid #fff;

color:#fff;

transition:.35s ease;
}

.btn-outline:hover{
background:#fff;
color:#111;
}

/* =========================================================
   HERO SECTION
========================================================= */

/* ================= HERO SECTION ================= */

.hero{
position:relative;

/* HALF SCREEN HEIGHT */
height:88vh;

width:100%;
overflow:hidden;

display:flex;
align-items:center;

/* spacing from navbar */
margin-top:80px;
}

/* IMAGE WRAPPER */
.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:-2;
}

/* IMAGE */
.hero-bg img{
width:100%;
height:100%;

/* IMPORTANT */
object-fit:contain;

/* FULL RECTANGLE IMAGE */
object-position:center center;

display:block;

/* prevents stretching */
background:#fff;
}

/* OVERLAY */
.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

/* background:
linear-gradient(
to right,
rgba(255,255,255,0.92),
rgba(255,255,255,0.55),
rgba(255,255,255,0.05)
); */

z-index:-1;
}

/* CONTENT */
.hero-content{
width:100%;
padding-top:40px;
}

.hero-text{
max-width:560px;
}

/* TITLE */
.hero h1{
font-size:64px;
line-height:1.15;
margin-bottom:16px;
font-weight:700;
color:#111827;
}

.hero span{
color:#ff9800;
}

/* DESCRIPTION */
.hero p{
font-size:17px;
line-height:1.7;
color:#4b5563;
margin-bottom:28px;
}

/* BUTTON GROUP */
.hero-btns{
display:flex;
gap:14px;
flex-wrap:wrap;
}


/* =========================
TABLET
========================= */

@media(max-width:1024px){

.hero{
height:48vh;
margin-top:75px;
}

.hero-bg img{
object-fit:contain;
object-position:center;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:15px;
}

.hero-text{
max-width:480px;
}

}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

.hero{

/* HALF SCREEN */
height: 50vh;

margin-top:70px;

/* ONLY IMAGE */
display:block;
}

/* IMAGE */
.hero-bg{
position:relative;
height:100%;
width:100%;
}

/* IMAGE FIT */
.hero-bg img{
width:100%;
height:100%;

/* MOST IMPORTANT */
object-fit:contain;

/* SHOW FULL RECTANGLE IMAGE */
object-position:center;

background:#fff;
}

/* REMOVE DARK EFFECT */
.hero-overlay{
display:none;
}

/* REMOVE TEXT */
.hero-content{
display:none;
}

}


/* =========================
IPHONE FIX
========================= */

@supports (-webkit-touch-callout: none){

.hero{
height:40vh;
}

.hero-bg img{
object-fit:contain;
object-position:center;
}

}


/* =========================================================
   ABOUT
========================================================= */

.about{
padding:100px 0;

background:
linear-gradient(
135deg,
#fff7ed,
#ffffff,
#fef3c7
);
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* TEXT */

.about-text h2{
font-size:42px;
margin-bottom:18px;
color:#7c2d12;
}

.about-text p{
font-size:16px;
line-height:1.8;
color:#555;
}

.about-text ul{
margin-top:22px;
}

.about-text li{
list-style:none;
margin-bottom:14px;
padding-left:28px;
position:relative;
font-size:15px;
color:#444;
}

.about-text li::before{
content:"✔";
position:absolute;
left:0;
top:0;

color:#f59e0b;
font-weight:700;
}

/* IMAGE */

.about-img{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.about-img img{
width:72%;
border-radius:24px;

box-shadow:
0 20px 60px rgba(0,0,0,0.15);

transition:.45s ease;
}

.about-img:hover img{
transform:
scale(1.04)
rotate(1deg);
}

/* GLOW */

.img-glow{
position:absolute;

width:70%;
height:70%;

background:
radial-gradient(circle,#fbbf24,transparent);

filter:blur(60px);

z-index:-1;
}

/* =========================================================
   STATS
========================================================= */

.stats{
padding:90px 0;

background:
linear-gradient(
135deg,
#0f172a,
#1e293b,
#020617
);
}

.stats-scroll{
display:flex;
gap:22px;

overflow-x:auto;
padding:10px 0 20px;

scroll-snap-type:x mandatory;
}

.stats-scroll::-webkit-scrollbar{
height:6px;
}

.stats-scroll::-webkit-scrollbar-thumb{
background:rgba(255,255,255,0.2);
border-radius:10px;
}

/* CARD */

.stat-card{
position:relative;

min-width:210px;
width:210px;

height:170px;

border-radius:22px;
overflow:hidden;

flex-shrink:0;

scroll-snap-align:center;

transition:.4s ease;

box-shadow:
0 12px 40px rgba(0,0,0,0.45);
}

/* IMAGE */

.stat-card img{
width:100%;
height:100%;

object-fit:cover;

filter:
brightness(.82)
contrast(1.08);

transition:.45s ease;
}

/* OVERLAY */

.stat-overlay{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

background:
linear-gradient(
to top,
rgba(0,0,0,0.88),
rgba(0,0,0,0.22),
transparent
);
}

/* CONTENT */

.stat-content{
position:absolute;
left:14px;
bottom:14px;

color:#fff;
z-index:2;
}

.stat-content h3{
font-size:28px;
color:#facc15;
margin-bottom:2px;
}

.stat-content p{
font-size:12px;
color:#e5e7eb;
}

/* HOVER */

.stat-card:hover{
transform:
translateY(-10px)
scale(1.05);
}

.stat-card:hover img{
transform:scale(1.08);
}

/* =========================================================
   REVIEWS
========================================================= */

.loved-section{
padding:90px 0;

background:
linear-gradient(
135deg,
#0f172a,
#1e293b
);

overflow:hidden;
}

/* REVIEWS ROW */

.reviews{
display:flex;
gap:22px;

overflow-x:auto;
overflow-y:hidden;

padding:10px 0 20px;

scroll-snap-type:x mandatory;
}

.reviews::-webkit-scrollbar{
display:none;
}

/* REVIEW PAIR */

.review-pair{
display:flex;
gap:18px;

min-width:460px;

scroll-snap-align:center;
}

/* REVIEW CARD */

.review-item{
flex:1;

padding:20px;

border-radius:22px;

background:
rgba(255,255,255,0.08);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,0.08);

color:#fff;
}

/* STARS */

.stars{
color:#facc15;
font-size:14px;
margin-bottom:10px;
}

/* REVIEW TEXT */

.review-item p{
font-size:14px;
line-height:1.7;
color:#e5e7eb;
}

/* =========================================================
   CTA
========================================================= */

.cta{
padding:80px 0;
text-align:center;

background:
linear-gradient(
45deg,
#ff9800,
#ffca28
);

color:#111;
}

.cta h2{
font-size:42px;
margin-bottom:18px;
}

.cta p{
font-size:16px;
margin-bottom:25px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
padding:70px 0 35px;

background:#0e3da3;
color:#fff;
}

/* GRID */

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:35px;
}

/* TITLE */

.footer h3{
margin-bottom:14px;
font-size:18px;
}

/* LINKS */

.footer a{
display:block;
margin-bottom:8px;

text-decoration:none;

color:#d1d5db;

transition:.3s ease;
}

.footer a:hover{
color:#ffb300;
}

/* SOCIALS */

.socials{
display:flex;
gap:12px;
margin-top:10px;
}

.socials i{
font-size:20px;
cursor:pointer;
transition:.3s;
}

.socials i:hover{
transform:translateY(-3px);
color:#ffb300;
}

/* COPYRIGHT */

.copy{
margin-top:35px;
text-align:center;

font-size:13px;
color:#9ca3af;
}





/* Register Now Section */

/* ================= REGISTER NOW SECTION ================= */

.register-now{
padding:90px 0;
background:
linear-gradient(
135deg,
#fff6fb,
#ffffff,
#fff0f7
);
}

/* MAIN BOX */
.register-box{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;

background:white;

padding:60px;

border-radius:35px;

box-shadow:
0 20px 60px rgba(255,105,180,0.12);

overflow:hidden;

position:relative;
}

/* GLOW */
.register-box::before{
content:"";

position:absolute;
top:-120px;
right:-120px;

width:300px;
height:300px;

background:
radial-gradient(circle,
rgba(255,105,180,0.18),
transparent);

border-radius:50%;
}

/* LEFT */
.register-left{
flex:1;
position:relative;
z-index:2;
}

/* TAG */
.register-tag{
display:inline-block;

padding:10px 18px;

background:
linear-gradient(
45deg,
#ff4fa3,
#ff7bc3
);

color:white;

font-size:14px;
font-weight:600;

border-radius:50px;

margin-bottom:20px;

box-shadow:
0 10px 25px rgba(255,105,180,0.25);
}

/* TITLE */
.register-left h2{
font-size:52px;
line-height:1.2;

margin-bottom:20px;

color:#111827;
}

/* TEXT */
.register-left p{
font-size:17px;
line-height:1.8;

color:#4b5563;

margin-bottom:28px;

max-width:600px;
}

/* POINTS */
.register-points{
display:flex;
flex-direction:column;
gap:14px;

margin-bottom:35px;
}

.point{
font-size:16px;
font-weight:500;
color:#1f2937;
}

/* REGISTER BUTTON */
.register-btn{
display:inline-flex;
align-items:center;
justify-content:center;

padding:18px 38px;

border-radius:60px;

background:
linear-gradient(
45deg,
#ff2f92,
#ff77b7
);

color:white;
text-decoration:none;

font-size:18px;
font-weight:700;

letter-spacing:.3px;

transition:.4s ease;

box-shadow:
0 15px 40px rgba(255,47,146,0.35);
}

/* HOVER */
.register-btn:hover{
transform:
translateY(-6px)
scale(1.04);

box-shadow:
0 25px 60px rgba(255,47,146,0.45);
}

/* RIGHT IMAGE */
.register-right{
flex:1;
display:flex;
justify-content:center;
align-items:center;
}

.register-right img{
width:100%;
max-width:500px;

border-radius:30px;

object-fit:cover;

box-shadow:
0 20px 50px rgba(0,0,0,0.12);
}


/* =========================
TABLET
========================= */

@media(max-width:1024px){

.register-box{
padding:45px;
gap:35px;
}

.register-left h2{
font-size:40px;
}

.register-right img{
max-width:420px;
}

}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

.register-now{
padding:60px 0;
}

.register-box{
flex-direction:column;

padding:30px 22px;

border-radius:24px;

gap:30px;
}

.register-left{
text-align:center;
}

.register-left h2{
font-size:30px;
}

.register-left p{
font-size:14px;
line-height:1.7;
}

.register-points{
align-items:center;
}

.point{
font-size:14px;
}

.register-btn{
width:100%;

padding:16px 24px;

font-size:16px;
}

.register-right img{
max-width:100%;
border-radius:22px;
}

}


/* =========================
IPHONE FIX
========================= */

@supports (-webkit-touch-callout: none){

.register-btn{
-webkit-appearance:none;
}

.register-right img{
width:100%;
height:auto;
}

}









/* ===============================
GLOBAL IPHONE + MOBILE OVERFLOW FIX
=============================== */

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* IMPORTANT */
html,
body{
width:100%;
max-width:100%;
overflow-x:hidden !important;

-webkit-text-size-adjust:100%;
scroll-behavior:smooth;
}

/* SAFARI / IPHONE FIX */
body{
position:relative;
overscroll-behavior-x:none;
touch-action:pan-y;

background:#fff;
}

/* ALL SECTIONS */
section,
div,
header,
footer{
max-width:100%;
}

/* IMAGES */
img{
max-width:100%;
display:block;
}

/* PREVENT RIGHT SIDE WHITE SPACE */
.container{
width:92%;
max-width:1200px;
margin:auto;

overflow:hidden;
}

/* SCROLL WRAPPERS */
.scroll-wrapper,
.stats-scroll,
.reviews{
overflow-x:auto;
overflow-y:hidden;

-webkit-overflow-scrolling:touch;

scrollbar-width:none;
}

.scroll-wrapper::-webkit-scrollbar,
.stats-scroll::-webkit-scrollbar,
.reviews::-webkit-scrollbar{
display:none;
}

/* FIX FLEX OVERFLOW */
.flex,
.hero,
.nav,
.about-grid,
.footer-grid,
.review-pair{
min-width:0;
}

/* FIX LONG TEXT */
h1,h2,h3,h4,h5,h6,p,a,span{
word-wrap:break-word;
overflow-wrap:break-word;
}

/* BUTTON FIX */
button,
a{
-webkit-tap-highlight-color:transparent;
}

/* IPHONE SAFE AREA */
@supports(padding:max(0px)){

body{
padding-left:env(safe-area-inset-left);
padding-right:env(safe-area-inset-right);
}

}

/* ===============================
EXTRA MOBILE FIX
=============================== */

@media(max-width:768px){

html,
body{
overflow-x:hidden !important;
}

/* ALL CARDS SMALLER */
.feature-card{
min-width:65vw;
height:150px;
}

.course-big{
min-width:68vw;
height:170px;
}

.stat-card{
min-width:62vw;
height:160px;
}

.review-pair{
min-width:78vw;
}

/* HERO FIX */
.hero{
width:100%;
overflow:hidden;
}

/* PREVENT IMAGE PUSH */
.hero-bg{
width:100%;
overflow:hidden;
}

.hero-bg img{
width:100%;
height:100%;
object-fit:contain;
object-position:center;
}

/* CONTACT GRID */
.contact-grid{
grid-template-columns:1fr !important;
}

}

/* ===============================
IPHONE SAFARI SPECIAL FIX
=============================== */

@supports (-webkit-touch-callout:none){

html,
body{
overflow-x:hidden !important;
position:relative;
}

/* REMOVE SAFARI BOUNCE */
body{
overscroll-behavior:none;
}

/* FIX HERO HEIGHT */
.hero{
height:auto;
min-height:40vh;
}

/* FIX 100vh BUG */
.register-hero{
min-height:auto;
}

/* PREVENT SIDE SLIDE */
section{
overflow:hidden;
}

}

/* =========================================
   MOBILE FOOTER FULL OPTIONS VISIBLE
========================================= */

@media(max-width:768px){

.footer{
width:100%;
overflow:hidden;
padding:45px 0 25px;
}

/* 1 COLUMN SO NOTHING HIDES */
.footer-grid{
display:grid !important;
grid-template-columns:1fr !important;

gap:26px;

width:100%;
max-width:100%;

padding:0 18px;
}

/* EACH COLUMN */
.footer-col{
width:100%;
overflow:visible;
}

/* TITLES */
.footer h3{
font-size:18px;
margin-bottom:12px;
color:#fff;
}

/* LINKS */
.footer a{
display:block;

font-size:14px;
line-height:2;

color:#d1d5db;

text-decoration:none;

word-break:break-word;
}

/* SOCIAL ICONS */
.socials{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:10px;
}

/* COPYRIGHT */
.copy{
text-align:center;
font-size:12px;
margin-top:28px;
padding:0 12px;
line-height:1.7;
}

}

/* =========================================
   REMOVE NAV-LINKS ON MOBILE/IPHONE
========================================= */

@media(max-width:768px){

.nav-links{
display:none !important;
}

}

/* HIDE REGISTER NOW BUTTON ON MOBILE + IPHONE */

@media(max-width:768px){

a[href="#RegisterNow"]{
display:none !important;
}

}





















/*   iphone   fixxxxxxxxxxxxxxxxxxxx */
/* =========================================
FEATURE SECTION MOBILE + IPHONE FIX
SQUARE BIG CARDS + FULL IMAGE VISIBLE
========================================= */

@media(max-width:768px){

.features{
padding:55px 0;
}

/* SCROLL AREA */
.features .scroll-wrapper{
gap:16px;
padding:10px 16px 20px;
overflow-x:auto;
scroll-snap-type:x mandatory;
}

/* BIG SQUARE CARDS */
.features .feature-card{

min-width:78vw;
width:78vw;

height:78vw;

border-radius:26px;

overflow:hidden;
flex-shrink:0;

background:#fff;

scroll-snap-align:center;

box-shadow:
0 10px 30px rgba(0,0,0,0.12);
}

/* IMAGE FULL SHOW */
.features .feature-card img{
width:100%;
height:100%;

/* IMPORTANT */
object-fit:cover;

/* CENTER IMAGE */
object-position:center;

display:block;
}

/* TEXT OVERLAY */
.features .card-content{
position:absolute;
left:0;
bottom:0;

width:100%;

padding:16px;

background:
linear-gradient(
to top,
rgba(0,0,0,0.78),
transparent
);

color:#fff;
}

/* TEXT */
.features .card-content p{
font-size:15px;
font-weight:600;
color:#fff;
}

/* ICON */
.features .card-content i{
font-size:18px;
margin-bottom:6px;
display:block;
color:#fff;
}

}


/* =========================================
IPHONE EXTRA FIX
========================================= */

@supports (-webkit-touch-callout:none){

.features .feature-card{

min-width:80vw;
width:80vw;

height:80vw;
}

}



/* =========================================
WHY CHOOSE US MOBILE + IPHONE FIX
IMAGE BELOW TEXT + FULL IMAGE VISIBLE
========================================= */

@media(max-width:768px){

.about{
padding:60px 0;
}

/* STACK TEXT + IMAGE */
.about-grid{
display:flex;
flex-direction:column;

gap:28px;
}

/* TEXT */
.about-text{
width:100%;
text-align:left;
order:1;
}

.about-text h2{
font-size:30px;
margin-bottom:18px;
line-height:1.2;
}

.about-text ul{
margin-top:18px;
}

.about-text li{
font-size:15px;
line-height:1.7;
margin-bottom:12px;
}

/* IMAGE BELOW */
.about-img{
width:100%;
order:2;

display:flex;
justify-content:center;
align-items:center;
}

/* IMAGE FIX */
.about-img img{

width:100%;
max-width:100%;

height:auto;

/* IMPORTANT */
object-fit:contain;
object-position:center;

border-radius:24px;

display:block;

box-shadow:
0 12px 35px rgba(0,0,0,0.12);
}

/* REMOVE EXTRA GLOW OVERFLOW */
.img-glow{
display:none;
}

}


/* =========================================
IPHONE FIX
========================================= */

@supports (-webkit-touch-callout:none){

.about-img img{
width:100%;
height:auto;
}

}


/* =========================================
REVIEWS SECTION MOBILE + IPHONE FIX
SCROLL WORKING + NO OVERLAY ISSUE
========================================= */

@media(max-width:768px){

/* MAIN SECTION */
.loved-section{

padding:60px 0 80px;

height:auto !important;
min-height:auto !important;

overflow:hidden;

position:relative;
z-index:1;
}

/* REMOVE SIDE FADE CAUSING OVERLAY */
.loved-section::before,
.loved-section::after{
display:none;
}

/* TITLE */
.loved-section h2{
font-size:30px;
line-height:1.2;
margin-bottom:10px;
padding:0 16px;
}

.loved-p{
font-size:14px;
padding:0 18px;
margin-bottom:28px;
line-height:1.6;
}

/* SCROLL AREA */
.reviews{

display:flex;

gap:18px;

overflow-x:auto !important;
overflow-y:hidden !important;

scroll-snap-type:x mandatory;

-webkit-overflow-scrolling:touch;

padding:10px 16px 20px;

scroll-behavior:smooth;
}

/* HIDE SCROLLBAR */
.reviews::-webkit-scrollbar{
display:none;
}

/* EACH COLUMN */
.review-pair{

min-width:82vw;

width:82vw;

display:flex;
flex-direction:column;

gap:18px;

flex-shrink:0;

scroll-snap-align:center;
}

/* REVIEW CARDS */
.review-item{

width:100%;

height:auto !important;
min-height:unset !important;

padding:22px 18px;

border-radius:22px;

background:rgba(255,255,255,0.08);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,0.08);

overflow:hidden;
}

/* REMOVE FIXED HEIGHTS */
.big-box,
.medium-box,
.small-box,
.same-box,
.medium-small-box{
height:auto !important;
}

/* TEXT */
.review-item h3{
font-size:17px;
line-height:1.4;
margin-bottom:10px;
}

.review-item p{
font-size:14px;
line-height:1.7;
opacity:.9;
}

.review-item cite{
font-size:12px;
margin-top:14px;
display:block;
opacity:.7;
}

/* STARS */
.stars{
font-size:16px;
margin-bottom:10px;
}

}


/* =========================================
IPHONE SAFARI FIX
========================================= */

@supports (-webkit-touch-callout:none){

.reviews{
padding-bottom:30px;
}

.review-pair{
min-width:84vw;
}

}








/* =========================
   PREMIUM REGISTER SECTION
   LIGHT HAZEL THEME
========================= */

.register-now{
    width:100%;
    margin-top:0 !important;
    padding:0 0 30px;
    position:relative;
    overflow:hidden;

    /* LIGHT PREMIUM HAZEL */
    background:
    linear-gradient(135deg, #FAF3E7, #F3E8D7, #E6D3B3);
}

/* SOFT PREMIUM GLOW */

.register-now::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-180px;
    left:-180px;
    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.8),
    transparent 70%);

    filter:blur(40px);
}

.register-now::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-180px;
    right:-180px;
    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(214,179,128,.25),
    transparent 70%);

    filter:blur(40px);
}

/* =========================
   3D DECOR ELEMENTS
========================= */

/* LEFT GLOBE */

.register-now .globe-shape{
    position:absolute;
    left:-70px;
    top:130px;
    width:220px;
    height:220px;
    border-radius:50%;

    background:
    radial-gradient(circle at 30% 30%,
    #fffaf2,
    #e3c9a0 45%,
    #b88c58 100%);

    box-shadow:
    inset -18px -18px 40px rgba(0,0,0,.12),
    0 18px 40px rgba(0,0,0,.12);

    opacity:.45;
    z-index:1;

    transform:rotate(-15deg);
}

/* Globe Ring */

.register-now .globe-shape::before{
    content:"";
    position:absolute;
    width:90px;
    height:90px;
    border:8px solid rgba(255,255,255,.45);
    border-radius:50%;
    left:55px;
    top:55px;
}

/* RIGHT BOOK */

.register-now .book-shape{
    position:absolute;
    right:-70px;
    bottom:80px;
    width:240px;
    height:170px;
    border-radius:22px;

    background:
    linear-gradient(145deg,
    #fffdf8,
    #e7cfaa 60%,
    #c59a63);

    transform:rotate(18deg);

    box-shadow:
    0 20px 40px rgba(0,0,0,.14),
    inset -12px -12px 25px rgba(0,0,0,.08);

    opacity:.42;
    z-index:1;
}

/* Book Pages */

.register-now .book-shape::before{
    content:"";
    position:absolute;
    width:85%;
    height:8px;
    background:rgba(255,255,255,.75);
    left:18px;
    top:45px;
    border-radius:10px;

    box-shadow:
    0 24px 0 rgba(255,255,255,.55),
    0 48px 0 rgba(255,255,255,.35);
}

/* =========================
   WRAPPER
========================= */

.register-wrapper{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 18px;
    position:relative;
    z-index:2;
}

/* =========================
   LIVE BADGE
========================= */

.live-badge{
    position:relative;
    z-index:10;

    margin:0 auto -28px;
    width:max-content;

    padding:10px 34px;
    border-radius:100px;

    background:
    linear-gradient(135deg,#ffffff,#fff3df);

    color:#b66a1f;

    font-size:24px;
    font-weight:900;

    display:flex;
    align-items:center;
    gap:12px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.12),
    inset 0 2px 8px rgba(255,255,255,.9);
}

.live-badge .dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ff0059;
    animation:pulse 1.2s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.35);}
    100%{transform:scale(1);}
}

/* =========================
   MAIN CARD
========================= */

.register-content{
    position:relative;
    overflow:hidden;

    border-radius:50px;
    padding:75px 42px 42px;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.92),
    rgba(255,248,238,.85));

    box-shadow:
    0 18px 45px rgba(0,0,0,.10),
    inset 0 0 0 1px rgba(255,255,255,.8);

    backdrop-filter:blur(14px);
}

/* DECORATIVE SHAPES */

.register-content::before{
    content:"";
    position:absolute;

    width:380px;
    height:380px;
    border-radius:42%;

    top:-170px;
    left:-170px;

    background:
    linear-gradient(135deg,
    rgba(255,255,255,.8),
    rgba(235,215,180,.45));

    opacity:.6;
}

.register-content::after{
    content:"";
    position:absolute;

    width:340px;
    height:340px;
    border-radius:42%;

    right:-130px;
    bottom:-150px;

    background:
    linear-gradient(135deg,
    rgba(230,211,179,.45),
    rgba(255,255,255,.2));

    opacity:.5;
}

/* =========================
   HEADING
========================= */

.register-content h2{
    position:relative;
    z-index:2;

    text-align:center;

    font-size:54px;
    line-height:1.1;
    font-weight:900;

    color:#4d2f13;

    margin-bottom:12px;
}

.subtitle{
    position:relative;
    z-index:2;

    text-align:center;

    font-size:22px;
    color:#7a5b3f;

    margin-bottom:40px;
    font-weight:600;
}

/* =========================
   FEATURE CARDS
========================= */

.register-features{
    position:relative;
    z-index:2;

    display:flex;
    gap:18px;

    overflow-x:auto;
    scrollbar-width:none;
}

.register-features::-webkit-scrollbar{
    display:none;
}

.feature-box{
    min-width:245px;
    flex-shrink:0;

    padding:28px 18px;
    border-radius:28px;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.95),
    rgba(255,249,240,.88));

    border:1px solid rgba(230,211,179,.8);

    box-shadow:
    0 10px 24px rgba(0,0,0,.06),
    inset 0 1px 4px rgba(255,255,255,.8);

    text-align:center;

    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-icon{
    width:76px;
    height:76px;

    margin:auto auto 18px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    background:
    linear-gradient(135deg,
    #fff7eb,
    #f0d6ab);

    box-shadow:
    inset 0 4px 10px rgba(255,255,255,.9),
    0 10px 18px rgba(0,0,0,.05);
}

.feature-box h3{
    font-size:23px;
    line-height:1.3;

    margin-bottom:10px;

    color:#4a2c12;
    font-weight:800;
}

.feature-box p{
    font-size:15px;
    line-height:1.6;

    color:#7b6248;
}

/* =========================
   EASY TEXT
========================= */

.easy-learning{
    position:relative;
    z-index:2;

    text-align:center;

    margin-top:34px;

    font-size:30px;
    font-weight:900;

    color:#5a3716;
}

/* =========================
   BUTTON
========================= */

.register-btn{
    position:relative;
    z-index:2;

    margin:35px auto 0;
    width:max-content;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    padding:18px 42px;
    border-radius:24px;

    text-decoration:none;

    background:
    linear-gradient(90deg,
    #d18a35,
    #c26d28,
    #b85c1f);

    color:#fff;

    font-size:34px;
    font-weight:900;

    box-shadow:
    0 14px 28px rgba(194,109,40,.22),
    inset 0 2px 6px rgba(255,255,255,.2);

    transition:.3s;
}

.register-btn:hover{
    transform:translateY(-4px) scale(1.02);
}

.register-btn span{
    width:50px;
    height:50px;

    border-radius:50%;

    background:#fff;
    color:#b55d1e;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:900;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .register-now{
        padding:0 0 65px;
        margin-top: -60px !important;
    }

    .register-wrapper{
        padding:0 10px;
    }

    .register-content{
        border-radius:32px;
        padding:65px 18px 30px;
    }

    .register-content h2{
        font-size:34px;
    }

    .subtitle{
        font-size:16px;
        margin-bottom:25px;
    }

    .feature-box{
        min-width:220px;
        border-radius:22px;
        padding:22px 15px;
    }

    .feature-icon{
        width:64px;
        height:64px;
        font-size:28px;
    }

    .feature-box h3{
        font-size:20px;
    }

    .feature-box p{
        font-size:14px;
    }

    .easy-learning{
        font-size:21px;
    }

    .register-btn{
        width:100%;
        border-radius:18px;
        font-size:26px;
        padding:16px 18px;
    }

    .register-btn span{
        width:42px;
        height:42px;
        font-size:20px;
    }

    /* SMALLER DECOR */

    .register-now .globe-shape{
        width:140px;
        height:140px;
        left:-60px;
        top:80px;
    }

    .register-now .book-shape{
        width:150px;
        height:110px;
        right:-55px;
        bottom:120px;
    }
}












/* =========================================================
   LIGHT ROYAL GREEN + GOLD PREMIUM SECTION
========================================================= */

.features{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #f6fff9 0%,
    #f9fffc 35%,
    #eefbf3 100%
    );
}

/* =========================================================
   SOFT PREMIUM BACKGROUND
========================================================= */

.features::before{
    content:"";

    position:absolute;

    width:750px;
    height:750px;

    top:-250px;
    left:-250px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(34,197,94,.12),
    transparent 70%
    );

    filter:blur(40px);

    animation:softMove1 16s ease-in-out infinite;
}

.features::after{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    bottom:-250px;
    right:-220px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(212,175,55,.10),
    transparent 70%
    );

    filter:blur(40px);

    animation:softMove2 18s ease-in-out infinite;
}

/* =========================================================
   CONTAINER
========================================================= */

.features .container{
    position:relative;
    z-index:2;
}

/* =========================================================
   TITLE
========================================================= */

.section-title{
    position:relative;

    width:fit-content;

    margin:0 auto 90px;

    text-align:center;

    font-size:clamp(2.8rem,5vw,5rem);

    font-weight:900;

    line-height:1.1;

    letter-spacing:1px;

    text-transform:uppercase;

    background:
    linear-gradient(
    to right,
    #15803d,
    #d4af37,
    #15803d,
    #ffffff,
    #15803d
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:titleFlow 7s linear infinite;
}

/* SIDE ANIMATED LINES */

.section-title::before{
    content:"";

    position:absolute;

    width:160px;
    height:3px;

    left:-190px;
    top:50%;

    transform:translateY(-50%);

    border-radius:50px;

    background:
    linear-gradient(
    to left,
    #d4af37,
    transparent
    );

    animation:lineGlow 3s ease-in-out infinite;
}

.section-title::after{
    content:"";

    position:absolute;

    width:160px;
    height:3px;

    right:-190px;
    top:50%;

    transform:translateY(-50%);

    border-radius:50px;

    background:
    linear-gradient(
    to right,
    #22c55e,
    transparent
    );

    animation:lineGlow 3s ease-in-out infinite;
}

/* =========================================================
   SCROLL WRAPPER
========================================================= */

.scroll-wrapper{
    display:flex;
    gap:30px;

    overflow-x:auto;
    overflow-y:visible;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    padding:35px 10px 45px;

    -webkit-overflow-scrolling:touch;
}

/* SCROLLBAR */

.scroll-wrapper::-webkit-scrollbar{
    height:8px;
}

.scroll-wrapper::-webkit-scrollbar-track{
    background:rgba(0,0,0,.06);
    border-radius:50px;
}

.scroll-wrapper::-webkit-scrollbar-thumb{
    background:
    linear-gradient(
    to right,
    #22c55e,
    #d4af37
    );

    border-radius:50px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card{
    position:relative;

    min-width:300px;
    width:300px;

    min-height:400px;

    padding:24px;

    flex-shrink:0;

    scroll-snap-align:center;

    overflow:visible;

    border-radius:38px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.92),
    rgba(245,255,248,.88)
    );

    border:1px solid rgba(255,255,255,.8);

    backdrop-filter:blur(18px);

    box-shadow:
    0 18px 45px rgba(34,197,94,.10),
    0 10px 25px rgba(212,175,55,.10);

    isolation:isolate;
}

/* PREMIUM ROTATING BORDER */

.feature-card::before{
    content:"";

    position:absolute;

    inset:-3px;

    border-radius:42px;

    background:
    conic-gradient(
    from 0deg,
    transparent,
    rgba(212,175,55,.95),
    rgba(34,197,94,.8),
    transparent,
    transparent
    );

    animation:rotateBorder 7s linear infinite;

    z-index:-2;
}

/* INNER CARD */

.feature-card::after{
    content:"";

    position:absolute;

    inset:2px;

    border-radius:36px;

    background:
    linear-gradient(
    to bottom,
    #ffffff,
    #f5fff8
    );

    z-index:-1;
}

/* =========================================================
   IMAGE
========================================================= */

.feature-card img{
    width:100%;
    height:220px;

    object-fit:cover;
    object-position:center;

    display:block;

    margin-bottom:28px;

    position:relative;
    z-index:3;

    border-radius:28px;

    border:2px solid rgba(255,255,255,.9);

    box-shadow:
    0 10px 25px rgba(0,0,0,.10);
}

/* =========================================================
   CONTENT
========================================================= */

.card-content{
    position:relative;
    z-index:3;
}

/* ICON */

.card-content i{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #22c55e,
    #d4af37
    );

    color:#fff;

    font-size:24px;

    box-shadow:
    0 10px 24px rgba(34,197,94,.18);
}

/* HEADING */

.card-content h3{
    font-size:27px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:12px;

    color:#14532d;
}

/* TEXT */

.card-content p{
    font-size:15px;

    line-height:1.9;

    color:#4b5563;

    font-weight:600;
}

/* =========================================================
   SHINE LIGHT
========================================================= */

.feature-card .shine{
    position:absolute;

    width:280px;
    height:280px;

    top:-120px;
    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.7),
    transparent 70%
    );

    filter:blur(18px);

    animation:shinePulse 6s ease-in-out infinite;

    z-index:1;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes rotateBorder{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }
}

@keyframes softMove1{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(45px,35px);
    }

    100%{
        transform:translate(0,0);
    }
}

@keyframes softMove2{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(-40px,-35px);
    }

    100%{
        transform:translate(0,0);
    }
}

@keyframes shinePulse{

    0%{
        opacity:.35;
        transform:scale(1);
    }

    50%{
        opacity:.7;
        transform:scale(1.12);
    }

    100%{
        opacity:.35;
        transform:scale(1);
    }
}

@keyframes titleFlow{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }
}

@keyframes lineGlow{

    0%{
        opacity:.4;
        transform:translateY(-50%) scaleX(.9);
    }

    50%{
        opacity:1;
        transform:translateY(-50%) scaleX(1.05);
    }

    100%{
        opacity:.4;
        transform:translateY(-50%) scaleX(.9);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:768px){

    .features{
        padding:90px 0;
    }

    .section-title{
        font-size:2.9rem;
        margin-bottom:70px;
    }

    .section-title::before,
    .section-title::after{
        width:70px;
    }

    .section-title::before{
        left:-85px;
    }

    .section-title::after{
        right:-85px;
    }

    .scroll-wrapper{
        gap:22px;

        padding-left:18px;
        padding-right:18px;
    }

    .feature-card{
        min-width:250px;
        width:250px;

        min-height:360px;
    }

    .feature-card img{
        height:180px;
        border-radius:24px;
    }

    .card-content h3{
        font-size:22px;
    }

    .card-content p{
        font-size:13px;
        line-height:1.7;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:480px){

    .features{
        padding:80px 0;
    }

    .section-title{
        font-size:2.2rem;
        line-height:1.2;
    }

    .section-title::before,
    .section-title::after{
        display:none;
    }

    .feature-card{
        min-width:225px;
        width:225px;

        min-height:320px;

        border-radius:30px;
    }

    .feature-card::after{
        border-radius:28px;
    }

    .feature-card img{
        height:155px;

        border-radius:22px;

        margin-bottom:18px;
    }

    .card-content i{
        width:48px;
        height:48px;

        font-size:21px;
    }

    .card-content h3{
        font-size:20px;
    }

    .card-content p{
        font-size:12.8px;
    }
}


















/* =========================================================
   ULTRA ADVANCED BLUE PREMIUM FEATURES SECTION
========================================================= */

.features{
    position:relative;
    overflow:hidden;

    padding:130px 0;

    background:
linear-gradient(
135deg,

#1095ce 0%,
#0c78bb 18%,
#6EC6FF 36%,
#5BBEFF 52%,
#4DB8FF 68%,
#38BDF8 84%,
#188dcc 100%

);
    isolation:isolate;
}

/* =========================================================
   OCEAN WAVES BACKGROUND
========================================================= */

.features::before{
    content:"";

    position:absolute;

    width:140%;
    height:240px;

    left:-20%;
    top:8%;

    background:
    radial-gradient(circle at 50% 50%,
    rgba(255,255,255,.18),
    transparent 65%);

    opacity:.5;

    filter:blur(40px);

    animation:waveFlowTop 16s linear infinite;

    clip-path:polygon(
    0% 55%,
    8% 48%,
    18% 60%,
    30% 42%,
    42% 58%,
    55% 40%,
    68% 60%,
    82% 45%,
    100% 58%,
    100% 100%,
    0% 100%
    );
}

.features::after{
    content:"";

    position:absolute;

    width:150%;
    height:280px;

    bottom:-30px;
    left:-25%;

    background:
    linear-gradient(
    90deg,
    rgba(59,130,246,.22),
    rgba(255,255,255,.08),
    rgba(37, 166, 235, 0.18),
    rgba(60, 138, 234, 0.2)
    );

    filter:blur(30px);

    opacity:.7;

    animation:waveFlowBottom 18s linear infinite;

    clip-path:polygon(
    0% 45%,
    10% 60%,
    22% 40%,
    35% 62%,
    48% 38%,
    60% 58%,
    74% 42%,
    88% 60%,
    100% 48%,
    100% 100%,
    0% 100%
    );
}

/* =========================================================
   FLOATING SIDE ICONS / DECORATIONS
========================================================= */

.features .container::before{
    content:"✦ ✦ ✦";

    position:absolute;

    top:120px;
    left:-20px;

    font-size:26px;

    letter-spacing:18px;

    color:rgba(38, 175, 239, 0.22);

    transform:rotate(-18deg);

    animation:floatingIcons 8s ease-in-out infinite;
}

.features .container::after{
    content:"❉";

    position:absolute;

    right:1%;
    bottom:70px;

    font-size:90px;

    color:rgba(96,165,250,.16);

    filter:blur(.5px);

    animation:rotateFlower 14s linear infinite;
}

/* =========================================================
   EXTRA FLOATING WAVES AROUND CARDS
========================================================= */

.scroll-wrapper{
    position:relative;

    display:flex;

    gap:38px;

    overflow-x:auto;
    overflow-y:visible;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    padding:45px 20px 70px;

    -webkit-overflow-scrolling:touch;
}

/* TOP BLUE LIGHT WAVE */

.scroll-wrapper::before{
    content:"";

    position:absolute;

    top:0;
    left:-10%;

    width:120%;
    height:120px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(59,130,246,.16),
    rgba(255,255,255,.10),
    rgba(37,99,235,.16),
    transparent
    );

    filter:blur(28px);

    animation:moveLightWave 10s linear infinite;

    z-index:0;
}

/* BOTTOM GOLDEN + BLUE MIX WAVE */

.scroll-wrapper::after{
    content:"";

    position:absolute;

    bottom:0;
    right:-10%;

    width:120%;
    height:140px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(96,165,250,.14),
    rgba(255,255,255,.08),
    rgba(37,99,235,.16),
    transparent
    );

    filter:blur(32px);

    animation:moveLightWaveReverse 12s linear infinite;

    z-index:0;
}

/* =========================================================
   CONTAINER
========================================================= */

.features .container{
    position:relative;
    z-index:2;
}

/* =========================================================
   TITLE
========================================================= */

.section-title{
    position:relative;

    text-align:center;

    font-size:clamp(2.8rem,5vw,5.5rem);

    font-weight:900;

    line-height:1.05;

    letter-spacing:2px;

    margin-bottom:95px;

    text-transform:uppercase;

    background:
    linear-gradient(
    to right,
    #ffffff,
    #ffffff,
    #ffffff,
    #ffffff,
    #ffffff
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:titleFlow 7s linear infinite;
}

.section-title::after{
    content:"";

    position:absolute;

    width:260px;
    height:20px;

    left:50%;
    bottom:-25px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(20, 134, 215, 0.35),
    transparent 70%
    );

    filter:blur(18px);
}

/* =========================================================
   PREMIUM SCROLLBAR
========================================================= */

.scroll-wrapper::-webkit-scrollbar{
    height:8px;
}

.scroll-wrapper::-webkit-scrollbar-track{
    background:rgba(255,255,255,.08);

    border-radius:50px;
}

.scroll-wrapper::-webkit-scrollbar-thumb{
    background:
    linear-gradient(
    to right,
    #2672db,
    #ffffff,
    #2563eb
    );

    border-radius:50px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card{
    position:relative;

    min-width:360px;
    width:360px;

    height:470px;

    flex-shrink:0;

    scroll-snap-align:center;

    overflow:hidden;

    border-radius:42px;

    background:#fff;

    isolation:isolate;

    z-index:2;

    box-shadow:
    0 30px 60px rgba(2,12,27,.45),
    0 0 35px rgba(96,165,250,.18);
}

/* =========================================================
   ADVANCED BLUE GLOW BORDER
========================================================= */

.feature-card::before{
    content:"";

    position:absolute;

    inset:-3px;

    border-radius:46px;

    background:
    conic-gradient(
    from 0deg,
    #1b6dd1,
    #ffffff,
    #2563eb,
    #93c5fd,
    #ffffff,
    #2563eb,
    #60a5fa
    );

    animation:borderRotate 6s linear infinite;

    z-index:-2;
}

/* INNER CARD */

.feature-card::after{
    content:"";

    position:absolute;

    inset:2px;

    border-radius:40px;

    background:
    linear-gradient(
    to bottom,
    #ffffff,
    #eff6ff
    );

    z-index:-1;
}

/* =========================================================
   IMAGE
========================================================= */

.feature-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:40px;

    transform:scale(1.01);

    filter:
    brightness(1)
    contrast(1.08)
    saturate(1.08);
}

/* =========================================================
   PREMIUM OVERLAY
========================================================= */

.feature-card .card-content{
    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(2,12,27,.18),
    transparent 45%
    );

    z-index:2;
}

/* =========================================================
   BLUE SHINE
========================================================= */

.feature-card .card-content::before{
    content:"";

    position:absolute;

    width:320px;
    height:320px;

    top:-140px;
    right:-140px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.42),
    rgba(96,165,250,.22),
    transparent 72%
    );

    animation:shineMove 6s ease-in-out infinite;
}

/* =========================================================
   EDGE LIGHT
========================================================= */

.feature-card .card-content::after{
    content:"";

    position:absolute;

    inset:0;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.35);

    pointer-events:none;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes borderRotate{
    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }
}

@keyframes shineMove{
    0%{
        transform:scale(1);
        opacity:.4;
    }

    50%{
        transform:scale(1.15);
        opacity:.8;
    }

    100%{
        transform:scale(1);
        opacity:.4;
    }
}

@keyframes titleFlow{
    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }
}

@keyframes waveFlowTop{
    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(80px);
    }

    100%{
        transform:translateX(0px);
    }
}

@keyframes waveFlowBottom{
    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-90px);
    }

    100%{
        transform:translateX(0px);
    }
}

@keyframes moveLightWave{
    0%{
        transform:translateX(-120px);
    }

    100%{
        transform:translateX(120px);
    }
}

@keyframes moveLightWaveReverse{
    0%{
        transform:translateX(120px);
    }

    100%{
        transform:translateX(-120px);
    }
}

@keyframes floatingIcons{
    0%{
        transform:translateY(0px) rotate(-18deg);
    }

    50%{
        transform:translateY(-18px) rotate(-10deg);
    }

    100%{
        transform:translateY(0px) rotate(-18deg);
    }
}

@keyframes rotateFlower{
    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px){

    .features{
        padding:100px 0;
    }

    .section-title{
        font-size:3.2rem;

        margin-bottom:75px;
    }

    .scroll-wrapper{
        gap:24px;

        padding-left:18px;
        padding-right:18px;
    }

    .feature-card{
        min-width:290px;
        width:290px;

        height:390px;

        border-radius:34px;
    }

    .feature-card::after{
        border-radius:32px;
    }

    .feature-card img{
        border-radius:32px;
    }

    .feature-card .card-content::after{
        border-radius:32px;
    }

    .features .container::after{
        font-size:70px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:480px){

    .features{
        padding:85px 0;
    }

    .section-title{
        font-size:2.3rem;

        margin-bottom:55px;
    }

    .feature-card{
        min-width:240px;
        width:240px;

        height:330px;

        border-radius:28px;
    }

    .feature-card::after{
        border-radius:26px;
    }

    .feature-card img{
        border-radius:26px;
    }

    .feature-card .card-content::after{
        border-radius:26px;
    }

    .scroll-wrapper{
        gap:18px;
    }

    .features .container::before{
        font-size:18px;

        letter-spacing:10px;
    }

    .features .container::after{
        font-size:52px;
    }
}




















/* =========================================================
   PEACH + SAGE COURSES SECTION
   85% PEACH + 15% GREENISH
========================================================= */

.courses{
    position:relative;
    overflow:hidden;
    isolation:isolate;

    padding:140px 0;

    background:
    radial-gradient(
    circle at top,
    #1f2937 0%,
    #111827 30%,
    #050505 70%,
    #000000 100%
    );
}


.courses::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    left:-180px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.08),
    transparent 70%
    );

    filter:blur(80px);

    animation:bgMove1 14s ease-in-out infinite;
}

.courses::after{
    content:"";

    position:absolute;

    width:600px;
    height:600px;

    bottom:-220px;
    right:-140px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(120,180,255,.10),
    transparent 70%
    );

    filter:blur(80px);

    animation:bgMove2 16s ease-in-out infinite;
}

/* =========================================================
   SOFT BACKGROUND LIGHTS
========================================================= */

.courses::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    left:-180px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.22),
    transparent 72%
    );

    filter:blur(60px);

    animation:bgMove1 14s ease-in-out infinite;
}

.courses::after{
    content:"";

    position:absolute;

    width:600px;
    height:600px;

    bottom:-220px;
    right:-140px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(188,200,180,.18),
    transparent 72%
    );

    filter:blur(60px);

    animation:bgMove2 16s ease-in-out infinite;
}





/* Starssssssssssss */


.courses{
    position:relative;
    overflow:hidden;
    isolation:isolate;

    padding:140px 0;

    background:
    linear-gradient(
    180deg,
    #367ced,
    #1c80d7
    );
}

.stars{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:1;
}

.stars::before{
    content:
    "✦ ✧ ✦ ✧ ✦ ✦ ✧ ✦ ✧ ✦ ✦ ✧ ✦";

    position:absolute;

    top:8%;
    left:5%;

    width:100%;
    height:100%;

    color:#ffffff;

    font-size:18px;
    letter-spacing:70px;
    line-height:90px;

    opacity:.8;

    animation:twinkle 4s ease-in-out infinite;
}

.stars::after{
    content:
    "✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✦ ✧ ✦ ✧";

    position:absolute;

    top:25%;
    left:12%;

    width:100%;
    height:100%;

    color:#ffd700;

    font-size:14px;
    letter-spacing:90px;
    line-height:120px;

    opacity:.6;

    animation:twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle{

    0%,100%{
        opacity:.3;
        transform:scale(1);
    }

    50%{
        opacity:1;
        transform:scale(1.08);
    }

}

.star{
    position:absolute;
    color:white;
    font-size:22px;
    animation:twinkle 3s infinite;
}

/* =========================================================
   CONTAINER
========================================================= */

.courses .container{
    position:relative;
    z-index:2;
}

/* =========================================================
   TITLE
========================================================= */

.courses .section-title{
    position:relative;

    text-align:center;

    font-size:clamp(3rem,5vw,6rem);

    font-weight:900;

    line-height:1;

    letter-spacing:2px;

    margin-bottom:90px;

    text-transform:uppercase;

    background:
    linear-gradient(
    135deg,
    #f4f4f4 100%
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:titleMove 8s linear infinite;
}

/* =========================================================
   TITLE LIGHT
========================================================= */

.courses .section-title::after{
    content:"";

    position:absolute;

    width:220px;
    height:16px;

    left:50%;
    bottom:-18px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.22),
    transparent 72%
    );

    filter:blur(14px);
}

/* =========================================================
   SCROLL WRAPPER
========================================================= */

.courses .scroll-wrapper{
    display:flex;

    gap:40px;

    overflow-x:auto;
    overflow-y:visible;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    padding:10px 20px 50px;

    -webkit-overflow-scrolling:touch;
}

/* =========================================================
   SCROLLBAR
========================================================= */

.courses .scroll-wrapper::-webkit-scrollbar{
    height:7px;
}

.courses .scroll-wrapper::-webkit-scrollbar-track{
    background:rgba(255,255,255,.12);

    border-radius:50px;
}

.courses .scroll-wrapper::-webkit-scrollbar-thumb{
    background:
    linear-gradient(
    to right,
    #040404,
    #1e1e1e,
    #181818
    );

    border-radius:50px;
}

/* =========================================================
   CARD
========================================================= */

.course-big{
    position:relative;

    min-width:500px;
    width:500px;

    height:320px;

    flex-shrink:0;

    scroll-snap-align:center;

    overflow:hidden;

    border-radius:38px;

    transition:
    transform .4s ease;
}

/* =========================================================
   IMAGE
========================================================= */

.course-big img{
    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:38px;

    filter:
    brightness(.98)
    contrast(1.03)
    saturate(1.02);

    transition:.45s ease;
}

/* =========================================================
   OVERLAY
========================================================= */

.course-overlay{
    position:absolute;

    inset:0;

    border-radius:38px;

    background:
    linear-gradient(
    to top,
    rgba(88,58,42,.22),
    rgba(255,255,255,.02),
    transparent
    );

    z-index:2;
}

/* =========================================================
   TEXT WRAPPER
========================================================= */

.course-text{
    position:absolute;

    inset:0;

    z-index:5;
}

/* =========================================================
   SOFT SHINE
========================================================= */

.course-text::before{
    content:"";

    position:absolute;

    width:140px;
    height:420px;

    top:-80px;
    left:-140px;

    transform:rotate(25deg);

    background:
    linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.22),
    transparent
    );

    filter:blur(6px);

    animation:shine 5s linear infinite;
}

/* =========================================================
   PARTICLES
========================================================= */

.course-big span{
    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    z-index:5;

    animation:particles 5s linear infinite;
}

.course-big span:nth-child(5){
    width:8px;
    height:8px;
    top:20%;
    left:10%;
}

.course-big span:nth-child(6){
    width:10px;
    height:10px;
    bottom:18%;
    right:14%;
    animation-delay:2s;
}

.course-big span:nth-child(7){
    width:6px;
    height:6px;
    top:40%;
    right:24%;
    animation-delay:4s;
}

/* =========================================================
   HOVER
========================================================= */

.course-big:hover{
    transform:
    translateY(-8px)
    scale(1.02);
}

.course-big:hover img{
    transform:scale(1.03);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes shine{

    0%{
        transform:
        translateX(-240px)
        rotate(25deg);
    }

    100%{
        transform:
        translateX(720px)
        rotate(25deg);
    }
}

@keyframes titleMove{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }
}

@keyframes bgMove1{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(40px,20px);
    }

    100%{
        transform:translate(0,0);
    }
}

@keyframes bgMove2{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(-40px,-20px);
    }

    100%{
        transform:translate(0,0);
    }
}

@keyframes particles{

    0%{
        transform:translateY(0px);
        opacity:0;
    }

    20%{
        opacity:1;
    }

    80%{
        opacity:1;
    }

    100%{
        transform:translateY(-30px);
        opacity:0;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px){

    .courses{
        padding:110px 0;
    }

    .courses .section-title{
        font-size:3.5rem;
    }

    .courses .scroll-wrapper{
        gap:24px;
    }

    .course-big{
        min-width:360px;
        width:360px;

        height:240px;

        border-radius:30px;
    }

    .course-big img,
    .course-overlay{
        border-radius:30px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:480px){

    .courses{
        padding:90px 0;
    }

    .courses .section-title{
        font-size:2.5rem;

        margin-bottom:60px;
    }

    .courses .scroll-wrapper{
        gap:20px;

        padding-left:18px;
    }

    .course-big{
        min-width:270px;
        width:270px;

        height:190px;

        border-radius:24px;
    }

    .course-big img,
    .course-overlay{
        border-radius:24px;
    }
}















/* =========================================================
   LUXURY WHY CHOOSE US SECTION
========================================================= */

.about{
    position:relative;
    overflow:hidden;

    padding:140px 0;

    background:
    linear-gradient(
    135deg,
    #faf6f1 0%,
    #fdfbf8 35%,
    #f6efe7 100%
    );
}

/* =========================================================
   PREMIUM BACKGROUND LIGHTS
========================================================= */

.about::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-280px;
    left:-260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,220,180,.24),
    transparent 70%
    );

    filter:blur(70px);

    animation:luxGlow1 12s ease-in-out infinite;
}

.about::after{
    content:"";

    position:absolute;

    width:620px;
    height:620px;

    bottom:-260px;
    right:-220px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(214,184,255,.16),
    transparent 70%
    );

    filter:blur(70px);

    animation:luxGlow2 14s ease-in-out infinite;
}

/* =========================================================
   GRID
========================================================= */

.about-grid{
    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:90px;

    align-items:center;
}

/* =========================================================
   TITLE
========================================================= */

.about-text h2{
    position:relative;

    font-size:clamp(3.2rem,6vw,6rem);

    font-weight:900;

    line-height:.95;

    letter-spacing:-2px;

    margin-bottom:55px;

    color:#3f3126;

    text-transform:uppercase;
}

/* GOLD LINE */

.about-text h2::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-22px;

    width:120px;
    height:6px;

    border-radius:20px;

    background:
    linear-gradient(
    to right,
    #d4a44a,
    #f3d9a2
    );

    box-shadow:
    0 4px 18px rgba(212,164,74,.35);
}

/* =========================================================
   LIST
========================================================= */

.about-text ul{
    display:flex;
    flex-direction:column;

    gap:22px;

    padding:0;
    margin:0;
}

/* =========================================================
   PREMIUM CARDS
========================================================= */

.about-text li{
    list-style:none;

    position:relative;

    padding:26px 28px 26px 88px;

    border-radius:30px;

    font-size:17px;

    font-weight:700;

    letter-spacing:.2px;

    color:#4a3b30;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.78),
    rgba(255,248,242,.92)
    );

    border:1px solid rgba(255,255,255,.8);

    backdrop-filter:blur(18px);

    box-shadow:
    0 18px 40px rgba(120,90,70,.08),
    inset 0 1px 0 rgba(255,255,255,.9);

    overflow:hidden;

    transition:
    transform .45s ease,
    box-shadow .45s ease;
}

/* PREMIUM SHINE */

.about-text li::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    transform:skewX(-25deg);

    background:
    linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.55),
    transparent
    );

    transition:.8s;
}

/* ICON */

.about-text li::after{
    content:"✓";

    position:absolute;

    left:26px;
    top:50%;

    transform:translateY(-50%);

    width:42px;
    height:42px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:17px;
    font-weight:900;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    #c89b45,
    #f1d49b
    );

    box-shadow:
    0 10px 22px rgba(200,155,69,.28);
}

/* HOVER */

.about-text li:hover{
    transform:
    translateY(-10px)
    scale(1.02);

    box-shadow:
    0 28px 55px rgba(120,90,70,.14);
}

.about-text li:hover::before{
    left:140%;
}

/* =========================================================
   IMAGE SIDE
========================================================= */

.about-img{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* OUTER GLOW */

.about-img::before{
    content:"";

    position:absolute;

    width:105%;
    height:105%;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    rgba(255,220,180,.28),
    rgba(255,255,255,.15),
    rgba(214,184,255,.18)
    );

    filter:blur(20px);

    animation:imgGlow 6s ease-in-out infinite;
}

/* IMAGE */

.about-img img{
    position:relative;

    width:100%;
    max-width:560px;

    display:block;

    border-radius:34px;

    border:1px solid rgba(255,255,255,.65);

    box-shadow:
    0 35px 80px rgba(80,60,40,.16);

    z-index:2;

    animation:imageFloat 6s ease-in-out infinite;
}

/* SOFT LIGHT */

.img-glow{
    position:absolute;

    width:90%;
    height:90%;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,220,180,.24),
    transparent 70%
    );

    filter:blur(65px);

    z-index:0;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes imageFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-16px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes imgGlow{

    0%{
        transform:scale(1);
        opacity:.7;
    }

    50%{
        transform:scale(1.04);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:.7;
    }
}

@keyframes luxGlow1{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(45px,30px);
    }

    100%{
        transform:translate(0,0);
    }
}

@keyframes luxGlow2{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(-40px,-25px);
    }

    100%{
        transform:translate(0,0);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:900px){

    .about{
        padding:100px 0;
    }

    .about-grid{
        grid-template-columns:1fr;

        gap:70px;
    }

    .about-text{
        order:2;
    }

    .about-img{
        order:1;
    }

    .about-text h2{
        font-size:4rem;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:480px){

    .about{
        padding:80px 0;
    }

    .about-grid{
        gap:50px;
    }

    .about-text h2{
        font-size:2.6rem;

        margin-bottom:42px;
    }

    .about-text h2::after{
        width:90px;
        height:5px;
    }

    .about-text li{
        padding:20px 20px 20px 70px;

        font-size:14px;

        border-radius:22px;
    }

    .about-text li::after{
        width:34px;
        height:34px;

        left:18px;

        font-size:14px;

        border-radius:12px;
    }

    .about-img img{
        border-radius:24px;
    }
}

























/* 
/* Statsss */


/* =========================================================
   PREMIUM ACADEMIC STATS SECTION
   UNIQUE PEACH + OLIVE + GOLD THEME
========================================================= */
/* 
.stats{
padding:100px 0;

position:relative;
overflow:hidden;

background:
linear-gradient(
135deg,
#fff8ef 0%,
#f6ead7 24%,
#ebe0c9 48%,
#d9d7c3 74%,
#eef3df 100%
);

isolation:isolate;
} */

/* =========================================================
   FLOATING BACKGROUND CIRCLES
========================================================= */
/* 
.stats::before{
content:"";

position:absolute;

width:700px;
height:700px;

top:-260px;
left:-220px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,255,255,.85),
transparent 72%
);

filter:blur(70px);

animation:floatBlob1 15s ease-in-out infinite;
}

.stats::after{
content:"";

position:absolute;

width:600px;
height:600px;

bottom:-220px;
right:-180px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(194,179,124,.25),
transparent 72%
);

filter:blur(70px);

animation:floatBlob2 18s ease-in-out infinite;
} */

/* =========================================================
   FLOATING EDUCATION ICONS
========================================================= */
/* 
.stats-icons{
position:absolute;
inset:0;

pointer-events:none;

z-index:1;
}

.stats-icons i{
position:absolute;

font-size:28px;

color:rgba(120,108,70,.13);

animation:floatIcons 10s ease-in-out infinite;
} */

/* ICON POSITIONS */
/* 
.stats-icons i:nth-child(1){
top:12%;
left:8%;
font-size:34px;
animation-delay:0s;
}

.stats-icons i:nth-child(2){
top:18%;
right:12%;
font-size:30px;
animation-delay:2s;
}

.stats-icons i:nth-child(3){
bottom:18%;
left:14%;
font-size:38px;
animation-delay:4s;
}

.stats-icons i:nth-child(4){
bottom:10%;
right:10%;
font-size:32px;
animation-delay:6s;
}

.stats-icons i:nth-child(5){
top:42%;
left:48%;
font-size:42px;
animation-delay:3s;
} */

/* =========================================================
   SCROLL WRAPPER
========================================================= */
/* 
.stats-scroll{
display:flex;

gap:28px;

overflow-x:auto;

padding:20px 10px 30px;

scroll-snap-type:x mandatory;

position:relative;
z-index:2;
}

.stats-scroll::-webkit-scrollbar{
height:6px;
}

.stats-scroll::-webkit-scrollbar-track{
background:rgba(255,255,255,.2);

border-radius:20px;
}

.stats-scroll::-webkit-scrollbar-thumb{
background:
linear-gradient(
to right,
#d9bb87,
#8c9b6b,
#e2cda6
);

border-radius:20px;
} */

/* =========================================================
   CARD
========================================================= */
/* 
.stat-card{
position:relative;

min-width:210px;
width:210px;

height:175px;

border-radius:28px;

overflow:hidden;

flex-shrink:0;

scroll-snap-align:center;

transition:.55s ease;

background:
linear-gradient(
145deg,
rgba(255,255,255,.18),
rgba(255,255,255,.05)
);

border:
1px solid rgba(255,255,255,.3);

box-shadow:
0 18px 45px rgba(123,100,60,.15),
0 10px 25px rgba(255,255,255,.2);

backdrop-filter:blur(12px);

transform-style:preserve-3d;
} */

/* =========================================================
   GLOW BORDER
========================================================= */
/* 
.stat-card::before{
content:"";

position:absolute;

inset:-2px;

border-radius:30px;

background:
linear-gradient(
135deg,
#f7e4b5 0%,
#9aa16d 22%,
#f4d5a1 45%,
#d7c08c 65%,
#7d8d64 82%,
#fff1d4 100%
);

background-size:300% 300%;

animation:borderFlow 7s linear infinite;

z-index:-2;
} */

/* =========================================================
   INNER LAYER
========================================================= */
/* 
.stat-card::after{
content:"";

position:absolute;

inset:2px;

border-radius:26px;

background:
linear-gradient(
145deg,
rgba(255,255,255,.12),
rgba(255,255,255,.04)
);

z-index:-1;
} */

/* =========================================================
   IMAGE
========================================================= */

/* .stat-card img{
width:100%;
height:100%;

object-fit:cover;

filter:
brightness(.82)
contrast(1.08)
saturate(1.02);

transition:.6s ease;
} */

/* =========================================================
   OVERLAY
========================================================= */
/* 
.stat-overlay{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

background:
linear-gradient(
to top,
rgba(46,36,20,.78),
rgba(74,61,36,.25),
transparent
);
} */

/* =========================================================
   CONTENT
========================================================= */

/* .stat-content{
position:absolute;

left:16px;
bottom:16px;

color:#fff;

z-index:3;
}

.stat-content h3{
font-size:31px;

font-weight:800;

color:#fff4dc;

margin-bottom:3px;

text-shadow:
0 4px 14px rgba(0,0,0,.28);
}

.stat-content p{
font-size:12px;

letter-spacing:.5px;

color:#f5ead8;
} */

/* =========================================================
   MINI ICON BADGE
========================================================= */
/* 
.stat-badge{
position:absolute;

top:12px;
right:12px;

width:42px;
height:42px;

border-radius:14px;

display:flex;
align-items:center;
justify-content:center;

background:
linear-gradient(
145deg,
rgba(255,255,255,.28),
rgba(255,255,255,.08)
);

backdrop-filter:blur(10px);

border:
1px solid rgba(255,255,255,.28);

z-index:4;

box-shadow:
0 6px 18px rgba(0,0,0,.12);
}

.stat-badge i{
font-size:18px;

color:#fff7e6;
} */

/* =========================================================
   SHINE EFFECT
========================================================= */

/* .stat-card .shine{
position:absolute;

top:-120%;
left:-40%;

width:70px;
height:300%;

background:
linear-gradient(
to right,
transparent,
rgba(255,255,255,.28),
transparent
);

transform:rotate(24deg);

animation:shineMove 6s linear infinite;

z-index:3;
} */

/* =========================================================
   HOVER
========================================================= */
/* 
.stat-card:hover{
transform:
translateY(-14px)
scale(1.06)
rotateX(5deg);

box-shadow:
0 28px 65px rgba(123,100,60,.2),
0 12px 25px rgba(255,255,255,.25);
}

.stat-card:hover img{
transform:scale(1.1);

filter:
brightness(.92)
contrast(1.1)
saturate(1.05);
} */

/* =========================================================
   ANIMATIONS
========================================================= */

/* @keyframes borderFlow{

0%{
background-position:0% 50%;
}

100%{
background-position:300% 50%;
}
}

@keyframes shineMove{

0%{
transform:
translateX(-220px)
rotate(24deg);
}

100%{
transform:
translateX(380px)
rotate(24deg);
}
}

@keyframes floatBlob1{

0%{
transform:translate(0,0);
}

50%{
transform:translate(70px,45px);
}

100%{
transform:translate(0,0);
}
}

@keyframes floatBlob2{

0%{
transform:translate(0,0);
}

50%{
transform:translate(-70px,-45px);
}

100%{
transform:translate(0,0);
}
}

@keyframes floatIcons{

0%{
transform:translateY(0px) rotate(0deg);
}

50%{
transform:translateY(-18px) rotate(6deg);
}

100%{
transform:translateY(0px) rotate(0deg);
}
} */

/* =========================================================
   MOBILE
========================================================= */
/* 
@media (max-width:480px){

.stats{
padding:80px 0;
}

.stats-scroll{
gap:18px;
padding-left:14px;
}

.stat-card{
min-width:190px;
width:190px;

height:160px;

border-radius:24px;
}

.stat-card::after{
border-radius:22px;
}

.stat-badge{
width:36px;
height:36px;
}

.stat-badge i{
font-size:16px;
}
} */ 





/*  Globalll Impact  */

/* =========================================================
   GLOBAL IMPACT SECTION
========================================================= */

.impact-section{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #d6b896 0%,
    #c6a27c 22%,
    #e7d2b5 48%,
    #b8936d 74%,
    #8b6a4d 100%
    );
}

/* =========================================================
   BACKGROUND BLURS
========================================================= */

.impact-blur{
    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    pointer-events:none;
}

.blur-1{
    width:500px;
    height:500px;

    top:-150px;
    left:-100px;

    background:
    rgba(255,255,255,.28);

    animation:floatBlur1 10s ease-in-out infinite;
}

.blur-2{
    width:450px;
    height:450px;

    bottom:-120px;
    right:-100px;

    background:
    rgba(255,235,210,.25);

    animation:floatBlur2 12s ease-in-out infinite;
}

/* =========================================================
   CONTAINER
========================================================= */

.impact-container{
    width:min(1200px,92%);
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;

    position:relative;
    z-index:2;
}

/* =========================================================
   CONTENT
========================================================= */

.impact-content{
    flex:1;
}

.impact-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,255,255,.18);

    border:
    1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.impact-content h2{
    font-size:clamp(3rem,5vw,5.5rem);

    line-height:1;

    font-weight:900;

    margin-bottom:24px;

    color:#fff8ef;

    text-shadow:
    0 8px 30px rgba(0,0,0,.18);
}

.impact-content p{
    font-size:18px;

    line-height:1.8;

    color:#fff4e7;

    max-width:550px;

    margin-bottom:40px;
}

/* =========================================================
   POINTS
========================================================= */

.impact-points{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:22px;
}

.impact-point{
    display:flex;
    align-items:flex-start;

    gap:16px;

    padding:20px;

    border-radius:24px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.05)
    );

    border:
    1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(14px);

    transition:.45s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.impact-point:hover{
    transform:
    translateY(-8px)
    scale(1.03);
}

.impact-point i{
    min-width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    font-size:24px;

    background:
    linear-gradient(
    135deg,
    #fff3df,
    #e8c79f
    );

    color:#8b5f37;

    box-shadow:
    0 10px 25px rgba(0,0,0,.12);
}

.impact-point h4{
    font-size:20px;

    color:#fffdf8;

    margin-bottom:5px;
}

.impact-point span{
    font-size:14px;

    line-height:1.6;

    color:#fef0de;
}

/* =========================================================
   IMAGE SIDE
========================================================= */

.impact-image-wrap{
    position:relative;

    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================================================
   RING
========================================================= */

.impact-ring{
    position:absolute;

    width:105%;
    height:105%;

    border-radius:40px;

    border:
    2px solid rgba(255,255,255,.3);

    animation:ringRotate 12s linear infinite;
}

/* =========================================================
   IMAGE
========================================================= */

.impact-image-wrap img{
    width:100%;
    max-width:520px;

    border-radius:40px;

    position:relative;
    z-index:2;

    box-shadow:
    0 40px 80px rgba(0,0,0,.22);

    animation:imageFloat 5s ease-in-out infinite;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card{
    position:absolute;

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 20px;

    border-radius:18px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.08)
    );

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.22);

    color:#fff;

    font-weight:600;

    z-index:3;

    box-shadow:
    0 18px 35px rgba(0,0,0,.12);
}

.floating-card i{
    font-size:20px;
}

.card-1{
    top:8%;
    left:-30px;

    animation:floatCard 5s ease-in-out infinite;
}

.card-2{
    bottom:12%;
    left:-20px;

    animation:floatCard 6s ease-in-out infinite;
}

.card-3{
    top:20%;
    right:-20px;

    animation:floatCard 7s ease-in-out infinite;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes imageFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes ringRotate{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }
}

@keyframes floatBlur1{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(50px,30px);
    }

    100%{
        transform:translate(0,0);
    }
}

@keyframes floatBlur2{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(-50px,-30px);
    }

    100%{
        transform:translate(0,0);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:950px){

    .impact-container{
        flex-direction:column;

        text-align:center;
    }

    .impact-content p{
        margin-inline:auto;
    }

    .impact-points{
        grid-template-columns:1fr;
    }

    .impact-image-wrap{
        margin-top:30px;
    }

    .floating-card{
        font-size:14px;
    }

    .card-1{
        left:0;
    }

    .card-2{
        left:10px;
    }

    .card-3{
        right:0;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:480px){

    .impact-section{
        padding:90px 0;
    }

    .impact-content h2{
        font-size:2.8rem;
    }

    .impact-content p{
        font-size:15px;
    }

    .impact-image-wrap img{
        border-radius:28px;
    }

    .impact-point{
        padding:18px;
        border-radius:20px;
    }

    .impact-point i{
        min-width:48px;
        height:48px;

        font-size:20px;
    }

    .impact-point h4{
        font-size:18px;
    }

    .impact-point span{
        font-size:13px;
    }

    .floating-card{
        padding:10px 14px;

        font-size:12px;

        border-radius:14px;
    }

    .floating-card i{
        font-size:16px;
    }

    .card-1{
        top:5%;
        left:0;
    }

    .card-2{
        bottom:5%;
        left:0;
    }

    .card-3{
        top:15%;
        right:0;
    }
}

/* =========================================================
   HIDE IMPACT POINTS ON TABLET + MOBILE + IPHONE
========================================================= */

@media (max-width:950px){

    .impact-points{
        display:none !important;
    }

}