/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    overflow-x: hidden;
    background: #f4f1eb;
}


/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    height: 90px;
    background: linear-gradient(90deg, #ffffff, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    /* 🔥 STICKY */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* ================= LOGO ================= */

.logo img {
    height: 300px;
    /* 🔥 FIXED (200px bahut zyada tha) */
    width: auto;
    padding: 0px;
}


/* ================= NAV LINKS ================= */

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: #e0ecff;
    color: #1d4ed8;
    border-radius: 6px;
}


/* ================= DROPDOWN ================= */

.dropdown-menu {
    position: absolute;
    top: 100%;
    /* 🔥 FIXED */
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    display: none;
    list-style: none;
    padding: 6px 0;
    z-index: 999;
}


/* SHOW DROPDOWN */

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #0b5ed7;
    color: #fff;
}


/* ================= MENU ICON ================= */

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: #0a2540;
    -webkit-tap-highlight-color: transparent;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    .menu-icon {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        padding: 15px;
        display: block;
    }
    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f1f5f9;
    }
    .dropdown-menu li a {
        color: #0a2540;
    }
}


/* ============ HERO SECTION ============ */

.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}


/* SLIDER */

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-in-out, transform 6s ease;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}


/* DARK OVERLAY (text readability) */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}


/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    padding-top: 250px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #eaeaea;
}


/* BUTTON */

.hero-btn {
    padding: 14px 34px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #0b5ed7;
    color: #fff;
}


/* ============ RESPONSIVE ============ */

@media (max-width: 992px) {
    .hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh;
    }
    .hero-content h1 {
        font-size: 22px;
    }
    .hero-content p {
        font-size: 14px;
    }
}


/* HERO SECTION END */

.lp-hero {
    background: #f6f3ee;
    padding: 80px 20px;
    font-family: "Segoe UI", sans-serif;
}

.lp-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* LEFT */

.lp-content {
    width: 55%;
    margin-top: -170px;
}

.lp-title {
    font-size: 42px;
    color: #d86b5c;
    margin-bottom: 15px;
}

.lp-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.lp-subtitle span {
    color: #3a4fa3;
    font-weight: 600;
}

.lp-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}


/* BUTTONS */

.lp-actions {
    display: flex;
    gap: 15px;
}

.lp-btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.lp-orange {
    background: #e66b2f;
}

.lp-blue {
    background: #2f6de1;
}


/* RIGHT */

.lp-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

.lp-blob {
    background: #efd9b4;
    border-radius: 60% 40% 55% 45%;
    padding: 40px;
}

.lp-blob img {
    width: 320px;
    display: block;
}


/* 📱 Responsive */

@media (max-width: 900px) {
    .lp-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .lp-content,
    .lp-visual {
        width: 100%;
    }
    .lp-actions {
        justify-content: center;
    }
    .lp-blob img {
        width: 260px;
    }
}

.ethics-section {
    background: #f7f5f2;
    padding: 80px 20px;
    font-family: "Segoe UI", sans-serif;
}

.ethics-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


/* LEFT */

.ethics-content {
    width: 55%;
    margin-top: -100px;
}

.ethics-content h2 {
    font-size: 40px;
    color: #c75c4b;
    margin-bottom: 20px;
}

.ethics-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}


/* POINTS */

