html,
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: hidden;
    /* Remove top padding so hero-section starts at top */
    padding-top: 0;
    background-color: #181c22;
}

/* Hover Effects for Remote Pilot Training Page */
.hover-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 214, 0, 0.2);
    border-color: #FFD600 !important;
}

.hover-card:hover .bg-warning {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
}

/* Button Hover Effects */
.btn-warning {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    background-color: #ffed4e !important;
    border-color: #ffed4e !important;
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-warning:hover::before {
    left: 100%;
}

/* Eligibility Cards Hover */
.eligibility-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.15);
}

.eligibility-card:hover .bg-warning {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Curriculum Cards Hover */
.curriculum-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.curriculum-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.curriculum-card:hover .bg-warning {
    background-color: #ffed4e !important;
    transform: rotate(5deg);
}

/* Icon Hover Effects */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.1) rotate(5deg);
}

header,
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

/* Simplified navbar - always transparent by default */
.navbar,
header .navbar {
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.3s, box-shadow 0.3s, min-height 0.3s;
}

.navbar .navbar-nav .nav-link,
header .navbar-nav .nav-link {
    padding-top: 18px;
    padding-bottom: 18px;
    line-height: 1.2;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    background: #0a0920;
    border-radius: 50%;
}

.brand {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.8rem;
    color: #bdbdbd;
    margin-left: 10px;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.navbar .nav-menu a,
header .nav-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 6px 0;
    transition: color 0.2s;
}

.navbar .nav-menu a.active,
.navbar .nav-menu a:hover,
header .nav-menu a.active,
header .nav-menu a:hover {
    color: #54bbed !important;
}

.dropdown-menu,
.dropdown-menu-dark {
    background: #1a1c28 !important;
    min-width: 220px;
    box-shadow: none !important;
    border-radius: 0 0 8px 8px !important;
    padding: 8px 0;
    margin-top: 8px;
    transition: none;
}

.dropdown-menu li,
.dropdown-menu-dark li {
    margin: 0;
}

.dropdown-menu li:last-child,
.dropdown-menu-dark li:last-child {
    margin-bottom: 0;
}

