/* Fullscreen loader overlay */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(250, 181, 70, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Extra large image with glow */
#loader-overlay img {
    width: 250px;         /* Enlarged from 180px */
    height: auto;
    animation: glowPulse 2s infinite ease-in-out;
}

/* Glow and pulse effect */
@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 5px #ccc);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        filter: drop-shadow(0 0 20px #999);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 5px #ccc);
    }
}

body.loaded #loader-overlay {
    display: none;
}

.nav-right .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav-right .dropdown-menu {
    transition: all 0.2s ease;
    top: 100%;
}

/* Admission page */
.subscribe-floating {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}

.subscribe-floating button {
    border: 1px solid #b68951;
    background-color: #324967;
}

.video-content::before {
    content: unset;
}

.achivement-box {
    border: 1px solid #324967;
    background-color: #324967f2;
    width: 400px;
    border-radius: 24px;
    /*border-bottom-left-radius: 0px;*/
}

.achiver-box-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    padding: 10px;
}

.team-single-img img {
    border-radius: 50px 50px 50px 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.achiver-text {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.you-tube-box {
    border-radius: 40px;
    /*border-bottom-left-radius: 0px;*/
    overflow: hidden;
}

.site-title {
    color: #324967;
}

.pricing-item {
    height: 100%;
    min-height: 245px;
}

.you-tube-box iframe {
    border-radius: 40px;
    /*border-bottom-left-radius: 0px;*/
    overflow: hidden;
}

.heading-text-props span {
    background: rgb(182, 137, 80);
    background: linear-gradient(90deg, rgb(128 101 66) 21%, rgb(147 109 61) 39%, rgb(141 92 31) 58%, rgb(162 131 92) 88%);
    color: #fff;
    padding: 1px 5px;
    font-size: 18px;
    border-radius: 5px;
    margin: 5px 0px 2px;
    display: inline-block;
}

.bg-theme {
    background-color: #3c526f;
}

.countdown-box {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 20px;
    width: 100%;
    text-align: center;
}

.timer-box {
    display: inline-block;
    font-size: 24px;
}

@keyframes jump {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        width: 260px;
    }

    .how-apply {
        margin-top: 100px !important;
    }
}

@media (max-width: 768px) {
    .site-title {
        text-align: center;
        font-size: 32px;
    }

    .achivement-box {
        margin: auto;
        width: 100%;
    }

    .you-tube-box iframe {
        height: 100%;
    }

    .you-tube-box {
        height: 250px;
    }

    .subscribe-floating {
        position: fixed;
        bottom: 12px;
        left: 50%;
        z-index: 9999;
        transform: translateX(-50%);
        animation: jump 0.3s infinite alternate ease-in-out;
        right: auto;
        width: 92%;
    }

    .subscribe-form .theme-btn {
        width: 100%;
        padding: 16px 40px;
        justify-content: center;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-gold {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.booking-title {
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.how-to-start {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.booking-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.booking-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.booking-list ul li {
    margin-bottom: 0.4rem;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-color: #FFD700;
    color: #000;
}

.payment-amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}
/* Admission page */