body {
    font-family: "DM Sans", serif;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    background-image: url("./images/kidees-school.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    min-height: 100vh;
    padding-top: 100px;

    display: flex;
    align-items: center;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

/* ===== LEFT OVERLAY ===== */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);

    z-index: 1;
}

/* Keep content above overlay */
.hero-section>* {
    position: relative;
    z-index: 2;
}


/* ===== Laptop & Tablet ===== */
@media (max-width: 992px) {
    .hero-section {
        min-height: 90vh;
        padding-top: 90px;
        background-position: center;
    }
}

/* ===== Mobile Devices ===== */
@media (max-width: 576px) {
    .hero-section {
        min-height: 75vh;
        padding-top: 80px;
        background-position: center top;
        background-size: cover;
    }

    /* Mobile overlay becomes top fade */
    .hero-section::before {
        width: 100%;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.45) 60%,
                transparent 100%);
    }
}

/* IMAGE SIDE */
.hero-image {
    display: flex;
    align-items: flex-end;
}

.hero-image img {
    margin-top: 95px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE FIX */
@media (max-width: 991px) {

    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-image {
        height: 350px;
    }
}


/* TRANSPARENT NAVBAR */

/* LOGO */
.navbar-brand img {
    height: 50px;
}

/* NAV LINKS */
.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}

/* DROPDOWN */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.85);
    border: none;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background: #ffc107;
    color: #000;
}




/* HERO CONTENT */
/* .hero-content {
    margin-top: 100px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
} */


/* REMOVE BOOTSTRAP ICON */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* CUSTOM HAMBURGER */
.custom-toggler span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s ease;
}

/* ANIMATION TO CROSS */
.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* REMOVE DEFAULT CARET */
.dropdown-toggle::after {
    display: none;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
    }
}

/* Desktop only (lg and above) */
@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile – default Bootstrap behavior (click) */
@media (max-width: 991px) {
    .dropdown-menu {
        transform: none;
        opacity: 1;
        visibility: visible;
    }
}

/* news-img */
.news-img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.arrow {
    font-size: 20px;
}

.agenda-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

/* gallary */
.gallery-img {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-img:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: .4s;
}

.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #f3f3f3;
    padding: 60px 0 30px;
    font-size: 14px;
    color: #555;
}

.footer h6 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.footer a {
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #000;
}

.footer .social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 8px;
    color: #555;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background-color: #e9e9e9;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: #777;
}

.footer-orange-line {
    height: 4px;
    background-color: #f47c20;
    width: 100%;
}

.logo-img {
    max-width: 70px;
    margin-bottom: 15px;
}

/* Rounded yellow arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFC107;
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 18px;
    height: 18px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #e0aa00;
}

/* Card hover smooth effect */
.card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* marque tag */
/* Space below fixed navbar */
.admission-marquee {
    position: fixed;
    margin-top: 100px;
    /* adjust if navbar height changes */
    background: #ffc107;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-weight: 600;
}

/* Moving text */
.admission-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeScroll 25s linear infinite;
    color: #000;
    /* force black text */
}

/* Pause on hover */
.admission-marquee:hover span {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 
Gallary Grid  */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .12);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 12px;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: white;
    cursor: pointer;
    padding: 12px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}


/* features */
.feature-card {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.feature-card i {
    font-size: 38px;
    color: #0284C7;
    margin-bottom: 12px;
}

.feature-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.25);
}

/* admission badge */
.admission-badge {

    background: #ffc107;
    color: #000;
    font-weight: 700;
    padding: 15px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    animation: pulseGlow 1.8s infinite;
}

/* Pulse animation */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile friendly */
@media(max-width:768px) {
    .admission-badge {
        font-size: 14px;
        padding: 10px 18px;
    }
}


/* vision mission */
.flow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.flow-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 500;
}

.flow-connector {
    width: 50px;
    height: 12px;
    border-radius: 6px;
}

.mission {
    border: 10px solid #6cc24a;
}

.vision {
    border: 10px solid #2bb0c8;
}

.strategy {
    border: 10px solid #f6a609;
}

.goals {
    border: 10px solid #5867dd;
}

.con-mission {
    background: #6cc24a;
}

.con-vision {
    background: #2bb0c8;
}

.con-strategy {
    background: #f6a609;
}

@media(max-width:768px) {
    .flow-connector {
        display: none;
    }

    .flow-circle {
        width: 180px;
        height: 180px;
    }
}

/* ============================
   HERO RESPONSIVE FIXES
============================= */