.dropdown-menu .dropdown-item,
.dropdown-menu-dark .dropdown-item {
    color: #fff !important;
    padding: 10px 22px;
    display: block;
    font-size: 1.05rem;
    border-radius: 0 !important;
    transition: color 0.18s;
    margin: 0;
    text-align: left;
    font-weight: 400;
    background: none !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:hover {
    background: none !important;
    color: #FFD600 !important;
    box-shadow: none !important;
}

.enroll-btn {
    background: linear-gradient(90deg, #FFD600 60%, #ffce00 100%);
    color: #18173a;
    font-weight: 900;
    padding: 12px 38px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-left: 24px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    border: 2px solid #FFD600;
    outline: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.13);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.enroll-btn:hover,
.enroll-btn:focus {
    background: linear-gradient(90deg, #ffce00 60%, #FFD600 100%);
    color: #18173a;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
    border-color: #ffce00;
    transform: scale(1.04);
    text-decoration: none;
}

.enroll-btn::after {
    content: '';
    position: absolute;
    left: -60%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.01) 100%);
    transform: skewX(-20deg);
    transition: left 0.3s;
    pointer-events: none;
}

.enroll-btn:hover::after {
    left: 110%;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0920;
    /* Remove any margin-top or padding-top */
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay-bg {
    background: rgb(33 37 41 / 43%);
    z-index: 0;
}

/* Add top padding to hero-overlay for content visibility below navbar */
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 100px;
    /* adjust as needed for navbar height */
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.hero-btn {
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    outline: none;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    margin-bottom: 10px;
}

.hero-btn.yellow {
    background: #FFD600;
    color: #18173a;
}

.hero-btn.yellow:hover {
    background: #fff200;
}

.hero-btn.dark {
    background: #18173a;
    color: #fff;
}

.hero-btn.dark:hover {
    background: #23224a;
}

@media (max-width: 900px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 8px 10px;
    }

    .hero-section {
        height: 60vh;
        min-height: 350px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .enroll-btn {
        padding: 10px 22px;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 8px;
    }
}

.certificate-slider .slick-slide {
    padding: 0 12px;
}

.certificate-slider {
    margin-left: -12px;
    margin-right: -12px;
}

.overview-section {
    background: linear-gradient(135deg, #181c22 60%, #23293a 100%);
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.overview-media-wrapper {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.overview-media-wrapper video,
.overview-media-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.overview-stat {
    z-index: 2;
}

.overview-stat-topleft {
    left: -60px;
    top: -60px;
    transform: none;
}

.overview-stat-circle {
    width: 170px;
    height: 170px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border: 4px solid #FFD600;
    transition: box-shadow 0.2s;
    padding: 0.5rem 0;
}

.overview-stat-circle .display-5 {
    font-size: 2.5rem;
}

.stat-label {
    letter-spacing: 1px;
    line-height: 1.2;
}

.overview-play-btn {
    width: 70px;
    height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.2s, background 0.2s;
}

.overview-play-btn:hover {
    background: #FFD600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.overview-play-btn:hover svg {
    fill: #181c22;
}

.section-subtitle {
    letter-spacing: 1px;
}

.overview-learn-btn {
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .overview-media-wrapper {
        max-width: 100%;
    }

    .overview-stat-topleft {
        left: -30px;
        top: -30px;
    }

    .overview-stat-circle {
        width: 100px;
        height: 100px;
        font-size: 0.6rem !important;
        position: relative;
        left: 20%;
    }

    .overview-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin: 1.2rem 0;
    }
}

.overview-section .display-5 {
    font-size: 2.2rem;
}

.overview-section h2 {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.overview-section .btn-warning {
    font-size: 1.1rem;
    border-radius: 6px;
    padding: 0.75rem 2.5rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    margin-top: 1.5rem;
}

.overview-section p {
    color: #e0e0e0;
}

.rpto-section {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgb(0 0 0 / 76%) 40%, rgb(0 0 0 / 62%) 75%, #000000d1 100%), url(../images/infra.jpg) center / cover no-repeat;
    color: #fff;
    position: relative;
}

.rpto-subtitle {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.rpto-section h2 {
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.rpto-desc {
    color: #bfc6d1;
    font-size: 1.15rem;
    font-weight: 400;
}

.rpto-features {
    margin-top: 2rem;
}

.rpto-features li {
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.rpto-feature-desc {
    color: #bfc6d1;
    font-size: 1rem;
    font-weight: 400;
}

.rpto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 214, 0, 0.08);
    margin-top: 2px;
}

.rpto-img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .rpto-section {
        padding-top: 1rem !important;
    }

    .rpto-features {
        margin-top: 1.2rem;
    }

    .rpto-img {
        margin-top: 2rem;
    }
}

.courses-section {
    background: #0e101a;
}

.courses-section .display-5 {
    font-size: 2.3rem;
    font-weight: 800;
}

.courses-subtitle {
    color: #bfc6d1;
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

.course-card {
    background: #181c22;
    border-radius: 18px;
    border: 1.5px dashed #bfc6d1;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.course-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border-color: #FFD600;
}

.course-badge {
    position: absolute;
    top: -18px;
    left: 18px;
    background: #181c22;
    color: #FFD600;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.3rem 1.1rem 0.3rem 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid #FFD600;
    z-index: 2;
}

.course-badge i {
    font-size: 1.2rem;
}

.course-banner img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

.course-features {
    color: #bfc6d1;
    font-size: 1.01rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.course-features i {
    color: #FFD600;
    font-size: 1.1rem;
    margin-right: 2px;
}

.course-avatar {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 2px solid #FFD600;
}

.course-instructor {
    color: #fff;
    font-size: 1.01rem;
    font-weight: 600;
}

.course-duration {
    color: #bfc6d1;
    font-size: 1.01rem;
    font-weight: 600;
}

.course-join-btn {
    margin-top: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: center;
}

@media (max-width: 991.98px) {
    .courses-section .display-5 {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }

    .course-card {
        padding: 1.1rem 0.7rem 1rem 0.7rem;
    }

    .course-badge {
        left: 10px;
        top: -12px;
        font-size: 0.95rem;
        padding: 0.2rem 0.7rem 0.2rem 0.6rem;
    }

    .course-avatar {
        width: 32px;
        height: 32px;
    }

    .course-join-btn {
        width: 100%;
    }
}

.training-center-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.training-center-video-wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
}

.training-center-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991.98px) {
    .training-center-title {
        font-size: 1.3rem;
    }

    .training-center-video-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .training-center-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .training-center-video {
        border-radius: 10px;
        max-width: 100%;
    }
}

.testimonial-section {
    background: linear-gradient(120deg, #181c22 70%, #23293a 100%);
}

.testimonial-subtitle {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.testimonial-section .display-5 {
    font-size: 2.3rem;
    font-weight: 800;
}

.testimonial-stars {
    color: #FFD600;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.18em;
    animation: testimonial-stars-glow 2s infinite alternate;
}

@keyframes testimonial-stars-glow {
    0% {
        text-shadow: 0 0 0 #FFD600;
    }

    100% {
        text-shadow: 0 0 12px #FFD600;
    }
}

.testimonial-slider,
.testimonial-slider .slick-list,
.testimonial-slider .slick-track,
.testimonial-slider .slick-slide {
    height: 100%;
    min-height: 340px;
}

.testimonial-slider .slick-track {
    display: flex !important;
    gap: 24px;
}

.testimonial-card {
    min-height: 300px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(255, 214, 0, 0.04);
    border: 1.5px solid #e0e0e0;
    color: #23293a;
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem 2rem;
    margin-right: 0;
    margin-bottom: 32px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-card:hover,
.testimonial-card:focus {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
    border-color: #FFD600;
    transform: translateY(-4px) scale(1.03);
}

.slick-center .testimonial-card {
    border-color: #FFD600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.testimonial-quote {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 5rem;
    color: #FFD600;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1.22rem;
    font-style: italic;
    text-align: left;
    margin-bottom: 2.5rem;
    z-index: 1;
    line-height: 1.7;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    border: 2px solid #FFD600;
    background: #FFD600;
    color: #23293a;
    margin-right: 1rem;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    z-index: 1;
}

.testimonial-card .d-flex.align-items-center {
    margin-top: 0;
    justify-content: flex-start;
    width: 100%;
}

.testimonial-name {
    color: #FFD600;
    font-size: 1.05rem;
}

.testimonial-role {
    color: #bfc6d1;
    font-size: 0.98rem;
}

.slick-dots li button:before {
    color: #FFD600;
    font-size: 1.1rem;
}

.slick-dots li.slick-active button:before {
    color: #FFD600;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .testimonial-section .display-5 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-height: 220px;
        padding: 1.1rem 0.7rem 1rem 0.7rem;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 3rem;
        top: 8px;
        right: 10px;
    }
}

.partners-section {
    background: #181c22;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.partners-divider {
    border-top: 2px solid #23293a;
    opacity: 0.5;
}

.partners-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.partners-slider {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo {
    background: #fff;
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    width: 200px;
    height: 200px;
    margin: 0 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}

.partner-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s;
}

.partner-logo:hover,
.partner-logo:focus {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px) scale(1.04);
    z-index: 2;
}

.partner-logo:hover img,
.partner-logo:focus img {
    transform: scale(1.08);
}

@media (max-width: 991.98px) {
    .partners-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .partners-title {
        font-size: 1.3rem;
    }

    .partner-logo {
        width: 120px;
        height: 120px;
    }

    .partner-logo img {
        width: 90px;
        height: 90px;
    }
}

.faq-section {
    background: #23293a;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.faq-section .faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-section .accordion-button {
    font-size: 1.1rem;
    font-weight: 700;
    background: #fff;
    color: #181c22;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1.2rem 1.5rem;
    transition: background 0.2s, color 0.2s;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #FFD600;
    color: #181c22;
}

.faq-section .accordion-body {
    background: #fff;
    color: #23293a;
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .btn,
.faq-section button,
.faq-section .accordion-button {
    border-radius: 0 !important;
}

.cta-section {
    background: linear-gradient(120deg, #FFD600 60%, #ffe066 100%);
    position: relative;
    padding: 4rem 0 3rem 0;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #181c22;
    letter-spacing: 0.5px;
}

.brand-highlight {
    color: #fff;
    background: #181c22;
    border-radius: 0.5rem;
    padding: 0 0.5rem;
    margin-left: 0.2em;
}

.cta-subtitle {
    color: #23293a;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.btn-cta {
    background: #181c22;
    color: #FFD600;
    border-radius: 2rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.btn-cta:hover,
.btn-cta:focus {
    background: #fff;
    color: #181c22;
    border: 2px solid #181c22;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    margin-bottom: -2px;
}

.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.29,22.09,104.09,29,158,17.39C230.87,51.6,284.09,19.09,339,8.26c54.55-10.74,104.09,10.29,158,27.39,53.64,17,104.09,22.09,158,8.26,53.64-13.83,104.09-44.34,158-51.6,53.64-7.26,104.09,10.29,158,27.39,53.64,17,104.09,22.09,158,8.26V0Z" opacity=".25" fill="%23181c22"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .faq-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .cta-section {
        padding: 2.5rem 0 2rem 0;
    }

    .cta-wave {
        height: 30px;
    }
}

.bg-footer-dark {
    background: #181c22;
}

.site-footer {
    background: linear-gradient(180deg, #23293a 0%, #181c22 100%);
    border-top: none;
    position: relative;
    overflow: hidden;
}

.footer-top-bar {
    height: 6px;
    background: linear-gradient(90deg, #FFD600 0%, #ffe066 100%);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-title {
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: #FFD600;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-logo img {
    width: 100%;
    height: 64px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.footer-tagline {
    color: #FFD600;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer-brand-desc {
    color: #bfc6d1;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    gap: 1.2rem;
}

.footer-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    padding: 0.2rem 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.footer-link:hover,
.footer-link:focus {
    color: #FFD600;
    border-bottom: 2px solid #FFD600;
    text-decoration: none;
}

.footer-contact {
    color: #bfc6d1;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-contact i {
    font-size: 1.15rem;
    color: #FFD600;
    margin-right: 0.5rem;
}

.footer-social {
    gap: 1.2rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-social-link {
    color: #FFD600;
    font-size: 1.5rem;
    background: #23293a;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    text-decoration: none !important;
    border: none;
}

.footer-social-link:hover,
.footer-social-link:focus {
    background: #FFD600;
    color: #181c22;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    transform: translateY(-3px) scale(1.08);
    text-decoration: none !important;
}

.footer-social-link:active {
    background: #ffe066;
    color: #181c22;
}

@media (max-width: 991.98px) {
    .footer-logo img {
        width: 100%;
        height: 100px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links {
        gap: 0.7rem;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social-link {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-brand-desc {
        font-size: 0.92rem;
    }
}

.site-footer .row>div:last-child .footer-title {
    text-align: center;
    width: 100%;
    display: block;
}

.offcanvas-half {
    width: 50vw !important;
    max-width: 400px;
}

@media (max-width: 767.98px) {
    .offcanvas-half {
        width: 100vw !important;
        max-width: 100vw;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.btn,
button,
a.btn {
    border-radius: 20px !important;
}

@media (min-width: 992px) {

    .navbar-nav>.dropdown:hover>.dropdown-menu,
    .navbar-nav>.dropdown>.dropdown-menu:hover {
        display: block;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-nav>.dropdown:hover>.dropdown-menu {
        /* Force Bootstrap's JS to keep menu open */
        display: block !important;
        pointer-events: auto;
    }

    .navbar-nav>.dropdown.show>.dropdown-menu {
        display: block !important;
        pointer-events: auto;
    }

    .dropdown-menu,
    .dropdown-menu-dark {
        margin-top: 0 !important;
    }
}

/* Simplified navbar logo styling - large by default, small when scrolled */
.navbar .navbar-brand,
.navbar .d-lg-flex {
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar .navbar-brand img,
.navbar .d-lg-flex img {
    height: 70px;
    width: auto;
    margin-top: 50px;
    transition: height 0.3s, padding 0.3s, background 0.3s, border 0.3s, box-shadow 0.3s, margin-top 0.3s;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .navbar .d-lg-flex {
        display: none !important;
    }
}

/* Scrolled navbar - smaller logos with background */
.navbar.navbar-scrolled .navbar-brand img,
.navbar.navbar-scrolled .d-lg-flex img {
    height: 48px;
    margin-top: 0;
    padding: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: height 0.3s, padding 0.3s, background 0.3s, border 0.3s, box-shadow 0.3s, margin-top 0.3s;
}

.navbar.navbar-scrolled,
header .navbar.navbar-scrolled {
    background: #ff5722 !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    min-height: 64px;
    transition: background 0.3s, box-shadow 0.3s, min-height 0.3s;
}

/* Hero background image for pages without video */
.hero-bg-image {
    background: linear-gradient(rgb(10 9 32 / 23%), rgb(10 9 32 / 0%)), url(../images/page-bg.jpg) center / cover no-repeat;
    z-index: 0;
    background-position: 50% 24%;
}

/* Smaller hero section for pages other than homepage */
.hero-section:not(:has(video)) {
    height: 40vh;
    min-height: 500px;
}

/* Contact form section with white background */
.contact-section {
    background: #fff;
    color: #333;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
}

body.about-asf p {
    text-align: justify;
    line-height: 2rem;
}

/* About ASF Mission/Vision/Objective Section */
.asf-icon-circle {
    width: 200px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
}

.asf-icon-circle img {
    padding: 24px;
}

.asf-icon-circle-info {
    background: #e3f2fd;
}

.asf-icon-circle-warning {
    background: #fffde7;
}

.asf-icon-circle-success {
    background: #e8f5e9;
}

.asf-mvo-img-bg {
    height: 100%;
    width: 100%;
    background: url('../images/infrastructure-construction.jpg');
    background-position: 100% 0%;
}

/* --- Ensure icons overlap image on desktop --- */
.asf-mvo-icon-mission,
.asf-mvo-icon-vision,
.asf-mvo-icon-objective {
    position: absolute;
}

.asf-mvo-icon-mission {
    top: 16%;
    left: 100%;
    transform: translate(0, -50%);
    z-index: 2;
}

.asf-mvo-icon-vision {
    top: 50%;
    left: 100%;
    transform: translate(0, -50%);
    z-index: 2;
}

.asf-mvo-icon-objective {
    top: 84%;
    left: 100%;
    transform: translate(0, -50%);
    z-index: 2;
}

@media (max-width: 991.98px) {

    /* Hide image and reset icons to normal flow on mobile */
    .asf-mvo-img-bg {
        display: none;
    }

    .asf-mvo-icon-mission,
    .asf-mvo-icon-vision,
    .asf-mvo-icon-objective {
        display: none !important;
        position: static !important;
        top: auto;
        left: auto;
        transform: none;
    }
}

.mission-vision p {
    padding: 0px 2rem;
}

.section-quote {
    padding: 0px 2rem;
}

/* Infrastructure Section (Why Us) */
.infra-feature-icon {
    color: #fff;
    font-size: 1.15rem;
    flex-shrink: 0;
    line-height: 1;
}

.rpto-section .img-fluid {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s;
}

.rpto-section .img-fluid:hover {
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .infra-features-box {
        margin-top: 1rem;
        padding: 1rem;
    }

    .rpto-section .img-fluid {
        max-width: 100%;
        height: auto;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff !important;
}

.infra-features-box {
    color: #fff !important;
    border-left: 4px solid #fff;
    margin-top: 1.5rem;
}

/* Icon overlap for infrastructure feature cards */
.infra-feature-icon-overlap {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    z-index: 2;
}

.infra-feature-icon-solid {
    background: #58bbea;
    color: #fff !important;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.content-wrapper {
    background: linear-gradient(#a5a3a300, #d9d6d62e);
}

/* Team Card Custom Styles (moved from inline CSS in team.php) */
.team-card-custom,
.team-card.team-card-custom,
.card.team-card-custom {
    max-width: 340px;
    width: 100%;
    margin-top: 0;
    border: none !important;
    border-radius: 20px;
}

.team-img-custom {
    z-index: 2;
}

.team-img-inner {
    width: 100%;
    object-fit: cover;
    background: transparent;
    border-radius: 20px 20px 0 0;
    height: 340px;
}

.team-designation {
    font-size: 1.1rem;
    color: #adb5bd !important;
}

.team-hr {
    opacity: 0.15;
    border-color: #dee2e6 !important;
}

.team-card-custom .card-body,
.team-card.team-card-custom .card-body,
.card.team-card-custom .card-body {
    background-color: #ffbf00 !important;
    color: #fff !important;
    border-radius: 0 0 1.5rem 1.5rem;
}

.team-card-custom h4,
.team-card.team-card-custom h4,
.card.team-card-custom h4 {
    color: #000000 !important;
    font-size: 1.2rem;
}

.team-card-custom .small.text-muted,
.team-card.team-card-custom .small.text-muted,
.card.team-card-custom .small.text-muted {
    color: #000000 !important;
}

.team-card-custom .text-secondary,
.team-card.team-card-custom .text-secondary,
.card.team-card-custom .text-secondary {
    color: #000 !important;
}

@media (max-width: 991.98px) {
    .team-img-inner {
        width: 100px;
        height: 100px;
    }
}

/* Team Page Specific Styles */
.team-section-header {
    max-width: 800px;
}

.training-methodology-header {
    max-width: 700px;
    margin: 0 auto;
}

.training-methodology-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-accordion-container {
    max-width: 800px;
}

/* Team Page Warning Badges */
.team-warning-badge {
    letter-spacing: 1px;
}

/* Team Page Section Background Colors */
.team-administrator-bg {
    background-color: #1a1a1a;
}

.team-instructors-bg {
    background-color: #2d2d2d;
}

.team-technician-bg {
    background-color: #1f1f1f;
}

.team-methodology-bg {
    background-color: #262626;
}

.team-gallery-bg {
    background-color: #333333;
}

.team-faq-bg {
    background-color: #404040;
}

/* Glass Card Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    color: #fff !important;
}

.glass-card h5,
.glass-card p,
.glass-card .icon-circle,
.glass-card i {
    color: #fff !important;
}

.glass-card .icon-circle {
    background: linear-gradient(135deg, #FFD600 0%, #ffed4e 100%) !important;
    border: 3px solid rgba(255, 214, 0, 0.3) !important;
    font-size: 2rem;
    border-radius: 50%;
    padding: 10px;
}

.glass-card .icon-circle i {
    color: #181c22 !important;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 214, 0, 0.4);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
}

/* Team Card Styles */
.team-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 214, 0, 0.2) !important;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    padding-top: 0;
    min-height: 320px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border-color: rgba(255, 214, 0, 0.4) !important;
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.2);
    transform: translateY(-6px) scale(1.03);
}

.team-img-wrapper {
    width: 100%;
    background: transparent;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.team-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.35rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none !important;
}

.team-social-icon:hover {
    background: #FFD600 !important;
    color: #181c22 !important;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}

/* Team Page Responsive Styles */
@media (max-width: 991.98px) {
    .team-card {
        min-height: 0;
    }

    .team-img-wrapper {
        width: 100px;
        height: 100px;
    }
}

/* Masonry Gallery Styles */
.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-masonry .gallery-item img {
    width: 100%;
    display: block;
    border-radius: 1rem;
    transition: transform 0.2s;
}

.gallery-masonry .gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

@media (max-width: 991.98px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .gallery-masonry {
        column-count: 1;
    }
}

/* Training Methodology Section Pattern Background */
.training-methodology-bg {
    background-color: #f8fafc;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="40" height="40" fill="%23f8fafc"/><circle cx="20" cy="20" r="1.5" fill="%23e0e7ef"/><circle cx="0" cy="40" r="1.5" fill="%23e0e7ef"/><circle cx="40" cy="0" r="1.5" fill="%23e0e7ef"/></svg>');
    background-size: 40px 40px;
}

/* Mission Vision Section - Custom Icon Overlay Styles (no Bootstrap utilities) */
.mission-vision__icon-overlay {
    position: absolute;
    left: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* Default: hidden on mobile */
    display: none;
}

.mission-vision__icon-overlay--mission {
    top: 16%;
}

.mission-vision__icon-overlay--vision {
    top: 50%;
}

.mission-vision__icon-overlay--objective {
    top: 84%;
}

@media (min-width: 768px) {
    .mission-vision__icon-overlay {
        display: flex;
        transform: translate(-60%, -50%);
    }
}

@media (max-width: 991.98px) {
    .mission-vision__icon-overlay {
        display: none !important;
    }
}

/* Default course background */
.course-bg-image {
    background: linear-gradient(rgb(10 9 32 / 23%), rgb(10 9 32 / 0%)), url(../images/remote-pilot-training.png) center / cover no-repeat;
    z-index: 0;
    background-position: 50% 8%;
}

/* Specific course backgrounds */
.course-bg-remote-pilot {
    background: linear-gradient(rgb(10 9 32 / 23%), rgb(10 9 32 / 0%)), url(../images/remote-pilot-training.png) center / cover no-repeat;
    z-index: 0;
    background-position: 50% 8%;
}

.course-bg-agriculture-spray {
    background: linear-gradient(rgb(10 9 32 / 23%), rgb(10 9 32 / 0%)), url(../images/agriculture-drone-spray-for-rpc.png) center / cover no-repeat;
    z-index: 0;
    background-position: 50% 35%;
}

.course-bg-drone-technician {
    background: linear-gradient(rgb(10 9 32 / 23%), rgb(10 9 32 / 0%)), url(../images/drone-technician-training.png) center / cover no-repeat;
    z-index: 0;
    background-position: 50% 8%;
}

/* Course Overview Section Enhancements */
.course-icon {
    transition: all 0.3s ease;
}

.course-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.course-description {
    border-left: 4px solid #FFD600;
    transition: all 0.3s ease;
}

.course-description:hover {
    border-left-width: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.highlight-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: #FFD600 !important;
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.2);
}

.highlight-item .bg-warning.rounded-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.highlight-item:hover .bg-warning {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.cta-card {
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: #FFD600 !important;
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.2);
}

.course-image img {
    transition: all 0.3s ease;
}

.course-image:hover img {
    transform: scale(1.05);
}

.cta-bg-pattern {
    background: radial-gradient(circle at 20% 80%, rgba(255, 214, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.1) 0%, transparent 50%);
}

/* Eligibility Criteria Section Enhancements */
.eligibility-bg-pattern {
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 214, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 214, 0, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.eligibility-card-enhanced {
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.eligibility-card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD600 !important;
    box-shadow: 0 20px 40px rgba(255, 214, 0, 0.2);
}

.eligibility-card-enhanced:hover .card-number {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.eligibility-icon-wrapper {
    position: relative;
    display: inline-block;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #FFD600 0%, #ffed4e 100%);
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.eligibility-card-enhanced:hover .bg-gradient-warning {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.icon-glow {
    width: 80px;
    height: 80px;
    animation: pulse-glow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

.requirement-value {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.eligibility-card-enhanced:hover .requirement-value {
    color: #FFD600 !important;
    transform: scale(1.05);
}

.card-number {
    font-size: 0.75rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.eligibility-note {
    border: 1px solid rgba(255, 214, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.eligibility-note:hover {
    border-color: #FFD600;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Curriculum Section Enhancements */
.curriculum-bg-pattern {
    background:
        radial-gradient(circle at 25% 15%, rgba(255, 214, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 85%, rgba(255, 214, 0, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
}

.timeline-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent, #FFD600, transparent);
    z-index: 1;
}

.curriculum-card-enhanced {
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.curriculum-card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD600 !important;
    box-shadow: 0 20px 40px rgba(255, 214, 0, 0.15);
}

.curriculum-card-highlight {
    border-color: #FFD600 !important;
    background: rgba(255, 214, 0, 0.05);
}

.day-badge {
    font-size: 0.75rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.curriculum-card-enhanced:hover .day-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.day-number {
    background: linear-gradient(135deg, #FFD600 0%, #ffed4e 100%);
    transition: all 0.3s ease;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curriculum-card-enhanced:hover .day-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.curriculum-item {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: flex-start;
    width: fit-content;
    max-width: 100%;
}

.curriculum-item:hover {
    background: rgba(255, 214, 0, 0.1);
    transform: translateX(8px);
}

.curriculum-item i {
    transition: all 0.3s ease;
    min-width: 20px;
    margin-top: 2px;
}

.curriculum-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(255, 214, 0, 0.5);
}

.curriculum-summary {
    transition: all 0.3s ease;
    max-width: 500px;
}

.curriculum-summary:hover {
    transform: translateY(-3px);
    border-color: #FFD600 !important;
    box-shadow: 0 12px 30px rgba(255, 214, 0, 0.2);
}

.curriculum-header h4 {
    transition: all 0.3s ease;
}

.curriculum-card-enhanced:hover .curriculum-header h4 {
    color: #FFD600 !important;
    text-shadow: 0 2px 8px rgba(255, 214, 0, 0.3);
}

/* Enrollment Section Enhancements */
.enrollment-bg-pattern {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 214, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 214, 0, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.enrollment-card {
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.enrollment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 214, 0, 0.2);
}

.enrollment-card-bg {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 214, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 214, 0, 0.05) 0%, transparent 40%);
}

.enrollment-badge {
    transition: all 0.3s ease;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #FFD600 !important;
    background: rgba(255, 214, 0, 0.08);
}

.feature-icon {
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.stat-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(255, 214, 0, 0.3);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 4px 15px rgba(255, 214, 0, 0.5);
}

.price-display {
    transition: all 0.3s ease;
}

.enrollment-card:hover .price-display {
    transform: scale(1.05);
}

.enrollment-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enrollment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    background-color: #ffed4e !important;
}

.enrollment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.enrollment-btn:hover::before {
    left: 100%;
}

.contact-details {
    transition: all 0.3s ease;
}

.enrollment-card:hover .contact-details {
    transform: scale(1.05);
}

.enrollment-guarantee {
    transition: all 0.3s ease;
}

.enrollment-card:hover .enrollment-guarantee {
    background: rgba(255, 214, 0, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-top: 16px !important;
}

/* Additional Facilities Section Icons */
.facilities-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
}

.price-features {
    text-align: justify;
}

/* ========================================
   SLICK SLIDER CUSTOM STYLES FOR COURSES
   ======================================== */

/* Slick Slider Custom Styles for Courses */
.course-slider-slick {
    position: relative;
    padding: 20px 0 60px 0;
    /* Add padding to prevent clipping */
}

.course-slide-item {
    padding: 10px 15px 20px 15px;
    outline: none;
}

/* Custom Slick Arrow Styles */
.course-slider-slick .slick-prev,
.course-slider-slick .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 214, 0, 0.9) !important;
    border: none;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.course-slider-slick .slick-prev:hover,
.course-slider-slick .slick-next:hover {
    background: #FFD600 !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.course-slider-slick .slick-prev {
    left: -25px;
}

.course-slider-slick .slick-next {
    right: -25px;
}

.course-slider-slick .slick-prev:before,
.course-slider-slick .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: #000;
    opacity: 1;
}

.course-slider-slick .slick-prev:before {
    content: "\f053";
    /* fa-chevron-left */
}

.course-slider-slick .slick-next:before {
    content: "\f054";
    /* fa-chevron-right */
}

/* Custom Slick Dots */
.course-slider-slick .slick-dots {
    bottom: -40px;
    text-align: center;
    position: relative;
}

.course-slider-slick .slick-dots li {
    margin: 0 5px;
}

.course-slider-slick .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.course-slider-slick .slick-dots li button:before {
    display: none;
}

.course-slider-slick .slick-dots li.slick-active button {
    background: #FFD600;
    transform: scale(1.2);
}

.course-slider-slick .slick-dots li button:hover {
    background: rgba(255, 214, 0, 0.7);
}

/* Mobile Responsive Arrows */
@media (max-width: 768px) {
    .course-slider-slick .slick-prev {
        left: 10px;
    }

    .course-slider-slick .slick-next {
        right: 10px;
    }
}

/* Ensure equal height for course cards */
.course-slider-slick .slick-slide {
    height: auto;
    overflow: visible;
}

.course-slider-slick .slick-track {
    display: flex;
    align-items: stretch;
}

.course-slider-slick .slick-slide>div {
    height: 100%;
}

/* Fix for clipping issues while maintaining slider functionality */
.course-slider-slick .slick-list {
    overflow: hidden;
    /* Keep horizontal overflow hidden for slider */
    padding: 30px 0 !important;
    /* Add vertical padding to prevent clipping */
}

/* Ensure course cards are fully visible */
.course-card {
    margin: 0;
    /* Remove margin to prevent layout issues */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Adjust slide container to prevent clipping on hover */
.course-slide-item {
    padding: 10px 15px 20px 15px;
    /* Add more padding for hover effects */
    outline: none;
    margin-bottom: 0;
    /* Remove bottom margin */
}

.coursetitle {
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
}

table {
    color: #fff !important;
}

/* ========================================
   FLOATING WHATSAPP ICON
   ======================================== */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* ========================================
   ENROLLMENT POPUP MODAL
   ======================================== */

/* Modal Overlay */
.enrollment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.enrollment-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.enrollment-modal-content {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 98vh;
    overflow: hidden;
    position: relative;
    animation: slideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Modal Header */
.enrollment-modal-header {
    background: linear-gradient(135deg, #FFD600 0%, #FFC107 100%);
    color: #333;
    padding: 18px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
    flex-shrink: 0;
}

.enrollment-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

/* Close Button */
.enrollment-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enrollment-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* Modal Body */
.enrollment-modal-body {
    padding: 20px 30px 25px 30px;
    flex: 1;
    overflow: hidden;
}

/* Form Styling */
.enrollment-form .form-group {
    margin-bottom: 15px;
}

.enrollment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.enrollment-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.enrollment-form .form-control:focus {
    outline: none;
    border-color: #FFD600;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.enrollment-form .form-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enrollment-form .form-select:focus {
    outline: none;
    border-color: #FFD600;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

/* Two Column Layout */
.enrollment-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.enrollment-form .col-md-6 {
    flex: 1;
}

/* Submit Button */
.enrollment-submit-btn {
    background: linear-gradient(135deg, #FFD600 0%, #FFC107 100%);
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 150px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    display: inline-block;
}

.enrollment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enrollment-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }

    .enrollment-modal-header {
        padding: 15px 20px;
    }

    .enrollment-modal-header h2 {
        font-size: 1.5rem;
    }

    .enrollment-modal-body {
        padding: 15px 20px 20px 20px;
    }

    .enrollment-form .row {
        flex-direction: column;
        gap: 0;
    }

    .enrollment-form .col-md-6 {
        margin-bottom: 15px;
    }

    .enrollment-form .form-group {
        margin-bottom: 12px;
    }
}

.eligibility-card-enhanced.p-4 {
    padding: 0.25rem !important;
}
.navbar-scrolled .navbar-brand, .navbar .d-lg-flex {
    height: auto !important;
}