﻿body {
    font-family: 'Inter', sans-serif;
   
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
}
/* Top Bar */
.top-info {
    background: linear-gradient(90deg, #0b1c3f, #102a66);
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.premium-nav {
    background: #ffffff;
    padding: 8px 0;
}

.nav-logo {
    height: 55px;
}

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* IMPORTANT MOBILE FIX */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

        .navbar-nav .nav-item {
            margin-bottom: 8px;
        }

    /* Buttons full width */
    .d-flex {
        flex-direction: column;
        width: 100%;
        
        margin-top: 10px;
    }

    .btn-gold,
    .admin-btn {
        width: 100%;
        text-align: center;
    }
}


/* Hero */


/* Stats */
/* ===== STATS FLOATING OVER SLIDER ===== */

.stats-wrapper {
    position: relative;
    margin-top: -90px; /* 👈 THIS creates overlap */
    z-index: 10;
}

.stats {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 20px;
}

    .stats h2 {
        font-weight: 700;
        color: #0b1c3f;
    }

    .stats p {
        margin: 0;
        font-size: 15px;
        color: #555;
    }

/* Mobile adjustment */
@media (max-width: 768px) {
    .stats-wrapper {
        margin-top: -50px;
    }

    .stats {
        padding: 20px 10px;
    }
}


/* Section Title */
.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0b1c3f;
}

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: 0.4s;
}

    .glass-card:hover {
        transform: translateY(-8px);
    }

/* CTA */
.cta {
    background: linear-gradient(90deg, #d4af37, #f1d27a);
    padding: 60px;
    text-align: center;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #0b1c3f;
    color: white;
    text-align: center;
    padding: 15px;
}

/*=============course ======*/

.page-header {
    background: linear-gradient(rgba(11,28,63,0.9), rgba(11,28,63,0.9));
    padding: 80px 20px;
}

.section-title {
    font-weight: 700;
    color: #0b1c3f;
    text-align: center;
    margin-bottom: 40px;
}

.glass-card ul {
    padding-left: 18px;
    font-size: 14px;
}

    .glass-card ul li {
        margin-bottom: 6px;
    }

/* ===== GALLERY HEADER ===== */
.gallery-header {
    background: linear-gradient(rgba(11,28,63,0.9), rgba(11,28,63,0.9));
    padding: 80px 20px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0b1c3f;
}

/* ===== PHOTO GALLERY ===== */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.6s;
    }

    .gallery-card:hover img {
        transform: scale(1.1);
    }

    /* Overlay Text */
    .gallery-card .overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
        padding: 15px;
        font-weight: 600;
        opacity: 0;
        transition: 0.4s;
    }

    .gallery-card:hover .overlay {
        opacity: 1;
    }

/* ===== VIDEO GALLERY ===== */
.video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

    .video-card iframe {
        width: 100%;
        height: 315px;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .gallery-card img {
        height: 200px;
    }

    .video-card iframe {
        height: 220px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin-top: 0;
}

.hero-slide {
    height: 46vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(11,28,63,0.85), rgba(11,28,63,0.85)), url('../images/cover photo.jpg') center/cover no-repeat;
    color: white;
}

    .hero-slide h1 {
        font-size: 48px;
        font-weight: 700;
        animation: fadeDown 1.2s ease;
    }

    .hero-slide p {
        font-size: 18px;
        margin-top: 10px;
        animation: fadeUp 1.2s ease;
    }

/* Smooth Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
        padding: 20px;
    }

        .hero-slide h1 {
            font-size: 32px;
        }
}


body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
}

/* Section title */
.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0b1c3f;
}

/* Glass card */
.glass-card {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f1d27a);
    border: none;
    color: #0b1c3f;
    font-weight: 600;
}

/* Inputs */
.form-control {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #d4af37;
        box-shadow: 0 0 0 0.15rem rgba(212,175,55,0.25);
    }

/* Mobile */
@media (max-width: 768px) {
    .glass-card {
        padding: 20px;
    }
}

/* ================= PREMIUM FOOTER ================= */