.ethics-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 30px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.point span {
    background: #e66b2f;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/* BUTTON */

.ethics-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #e66b2f;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}


/* RIGHT */

.ethics-image {
    width: 45%;
    text-align: center;
}

.ethics-image img {
    width: 360px;
    max-width: 100%;
}


/* =====================
   📱 MEDIA QUERIES
   ===================== */


/* Tablet */

@media (max-width: 992px) {
    .ethics-content h2 {
        font-size: 34px;
    }
    .ethics-image img {
        width: 300px;
    }
}


/* Mobile */

@media (max-width: 768px) {
    .ethics-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .ethics-content,
    .ethics-image {
        width: 100%;
    }
    .ethics-points {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .point {
        justify-content: center;
    }
    .ethics-image img {
        width: 260px;
        margin-top: 30px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .ethics-content h2 {
        font-size: 28px;
    }
    .ethics-text {
        font-size: 15px;
    }
}


/* HERO SECTION 2 */


/* ===== WELCOME SECTION ===== */

.welcome-section {
    width: 100%;
    background: #f6f1ee;
    padding: 80px 20px;
}


/* HEADER */

.welcome-header {
    text-align: center;
    margin-bottom: 60px;
}

.welcome-header h4 {
    font-size: 26px;
    color: #7b2d2d;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Georgia", serif;
}

.welcome-header h1 {
    font-size: 54px;
    color: #7b2d2d;
    font-weight: 600;
    font-family: "Georgia", serif;
}


/* CONTENT */

.welcome-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* IMAGE */

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
}


/* TEXT */

.welcome-text p {
    font-size: 22px;
    line-height: 1.7;
    color: #7b2d2d;
    font-family: "Georgia", serif;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .welcome-header h1 {
        font-size: 40px;
    }
    .welcome-text p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .welcome-header h1 {
        font-size: 32px;
    }
    .welcome-text p {
        font-size: 16px;
    }
}


/* ===== VISION & MISSION SECTION ===== */

.vision-mission-section {
    width: 100%;
    background: #f6f1ee;
    padding: 80px 20px;
}

.vm-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


/* CARD */

.vm-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
}


/* ICON */

.vm-icon {
    font-size: 40px;
    color: #7b2d2d;
    margin-bottom: 20px;
}


/* HEADING */

.vm-card h3 {
    font-size: 26px;
    letter-spacing: 2px;
    color: #7b2d2d;
    margin-bottom: 20px;
    font-family: "Georgia", serif;
}


/* TEXT */

.vm-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-family: "Georgia", serif;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .vm-container {
        grid-template-columns: 1fr;
    }
    .vm-card {
        padding: 40px 25px;
    }
    .vm-card p {
        font-size: 16px;
    }
}


/* ===== WHY SCHOOL SECTION ===== */

.why-us {
    background: #f6f1ee;
    padding: 60px 20px 0;
    text-align: center;
    margin-top: -70px;
}

.why-us h2 {
    font-size: 36px;
    color: #1c3d6e;
}

.tagline {
    font-size: 18px;
    margin-bottom: 40px;
}

.why-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.why-column {
    width: 30%;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.why-item span {
    background: #7ac943;
    color: #fff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-item h4 {
    margin: 0;
    font-size: 18px;
}

.why-item p {
    margin: 0;
    font-size: 14px;
}

.why-image img {
    width: 280px;
}

.decor {
    height: 120px;
    background: url("grass.png") repeat-x bottom;
    margin-top: 40px;
}


/* 📱 Responsive */

@media (max-width: 900px) {
    .why-container {
        flex-direction: column;
    }
    .why-column {
        width: 100%;
    }
    .why-image img {
        width: 220px;
    }
}


/* WHY SCHOOL SECTION END */


/* <!--OUR MOTO AND VALUES> */

.ovm-section {
    padding: 80px 20px;
    background: #f7f5f2;
    font-family: "Segoe UI", sans-serif;
    margin-top: -200px;
}

.ovm-heading {
    text-align: center;
    font-size: 40px;
    color: #c75c4b;
    margin-bottom: 60px;
}

.ovm-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* CARD */

.ovm-card {
    padding: 20px;
    border-radius: 18px;
    transition: all 0.4s ease;
    cursor: pointer;
}


/* 🔥 HOVER – ALL 1 TO 6 */

.ovm-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}


/* TITLE */

.ovm-card h4 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #222;
}


/* TEXT */

.ovm-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* NUMBER CIRCLE */

.ovm-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.4s ease;
}


/* NUMBER SCALE ON HOVER */

