* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #0b3b5f;
    --primary-light: #1e5a7d;
    --secondary: #f4a261;
    --secondary-dark: #e76f51;
    --accent: #2a9d8f;
    --light: #f9f7f3;
    --dark: #2d2f36;
    --muted: #5e6b7e;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
    --radius: 1.5rem;
}
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&display=swap');

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    position:static;
    top: 0;
    z-index: 2000;
    gap: 1rem;
    border-bottom: 3px solid var(--secondary);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.logo span {
    background: none;
    color: var(--secondary-dark);
    -webkit-background-clip: unset;
    background-clip: unset;
    font-weight: 800;
}
.nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    list-style: none;
}
.nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    transition: 0.2s;
    font-size: 0.95rem;
    position: relative;
}
.nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}
.nav ul li a:hover:after {
    width: 100%;
}
.nav ul li a:hover {
    color: var(--secondary-dark);
}
.nav img {
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid var(--secondary); */
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}
.nav img:hover {
    transform: scale(1.02);
}
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    isolation: isolate;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    filter: brightness(0.65) contrast(1.08);
    transform: scale(1);
    transition: transform 8s ease, opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.02);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,59,95,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 2rem;
    animation: fadeUp 0.9s ease-out;
}
.hero-inner h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #fff, #FFE0B5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-inner h1 span {
    background: linear-gradient(135deg, var(--secondary), #ffbc6e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-inner p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    font-weight: 500;
    backdrop-filter: blur(2px);
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.btn-primary {
    background: var(--secondary);
    color: #1e2a2e;
    border: none;
    box-shadow: 0 8px 18px rgba(244,162,97,0.3);
}
.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}
.hero-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    background: var(--white);
    margin: -3.5rem auto 2rem auto;
    max-width: 1200px;
    padding: 2rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(0px);
    border: 1px solid rgba(244,162,97,0.3);
}
.stat {
    text-align: center;
    flex: 1;
    min-width: 140px;
    transition: transform 0.2s;
}
.stat:hover {
    transform: translateY(-5px);
}
.stat h3 {
    font-size: 2.6rem;
    color: var(--primary);
    font-weight: 800;
}
.stat span {
    color: var(--muted);
    font-weight: 600;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    /* background-color: #0b3b5f; */
    margin-bottom: 10px;
}
.container-1{
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0.8rem auto 0;
    border-radius: 4px;
}
.section-title p {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding: 10px;
    align-items: center;
    margin-left: 25px;
}
.service {
    background: white;
    width: 280px;
    height: 350px;
    padding: 2rem 1.8rem;
    border-radius: 2rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.service:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}