.footer-premium {
    background: linear-gradient(135deg, #0b1c3f, #162b5c);
    color: #ffffff;
    padding: 60px 0 25px;
    margin-top: 80px;
}

    .footer-premium h5 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .footer-premium p {
        font-size: 14px;
        color: #dcdcdc;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #dcdcdc;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #d4af37;
        }

.footer-premium hr {
    border-color: rgba(255,255,255,0.2);
    margin: 20px 0;
}

.footer-bottom {
    font-size: 14px;
    color: #cfcfcf;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-premium {
        text-align: center;
    }
}

/* ================= FOOTER SOCIAL ICONS ================= */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    /* Hover Effects */
    .social-icon:hover {
        transform: translateY(-3px);
        color: #ffffff;
    }

    /* Brand Colors */
    .social-icon.fb:hover {
        background: #1877f2;
    }

    .social-icon.insta:hover {
        background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    }

    .social-icon.whatsapp:hover {
        background: #25d366;
    }

    .social-icon.yt:hover {
        background: #ff0000;
    }

/* Mobile center */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}


/* ================= RESULTS WITH PHOTO ================= */

.result-card {
    padding-top: 30px;
    position: relative;
}

.result-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 4px solid #d4af37;
}

.result-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #d4af37;
    margin-top: 10px;
}

.result-card h6 {
    margin-top: 5px;
    font-weight: 600;
    color: #0b1c3f;
}

.result-card p {
    font-size: 14px;
    color: #666;
}

/* Hover effect */
.result-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}


/* Page header */
.page-header {
    background: linear-gradient(rgba(11,28,63,0.9), rgba(11,28,63,0.9));
    padding: 80px 20px;
}

/* Result card */
.result-card {
    padding-top: 30px;
    transition: 0.3s ease;
}

.result-img {
    width: 160px;
    height: 160px;
    border-radius: 0%;
    object-fit: cover;
    border: 0px solid #d4af37;
    margin-bottom: 10px;
}

.result-card:hover {
    transform: translateY(-6px);
}


/* ================= SAINIK SCHOOL PAGE ================= */

/* Page header already exists, just enhance tone */
.page-header {
    background: linear-gradient( rgba(11, 28, 63, 0.9), rgba(11, 28, 63, 0.9) );
}

    /* Intro section image */
    .page-header + section img {
        max-height: 380px;
        object-fit: cover;
    }

/* Sainik special cards */
.glass-card {
    transition: all 0.3s ease;
}

    .glass-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    }

    /* Programs list style */
/* ================= PREMIUM PROGRAM CARDS ================= */

.program-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%; /* 👈 equal height */
    display: flex; /* 👈 flex magic */
    flex-direction: column;
    justify-content: center; /* content center vertically */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .program-card h5 {
        font-weight: 600;
        margin-bottom: 12px;
        color: #0b1c3f;
    }

    .program-card p {
        margin: 0;
        color: #555;
        font-size: 15px;
    }

    /* Hover effect */
    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

    /* Why choose us icons style (if added later) */
    .glass-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
        color: #0b1c3f;
    }

    /* Eligibility section */
    .glass-card h4 {
        font-weight: 700;
        margin-bottom: 12px;
        color: #0b1c3f;
    }

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0b1c3f, #1f3c88);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    margin-top: 60px;
}

    .cta h2 {
        font-weight: 700;
    }

    .cta .btn {
        margin-top: 15px;
    }

/* Defence-style accent */
.section-title {
    position: relative;
}

    .section-title::after {
        content: "";
        width: 80px;
        height: 3px;
        background: #d4af37;
        display: block;
        margin: 12px auto 0;
    }

/* Mobile adjustments */
@media (max-width: 768px) {
    .cta {
        padding: 50px 15px;
    }

    .page-header {
        padding: 60px 15px;
    }

    .glass-card {
        margin-bottom: 10px;
    }
}


/* ================= INQUIRY + MAP ================= */

.map-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .map-card iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
    }

/* Make both same height */
#inquiry .glass-card,
#inquiry .map-card {
    height: 100%;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .map-card iframe {
        min-height: 300px;
    }
}

/* ================= OUR FACULTY ================= */

.faculty-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .faculty-card img {
        width: 140px;
        height: 160px;
        object-fit: cover;
       
        margin-bottom: 15px;
        background: #fff;
    }

    .faculty-card h5 {
        font-weight: 600;
        margin-bottom: 5px;
        color: #0b1c3f;
    }

    .faculty-card p {
        font-size: 14px;
        color: #666;
    }

    .faculty-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