.ovm-card:hover .ovm-num {
    transform: scale(1.15);
}


/* COLORS */

.red {
    background: #c75c4b;
}

.orange {
    background: #e58b2a;
}

.green {
    background: #7cbf9e;
}

.pink {
    background: #e88aa5;
}

.yellow {
    background: #e1b84c;
}

.purple {
    background: #8d7cc4;
}


/* 📱 RESPONSIVE */

@media (max-width: 992px) {
    .ovm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ovm-grid {
        grid-template-columns: 1fr;
    }
    .ovm-heading {
        font-size: 30px;
    }
}


/* ===== TESTIMONIAL SECTION ===== */

.student-testimonial-section {
    width: 100%;
    background: #f6f1ee;
    /* 🔥 SAME AS VISION / MISSION */
    padding: 80px 20px;
}


/* HEADING */

.testimonial-heading {
    text-align: center;
    font-size: 30px;
    letter-spacing: 4px;
    color: #7b2d2d;
    margin-bottom: 60px;
    font-family: "Georgia", serif;
    font-weight: 500;
    margin-top: -100px;
}


/* CONTAINER */

.student-testimonial-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}


/* IMAGE */

.student-testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}


/* TEXT */

.student-testimonial-text {
    text-align: center;
    padding: 20px 40px;
}

.student-testimonial-text p {
    font-size: 30px;
    line-height: 1.7;
    color: #444;
    font-family: "Georgia", serif;
    margin-bottom: 30px;
}

.student-testimonial-text span {
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    color: #000;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .student-testimonial-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .student-testimonial-text p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .testimonial-heading {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .student-testimonial-text p {
        font-size: 16px;
    }
}


/* ===== TESTIMONIAL SECTION ===== */


/* ===== PARENT REVIEW SECTION ===== */

.parent-review-section {
    width: 100%;
    background: #f6f1ee;
    padding: 80px 20px;
}


/* WRAPPER */

.parent-review-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}


/* TEXT */

.parent-review-text {
    text-align: center;
    padding: 20px 40px;
}

.parent-review-text p {
    font-size: 30px;
    line-height: 1.7;
    color: #444;
    font-family: "Georgia", serif;
    margin-bottom: 30px;
}

.parent-review-text span {
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    color: #000;
}


/* IMAGE */

.parent-review-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .parent-review-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .parent-review-text p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .parent-review-text p {
        font-size: 16px;
    }
}


/* ===== PARENT REVIEW SECTION END ===== */

.care-section {
    background: #f5f2ea;
    padding: 80px 20px;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
}

.small-heading {
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 34px;
    color: #4a3b6b;
    margin-bottom: 25px;
    font-weight: 600;
}

.main-heading span {
    color: #6c5aa7;
}

.sub-text {
    font-size: 24px;
    color: #444;
    margin-bottom: 25px;
}

.highlight-text {
    font-size: 28px;
    color: #4a3b6b;
    margin-bottom: 50px;
}

.highlight-text span {
    color: #d4a017;
}


/* Images */

.care-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.img-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    width: 260px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.img-box:hover {
    transform: translateY(-8px);
}

.img-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.img-box p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}


/* 📱 Responsive */

@media (max-width: 768px) {
    .main-heading {
        font-size: 26px;
    }
    .highlight-text {
        font-size: 22px;
    }
    .img-box {
        width: 90%;
    }
}


/* Gallery Section */

.pg-gallery {
    padding: 80px 20px;
    background: #f7f5f2;
    font-family: "Segoe UI", sans-serif;
    margin-top: -100px;
}

.pg-title {
    text-align: center;
    font-size: 40px;
    color: #c75c4b;
    margin-bottom: 60px;
}


/* GRID */

.pg-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* CARD */

.pg-item {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    cursor: pointer;
}

.pg-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* 🔥 HOVER EFFECT */

.pg-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.pg-item:hover img {
    transform: scale(1.08);
}