.service h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}
.service p {
    color: var(--muted);
}
.about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: var(--white);
    /* border-radius: 2rem; */
    padding: 2.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
    background-color: #0b3b5f;
}
.about-box {
    background: #fefaf5;
    padding: 1.8rem;
    border-radius: 1.5rem;
    transition: 0.2s;
    /* border-bottom: 6px solid var(--secondary); */
    border-left :6px solid var(--secondary);
}
.about-box h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}
.mantra-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.mantra-lines span {
    background: #e9ecef;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s;
}
.mantra-lines span:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.02);
}
.cta {
    background: linear-gradient(115deg, var(--primary) 0%, #1e5a7d 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 2.5rem;
    color: white;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta:before {
    content: "✨";
    font-size: 180px;
    position: absolute;
    bottom: -40px;
    right: -40px;
    opacity: 0.1;
    pointer-events: none;
}
.cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}
.cta p {
    max-width: 550px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    font-size: 1.1rem;
}
.cta .btn-outline {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 800;
}
.cta .btn-outline:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.02);
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2rem;
    margin-left: 40px;
    margin-right: 40px;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    flex: 1;
    min-width: 220px;
    text-align: center;
    transition: all 0.5s;
    box-shadow: var(--shadow-sm);
}
.feature-card h3{
    color:  #0b3b5f;
}
.feature-card p{
    color: #0e2a38;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-top: #0b3b5f 1px solid;
    /* border-bottom: #0b3b5f 0.5px solid; */
}
.feature-card span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}
.teachers {
background: var(--white);
}
.teacher-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.teacher-card {
background: var(--light);
border-radius: 1.5rem;
padding: 1.8rem;
text-align: center;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(0,0,0,0.05);
}
.teacher-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-md);
border-color: var(--secondary);
}
.teacher-img {
width: 200px;
height: 190px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 1rem;
border: 4px solid var(--secondary);
box-shadow: var(--shadow-sm);
background: #e2e8f0;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
}
.teacher-card img{
width: 150px;
background-size: cover;
border-radius: 50%;
height: 150px;
}
.teacher-card h3 {
color: var(--primary);
font-size: 1.3rem;
margin-bottom: 0.25rem;
}
.teacher-card .role {
color: var(--secondary-dark);
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 0.5rem;
}
.teacher-card .bio {
color: var(--muted);
font-size: 0.9rem;
margin-top: 0.5rem;
}
.testimonials {
background:var(--primary);
}
.testimonials h2{
color: var(--secondary-dark);
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.testimonial-card {
background: var(--white);
border-radius: 1.5rem;
padding: 2rem;
box-shadow: var(--shadow-md);
transition: transform 0.3s;
position: relative;
}
.testimonial-card:hover {
transform: scale(1.02);
}
.quote-icon {
font-size: 3rem;
color: var(--secondary);
opacity: 0.3;
position: absolute;
top: 1rem;
right: 1.5rem;
font-family: serif;
}
.testimonial-text {
font-size: 1rem;
line-height: 1.6;
color: var(--dark);
margin-bottom: 1.2rem;
font-style: italic;
}
.parent-name {
font-weight: 700;
color: var(--primary);
margin-bottom: 0.2rem;
}
.parent-child {
font-size: 0.8rem;
color: var(--muted);
}
.rating {
color: var(--secondary);
margin-top: 0.5rem;
letter-spacing: 2px;
}
.events {
background: var(--white);
}
.events-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.event-card {
display: flex;
background: var(--light);
border-radius: 1.2rem;
overflow: hidden;
transition: all 0.3s;
box-shadow: var(--shadow-sm);
}
.event-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.event-date {
background: var(--primary);
color: white;
min-width: 80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 1rem;
}
.event-date .day {
font-size: 1.8rem;
font-weight: 800;
line-height: 1;
}
.event-date .month {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.event-details {
padding: 1rem 1.2rem;
flex: 1;
}
.event-details h4 {
color: var(--primary);
margin-bottom: 0.3rem;
font-size: 1.1rem;
}
.event-time {
font-size: 0.8rem;
color: var(--secondary-dark);
margin-bottom: 0.3rem;
}
.event-location {
font-size: 0.8rem;
color: var(--muted);
}
.gallery {
background: #f8f4ef;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.2rem;
}
.gallery-item {
position: relative;
border-radius: 1rem;
overflow: hidden;
aspect-ratio: 1 / 1;
cursor: pointer;
box-shadow: var(--shadow-sm);
transition: all 0.3s;
}
.gallery-item:hover {
transform: scale(1.02);
box-shadow: var(--shadow-lg);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s;
}
.gallery-item:hover img {
transform: scale(1.08);
}
.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.7));
color: white;
padding: 1rem;
transform: translateY(100%);
transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay {
transform: translateY(0);
}
.faq-section {
background: var(--white);
}
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 1.2rem;
}
.faq-item {
background: var(--light);
border-radius: 1rem;
padding: 1.2rem 1.5rem;
cursor: pointer;
transition: all 0.2s;
border-left: 4px solid var(--secondary);
}
.faq-item:hover {
background: #fff;
box-shadow: var(--shadow-sm);
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 700;
color: var(--primary);
font-size: 1rem;
}
.faq-question .icon {
font-size: 1.3rem;
transition: transform 0.2s;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
color: var(--muted);
font-size: 0.9rem;
line-height: 1.5;
}
.faq-item.active .faq-answer {
max-height: 200px;
margin-top: 0.8rem;
}
.faq-item.active .faq-question .icon {
transform: rotate(45deg);
}
.w-icon{
    height: 30px;
    width: 30px;
    /* padding: 5px; */
}
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
/* padding: 5px; */
background-color: #25D366;
color: white;
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
transition: all 0.3s;
z-index: 1000;
text-decoration: none;
animation: pulse 2s infinite;
padding: 20px;
}
.whatsapp-float:hover {
transform: scale(1.1);
background-color: #20b859;
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.newsletter-social {
background: linear-gradient(115deg, var(--primary) 0%, #1e5a7d 100%);
color: white;
}
.newsletter-wrapper {
display: flex;
flex-wrap: wrap;
gap: 3rem;
align-items: center;
justify-content: space-between;
}
.newsletter-box {
flex: 1;
min-width: 250px;
display: flex;
}
.newsletter-wrapper img{
    width: 150px;
    height: 150px;
}
.newsletter-box h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.newsletter-form {
display: flex;
margin-top: 1rem;
}
.newsletter-form input {
flex: 1;
padding: 0.8rem 1rem;
border: none;
border-radius: 60px 0 0 60px;
font-size: 0.9rem;
outline: none;
}
.newsletter-form button {
background: var(--secondary);
border: none;
padding: 0 1.5rem;
border-radius: 0 60px 60px 0;
color: var(--primary);
font-weight: bold;
cursor: pointer;
transition: 0.2s;
}
.newsletter-form button:hover {
background: var(--secondary-dark);
color: white;
}
.anthem{
    width: 300px;
    height: 250px;
    background-color: #cbd5e1;
}
.social-links {
flex: 1;
min-width: 200px;
text-align: center;
}
.social-icons {
display: flex;
gap: 1.2rem;
justify-content: center;
margin-top: 1rem;
}
.social-icons a {
color: white;
background: rgba(255,255,255,0.2);
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
transition: 0.2s;
text-decoration: none;
}
.social-icons a:hover {
background: var(--secondary);
transform: translateY(-3px);
}
.site-footer{
background:var(--primary);
color:white;
padding:50px 8% 25px;
}
.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
align-items:start;
}
.footer-logo{
width:60px;
margin-bottom:10px;
}
.footer-brand h3{
margin-bottom:10px;
}
.footer-brand p{
font-size:.9rem;
color:#d7e2ea;
}
.footer-links{
    margin-top: 35px;
}
.footer-links ul,
.footer-contact ul{
list-style:none;
padding:0;
}
.footer-links li,
.footer-contact li{
margin:8px 0;
font-size:.9rem;
}
.footer-contact{
    margin-top: 35px;
}
.footer-links a{
text-decoration:none;
color:#d7e2ea;
transition:.3s;
}
.footer-links a:hover{
color:var(--secondary);
}
.social-icons{
margin-top:25px;
display:flex;
flex-direction: column;
gap:12px;
/* margin-left: -140px; */
}
.social-icons label{
    font-size: 16px;
    font-weight: bold;
}
.social-icons a{
display:flex;
align-items:center;
justify-content:center;
width:35px;
height:35px;
border-radius:50%;
background:rgba(255,255,255,.08);
color:white;
font-size:14px;
transition:.3s;
}
.social-icons a:hover{
background:var(--secondary);
transform:translateY(-2px);
}
.footer-map{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-map label{
    font-size: 15px;
    font-weight: bold;
}
.footer-map iframe{
width:100%;
height:120px;
border:none;
border-radius:10px;
}
.footer-bottom{
text-align:center;
margin-top:30px;
font-size:.8rem;
border-top:1px solid rgba(255,255,255,.15);
padding-top:15px;
color:#c6d4dd;
}
@keyframes fadeUp {
    from {
    opacity: 0;
    transform: translateY(35px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* @media (max-width: 860px) {
    .nav ul {
    gap: 0.9rem;
    justify-content: center;
    }
    .hero-inner h1 {
    font-size: 2.6rem;
    }
    .hero-card {
    margin-top: -2rem;
    padding: 1.5rem;
    }
    .section-title h2 {
    font-size: 2rem;
    }
}
@media (max-width: 768px) {
.container {
padding: 2rem 1rem;
}
.section-title h2 {
font-size: 1.8rem;
}
.event-card {
flex-direction: column;
}
.event-date {
flex-direction: row;
gap: 0.5rem;
padding: 0.5rem;
}
.whatsapp-float {
width: 50px;
height: 50px;
font-size: 1.6rem;
bottom: 20px;
right: 20px;
}
} */
@media (max-width: 414px){
.logo{
font-size:1.5rem;
}
.hero-inner h1{
font-size:2rem;
}
.hero-inner p{
font-size:1rem;
padding:0 10px;
}
.hero-actions{
flex-direction:column;
gap:12px;
}
.hero-card{
flex-direction:column;
gap:20px;
margin-top:-2rem;
}
.services{
grid-template-columns:1fr;
margin-left:0;
justify-items:center;
}
.service{
width:90%;
height:auto;
}
.features-grid{
margin-left:10px;
margin-right:10px;
gap:1rem;
}
.teacher-grid{
grid-template-columns:1fr;
}
.testimonial-grid{
grid-template-columns:1fr;
}
.events-container{
grid-template-columns:1fr;
}
.gallery-grid{
grid-template-columns:1fr 1fr;
}
.faq-grid{
grid-template-columns:1fr;
}
.footer-container{
grid-template-columns:1fr;
text-align:center;
}
.footer-links,
.footer-contact{
margin-top:10px;
}
}
@media (max-width: 900px){
.nav{
position:relative;
}
.nav ul{
position:absolute;
top:100%;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
box-shadow:var(--shadow-sm);
}
.nav ul.active{
max-height:400px;
padding:20px 0;
}
.nav ul li{
padding:10px 0;
}
.hamburger{
display:flex;
flex-direction:column;
gap:5px;
cursor:pointer;
}
.hamburger span{
width:25px;
height:3px;
background:var(--primary);
border-radius:2px;
transition:.3s;
}
.logo{
font-size:1.5rem;
}
.nav img{
display:none;
}
}
@media (min-width:901px){
.hamburger{
display:none;
}
}
@media (max-width:360px){

.logo{
font-size:1.3rem;
}

/* .about-hero h1{
font-size:1.6rem;
}

.section-title h2{
font-size:1.5rem;
} */
}