*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#fffefb;
color:#333;
overflow-x:hidden;
}

/* CONTAINER */
.container{
width:92%;
max-width:1320px;
margin:auto;
}

/* TOPBAR */
.topbar{
background:linear-gradient(90deg,#ff5f7a,#ff7f8f);
color:#fff;
text-align:center;
padding:12px 15px;
font-weight:600;
font-size:15px;
line-height:1.5;
}

/* HEADER */
.header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

/* NAVBAR */
.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 0;
gap:30px;
position:relative;
}

/* LOGO */
.logo{
display:flex;
align-items:center;
text-decoration:none;
flex-shrink:0;
}

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

/* NAVIGATION */
.nav-links{
display:flex;
align-items:center;
list-style:none;
gap:38px;
}

.nav-links li{
position:relative;
}

.nav-links a{
text-decoration:none;
font-size:18px;
font-weight:600;
color:#333;
transition:0.3s;
position:relative;
}

.nav-links a:hover,
.nav-links a.active{
color:#ff5f7a;
}

.nav-links a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:3px;
background:#ff5f7a;
border-radius:10px;
transition:0.3s;
}

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

/* ADMISSION BUTTON */
.admission-btn{
background:linear-gradient(45deg,#ff5f7a,#ff9966);
padding:15px 32px;
border-radius:50px;
text-decoration:none;
color:#fff;
font-weight:700;
font-size:17px;
transition:0.3s;
white-space:nowrap;
box-shadow:0 8px 20px rgba(255,95,122,0.25);
}

.admission-btn:hover{
transform:translateY(-3px);
}

/* HAMBURGER */
.menu-toggle{
display:none;
align-items:center;
justify-content:center;
font-size:34px;
cursor:pointer;
color:#ff5f7a;
user-select:none;
}

/* HERO SECTION */
.hero{
padding:90px 0;
background:linear-gradient(135deg,#e9fbff,#fff3f6);
position:relative;
overflow:hidden;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.hero h1{
font-size:72px;
line-height:1;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:25px;
}

.hero h1 span{
color:#ff5f7a;
}

.hero p{
font-size:20px;
line-height:1.9;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* BUTTONS */
.btn{
padding:16px 32px;
border-radius:50px;
text-decoration:none;
font-weight:700;
display:inline-block;
transition:0.3s;
}

.btn-primary{
background:#12b6cf;
color:#fff;
}

.btn-secondary{
background:#ff5f7a;
color:#fff;
}

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

/* HERO IMAGE */
.hero-image{
text-align:center;
}

.hero-image img{
width:100%;
max-width:550px;
animation:float 4s infinite ease-in-out;
}

@keyframes float{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(-15px);
}
100%{
transform:translateY(0px);
}
}

/* COMMON SECTION */
.section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:54px;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:10px;
}

.section-title p{
max-width:700px;
margin:auto;
font-size:18px;
line-height:1.8;
}

/* FEATURES */
.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.feature-card{
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;
}

.feature-card:hover{
transform:translateY(-10px);
}

.feature-card h3{
margin:20px 0;
color:#ff5f7a;
font-size:24px;
}

/* ACTIVITIES */
.activities{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.activity{
background:#fff;
padding:30px;
border-radius:25px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.activity span{
font-size:55px;
display:block;
margin-bottom:15px;
}

/* GALLERY */
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.gallery-grid img{
width:100%;
height:280px;
object-fit:cover;
border-radius:25px;
}

/* CTA */
.cta{
background:linear-gradient(45deg,#12b6cf,#4fd9f0);
padding:80px 30px;
color:#fff;
text-align:center;
border-radius:40px;
}

.cta h2{
font-size:52px;
font-family:'Baloo 2',cursive;
margin-bottom:20px;
}

/* TESTIMONIALS */
.testimonials{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial{
background:#fff;
padding:30px;
border-radius:25px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* FOOTER */
.footer{
background:#12b6cf;
color:#fff;
padding:70px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.5fr;
gap:40px;
}

.footer ul{
list-style:none;
}

.footer ul li{
margin-bottom:12px;
}

.footer a{
color:#fff;
text-decoration:none;
}

.copyright{
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.2);
text-align:center;
}

/* WHATSAPP */
.whatsapp-btn{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
padding:16px 22px;
border-radius:50px;
text-decoration:none;
font-weight:700;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* CONTACT */
.contact-box{
background:#fff;
padding:40px;
border-radius:30px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:16px;
margin-bottom:18px;
border:1px solid #ddd;
border-radius:15px;
font-family:'Poppins',sans-serif;
outline:none;
}

.contact-form button{
border:none;
cursor:pointer;
}

/* BLOG */
.blog-card{
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.blog-card h3{
margin-bottom:15px;
color:#ff5f7a;
}

.blog-card a{
text-decoration:none;
color:#12b6cf;
font-weight:700;
}

/* TABLET */
@media(max-width:991px){

.navbar{
padding:14px 0;
}

/* LOGO */
.logo img{
width:150px;
}

/* HAMBURGER */
.menu-toggle{
display:flex;
margin-left:auto;
z-index:1001;
}

/* MOBILE MENU */
nav{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
max-height:0;
overflow:hidden;
transition:0.4s ease;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
border-radius:0 0 20px 20px;
}

/* OPEN MENU */
nav.active{
max-height:500px;
padding:20px 25px;
}

/* MOBILE LINKS */
.nav-links{
flex-direction:column;
align-items:flex-start;
gap:22px;
}

/* LINKS */
.nav-links a{
font-size:18px;
width:100%;
display:block;
}

/* HIDE BUTTON */
.admission-btn{
display:none;
}

/* HERO */
.hero{
padding:70px 0;
}

.hero-grid{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

.hero h1{
font-size:58px;
}

.hero-buttons{
justify-content:center;
}

.footer-grid{
grid-template-columns:1fr;
}
}

/* MOBILE */
@media(max-width:576px){

.topbar{
font-size:13px;
padding:10px;
}

.logo img{
width:160px;
}

.hero{
padding:55px 0;
}

.hero h1{
font-size:44px;
line-height:1.1;
}

.hero p{
font-size:17px;
line-height:1.8;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn{
width:100%;
max-width:260px;
text-align:center;
}

.section{
padding:65px 0;
}

.section-title h2{
font-size:38px;
}

.section-title p{
font-size:16px;
}

.feature-card,
.activity,
.testimonial,
.blog-card,
.contact-box{
padding:25px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.gallery-grid img{
height:240px;
}

.cta{
padding:60px 20px;
border-radius:30px;
}

.cta h2{
font-size:38px;
}

.whatsapp-btn{
bottom:18px;
right:18px;
padding:14px 18px;
font-size:15px;
}
}
/* HERO */
.hero{
position:relative;
overflow:hidden;
padding:80px 0 120px;
background:linear-gradient(90deg,#eefcff 0%,#fff7fa 100%);
}



/* WRAPPER */
.hero-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
position:relative;
z-index:2;
}

/* LEFT */
.hero-content{
max-width:620px;
}

/* BADGE */
.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 22px;
border:2px solid #ffd5de;
border-radius:50px;
background:#fff;
font-size:15px;
font-weight:700;
color:#ff5f7a;
margin-bottom:28px;
}

/* TITLE */
.hero h1{
font-size:68px;
line-height:0.95;
font-family:'Baloo 2',cursive;
font-weight:700;
margin-bottom:24px;
color:#12b6cf;
letter-spacing:-1px;
}

.hero h1 span{
color:#ff5f7a;
}

/* TEXT */
.hero p{
font-size:20px;
line-height:1.8;
color:#333;
margin-bottom:35px;
max-width:560px;
}

/* FEATURES */
.hero-features{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.hero-feature{
display:flex;
align-items:center;
gap:12px;
font-size:17px;
font-weight:600;
color:#222;
}

.hero-icon{
width:62px;
height:62px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
flex-shrink:0;
}

.hero-icon.blue{
background:#dff6ff;
}

.hero-icon.pink{
background:#ffe3ec;
}

.hero-icon.yellow{
background:#fff1c9;
}

/* BUTTONS */
.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:18px 34px;
border-radius:18px;
font-size:18px;
font-weight:700;
text-decoration:none;
display:inline-flex;
align-items:center;
justify-content:center;
transition:0.3s;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.btn-primary{
background:#12b6cf;
color:#fff;
}

.btn-secondary{
background:#ff5f7a;
color:#fff;
}

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

/* RIGHT IMAGE */
.hero-image{
position:relative;
display:flex;
justify-content:flex-end;
align-items:center;
overflow:visible;
}

/* PINK BACKGROUND SHAPE */
.hero-image::before{
content:'';
position:absolute;
right:-60px;
top:40px;
width:520px;
height:520px;
background:#ffdbe6;
border-radius:45% 55% 50% 50%;
z-index:1;
}

/* BLUE CIRCLE */
.hero-image::after{
content:'';
position:absolute;
right:80px;
top:120px;
width:420px;
height:420px;
border:8px solid #59d4eb;
border-radius:50%;
z-index:1;
}

/* IMAGE */
.hero-image img{
width:100%;
max-width:860px;
position:relative;
z-index:3;
display:block;
filter:drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

/* WAVE */
.hero-wave{
position:absolute;
left:0;
bottom:0;
width:100%;
line-height:0;
}

.hero-wave svg{
display:block;
width:100%;
height:110px;
}

/* LAPTOP */
@media(max-width:1200px){

.hero h1{
font-size:58px;
}

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

.hero-image img{
max-width:620px;
}

}

/* TABLET */
@media(max-width:991px){

.hero{
padding:70px 0 100px;
}

.hero-wrapper{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

.hero-content{
max-width:100%;
}

.hero h1{
font-size:52px;
}

.hero p{
margin:auto auto 30px;
font-size:18px;
}

.hero-features{
justify-content:center;
}

.hero-buttons{
justify-content:center;
}

.hero-image img{
max-width:520px;
}



}

/* MOBILE */
@media(max-width:576px){

.hero{
padding:55px 0 80px;
}

.hero h1{
font-size:42px;
line-height:1.05;
}

.hero-badge{
font-size:13px;
padding:9px 16px;
}

.hero p{
font-size:16px;
line-height:1.7;
}

.hero-features{
flex-direction:column;
align-items:center;
gap:16px;
}

.hero-feature{
justify-content:center;
font-size:16px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
width:100%;
}

.btn{
width:100%;
max-width:270px;
font-size:17px;
padding:16px 22px;
}

.hero-image img{
max-width:100%;
}



.hero-wave svg{
height:70px;
}

}


/* SECTION */
.why-section{
padding:100px 0;
background:#fff;
position:relative;
overflow:hidden;
}

/* TITLE */
.why-title{
text-align:center;
max-width:760px;
margin:auto auto 60px;
}

.section-tag{
display:inline-block;
background:#ffe7ee;
color:#ff5f7a;
padding:10px 22px;
border-radius:50px;
font-size:14px;
font-weight:700;
margin-bottom:18px;
}

.why-title h2{
font-size:48px;
line-height:1.15;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:18px;
}

.why-title h2 span{
color:#ff5f7a;
}

.why-title p{
font-size:17px;
line-height:1.7;
color:#666;
max-width:700px;
margin:auto;
}

/* GRID */
.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
}

/* CARD */
.why-card{
background:#fff;
padding:38px 28px;
border-radius:30px;
text-align:center;
position:relative;
transition:0.35s;
border:1px solid #f3f3f3;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
overflow:hidden;
}

.why-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#12b6cf,#ff5f7a);
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon{
width:72px;
height:72px;
margin:auto auto 22px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
}

.why-icon.blue{
background:#e4f9ff;
}

.why-icon.pink{
background:#ffe8ef;
}

.why-icon.yellow{
background:#fff4d7;
}

.why-icon.green{
background:#e8ffe8;
}

/* CARD TITLE */
.why-card h3{
font-size:24px;
line-height:1.3;
font-family:'Baloo 2',cursive;
color:#ff5f7a;
margin-bottom:14px;
}

/* TEXT */
.why-card p{
font-size:16px;
line-height:1.7;
color:#666;
}

/* TABLET */
@media(max-width:1100px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

.why-title h2{
font-size:42px;
}

}

/* MOBILE */
@media(max-width:768px){

.why-section{
padding:75px 0;
}

.why-grid{
grid-template-columns:1fr;
gap:22px;
}

.why-title{
margin-bottom:45px;
}

.section-tag{
font-size:13px;
padding:9px 18px;
}

.why-title h2{
font-size:36px;
line-height:1.2;
}

.why-title p{
font-size:16px;
line-height:1.7;
}

.why-card{
padding:32px 24px;
border-radius:25px;
}

.why-icon{
width:66px;
height:66px;
font-size:28px;
margin-bottom:20px;
}

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

.why-card p{
font-size:15px;
line-height:1.7;
}

}

/* ACTIVITIES SECTION */
.activities-section{
padding:100px 0;
background:linear-gradient(180deg,#fff8fb 0%,#ffffff 100%);
position:relative;
overflow:hidden;
}

/* TITLE */
.activities-title{
text-align:center;
max-width:760px;
margin:auto auto 60px;
}

.activities-title h2{
font-size:48px;
line-height:1.15;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:18px;
}

.activities-title h2 span{
color:#ff5f7a;
}

.activities-title p{
font-size:17px;
line-height:1.7;
color:#666;
max-width:680px;
margin:auto;
}

/* GRID */
.activities-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

/* CARD */
.activity-card{
background:#fff;
padding:35px 28px;
border-radius:30px;
text-align:center;
position:relative;
transition:0.35s;
border:1px solid #f3f3f3;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
overflow:hidden;
}

.activity-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#12b6cf,#ff5f7a);
}

.activity-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

/* ICON */
.activity-icon{
width:72px;
height:72px;
margin:auto auto 22px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
}

.activity-icon.pink{
background:#ffe8ef;
}

.activity-icon.blue{
background:#e4f9ff;
}

.activity-icon.yellow{
background:#fff4d7;
}

.activity-icon.green{
background:#e8ffe8;
}

.activity-icon.purple{
background:#f3e8ff;
}

.activity-icon.orange{
background:#fff0df;
}

/* TITLE */
.activity-card h3{
font-size:24px;
line-height:1.3;
font-family:'Baloo 2',cursive;
color:#ff5f7a;
margin-bottom:14px;
}

/* TEXT */
.activity-card p{
font-size:16px;
line-height:1.7;
color:#666;
}

/* TABLET */
@media(max-width:1100px){

.activities-grid{
grid-template-columns:repeat(2,1fr);
}

.activities-title h2{
font-size:42px;
}

}

/* MOBILE */
@media(max-width:768px){

.activities-section{
padding:75px 0;
}

.activities-grid{
grid-template-columns:1fr;
gap:22px;
}

.activities-title{
margin-bottom:45px;
}

.activities-title h2{
font-size:36px;
line-height:1.2;
}

.activities-title p{
font-size:16px;
line-height:1.7;
}

.activity-card{
padding:32px 24px;
border-radius:25px;
}

.activity-icon{
width:66px;
height:66px;
font-size:28px;
margin-bottom:20px;
}

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

.activity-card p{
font-size:15px;
line-height:1.7;
}

}

/* CONTACT SECTION */
.contact-section{
padding:100px 0;
background:linear-gradient(180deg,#f8fdff 0%,#fff8fb 100%);
position:relative;
overflow:hidden;
}

/* TITLE */
.contact-title{
text-align:center;
max-width:760px;
margin:auto auto 60px;
}

.contact-title h2{
font-size:48px;
line-height:1.15;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:18px;
}

.contact-title h2 span{
color:#ff5f7a;
}

.contact-title p{
font-size:17px;
line-height:1.7;
color:#666;
max-width:680px;
margin:auto;
}

/* WRAPPER */
.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

/* IMAGE */
.contact-image{
position:relative;
}

.contact-image img{
width:100%;
border-radius:35px;
display:block;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* BADGE */
.contact-badge{
position:absolute;
left:30px;
bottom:30px;
background:#fff;
padding:14px 22px;
border-radius:50px;
font-size:15px;
font-weight:700;
color:#ff5f7a;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* FORM BOX */
.contact-form-box{
background:#fff;
padding:40px;
border-radius:35px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
border:1px solid #f3f3f3;
}

/* GRID */
.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea{
width:100%;
padding:18px 20px;
border:1px solid #ececec;
border-radius:18px;
font-size:16px;
font-family:'Poppins',sans-serif;
outline:none;
transition:0.3s;
background:#fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
border-color:#12b6cf;
box-shadow:0 0 0 4px rgba(18,182,207,0.08);
}

.contact-form textarea{
resize:none;
margin-bottom:25px;
}

/* BUTTON */
.submit-btn{
width:100%;
border:none;
padding:18px;
border-radius:18px;
background:linear-gradient(90deg,#12b6cf,#09c6e8);
color:#fff;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:0.3s;
box-shadow:0 12px 25px rgba(18,182,207,0.25);
}

.submit-btn:hover{
transform:translateY(-3px);
}

/* TABLET */
@media(max-width:1100px){

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

.contact-image{
max-width:700px;
margin:auto;
}

}

/* MOBILE */
@media(max-width:768px){

.contact-section{
padding:75px 0;
}

.contact-title{
margin-bottom:45px;
}

.contact-title h2{
font-size:36px;
line-height:1.2;
}

.contact-title p{
font-size:16px;
line-height:1.7;
}

.contact-wrapper{
gap:30px;
}

.contact-form-box{
padding:28px 22px;
border-radius:28px;
}

.form-grid{
grid-template-columns:1fr;
gap:16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
padding:16px 18px;
font-size:15px;
border-radius:15px;
}

.submit-btn{
padding:16px;
font-size:17px;
border-radius:15px;
}

.contact-image img{
border-radius:28px;
}

.contact-badge{
left:18px;
bottom:18px;
font-size:13px;
padding:12px 18px;
}

}

/* ABOUT SECTION */
.about-section{
padding:100px 0;
background:#fff;
}

.about-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image{
position:relative;
}

.about-image img{
width:100%;
border-radius:35px;
display:block;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-badge{
position:absolute;
left:25px;
bottom:25px;
background:#fff;
padding:14px 22px;
border-radius:50px;
font-weight:700;
color:#ff5f7a;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-content h2{
font-size:52px;
line-height:1.15;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:22px;
}

.about-content h2 span{
color:#ff5f7a;
}

.about-content p{
font-size:17px;
line-height:1.9;
margin-bottom:18px;
color:#666;
}

.about-features{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
margin:30px 0;
}

.about-feature{
background:#fff7fa;
padding:15px 18px;
border-radius:16px;
font-weight:600;
}

/* MASONRY GALLERY */
.masonry-gallery-section{
padding:100px 0;
background:linear-gradient(180deg,#fff8fb 0%,#ffffff 100%);
}

.masonry-gallery{
column-count:3;
column-gap:22px;
}

.masonry-item{
margin-bottom:22px;
break-inside:avoid;
overflow:hidden;
border-radius:25px;
}

.masonry-item img{
width:100%;
display:block;
border-radius:25px;
transition:0.4s;
}

.masonry-item img:hover{
transform:scale(1.05);
}

/* FAQ */
.faq-section{
padding:100px 0;
background:#f8fdff;
}

.faq-title{
text-align:center;
max-width:700px;
margin:auto auto 60px;
}

.faq-title h2{
font-size:50px;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:15px;
}

.faq-title h2 span{
color:#ff5f7a;
}

.faq-title p{
font-size:17px;
color:#666;
}

.faq-wrapper{
max-width:900px;
margin:auto;
}

.faq-item{
background:#fff;
border-radius:22px;
margin-bottom:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.faq-question{
padding:24px 28px;
font-size:18px;
font-weight:700;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
}

.faq-question span{
font-size:28px;
color:#ff5f7a;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:0.4s ease;
padding:0 28px;
line-height:1.8;
color:#666;
}

.faq-item.active .faq-answer{
max-height:300px;
padding:0 28px 28px;
}

/* RESPONSIVE */
@media(max-width:991px){

.about-wrapper{
grid-template-columns:1fr;
}

.masonry-gallery{
column-count:2;
}

.about-content h2,
.faq-title h2{
font-size:40px;
}

}

@media(max-width:576px){

.masonry-gallery{
column-count:1;
}

.about-content h2,
.faq-title h2{
font-size:34px;
}

.about-features{
grid-template-columns:1fr;
}

.faq-question{
font-size:16px;
padding:20px;
}

}

/* MASONRY GALLERY */
.masonry-gallery{
column-count:3;
column-gap:22px;
}

.masonry-item{
margin-bottom:22px;
break-inside:avoid;
overflow:hidden;
border-radius:25px;
cursor:pointer;
}

.masonry-item img{
width:100%;
display:block;
border-radius:25px;
transition:0.4s;
}

.masonry-item:hover img{
transform:scale(1.05);
}

/* LIGHTBOX */
.gallery-lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.92);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
visibility:hidden;
transition:0.35s;
z-index:99999;
}

.gallery-lightbox.active{
opacity:1;
visibility:visible;
}

.gallery-lightbox img{
max-width:85%;
max-height:85vh;
border-radius:20px;
transition:0.3s;
}

.close-gallery{
position:absolute;
top:25px;
right:35px;
font-size:50px;
color:#fff;
cursor:pointer;
z-index:10;
}

.gallery-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#fff;
border:none;
width:60px;
height:60px;
border-radius:50%;
font-size:28px;
cursor:pointer;
font-weight:bold;
transition:0.3s;
}

.gallery-btn:hover{
transform:translateY(-50%) scale(1.08);
}

.gallery-btn.prev{
left:30px;
}

.gallery-btn.next{
right:30px;
}

/* MOBILE */
@media(max-width:768px){

.masonry-gallery{
column-count:2;
}

.gallery-btn{
width:48px;
height:48px;
font-size:22px;
}

.gallery-lightbox img{
max-width:92%;
}

}

@media(max-width:576px){

.masonry-gallery{
column-count:1;
}

.close-gallery{
top:15px;
right:20px;
font-size:42px;
}

.gallery-btn.prev{
left:10px;
}

.gallery-btn.next{
right:10px;
}

}

/* BLOG SECTION */
.blogs-section{
padding:100px 0;
background:#fff;
}

/* TITLE */
.blogs-title{
text-align:center;
max-width:760px;
margin:auto auto 60px;
}

.blogs-title h2{
font-size:48px;
line-height:1.15;
font-family:'Baloo 2',cursive;
color:#12b6cf;
margin-bottom:18px;
}

.blogs-title h2 span{
color:#ff5f7a;
}

.blogs-title p{
font-size:17px;
line-height:1.7;
color:#666;
max-width:680px;
margin:auto;
}

/* GRID */
.blogs-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */
.blog-card-new{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.35s;
border:1px solid #f3f3f3;
}

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

/* IMAGE */
.blog-image{
overflow:hidden;
}

.blog-image img{
width:100%;
height:240px;
object-fit:cover;
display:block;
transition:0.4s;
}

.blog-card-new:hover .blog-image img{
transform:scale(1.05);
}

/* CONTENT */
.blog-content{
padding:28px;
}

.blog-date{
font-size:14px;
font-weight:600;
color:#ff5f7a;
margin-bottom:15px;
}

.blog-content h3{
font-size:28px;
line-height:1.3;
font-family:'Baloo 2',cursive;
color:#222;
margin-bottom:15px;
}

.blog-content p{
font-size:16px;
line-height:1.7;
color:#666;
margin-bottom:22px;
}

/* BUTTON */
.blog-btn{
display:inline-flex;
align-items:center;
gap:8px;
text-decoration:none;
font-weight:700;
color:#12b6cf;
font-size:16px;
transition:0.3s;
}

.blog-btn:hover{
gap:14px;
}

/* BOTTOM */
.blogs-bottom{
text-align:center;
margin-top:50px;
}

/* TABLET */
@media(max-width:1100px){

.blogs-grid{
grid-template-columns:repeat(2,1fr);
}

.blogs-title h2{
font-size:42px;
}

}

/* MOBILE */
@media(max-width:768px){

.blogs-section{
padding:75px 0;
}

.blogs-grid{
grid-template-columns:1fr;
gap:25px;
}

.blogs-title{
margin-bottom:45px;
}

.blogs-title h2{
font-size:36px;
line-height:1.2;
}

.blogs-title p{
font-size:16px;
line-height:1.7;
}

.blog-content{
padding:24px;
}

.blog-content h3{
font-size:24px;
}

.blog-content p{
font-size:15px;
}

.blog-image img{
height:220px;
}

}

/* FOOTER */
.footer{
background:linear-gradient(135deg,#12b6cf 0%,#0aa7bf 100%);
padding:90px 0 30px;
color:#fff;
position:relative;
overflow:hidden;
}

.footer::before{
content:'';
position:absolute;
top:-120px;
right:-120px;
width:320px;
height:320px;
background:rgba(255,255,255,0.08);
border-radius:50%;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:50px;
position:relative;
z-index:2;
}

/* LOGO */
.footer-logo{
width:220px;
margin-bottom:20px;
background:#fff;
padding:10px;
border-radius:18px;
}

/* TEXT */
.footer-about p{
font-size:16px;
line-height:1.9;
opacity:0.95;
margin-bottom:25px;
}

/* HEADINGS */
.footer h3{
font-size:24px;
margin-bottom:25px;
font-family:'Baloo 2',cursive;
}

/* LINKS */
.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin-bottom:14px;
}

.footer ul li a{
color:#fff;
text-decoration:none;
font-size:16px;
transition:0.3s;
opacity:0.95;
}

.footer ul li a:hover{
padding-left:8px;
opacity:1;
}

/* CONTACT */
.footer-contact p{
margin-bottom:18px;
line-height:1.8;
font-size:16px;
opacity:0.95;
}

/* SOCIALS */
.footer-socials{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.footer-socials a{
width:46px;
height:46px;
border-radius:50%;
background:rgba(255,255,255,0.15);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
text-decoration:none;
transition:0.3s;
backdrop-filter:blur(10px);
}

.footer-socials a:hover{
background:#fff;
color:#12b6cf;
transform:translateY(-4px);
}

/* BOTTOM */
.footer-bottom{
margin-top:60px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,0.2);
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
position:relative;
z-index:2;
}

.footer-bottom p{
font-size:15px;
opacity:0.95;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
background:#25D366;
color:#fff;
padding:16px 24px;
border-radius:60px;
text-decoration:none;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
z-index:999;
transition:0.3s;
}

.whatsapp-btn:hover{
transform:translateY(-4px);
}

/* TABLET */
@media(max-width:1100px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */
@media(max-width:768px){

.footer{
padding:70px 0 25px;
}

.footer-grid{
grid-template-columns:1fr;
gap:40px;
}

.footer h3{
font-size:22px;
margin-bottom:20px;
}

.footer-logo{
width:190px;
}

.footer-about p,
.footer ul li a,
.footer-contact p{
font-size:15px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
margin-top:45px;
gap:12px;
}

.whatsapp-btn{
right:18px;
bottom:18px;
padding:14px 20px;
font-size:15px;
}

}