html, body {
    width: 100%;
    overflow-x: hidden;
}
  .container {max-width: 1200px;margin: 0 auto;padding: 10px 20px;} 
 .btn {
     display: inline-block;
     padding: 14px 28px;
     font-size: 15px;
     font-weight: 600;
     text-decoration: none;
     border-radius: 6px;
     transition: all 0.3s ease;
     cursor: pointer;
}
 .btn-primary {
     background: #2aa7a4;
     color: #fff;
     border: none;
     padding: 18px 45px;
     border-radius: 35px;
     font-weight: 700;
     font-size: 18px;
}
 .btn-primary:hover,
 .btn-primary:focus,
 .btn-primary:active,
 .btn-primary:active:focus {
     background: #2aa7a4 !important;
     color: #fff !important;
     border: none !important;
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0,0,0,.15) !important;
}
 .btn-secondary {
     background: transparent;
     color: #ffffff;
     border: 2px solid #ffffff;
}
 .btn-secondary:hover {
     background: #ffffff;
     color: #26a6a3;
}
 *{
     margin:0;
     padding:0;
     box-sizing:border-box;
     font-family: "Varela Round", sans-serif;
}
 .top-bar {
     background: #27a9a6;
     color: #fff;
     font-size: 13px;
}
 .top-bar .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .top-bar .top-left, .top-bar .top-right {
     display: flex;
     align-items: center;
     flex-wrap: nowrap;
     gap: 6px 0;
}
 .top-bar .top-item {
     margin-right: 20px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     white-space: nowrap;
}
 .top-bar .top-left .top-item:last-child, .top-bar .top-right .top-item:last-child {
     margin-right: 0;
} 
 .top-bar .top-item a {
     color: #fff;
     text-decoration: none;
}
 .top-bar .top-item a:hover {
     text-decoration: underline;
}  
 .zigzag {
     height: 25px;
    /* height of cut */
     background: linear-gradient(-45deg, #ffffff 12px, transparent 0) 0 0, linear-gradient(45deg, #ffffff 12px, transparent 0) 0 0;
     background-size: 16px 20px;
    /* controls triangle width */
     background-repeat: repeat-x;
     transform: rotate(180deg);
     position: absolute;
     top: -6px;
     left: 0px;
     width: 100%;
} 

/* Base Header Styles (you already have these) */
.header {
    background: #ffffff;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo img {
    height: 90px;
    width: auto;
    float: left;
}

.header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.header .nav ul li a {
    text-decoration: none;
    color: #da1d7d;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s ease;
    position: relative;
}

.header .nav ul li a:hover {
    color: #288cc6;
}

.header .nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #288cc6;
    transition: width 0.3s ease;
}

.header .nav ul li:hover a::after {
    width: 100%;
}