/* ================= NAVBAR ICON POLISH ================= */

.navbar-brand i {
    color: #d4af37;
}

.nav-link i {
    color: #d4af37;
    font-size: 14px;
}

.nav-link:hover i {
    color: #0b1c3f;
}

.btn-gold i {
    font-size: 14px;
}


/* ================= COURSE ICONS ================= */

.course-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

    .course-list li {
        font-size: 14px;
        margin-bottom: 8px;
        color: #555;
    }

        .course-list li i {
            color: #28a745;
            margin-right: 6px;
        }


/* ================= PREMIUM PROGRAM ICONS ================= */

.program-icon {
    font-size: 38px;
    color: #d4af37;
    margin-bottom: 15px;
}

.program-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

    .program-card h5 {
        font-weight: 600;
        color: #0b1c3f;
        margin-bottom: 10px;
    }

    .program-card p {
        font-size: 15px;
        color: #555;
    }

/* ================= ADMISSION FORM ICONS ================= */

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        color: #d4af37;
        font-size: 14px;
    }

    .input-icon .form-control {
        padding-left: 38px;
    }

.textarea-icon i {
    top: 18px;
    transform: none;
}

/* ================= MAP TITLE ================= */

.map-title {
    font-weight: 600;
    padding: 12px 15px;
    background: #d8b440;
    color: #fff;
    border-radius: 20px 20px 0 0;
}

.map-card iframe {
    border-radius: 0 0 20px 20px;
}


/* ================= SWEET ALERT PREMIUM THEME ================= */

.swal2-popup {
    border-radius: 18px !important;
    padding: 30px !important;
    font-family: 'Poppins', sans-serif;
}

.swal2-title {
    color: #0b1c3f !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.swal2-html-container {
    font-size: 16px !important;
    color: #444 !important;
    line-height: 1.6;
}

/* Success Icon */
.swal2-success-ring {
    border: 4px solid #28a745 !important;
}

.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: #28a745 !important;
}

/* Confirm Button (Gold Theme) */
.swal2-confirm {
    background: linear-gradient(135deg, #d4af37, #b8962e) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 10px 30px !important;
    font-size: 15px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .swal2-confirm:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

/* Warning Popup */
.swal2-icon.swal2-warning {
    border-color: #f0ad4e !important;
    color: #f0ad4e !important;
}

/* Error Popup */
.swal2-icon.swal2-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

/* Backdrop blur */
.swal2-backdrop-show {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.4) !important;
}

/* Animation smooth */
.swal2-show {
    animation: swalZoomIn 0.4s ease;
}

@keyframes swalZoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= DAILY ROUTINE ================= */

.routine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .routine-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        margin-bottom: 8px;
        background: rgba(255,255,255,0.6);
        border-radius: 8px;
        font-size: 12px;
    }

    .routine-list .time {
        font-weight: 600;
        color: #0d6efd;
    }

    .routine-list .activity {
        color: #333;
    }

/* ================= DOWNLOAD SECTION ================= */

.download-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    text-decoration: none;
    color: #0b1c3f;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .download-btn i {
        font-size: 20px;
        color: #198754;
    }

    .download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        color: #0b1c3f;
    }

/* ================= HOSTEL FACILITIES – EQUAL HEIGHT ================= */

#hostel-facilities .row {
    display: flex;
    flex-wrap: wrap;
}

.facility-card-img {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

    /* Image fixed height */
    .facility-card-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

/* Content area */
.facility-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .facility-content h5 {
        font-weight: 600;
        margin-bottom: 10px;
        color: #0b1c3f;
    }

    .facility-content p {
        font-size: 14.5px;
        color: #555;
        line-height: 1.6;
    }

/* Hover effect */
.facility-card-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Active / highlighted card */
.facility-card-img.active {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fff8dc, #ffffff);
}

/* Mobile optimization */
@media (max-width: 576px) {
    .facility-card-img img {
        height: 160px;
    }
}

.about-section {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    color: #000000;
}

.about-card {
    background: #ffffff;
    border-radius: 12px;
}

    .about-card h5 {
        font-weight: 600;
        color: #212529;
    }

    .about-card ul li {
        margin-bottom: 8px;
        font-size: 15px;
    }
/* ================= FOUNDER SECTION ================= */

.founder-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .founder-card img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 12px;
        
    }

    .founder-card h4 {
        font-weight: 600;
        color: #0b1c3f;
    }