/* Mobile phones */
@media (max-width: 576px) {

    .hero-section {
        padding-top: 110px;
        /* space for fixed navbar */
        text-align: center;
    }

    .hero-content {
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .card {
        max-width: 100% !important;
    }

    .admission-marquee {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}


/* Tablets */
@media (max-width: 992px) {

    .hero-section {
        padding-top: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .col-lg-5 {
        margin-top: 25px;
    }
}


/* Extra small navbar logo fix */
@media (max-width: 400px) {
    .navbar-brand img {
        height: 38px;
    }
}

/* Keep mobile menu left aligned */
@media (max-width: 992px) {

    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        padding-left: 12px;
    }

    .dropdown-menu {
        text-align: left;
    }
}

/* Mobile navbar UI improvements */
@media (max-width: 992px) {

    .navbar-collapse {
        background: #101524;
        padding: 15px 18px;
        border-radius: 0 0 14px 14px;
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

    .navbar-nav .nav-link:hover {
        color: #ffc107;
    }

    .dropdown-menu {
        background: #1a2035;
        border: none;
        margin-left: 10px;
    }

    .dropdown-item {
        color: #fff;
    }

    .dropdown-item:hover {
        background: transparent;
        color: #ffc107;
    }

    /* Mobile CTA button */
    .navbar .btn-warning {
        width: 100%;
        margin-top: 12px;
    }

    .navbar .btn-danger {
        width: 100%;
        margin-top: 12px;
    }

    /* Hamburger spacing */
    .navbar-toggler {
        border: none;
    }
}


/* form margin botton when in mobile screen  */
@media (max-width: 767.98px) {
    .admission-card-wrapper {
        margin-bottom: 5rem;
        /* equivalent to mb-5 */
    }
}

/* Awards & Achievements */
.award-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.award-card img {
    height: 200px;
    object-fit: cover;
}


/* testimonials */
.testimonial-section {
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}

/* mission ,mission section css*/
.mission-section {
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

/* Timeline Layout */
.timeline-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    flex-wrap: wrap;
}

/* Horizontal Line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
}

/* Circle Design */
.timeline-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.timeline-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Different Gradient Themes */
.mission {
    background: linear-gradient(135deg, #fff8e1, #ffffff);
}

.vision {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.strategy {
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
}

.goals {
    background: linear-gradient(135deg, #fce4ec, #ffffff);
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-wrapper {
        flex-direction: column;
    }

    .timeline-wrapper::before {
        width: 4px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* About page */
.about-premium {
    background: linear-gradient(to right, #f8fbff, #ffffff);
}

.highlight-box {
    background: #ffffff;
    transition: 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.image-wrapper {
    position: relative;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    max-width: 200px;
}

@media (max-width: 991px) {
    .floating-card {
        position: static;
        margin-top: 20px;
    }
}


/* vision mission  */
#vision-mission {
    position: relative;
    overflow: hidden;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Time line for principles page */


/* Center Vertical Line */
.timeline-modern::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #0284C7;
    transform: translateX(-50%);
}

/* Year Badge */
.year-badge {
    display: inline-block;
    background: #0284C7;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animation */
.animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .timeline-modern::before {
        left: 10px;
    }

    .year-badge {
        margin-left: 20px;
    }
}

/* principles awards */
.award-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.award-icon {
    font-size: 40px;
    color: #0284C7;
}

.award-year {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: #0284C7;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* commitment principles */
.academic-commitment {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.commitment-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
}

.commitment-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

.principal-signature {
    font-size: 15px;
    color: #0f172a;
    border-left: 4px solid #0284C7;
    padding-left: 15px;
}

.commitment-highlight {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.commitment-highlight:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 40px;
    color: #0284C7;
}

@media (max-width: 767px) {
    .commitment-title {
        font-size: 26px;
    }
}

/* parent-testimonials */
.parent-testimonials {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.testimonial-subtitle {
    color: #cbd5e1;
}

/* Glass Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Avatar */
.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #facc15;
}

/* Stars */
.stars {
    color: #facc15;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Text */
.testimonial-text {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .testimonial-title {
        font-size: 26px;
    }
}

/* Hero Section */
.admission-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/admission-hero.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Premium Card Style */
.admission-card {
    border: none;
    border-radius: 20px;
    transition: 0.3s ease;
}

.admission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Section Title */
.section-title {
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    width: 70px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002855, #00509e);
    color: white;
}

/* Sidebar */
.sidebar-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.sidebar-link {
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: all .3s ease;
}

.sidebar-link:hover {
    background: #f5e4dc;
    color: #ff5722;
}

.sidebar-link.active {
    background: #f5e4dc;
    color: #ff5722;
    font-weight: 600;
}

/* Main Content */
.page-title {
    font-weight: 700;
    font-size: 42px;
}

.banner-box {
    background: #e6d7d1;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.banner-text {
    color: #ff5722;
    font-weight: 600;
    font-size: 20px;
}

.apply-btn {
    background: #2d2f7f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
}

.apply-btn:hover {
    background: #1f2160;
}

/* Content fade animation */
.content-section {
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:991px) {
    .page-title {
        font-size: 32px;
    }
}

/* faculty-card  */


.faculty-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.faculty-card img {
    height: 300px;
    /* same height for all */
    object-fit: cover;
    width: 100%;
    transition: 0.4s ease;
}

.faculty-card:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.faculty-card:hover .overlay {
    opacity: 1;
}

.badge-exp {
    position: absolute;
    top: 15px;
    right: 15px;
}



/* Gallery Card home*/
/* Gallery Card */
.home-gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.home-gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s ease;
}

.home-gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(13, 110, 253, 0.9), rgba(0, 0, 0, 0));
    color: #fff;
    opacity: 0;
    transition: 0.4s ease;
}

.home-gallery-card:hover .gallery-overlay {
    opacity: 1;
}


/* our facility homepage section */
.facility-list li {
    margin-bottom: 10px;
    color: #444;
}

.facility-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #ffc107;
    margin: 0 auto;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-img-top {
    position: relative;
    z-index: 2;
}

.facility-img-bottom {
    position: relative;
    margin-top: -60px;
    border-color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .facility-img {
        width: 200px;
        height: 200px;
    }

    .facility-img-bottom {
        margin-top: 20px;
    }
}


/* ===== Gallery Cards ===== */
.gallery-card img {
    height: 200px;
    object-fit: cover;
}

.gallery-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

.whatsapp-label {
    background: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.8s ease;
    white-space: nowrap;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-float {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .whatsapp-label {
        display: none;
    }
}

/* ===== News Section ===== */
.news-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
}

article {
    cursor: pointer;
    transition: .3s;
}

article:hover {
    transform: translateY(-5px);
}