* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
}

.container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

/* TOP BAR */
.top-bar {
    background: #0a8fdc;
    color: #fff;
    font-size: 14px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.top-left span {
    margin-right: 15px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
}

.btn.dark {
    background: #111;
}

.btn.orange {
    background: #f7941d;
}

.social {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
}

.fb {
    background: #3b5998;
}

.ig {
    background: #000;
}

.yt {
    background: #ff0000;
}

/* LOGO SECTION */
/* ==============================
   LOGO / HEADER IMAGE SECTION
============================== */

.logo-section {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}



/* LEFT LOGO */
.logo-left {
    display: flex;
    align-items: center;
}

.logo-left img {
    height: 90px;
    /* 🔑 SAME HEIGHT */
    width: auto;
    object-fit: contain;
}

/* RIGHT SIDE IMAGES */
.logo-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* COMMON IMAGE STYLE */
.logo-right img {
    height: 90px;
    /* 🔑 SAME HEIGHT */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Remove extra spacing */
.ragging,
.admission {
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {

    /* TOP BAR */
    .top-flex {
        flex-direction: column;
        /* 🔑 vertical */
        gap: 8px;
        text-align: center;
    }

    .top-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .top-right .btn {
        font-size: 12px;
        padding: 4px 8px;
    }

    .top-right .social {
        font-size: 14px;
    }

    /* LOGO SECTION */
    .logo-flex {
        flex-direction: column;
        /* 🔑 vertical */
        gap: 12px;
        text-align: center;
    }

    .logo-left,
    .logo-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* IMAGE SIZE REDUCTION */
    .logo-left img {
        max-height: 70px;
        width: auto;
    }

    .logo-right img {
        max-height: 60px;
        width: auto;
    }
}




/* ==============================
   NAVBAR
============================== */

.main-nav {
    background: #f7941d;
    position: relative;
    z-index: 999;
}

/* FLEX */
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 🔑 hamburger left */
    position: relative;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.nav-menu>li>a:hover {
    background: #0a8fdc;
}

/* ==============================
   DROPDOWN (DESKTOP)
============================== */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li a {
    color: #111;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: #f7941d;
    color: #fff;
}

/* Hover open (desktop only) */
@media (min-width: 993px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* ==============================
   HAMBURGER
============================== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
}

/* ==============================
   MOBILE MENU
============================== */

@media (max-width: 992px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f7941d;
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* REMOVE BULLETS FROM ALL NAV DROPDOWNS */
    .nav-menu,
    .nav-menu ul li {
        list-style: none;
        padding: 0;
        margin: 0;
    }



    /* Disable hover dropdown */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        background: #ffa733;
        box-shadow: none;
        display: none;

    }

    .dropdown.open>.dropdown-menu {
        display: block;
    }
}

/* 🔥 FORCE REMOVE ALL LIST BULLETS IN NAVBAR */
.main-nav ul,
.main-nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 🔥 Kill modern browser markers */
.main-nav li::marker {
    content: "" !important;
}

/* 🔥 Explicitly target dropdown UL */
.main-nav .dropdown-menu {
    list-style-type: none !important;
}








/* HERO */
/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* NAV ARROWS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    cursor: pointer;
}

.dots span.active {
    opacity: 1;
    background: #f7941d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slider {
        height: 350px;
    }

    .slide img {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 26px;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.bg-light {
    background: #f5f5f5;
}

.section-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-text h2 {
    margin-bottom: 15px;
}

.read-more {
    color: #0a8fdc;
    font-weight: bold;
    text-decoration: none;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

/* NOTICE */
.notice-list {
    list-style: none;
    font-size: 16px;
}

.notice-list li {
    margin-bottom: 10px;
}

/* CTA */
.cta-section {
    background: #f7941d;
    color: #fff;
    padding: 40px 0;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-flex,
    .section-flex,
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* RECOGNITION SECTION */
.recognition-section {
    position: relative;
    background: #fff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

/* CURVES */
.curve-top,
.curve-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    background: #f6d7b6;
}

.curve-top {
    top: 0;
    clip-path: ellipse(70% 100% at 50% 0%);
}

.curve-bottom {
    bottom: 0;
    clip-path: ellipse(70% 100% at 50% 100%);
}

/* CENTER HEADING */
.section-heading.center {
    justify-content: center;
    font-size: 32px;
}

/* LOGOS */
.recognition-logos {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
}

.recognition-logos img {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.recognition-logos img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .recognition-logos {
        flex-direction: column;
        gap: 40px;
    }

    .recognition-logos img {
        max-width: 160px;
    }
}

/* FEATURES SECTION */
.features-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.features-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-box img {
    height: 70px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #002b5c;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* LEADERSHIP SECTION */
.leadership-section {
    padding: 80px 0;
    background: #fff;
}

.leadership-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

/* CARD */
.leader-card {
    text-align: center;
}

/* IMAGE */
.leader-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.designation {
    color: #0a8fdc;
    font-size: 18px;
    margin-bottom: 5px;
}

.name {
    font-size: 16px;
    margin-bottom: 15px;
}

/* BUTTON */
.btn.read-more {
    background: #0a8fdc;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    color: white;
}

.btn.read-more:hover {
    background: #004a8f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .leadership-flex {
        flex-direction: column;
    }

    .leader-img {
        width: 180px;
        height: 180px;
    }
}


/* WE OFFER SECTION */
/* SECTION */
/* =========================
   WE OFFER SECTION
========================= */

/* SECTION */
/* =========================
   WE OFFER SECTION
========================= */
/* =========================
   WE OFFER SECTION
========================= */

/* =========================
   WE OFFER SECTION
========================= */

.we-offer-main {
    background: #4ea6c8;
    padding: 90px 0;
}

/* TITLE */
.we-offer-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* UNDERLINE */
.we-offer-underline {
    width: 240px;
    height: 3px;
    margin: 14px auto 0;
    display: flex;
}

.we-offer-underline::before {
    content: "";
    width: 55%;
    background: #2fd4c4;
}

.we-offer-underline::after {
    content: "";
    width: 45%;
    background: #ffffff;
}

/* CARD */
.we-offer-card {
    background: #ffffff;
    margin-top: 55px;
    padding: 40px;
    border-radius: 6px;
}

/* IMAGE WRAPPER */
.we-offer-img-box {
    overflow: hidden;
    border-radius: 6px;
}

/* IMAGE */
.we-offer-img {
    width: 100%;
    height: 300px;
    /* 🔑 matches screenshot */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: #f7941d;
    /* 🔶 orange */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* circular */
}

.offer-icon i {
    color: #ffffff;
    /* white icon */
    font-size: 26px;
}


/* HOVER ZOOM */
.we-offer-img-box:hover .we-offer-img {
    transform: scale(1.12);
}

/* CONTENT */
.we-offer-content {
    padding-left: 25px;
}

.course-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
}

.we-offer-card p {
    font-size: 14px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 22px;
}

/* BUTTON */
.explore-btn {
    background: #0b0f3b;
    color: #ffffff;
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.explore-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .we-offer-card {
        padding: 25px;
    }

    .we-offer-img {
        height: 220px;
    }

    .we-offer-content {
        padding-left: 0;
        margin-top: 20px;
    }
}


.course-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.we-offer-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}



/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {
    .we-offer-card {
        padding: 28px;
    }

    .we-offer-card .row {
        flex-direction: column;
    }

    .we-offer-img {
        max-height: 420px;
        margin-bottom: 22px;
        height: 260px;
    }


    .we-offer-img-box:hover .we-offer-img {
        transform: none;
    }

    .we-offer-content {
        padding-left: 0;
        text-align: left;
    }

    .course-title {
        font-size: 22px;
    }
}


/* ADMISSION PROCEDURE SECTION */

.admission-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* hard center */
    justify-content: center;
    text-align: center;
}

.admission-heading small {
    display: block;
    color: #555;
    margin-bottom: 5px;
}

.section-title {
    text-align: center;
}

.title-underline {
    margin: 10px auto 0;
    /* center underline */
}


.admission-form-wrapper {
    background: #4a4a4a;
    /* dark grey like image */
    padding: 50px 0;
    color: #fff;
}

/* Center title text */
.form-title {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* ALIGN ALL ITEMS CENTER */
.admission-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

/* VERTICAL FORM */
.admission-form-vertical {
    width: 320px;
}

.admission-form-vertical input {
    width: 100%;
    padding: 9px;
    margin-bottom: 10px;
    border: none;
    outline: none;
}

.admission-form-vertical button {
    width: 100%;
    background: #a0002d;
    color: #fff;
    padding: 10px;
    border: none;
    font-weight: 600;
}

/* SIDE BUTTONS */
.side-btn {
    background: #009fe3;
    color: #fff;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .admission-row {
        flex-direction: column;
    }

    .side-btn {
        width: 100%;
        text-align: center;
    }
}

/* Main Footer Styling */
.pharmacy-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0 20px;
    width: 100%;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-title {
    color: #f8b739;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-address {
    line-height: 1.8;
    color: #d1d5db;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
    color: #d1d5db;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.footer-list li,
.footer-links a {
    transition: all 0.3s ease;
}

.footer-list li:before {
    content: "•";
    color: #f8b739;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -1px;
}

.footer-list li a {
    color: #ffffff;
    /* White text */
    text-decoration: none;
    /* No underline */
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: #f8b739;
    /* Gold on hover */
    text-decoration: none;
    /* Keep no underline */
    transform: translateX(6px);
}


.footer-list li:hover {
    transform: translateX(6px);
    /* subtle float */
    color: #f8b739;
}

.footer-links a:hover {
    transform: translateY(-4px);
    /* float upward */
    color: #ffffff;
}

.footer-contact {
    line-height: 1.8;
    color: #d1d5db;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-copyright {
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f8b739;
    text-decoration: none;
}

.footer-links a {
    cursor: pointer;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ABOUT BANNER */
.about-college {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Soft wave background */
.about-college::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(247, 148, 29, 0.15),
            rgba(0, 123, 255, 0.15),
            rgba(247, 148, 29, 0.15));
    clip-path: ellipse(120% 70% at 50% 0%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HEADING */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-heading span {
    color: #007bff;
}

.section-heading .orange {
    color: #f7941d;
}

/* UNDERLINE */
.heading-underline {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
}

.heading-underline .blue-line,
.heading-underline .orange-line {
    height: 4px;
    width: 70px;
}

.heading-underline .blue-line {
    background: #007bff;
}

.heading-underline .orange-line {
    background: #f7941d;
}

/* FLEX LAYOUT */
.about-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT TEXT */
.about-text {
    flex: 1.2;
    text-align: left;
}

.about-text p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #222;
    margin-bottom: 18px;
    text-align: justify;
}

/* RIGHT IMAGE */
.about-image {
    flex: 0.8;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Decorative border */
.about-image::after {
    content: "";
    position: absolute;
    inset: -12px;
    border: 2px solid #f7941d;
    z-index: -1;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
    }

    .about-text p {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-college {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 24px;
    }
}


/* CAMPUS SECTION */
.campus-section {
    background: #f4d3b8;
    padding: 50px 0;
}

.campus-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.campus-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.campus-image img {
    width: 100%;
    border-radius: 6px;
}

.campus-text p {
    background: #fff;
    padding: 25px;
    line-height: 1.8;
}

/* GALLERY */
.campus-gallery {
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .campus-flex {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 200px;
    }

    .about-banner-title {
        padding: 18px 40px;
        font-size: 16px;
        border-top-left-radius: 80px;
        border-bottom-left-radius: 80px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* COURSE HEADER */
.course-header {
    background:
        linear-gradient(rgba(28, 28, 31, 0.85),
            rgba(24, 24, 26, 0.85)),
        url("../../assets/images/9430.jpeg") center center / cover no-repeat;


    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-header-content {
    text-align: center;
}

.course-header h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-prospectus {
    background: #f7941d;
    color: #fff;
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn-prospectus:hover {
    background: #e68300;
}

/* COURSE DETAILS */
.course-details {
    padding: 60px 0;
    background: #ffffff;
}

.course-details-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* TEXT */
.course-text {
    flex: 1.1;
}

.course-text h2 {
    color: #f7941d;
    font-size: 24px;
    margin-bottom: 15px;
}

.course-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #000;
    text-align: justify;
}

/* IMAGE */
.course-image {
    flex: 0.9;
}

.course-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .course-details-flex {
        flex-direction: column;
    }

    .course-image {
        margin-top: 20px;
    }
}

/* ADMISSION OPEN FORM */
.admission-open {
    background: #2d2b44;
    /* dark bluish purple */
    padding: 70px 0;
    color: #fff;
}

.admission-open-header {
    text-align: center;
    margin-bottom: 30px;
}

.admission-open-header h2 {
    font-family: 'Brush Script MT', cursive;
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 5px;
}

.admission-open-header p {
    color: #35d1ff;
    font-size: 14px;
}

/* FORM */
.admission-open-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
}

.admission-open-form input,
.admission-open-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}

.admission-open-form textarea {
    resize: vertical;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    background: #b0002a;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #d10032;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .admission-open-header h2 {
        font-size: 28px;
    }
}

/* ==============================
   PRINCIPAL / PRESIDENT SECTION
================================ */

.principal-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Decorative top & bottom waves (CSS fallback) */
.principal-section::before,
.principal-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to right,
            #f7941d,
            #fbc27a,
            #f7941d);
    opacity: 0.35;
}

.principal-section::before {
    top: 0;
    border-bottom-left-radius: 100% 40px;
    border-bottom-right-radius: 100% 40px;
}

.principal-section::after {
    bottom: 0;
    border-top-left-radius: 100% 40px;
    border-top-right-radius: 100% 40px;
}

/* CONTENT LAYER */
.principal-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* ==============================
   LEFT CONTENT
================================ */
.principal-message {
    flex: 1.4;
    font-size: 15.5px;
    line-height: 1.9;
    color: #222;
    text-align: justify;
}

.principal-message p {
    margin-bottom: 20px;
}

.principal-message strong {
    color: #000;
}

.regards {
    margin-top: 35px;
    font-size: 15px;
}

/* ==============================
   RIGHT PROFILE
================================ */
.principal-profile {
    flex: 0.6;
    text-align: center;
}

/* Paint splash + image container */
.paint-bg {
    position: relative;
    padding: 30px;
    background: radial-gradient(circle at top left,
            #ff9f43,
            #2ed573,
            #1e90ff);
    border-radius: 12px;
    display: inline-block;
}

/* Image frame */
.paint-bg img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    background: #fff;
    border-radius: 6px;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Name & title */
.principal-profile h4 {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.principal-profile p {
    font-size: 14px;
    margin-top: 5px;
    color: #444;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .principal-flex {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .principal-message {
        text-align: left;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .paint-bg img {
        width: 190px;
        height: 190px;
    }

    .principal-section {
        padding: 70px 0;
    }
}

.admin-section {
    padding: 80px 0;
    background: #ffffff;
}

.admin-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    /* 🔑 allows 4 boxes */
}

/* CARD */
.admin-card {
    background: #fff;
    padding: 35px 30px;
    width: 260px;
    /* perfect for 4 cards */
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.admin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #f7941d;
}

/* TITLE */
.admin-card h3 {
    color: #f7941d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* NAME */
.admin-card p {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .admin-card {
        width: 100%;
        max-width: 320px;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 70px 0;
    background: #ffffff;
}

.contact-flex {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT INFO */
.contact-info {
    flex: 0.9;
    background: #f7f7f7;
    padding: 35px;
    border-left: 5px solid #f7941d;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 14.5px;
    line-height: 1.7;
}

/* RIGHT FORM */
.contact-form {
    flex: 1.1;
    background: #fff;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form button {
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e68300;
}

/* MAP */
.contact-map iframe {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-flex {
        flex-direction: column;
    }
}

/* GALLERY SECTION */
.gallery-section {
    padding: 70px 0;
    background: #ffffff;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* IMAGE BOX */
.gallery-grid a {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-grid a::after {
    content: "View Image";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.gallery-grid a:hover::after {
    opacity: 1;
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}