.bg-gold {
    background-color: #d4af37 !important;
    color: #000;
    font-weight: 500;
}

.founder-card:hover {
    transform: translateY(-5px);
}

/* ================= NAVBAR LOGO ================= */

.nav-logo {
    height: 81px; /* adjust if needed */
    width: auto;
}

.navbar-brand {
    font-size: 1.1rem;
    color: #d4af37;
    margin-left: 26px;
    height: 77px;
}

    .navbar-brand:hover {
        color: #d4af37;
    }






/* ================= CRAZY ADMISSION CTA ================= */

.admission-cta-ultimate {
    position: relative;
    padding: 110px 20px;
    background: radial-gradient(circle at top, #1f3c88, #0b1c3f);
    color: #ffffff;
    overflow: hidden;
}

/* Floating Icons */
.floating-icons i {
    position: absolute;
    font-size: 40px;
    color: rgba(212,175,55,0.25);
    animation: float 10s infinite linear;
}

    .floating-icons i:nth-child(1) {
        top: 15%;
        left: 10%;
        animation-duration: 12s;
    }

    .floating-icons i:nth-child(2) {
        top: 60%;
        left: 15%;
        animation-duration: 9s;
    }

    .floating-icons i:nth-child(3) {
        top: 20%;
        right: 12%;
        animation-duration: 11s;
    }

    .floating-icons i:nth-child(4) {
        bottom: 15%;
        right: 18%;
        animation-duration: 8s;
    }

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.cta-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

/* Pulse animation */
.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(212,175,55,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

/* Titles */
.cta-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .cta-title span {
        color: #d4af37;
    }

.cta-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.gold-text {
    color: #f1d27a;
}

/* Text */
.cta-text {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Gold Button */
.btn-gold-cta {
    background: linear-gradient(45deg, #d4af37, #f1d27a);
    color: #0b1c3f;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.glow {
    box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

.btn-gold-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 45px rgba(212,175,55,0.9);
}

/* Outline Button */
.btn-outline-light {
    padding: 15px 38px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background: #ffffff;
        color: #0b1c3f;
    }

/* Shake animation */
.shake:hover {
    animation: shake 0.4s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 24px;
    }

    .cta-text {
        font-size: 15px;
    }
}

/* ================= MISSION & VISION ================= */

.text-gold {
    color: #d4af37;
}

.mission-list {
    padding-left: 18px;
}

    .mission-list li {
        margin-bottom: 10px;
        font-size: 15px;
        color: #444;
    }

/* ================= ACTIVITIES ================= */

.activity-card {
    height: 100%;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

    .activity-card p {
        margin: 0;
        font-weight: 500;
        color: #0b1c3f;
    }

.activity-icon {
    font-size: 34px;
    color: #d4af37;
    margin-bottom: 15px;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* Mobile */
@media (max-width: 768px) {
    .activity-card {
        padding: 20px;
    }
}

.admin-btn {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #d4af37;
    border: 1px solid #d4af37;
    transition: all 0.3s ease;
}

    .admin-btn:hover {
        background: linear-gradient(45deg, #d4af37, #f5d76e);
        color: #000;
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    }
    .top-info {
    background: #0b1c3f;
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap; /* important */
}

.contact-left,
.contact-right {
    display: flex;
    align-items: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 9px;
    }

    .contact-left,
    .contact-right {
        justify-content: center;
    }

    .top-info span {
        font-size: 13px;
    }
}
/* ================= MOBILE RESPONSIVE PRELOADER ================= */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    .gallery-card img,
    .gallery-card video {
        width: 100%;
        height: 250px; /* photo sarkhi same height */
        object-fit: cover; /* crop hoil pan proportion maintain */
        display: block;
    }

.gallery-video {
    height: 250px;
}
.btn-login {
    background: #d4af37;
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    border: none;
    transition: .3s;
}

    .btn-login:hover {
        background: #b8962f;
        color: #fff;
    }