/* Hamburger Icon (hidden by default) */
.header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.header .hamburger span {
    height: 3px;
    width: 25px;
    background: #da1d7d;
    border-radius: 3px;
    transition: all 0.3s ease;
}

 .hero {
     position: relative;
     height: 600px;
     display: flex;
     align-items: center;
     width: 100%;
}
 
 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgb(0 0 0 / 60%);
}
 
 .hero .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     width: 100%;
     position: relative;
     z-index: 2;
}
 
 .hero .hero-content {
     color: #ffffff;
     display: flex;
     flex-direction: column;
     justify-content: center;
     text-align: center;
     width: 100%;
}
 
 .hero .hero-content h1 {
     font-size: 52px;
     line-height: 1.2;
     margin: 0 0 25px 0;
     font-weight: 700;
}
 
 .hero .highlight {
     color: #ffb703;
}
 
 .hero .hero-buttons {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     justify-content: center;
} 
 .parents-section{
     padding: 60px 0px;
     background:#f9f9f9;
}
 .parents-section .parents-container{
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
}
 .parents-section .parents-title{
     text-align:center;
     font-size:48px;
     margin-bottom:70px;
     font-weight: 700;
}
 .parents-section .parents-title span{
     color:#ffb703;
}
 .parents-section .parents-description{
     text-align:center;
     font-size:18px;
     color:#555;
     max-width:800px;
     margin:0 auto 30px;
     line-height:1.7;
}
 .parents-section .parents-btn-wrap{
     text-align:center;
}
 .parents-section .parents-grid{
     display:grid;
     grid-template-columns:repeat(4,1fr);
     gap:30px;
}
 
 .parents-section .parent-card{
     padding:45px 30px;
     border-radius:25px;
     color:#fff;
     text-align:center;
     min-height:420px;
     display:flex;
     flex-direction:column;
     justify-content:space-between;
     transition:.3s;
}
 .parents-section .parent-card:hover{
     transform:translateY(-10px);
}
 .parents-section .parent-card h3{
     font-size:24px;
     margin:25px 0 15px;
}
 .parents-section .parent-card p{
     font-size:16px;
     line-height:1.6;
}
/* ===== ICON ===== */
 .parents-section .icon-wrap{
     width:90px;
     height:90px;
     margin:auto;
     background:#fff;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     font-size:40px;
}
/* ===== BUTTON ===== */
 .parents-section .card-btn{
     background:#fff;
     color:#000;
     padding:14px 30px;
     border-radius:30px;
     text-decoration:none;
     font-weight:700;
     display:inline-block;
     margin-top:25px;
}
/* ===== COLORS ===== */
 .parents-section .green{
    background:#5cc38c;
}
 .parents-section .pink{
    background:#ff6f82;
}
 .parents-section .teal{
    background:#2aa7a4;
}
 .parents-section .yellow{
    background:#ffb536;
}
/* ===== RESPONSIVE ===== */