/* 📱 RESPONSIVE */

@media (max-width: 992px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pg-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .pg-grid {
        grid-template-columns: 1fr;
    }
    .pg-title {
        font-size: 28px;
    }
    .pg-item img {
        height: 200px;
    }
}


/* FAQ */

.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: "Segoe UI", sans-serif;
    margin-top: -10px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #c75c4b;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #efd9b4;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 10px 15px;
    color: #555;
    line-height: 1.6;
}


/* ACTIVE STATE */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    /* + to × */
}


/* Footer */


/* ================= FOOTER ================= */

.footer {
    background: #f8f8f8;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 50px 20px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
}

.footer-links ul li a:hover {
    color: #d32f2f;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}


/* Buttons */

.footer-buttons {
    text-align: center;
    padding-bottom: 30px;
}

.footer-buttons button {
    background: #1e88e5;
    color: #fff;
    border: none;
    padding: 10px 18px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
}

.footer-buttons button:hover {
    background: #0d47a1;
}


/* Grass Bottom */

.footer-bottom {
    background: #6aa84f;
    position: relative;
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.kid {
    position: absolute;
    bottom: 0;
    width: 120px;
}

.kid.left {
    left: 20px;
}

.kid.right {
    right: 20px;
}


/* Responsive */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .kid {
        display: none;
    }
}


/* new css  */



/* ================= RESET ================= */

:root {
    --primary: #1e3a5f;        /* Navy Blue */
    --secondary: #f3efe9;      /* Warm Beige */
    --accent: #e07a3f;         /* Muted Orange */
    --accent-soft: #efd9b4;
    --dark: #1f2933;
    --gray: #555;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    overflow-x: hidden;
    background: var(--secondary);
    color: var(--dark);
}

/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    height: 90px;
    background: linear-gradient(90deg, #ffffff, #e9eef3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img {
    height: 300px;
    width: auto;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: #e6eef8;
    color: #0f2c4d;
    border-radius: 6px;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    display: none;
    list-style: none;
    padding: 6px 0;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li a:hover {
    background: var(--primary);
    color: var(--light);
}

/* MENU ICON */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary);
}

/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 250px;
    text-align: center;
    color: var(--light);
}

.hero-btn {
    padding: 14px 34px;
    background: var(--accent);
    color: var(--light);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.hero-btn:hover {
    background: var(--primary);
}

/* ================= LANDING SECTIONS ================= */

.lp-hero,
.ethics-section,
.welcome-section,
.vision-mission-section,
.why-us,
.ovm-section,
.student-testimonial-section,
.parent-review-section,
.care-section,
.pg-gallery,
.faq-section {
    background: var(--secondary);
}

/* HEADINGS */
.lp-title,
.ethics-content h2,
.welcome-header h1,
.ovm-heading,
.pg-title,
.faq-section h2,
.testimonial-heading {
    color: var(--primary);
}

/* BUTTONS */
.lp-orange,
.ethics-btn {
    background: var(--accent);
    color: var(--light);
}

.lp-blue {
    background: var(--primary);
    color: var(--light);
}

/* ICONS & POINTS */
.point span,
.ovm-num,
.why-item span {
    background: var(--accent);
    color: var(--light);
}

/* CARDS */
.vm-card,
.ovm-card,
.pg-item,
.img-box {
    background: var(--light);
}

.ovm-card:hover,
.pg-item:hover,
.img-box:hover {
    box-shadow: 0 18px 40px rgba(30,58,95,0.25);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--accent-soft);
}

.faq-question {
    color: var(--primary);
}

/* ================= FOOTER ================= */

.footer {
    background: #eef2f6;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: var(--primary);
    color: var(--light);
}


/* hero section */
.hero::after {
    background: rgba(30, 58, 95, 0.55);
}

.hero-btn {
    background: var(--accent);
    color: #fff;
}

.hero-btn:hover {
    background: var(--primary);
}