/* ===== OUR STORY SECTION ===== */
 .story-section{
     padding: 60px 0px;
     background:#fff;
}
 .story-section .story-container{
     display:grid;
     grid-template-columns:1fr 1fr;
     gap:60px;
     align-items:center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
}
/* IMAGE */
 .story-section .story-image{
 border-radius: 25px;
 overflow: hidden;
 }
 .story-section .story-image img{
     width:100%;
     float: left;
}
/* CONTENT */
 .story-section .story-content{
 }
 .story-section .story-content h2{
     font-size:48px;
     margin-bottom:25px;
     font-weight:800;
}
 .story-section .story-content h2 span{
     color:#ffb703;
}
 .story-section .story-content p{
     font-size:18px;
     line-height:1.8;
     color:#222;
     margin-bottom:40px;
}
/* BUTTON */
 .story-section .story-btn{
     background:#2aa7a4;
     color:#fff;
     padding:18px 45px;
     border-radius:35px;
     text-decoration:none;
     font-weight:700;
     font-size:18px;
     display:inline-block;
     transition:.3s;
}
 .story-section .story-btn:hover{
     transform:translateY(-3px);
     box-shadow:0 10px 25px rgba(0,0,0,.15);
}
/* ===== OUR DAYHOME SECTION ===== */
 .dayhome-section{
     background:#ffb536;
     padding: 60px 0px;
}
 .dayhome-section .dayhome-container{
     display:grid;
     grid-template-columns:1fr 1fr;
     gap:60px;
     align-items:center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
}
/* LEFT */
 .dayhome-section .dayhome-content{
 }
 .dayhome-section .dayhome-content h2{
     font-size:52px;
     margin-bottom:25px;
     font-weight:800;
}
 .dayhome-section .dayhome-content h2 span{
     color:#fff;
}
 .dayhome-section .dayhome-content p{
     font-size:18px;
     line-height:1.8;
     color:#000;
     max-width:520px;
     margin-bottom:45px;
}
/* BUTTON */
 .dayhome-section .dayhome-btn{
     background:#2aa7a4;
     color:#fff;
     padding:18px 48px;
     border-radius:40px;
     text-decoration:none;
     font-weight:700;
     font-size:18px;
     display:inline-block;
     transition:.3s;
}
 .dayhome-section .dayhome-btn:hover{
     transform:translateY(-4px);
     box-shadow:0 10px 25px rgba(0,0,0,.2);
}
/* RIGHT */
 .dayhome-section .dayhome-map  {
     width:100%;
     border-radius:20px;
}
/* RESPONSIVE */
 .educator-section{
     padding: 60px 0px;
     background:#fff;
}
 .educator-section .educator-container{
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
}
 .educator-section .educator-title{
     text-align:center;
     font-size:46px;
     margin-bottom:40px;
}
 .educator-section .educator-title span{
     color:#ffb536;
}
/* TABS */
 .educator-section .educator-tabs{
     display:flex;
     gap:20px;
     justify-content:center;
     margin-bottom: 30px;
}
 .educator-section .tab-btn{
     padding:14px 28px;
     border-radius:12px;
     border:2px solid #ddd;
     background:#fff;
     cursor:pointer;
     font-weight:700;
     width: auto;
     white-space: nowrap;
}
 .educator-section .tab-btn.active{
     background:#ffb536;
     border-color:#ffb536;
}
@media (max-width: 991px) {
    .educator-section .educator-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }
    .educator-section .tab-btn {
        flex: 1 1 calc(50% - 12px);
        text-align: center;
        white-space: normal;
    }
}
@media (max-width: 576px) {
    .educator-section .tab-btn {
        flex: 1 1 100%;
    }
}
/* PANEL */
 .educator-section .educator-content{
     background:#fff;
     border-radius:30px;
     box-shadow:0 10px 35px rgba(0,0,0,.1);
     padding:60px;
}
 .educator-section .tab-panel{
     display:none;
}
 .educator-section .tab-panel.active{
     display:block;
}
 .educator-section .panel-grid{
     display:flex;
     gap:40px;
     align-items:center;
}
 .educator-section .panel-icon-left{
     flex-shrink:0;
}
 .educator-section .panel-text h3{
     font-size:32px;
     margin-bottom:15px;
}
 .educator-section .panel-text p{
     font-size:18px;
     margin-bottom:0;
}
 .educator-section .icon{
     font-size:40px;
     margin-bottom:15px;
}
/* BUTTON */
 .educator-section .panel-btn{
     background:#ffb536;
     color:#000;
     padding:14px 34px;
     border-radius:30px;
     text-decoration:none;
     font-weight:700;
}
/* IMAGE */
 .educator-section .panel-right img{
     width:100%;
     max-width:420px;
}
 .educator-section .panel-icon{
     width:150px;
     height:150px;
     background:#fff3d6;
     border-radius:50%;
     display:flex;
     align-items:center;
     justify-content:center;
     font-size:70px;
     margin:0 auto;
}
/* RESPONSIVE */
/* Main Footer Class */
 .footer-main {
     background-color: #FBB03B;
    /* The orange/yellow background */
     width: 100%;
     padding-top: 50px;
     text-align: center;
}
 .footer-main .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     padding-bottom: 40px;
}
/* Logo Styling */
 .footer-main .footer-logo img {
     max-width: 180px;
     margin-bottom: 25px;
}
/* Contact Details */
 .footer-main .footer-contact {
     margin-bottom: 30px;
}
 .footer-main .contact-item {
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 10px auto;
     font-size: 18px;
     font-weight: 600;
     color: #000;
}
 .footer-main .contact-item a {
     text-decoration: none;
     color: #000;
}
 .footer-main .icon {
     margin-right: 10px;
     font-size: 20px;
     flex-shrink: 0;
     width: 24px;
     text-align: center;
     line-height: 1.4;
}
 .footer-main .footer-socials {
     display: flex;
     justify-content: center;
     gap: 15px;
}
 .footer-main .social-icon {
     background-color: #fff;
     color: #FBB03B;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     text-decoration: none;
     font-size: 24px;
     font-weight: bold;
     transition: transform 0.2s;
}
 .footer-main .social-icon:hover {
     transform: scale(1.1);
}
/* Bottom Copyright Bar */
 .footer-main .footer-bottom {
     background-color: #fff;
     padding: 20px 10px;
    /* Creating the zig-zag effect using a clip-path or simple border */
     border-top: 5px dotted #FBB03B;
     margin-top: 20px;
}
 .footer-main .footer-bottom p {
     margin: 0;
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 1px;
     color: #000;
}
 .contact-section {
     padding: 60px 0px;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
}
.contact-section:before{
	content:"";
	background: #00000024;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
 .contact-section .contact-container {
     max-width: 900px;
     width: 100%;
     background-color: #ffffffba;
     padding: 40px 30px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     position: relative;
}
/* Title */
 .contact-section .contact-title {
     text-align: center;
     font-size: 46px;
     font-weight: 900;
     margin-bottom: 40px;
     color: #000000;
}
/* Form Row */
 .contact-section .form-row {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
}
/* Form Group */
 .contact-section .form-group {
     flex: 1;
     display: flex;
     flex-direction: column;
}
 .contact-section .form-group label {
     font-weight: 600;
     margin-bottom: 8px;
     color: #333;
}
 .contact-section .form-group label span {
     color: red;
    /* required indicator */
}
/* Inputs and Textarea */
 .contact-section .form-group input, .contact-section .form-group textarea {
     padding: 15px 20px;
     border-radius: 12px;
     border: 1px solid #ccc;
     font-size: 16px;
     outline: none;
     transition: border 0.3s ease, box-shadow 0.3s ease;
}
 .contact-section .form-group input:focus, .contact-section .form-group textarea:focus {
     border-color: #FFB347;
     box-shadow: 0 0 8px rgba(255,179,71,0.4);
}
 .contact-section .form-group textarea {
     resize: vertical;
     min-height: 120px;
     margin-bottom: 20px;
}
/* Button */
 .contact-section .button-container {
     text-align: center;
     margin-top: 10px;
}
 .contact-section .contact-submit {
     background-color: #FFB347;
     color: #000000;
     font-weight: bold;
     font-size: 18px;
     padding: 14px 60px;
     border-radius: 15px;
     border: none;
     cursor: pointer;
     transition: background 0.3s ease, transform 0.2s ease;
}
 .contact-section .contact-submit:hover {
     background-color: #ffa500;
     transform: translateY(-2px);
}
/* Responsive */
 .faq-section {
     padding: 60px 0px;
     background-color: #ffffff;
     text-align: center;
}
/* Container */
 .faq-section .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
}
/* Title */
 .faq-section .faq-title {
     font-size: 46px;
     font-weight: 700;
     margin-bottom: 40px;
}
 .faq-section .faq-title span {
     color: #FFB238;
    /* orange highlight */
}
/* Grid */
 .faq-section .faq-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
     gap: 20px;
     margin-bottom: 30px;
} 
 .faq-section .faq-item {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.05);
     overflow: hidden;
     transition: transform 0.3s ease;
}
 .faq-section .faq-item:hover {
     transform: translateY(-3px);
}
/* Question button */
 .faq-section .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px;
     font-size: 1rem;
     font-weight: 500;
     width: 100%;
     border: none;
     background: none;
     cursor: pointer;
     transition: background 0.3s ease;
}
 .faq-section .faq-question:hover {
     background: #f8f8f8;
}
 .faq-section .faq-question span {
     transition: transform 0.3s ease;
     font-weight: 700;
     font-size: 1.2rem;
}
/* Answer */
 .faq-section .faq-answer {
     max-height: 0;
     overflow: hidden;
     padding: 0 20px;
     font-size: 0.95rem;
     color: #555;
     transition: max-height 0.3s ease, padding 0.3s ease;
}
/* Opened FAQ */
 .faq-section .faq-item.active .faq-answer {
     max-height: 200px;
    /* adjust if content is longer */
     padding: 10px 20px;
}
/* Rotate + to x */
 .faq-section .faq-item.active .faq-question span {
     transform: rotate(45deg);
}
/* View All button */
 .faq-section .faq-view-all {
     background-color: #FFB238;
     color: #000;
     font-weight: 600;
     padding: 12px 30px;
     border-radius: 8px;
     border: none;
     cursor: pointer;
     transition: background 0.3s ease;
}
 .faq-section .faq-view-all:hover {
     background-color: #ffa500;
}
 .staff-section {
     text-align: center;
     padding: 60px 0px;
     background-color: #f9f9f9;
}
 .staff-section h2 {
     font-size: 2.5rem;
     margin-bottom: 50px;
     font-weight: 700;
}
 .staff-section h2 span {
     color: #ffb400;
    /* Highlight "Staff" */
     position: relative;
}
/* Optional: subtle underline animation on hover */
 .staff-section h2 span::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 4px;
     background-color: #ffb400;
     bottom: -5px;
     left: 0;
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.3s ease;
}
 .staff-section h2 span:hover::after {
     transform: scaleX(1);
     transform-origin: left;
}
 .staff-section .staff-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 40px;
     justify-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
 .staff-section .staff-member {
     text-align: center;
     transition: transform 0.3s ease;
}
 .staff-section .staff-member img {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 15px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .staff-section .staff-member:hover img {
     transform: scale(1.05);
     box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
 .staff-section .staff-member h3 {
     font-size: 1.2rem;
     margin-bottom: 5px;
     font-weight: 600;
}
 .staff-section .staff-member p {
     font-size: 1rem;
     color: #ffb400;
     margin: 0;
}
 .events-featured-section {
     padding: 60px 0;
     background-color: #2aa7a4;
}
/* Title */
 .events-featured-section .section-title {
     text-align: center;
     font-size: 46px;
     font-weight: 700;
     margin-bottom: 50px;
}
 .events-featured-section .section-title .highlight {
     color: #ffffff;
    /* Highlight color */
     position: relative;
}
/* Optional: underline animation for highlight */
 .events-featured-section .section-title .highlight::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 3px;
     background-color: #ff6f61;
     bottom: -5px;
     left: 0;
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.3s ease;
}
 .events-featured-section .section-title .highlight:hover::after {
     transform: scaleX(1);
     transform-origin: left;
}
/* Cards container */
 .events-featured-section .cards-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
/* Individual card */
 .events-featured-section .card {
     background-color: #fff;
     border-radius: 12px;
     padding: 25px 20px;
     text-align: center;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .events-featured-section .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
/* Card content */
 .events-featured-section .card-icon {
     width: 60px;
     height: 60px;
     margin-bottom: 15px;
}
 .events-featured-section .service-icon {
     font-size: 50px;
     margin-bottom: 15px;
}
 .events-featured-section .card-title {
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 10px;
}
 .events-featured-section .card-description {
     font-size: 1rem;
     color: #555;
     margin-bottom: 20px;
}
/* Button */
 .events-featured-section .card-button {
     padding: 10px 25px;
     border: none;
     background-color: #ffb609;
     color: #000000;
     border-radius: 50px;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.3s ease;
}
 .events-featured-section .card-button:hover {
     background-color: #d89800;
}
 
 .map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

 
 
/* ===== BACK TO TOP ===== */
 .back-to-top{
     position:fixed;
     bottom:30px;
     right:30px;
     width:50px;
     height:50px;
     background:#2aa7a4;
     color:#fff;
     border:none;
     border-radius:50%;
     font-size:24px;
     cursor:pointer;
     display:none;
     z-index:999;
     box-shadow:0 4px 15px rgba(0,0,0,.2);
     transition:.3s;
}
 .back-to-top:hover{
     background:#1e8e8b;
     transform:translateY(-3px);
}

  @media(max-width:900px){
     .nav ul{
         flex-wrap:wrap;
         justify-content:center;
    }
     .hero{
         padding: 80px 40px;
         height:auto;
    }
     .hero-content h1{
         font-size:38px;
    } 
}


 @media(max-width:1100px){
     .parents-section .parents-grid{
         grid-template-columns:repeat(2,1fr);
    }
}
 @media(max-width:600px){
     .parents-section .parents-grid{
         grid-template-columns:1fr;
    }
     .parents-section .parents-title{
         font-size:34px;
    }
}

 
 @media(max-width:900px){
     .story-section .story-container{
         grid-template-columns:1fr;
         text-align:center;
    }
     .story-section .story-image img{
         margin:auto;
    }
     .story-section .story-content h2{
         font-size:36px;
    }
}
 @media(max-width:500px){
     .story-section{
         padding:70px 30px;
    }
}


 @media(max-width:900px){
     .dayhome-section .dayhome-container{
         grid-template-columns:1fr;
         text-align:center;
    }
     .dayhome-section .dayhome-content p{
         margin:auto auto 40px;
    }
}
 @media(max-width:500px){
     .dayhome-section{
         padding:70px 30px;
    }
     .dayhome-section .dayhome-content h2{
         font-size:38px;
    }
}


 @media (max-width: 900px){
    .educator-section .educator-content{
        padding:30px 20px;
    }
    .educator-section .panel-grid{
        flex-direction: column;
        text-align:center;
        gap:20px;
    }
    .educator-section .panel-text h3{
        font-size:24px;
    }
    .educator-section .panel-text p{
        font-size:16px;
        line-height:1.6;
    }
}

@media (max-width: 600px){
    .educator-section .educator-title{
        font-size:32px;
    }
}



 @media screen and (max-width: 768px) {
     .contact-section .form-row {
         flex-direction: column;
    }
}


 @media screen and (max-width: 768px) {
     .faq-section .faq-grid {
         grid-template-columns: 1fr 
    }
}


@media (max-width: 992px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-bar .top-left,
    .top-bar .top-right {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 8px;
    }
    .top-bar .top-item {
        margin-right: 15px;
        margin-bottom: 5px;
    }
}

@media (max-width: 600px) {
    .top-bar {
        font-size: 12px;
    }
    .top-bar .top-left,
    .top-bar .top-right {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-bar .top-item {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .footer-main .contact-item {
        align-items: flex-start;
        max-width: 300px;
        text-align: left;
    }

    .footer-main .icon {
        flex-shrink: 0;
        width: 24px;
        text-align: center;
        line-height: 1.4;
    }
}



/* Responsive Menu */
@media (max-width: 992px) {
    .header .nav {
        position: absolute;
        top: 88px; /* below header */
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        overflow: hidden;
        max-height: 0; /* hide menu */
        transition: max-height 0.3s ease;
    }

    .header .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .header .nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .header .hamburger {
        display: flex;
    }

    /* Active menu */
    .header .nav.active {
        max-height: 500px; /* enough to show menu */
        z-index: 2000;
    }
}


.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Registration form page css: Start */

.registration-page {
    background: #f8f5ef;
    min-height: 100vh;
    padding: 30px 16px 50px;
    box-sizing: border-box;
  }

  .registration-page *,
  .registration-page *::before,
  .registration-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* page wrapper */
  .registration-page .reg-form-wrapper {
    max-width: 840px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(38,166,163,0.15));
  }

  /* form header */
  .registration-page .reg-form-header {
    background: linear-gradient(135deg, #26a6a3 0%, #1e8f8c 50%, #26a6a3 100%);
    border-radius: 16px 16px 0 0;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ffffff;
  }
  .registration-page .reg-form-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .registration-page .reg-header-logo {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.15);
    position: relative; z-index: 1;
  }
  .registration-page .reg-header-text {
    position: relative; z-index: 1;
  }
  .registration-page .reg-header-text .reg-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1.1;
  }
  .registration-page .reg-header-ornament {
    margin-left: auto;
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 3px; align-items: flex-end;
  }
  .registration-page .reg-ornament-line {
    height: 2px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
  }

  /* form body */
  .registration-page .reg-form-body {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    padding: 26px 30px 38px;
  }

  /* section head */
  .registration-page .reg-form-section {
    margin-bottom: 24px;
  }
  .registration-page .reg-section-head {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  .registration-page .reg-section-label {
    background: linear-gradient(90deg, #26a6a3 0%, #1e8f8c 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px 7px 14px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    white-space: nowrap;
  }
  .registration-page .reg-section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #1e8f8c, transparent);
  }

  /* grid */
  .registration-page .reg-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .registration-page .reg-col-full { grid-column: span 2; }

  /* field */
  .registration-page .reg-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .registration-page .reg-field label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 18px;
    line-height: 18px;
  }
  .registration-page .reg-field input,
  .registration-page .reg-field select,
  .registration-page .reg-field textarea {
    border: 1.5px solid #1e8f8c;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: #ffffff;
    outline: none;
    height: 42px;
    width: 100%;
    box-shadow: none;
    transition: border-color 0.2s;
  }
  .registration-page .reg-field input:focus,
  .registration-page .reg-field select:focus,
  .registration-page .reg-field textarea:focus {
    border-color: #26a6a3;
    background: #ffffff;
    box-shadow: none;
    outline: none;
  }
  /* Validation error state — red border on invalid fields */
  .registration-page .reg-field input.error,
  .registration-page .reg-field select.error,
  .registration-page .reg-field textarea.error {
    border-color: #c0392b;
  }
  .registration-page .reg-field input::placeholder,
  .registration-page .reg-field textarea::placeholder {
    color: #7a8a8a;
    font-size: 0.87rem;
    font-weight: 500;
  }
  .registration-page .reg-field textarea {
    height: auto;
    min-height: 72px;
    resize: vertical;
  }
  .registration-page .reg-field input[readonly] {
    background: #e8f6f6;
    color: #1a3a3a;
  }
  /* Validation error message — reserve space so layout never shifts */
  .registration-page .reg-field small.text-danger {
    font-size: 0.75rem;
    color: #c0392b;
    min-height: 16px;
    display: block;
    line-height: 1.3;
  }

  /*  selection wrapper */
  .registration-page .reg-select-wrapper {
    position: relative;
    width: 100%;
  }
  .registration-page .reg-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 1.5px solid #1e8f8c;
    border-radius: 8px;
    padding: 10px 40px 10px 12px;
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    outline: none;
    height: 42px;
    transition: border-color 0.2s;
  }
  .registration-page .reg-select-wrapper select.error {
    border-color: #c0392b;
  }
  .registration-page .reg-select-wrapper::after {
    content: '▾';
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    color: #26a6a3; pointer-events: none; font-size: 1rem;
  }

  /* interests */
  .registration-page .reg-interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .registration-page .reg-category-box {
    background: #e8f6f6;
    border: 1.5px solid #9ec8c7;
    border-radius: 12px;
    overflow: hidden;
  }
  .registration-page .reg-category-head {
    background: linear-gradient(90deg, #26a6a3 0%, #1e8f8c 100%);
    padding: 9px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    display: flex; align-items: center; gap: 7px;
  }
  .registration-page .reg-category-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .registration-page .reg-checkbox-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.86rem; font-weight: 600; color: #1a3a3a;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.15s;
  }
  .registration-page .reg-checkbox-item:hover { background: rgba(38,166,163,0.1); }
  .registration-page .reg-checkbox-item input[type="checkbox"] {
    accent-color: #26a6a3;
    width: 14px; height: 14px;
    cursor: pointer; flex-shrink: 0;
  }

  /* divider */
  .registration-page .reg-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #9ec8c7, transparent);
    margin: 4px 0 20px;
  }

  /* buttons */
  .registration-page .reg-button-row {
    display: flex; gap: 12px;
    margin-top: 26px;
    justify-content: center; flex-wrap: wrap;
  }
  .registration-page .reg-button {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 12px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }
  .registration-page .reg-button-submit {
    background: linear-gradient(135deg, #26a6a3 0%, #1e8f8c 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(38,166,163,0.35);
  }
  .registration-page .reg-button-submit:hover {
    background: #ffffff;
    color: #26a6a3;
    border-color: #26a6a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(38,166,163,0.2);
  }
  .registration-page .reg-button-clear {
    background: transparent;
    color: #555;
    border-color: #9ec8c7;
  }
  .registration-page .reg-button-clear:hover {
    border-color: #c0392b;
    color: #c0392b;
    transform: translateY(-2px);
  }

  @media (max-width: 580px) {
    .registration-page .reg-form-header { flex-direction: column; text-align: center; padding: 14px 16px; }
    .registration-page .reg-header-ornament { display: none; }
    .registration-page .reg-form-body { padding: 18px 14px 28px; }
    .registration-page .reg-grid-two,
    .registration-page .reg-interests-grid { grid-template-columns: 1fr; }
    .registration-page .reg-col-full { grid-column: span 1; }
  }

/* Registration form page css: End */

/* Gallery section: Start */

.gallery-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.gallery-heading h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111;
}
.gallery-heading h2 span {
    color: #ffb536;
}
.gallery-heading p {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Cards */
.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card.tall {
    height: 460px;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: #ddd;
}
.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}
.gallery-card:hover img {
    transform: scale(1.07);
}

.gallery-item.hidden {
    display: none;
}

@media (max-width: 768px) {
    .gallery-card.tall {
        height: 260px;
    }
    .gallery-heading h2 {
        font-size: 32px;
    }
}

/* Gallery section: End */