:root {
    --primary-blue: #012169;
    --accent-blue: #0079C1;
    --accent-yellow: #ffc107;
    --accent-orange: #ff6a00;
    --bg-light-grey: #f8f9fa;
    --text-dark: #334155;
    --text-muted: #64748b;
}

body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-nav .nav-link,
.btn {
    font-family: 'Inter', sans-serif;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue) !important;
    text-transform: uppercase;
    padding: 8px 15px !important;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

.btn-call {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50px;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 15px;
}

/* Hero */
.hero-section {
    padding: 90px 0;
    background: linear-gradient(90deg, rgba(230, 230, 230, 1) 0%, rgba(200, 200, 200, 1) 100%);
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 95%;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-presence {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-explore {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--primary-blue);
}

.btn-counsel {
    background-color: var(--accent-yellow);
    color: #000;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--accent-yellow);
}

.btn-explore:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-counsel:hover {
    background-color: #e6ae06;
    color: #000;
    border-color: #e6ae06;
}

/* Form */
.hero-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
}

.form-control,
.form-select {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 6px;
}

.btn-submit {
    background-color: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
}

.captcha-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha-img {
    max-width: 120px;
    height: auto;
}

/* General Sections */
.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* Features */
.features-section {
    padding: 60px 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-card h5 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.read-more-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
    text-transform: uppercase;
}

/* Banner */
.cta-banner {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.6;
}

/* Placements */
.placements-section {
    padding: 70px 0;
    background: #ffffff;
}

.placements-desc {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin: -20px auto 40px;
    max-width: 900px;
    line-height: 1.6;
}

.placement-img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Courses */
.courses-section {
    padding: 70px 0;
    background: #fff;
}

.course-card {
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.course-card img {
    width: 100%;
    height: auto;
}

.course-body {
    padding: 25px;
}

.course-meta {
    font-size: 15px;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.course-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-view-all {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 20px;
}

/* Contact */
.contact-section {
    padding: 10px 0 70px;
    background: #ffffff;
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Footer */
.site-footer {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 70px 0 30px;
    font-size: 15px;
}

.footer-logo {
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
}

.footer-contact i {
    margin-right: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* New Sections CSS */
.aviation-intro {
    padding: 80px 0;
    background: #fff;
}

.aviation-intro h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.aviation-intro p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.achievements-section {
    padding: 60px 0;
    background: #fff;
}

.achievements-card {
    background-color: var(--primary-blue);
    border-radius: 15px;
    padding: 50px;
    color: #fff;
}

.achievements-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.achievements-img {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.achievements-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.join-section {
    padding: 40px 0;
}

.join-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 50px;
    background: #fff;
}

.join-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.join-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.join-list li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: var(--text-dark);
    font-weight: 500;
}

.join-list li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 5px;
    top: 0;
    font-size: 21px;
}

.btn-join {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 15px;
}

.btn-join:hover {
    background-color: #0d2450;
    color: #fff;
}

.join-placeholder-box {
    background-color: #7b8cbe;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.vision-mission-section {
    padding: 0 0 60px 0;
    background: #fff;
}

.vm-card {
    background-color: var(--primary-blue);
    border-radius: 15px;
    padding: 40px;
    color: #fff;
    height: 100%;
}

.vm-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vm-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Updating Feature cards read more link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}



/* --- ABOUT PAGE CSS --- */
.page-hero {
    padding: 80px 0;
    background: var(--primary-blue);
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.about-row {
    padding: 60px 0;
    background: #fff;
}

.about-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-img {
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stats-section {
    background-color: #ffffff;
}

























/* --- ABOUT PAGE SPECIFIC OVERRIDES --- */
.page-hero {
    padding: 90px 0;
    background-color: #012169 !important;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.contact-img-box {
    background-color: #012169;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.contact-img-box img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.contact-img-box img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* White Footer for About Page */
.about-footer {
    background-color: #fff !important;
    color: #334155 !important;
    border-top: 1px solid #f1f5f9;
    padding: 60px 0 30px;
}

.about-footer .footer-title {
    color: #0e2454 !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 25px;
}

.about-footer .footer-desc,
.about-footer .footer-contact li {
    color: #64748b !important;
}

.about-footer .footer-links a {
    color: #64748b !important;
}

.about-footer .footer-links a:hover {
    color: #3b82f6 !important;
}

.about-footer .footer-contact i {
    color: #0e2454 !important;
}

.about-footer .footer-bottom {
    border-top: 1px solid #e2e8f0;
    color: #94a3b8 !important;
}


/* --- ANIMATIONS & CARD HOVERS --- */
.f-card,
.feature-card,
.course-card,
.vm-card,
.achievements-card,
.contact-img-box {
    transition: all 0.4s ease-in-out;
}

.feature-card:hover,
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(18, 50, 107, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Scroll Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(120px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* --- CONTACT PAGE CSS --- */
.locations-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.loc-card {
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    padding: 30px;
    height: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.loc-title {
    color: #0e2454;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.loc-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.loc-icon {
    color: #0e2454;
    font-size: 21px;
    margin-top: 2px;
}

.loc-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.loc-social-title {
    font-size: 15px;
    font-weight: 700;
    color: #0e2454;
    margin-top: 30px;
    margin-bottom: 15px;
}

.loc-social-icons {
    display: flex;
    gap: 10px;
}

.social-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e2454;
    font-size: 15px;
    transition: all 0.2s;
    text-decoration: none;
}

.social-circle:hover {
    background-color: #0e2454;
    color: #fff;
}

.loc-card.theme-magenta .loc-title {
    color: #991c4e;
}

.loc-card.theme-magenta .loc-icon {
    color: #991c4e;
}

.loc-card.theme-magenta .loc-social-title {
    color: #991c4e;
}

.loc-card.theme-magenta .social-circle {
    color: #991c4e;
    background-color: #fdf2f8;
}

.loc-card.theme-magenta .social-circle:hover {
    background-color: #991c4e;
    color: #fff;
}

.magenta-title {
    color: #991c4e !important;
}


/* --- GALLERY PAGE CSS --- */
.gallery-section {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
}

.gallery-title {
    color: #0e2454;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-filter {
    background-color: #012169;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-filter:hover {
    background-color: #f97316;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
}

/* CSS Masonry Layout */
.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    width: 100%;
}

.masonry-item img {
    width: 100%;
    border-radius: 8px;
    display: block;
    background-color: #e2e8f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.masonry-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .masonry-grid {
        column-count: 1;
    }
}


/* --- PLACEMENTS PAGE CSS --- */
.placements-section {
    padding: 50px 0 80px;
    background-color: #ffffff;
}

.placements-title {
    color: #0e2454;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.placement-img-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e2e8f0;
    transition: transform 0.3s;
}

.placement-img-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
}

.placement-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-explore-navy {
    background-color: #012169;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 3px solid #e2e8f0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(1, 33, 105, 0.2);
}

.btn-explore-navy:hover {
    background-color: #0d2450;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 33, 105, 0.3);
    border-color: #cbd5e1;
}

@media (max-width: 991px) {
    .placements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .placements-grid {
        grid-template-columns: 1fr;
    }
}


/* --- WHY CHOOSE US CSS --- */
.why-section {
    padding: 80px 0 20px;
    background-color: #ffffff;
}

.why-img-rounded {
    border-radius: 8px;
    width: 100%;
    display: block;
    background-color: #e2e8f0;
}

.why-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.why-features-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}

.why-features-list li i {
    color: #0e2454;
    font-size: 15px;
    margin-right: 10px;
}

/* Colored Cards */
.colored-feature-card {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 80px;
}

.card-dark-blue {
    background-color: #012169;
    color: #fff;
}

.card-magenta {
    background-color: #991c4e;
    color: #fff;
}

.card-content-left {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.card-content-left p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* The images inside colored cards have a slight padding to look like they sit inside the box with rounded corners */
.card-img-right {
    padding: 30px 30px 30px 0;
}

.card-img-right img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile fixes for colored cards */
@media (max-width: 991px) {
    .why-features-list {
        grid-template-columns: 1fr;
    }

    .card-content-left {
        padding: 40px;
    }

    .card-img-right {
        padding: 0 40px 40px 40px;
    }
}

@media (max-width: 767px) {
    .colored-feature-card {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .card-content-left {
        padding: 30px;
    }

    .card-img-right {
        padding: 0 30px 30px 30px;
    }
}


/* --- COURSES PAGE CSS --- */
.courses-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.course-intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Course Card styling */
.course-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: visible;
    margin-bottom: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.course-card-img-wrapper {
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: visible;
}

.course-card-img-wrapper img {
    width: 100%;
    display: block;
    border-radius: 8px 8px 0 0;
}

/* The overlapping circular icon */
.course-card-icon {
    position: absolute;
    right: 25px;
    bottom: -35px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 5px solid #fff;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.icon-navy {
    background-color: #012169;
}

.icon-magenta {
    background-color: #991c4e;
}

.course-card-content {
    padding: 30px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-meta {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.course-meta i {
    font-size: 14px;
    margin-right: 5px;
    color: #000000;
}

.course-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.text-navy {
    color: #012169;
}

.text-magenta {
    color: #991c4e;
}

.course-eligibility {
    font-size: 15px;
    font-weight: 500;
    color: #012169;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    display: block;
    background: transparent;
}

.course-desc {
    font-size: 14px;
    color: #000000;
    line-height: 2.0;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background-color: #ffffff;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    color: #012169;
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Forms */
.course-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}


/* --- BLOG PAGE CSS --- */
.featured-blog-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.featured-blog-title {
    color: #012169;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.featured-img-border {
    border: 8px solid #8ba3c9;
    border-radius: 4px;
    width: 100%;
    display: block;
}

.why-aviation-section {
    padding: 80px 0;
    background-color: #f1f5f9;
    margin: 40px 0;
}

.why-aviation-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
}

.why-aviation-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.why-aviation-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-style: italic;
    color: #334155;
}

.why-aviation-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #475569;
    font-style: normal;
    font-size: 21px;
    line-height: 1;
}

.numbered-points-section {
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.numbered-point {
    margin-bottom: 35px;
}

.numbered-point h4 {
    font-size: 15px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 15px;
}

.numbered-point p {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 10px;
}







.btn-explore-blog {
    background-color: #012169;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-explore-blog:hover {
    background-color: #122c6b;
    color: #fff;
}


.why-aviation-box {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(13, 34, 89, 0.9) 100%);
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .why-aviation-box {
        padding: 30px;
    }
}


.blog-grid-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-grid-title {
    text-align: center;
    color: #012169;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.blog-grid-strip {
    background-color: #8c9eb9;
    padding: 40px 0;
}

.blog-card-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card-img-box:hover {
    transform: translateY(-5px);
}

.blog-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle white gradient at the bottom to ensure the dark blue text is readable over any image */
.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

.blog-card-img-box h3 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 20px;
    color: #012169;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
    z-index: 2;
    line-height: 1.3;
    text-transform: uppercase;
}


/* --- BLOG DETAIL CSS --- */
.blog-detail-header {
    padding: 50px 0 30px;
    text-align: center;
}

.blog-detail-title {
    color: #012169;
    font-weight: 700;
    font-size: 32px;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.3;
}

.blog-detail-meta {
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.blog-detail-meta span {
    color: #012169;
    font-weight: 700;
}

.blog-detail-content-section {
    padding: 0 0 60px;
}

/* The colored box that replaces the magenta one */
.bd-colored-box {
    background-color: #012169;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bd-colored-box img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.bd-colored-box-text {
    color: #ffffff;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bd-colored-box-text h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.bd-colored-box-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bd-colored-box-text ul {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.bd-colored-box-text ul li {
    margin-bottom: 8px;
}

/* Light callout box */




/* Standard Text sections */
.bd-text-block {
    margin-bottom: 40px;
}

.bd-text-block h3 {
    color: #012169;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

.bd-text-block p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bd-text-block ul {
    padding-left: 20px;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.bd-text-block ul li {
    margin-bottom: 8px;
}

.bd-text-block img {
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bd-full-text {
    max-width: 900px;
    margin: 0 auto 40px;
}

.bd-full-text h3 {
    color: #012169;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.bd-full-text p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}


/* Updated Light Callout Box */
.bd-light-section-wrapper {
    background-color: #f3e8eb;
    padding: 60px 0;
    margin-bottom: 50px;
}

.bd-floating-white-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bd-floating-white-box h3 {
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.bd-floating-white-box p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}


/* About Page Specific Stats & Boxes */
.stat-item {
    text-align: center;
}

.stat-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.stat-icon {
    color: #012169;
    background-color: #f1f5f9;
    font-size: 26px;
    margin: 0 auto 15px auto;
    line-height: 1;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #012169;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-boxes {
    padding: 40px 0 80px;
    background-color: #ffffff;
}

.t-box {
    background: #ffffff;
    border-left: 4px solid #012169;
    padding: 40px 45px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    align-items: center;
}

.t-text {
    color: #475569;
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 0;
    text-align: left;
}


/* Update About Page Sections */
.life-section {
    padding: 60px 0 40px;
    background-color: #ffffff;
    text-align: center;
}

.life-title {
    color: #012169;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: none;
}

.life-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
}

.features-grid {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.f-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.f-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.f-card h5 {
    color: #012169;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.f-card p {
    color: #475569;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 0;
    text-align: left;
}

.director-msg {
    padding: 0 0 80px;
    background-color: #ffffff;
}

.director-box {
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.director-box h3 {
    color: #012169;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.director-box p {
    color: #475569;
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 25px;
    text-align: left;
}

@media (max-width: 768px) {
    .director-box {
        padding: 40px 30px;
    }
}


/* --- HOME PAGE CSS --- */
.home-hero {
    background: url('../images/home/home_hero.png') no-repeat center center;
    background-size: cover;
    padding: 220px 0 120px;
    position: relative;
}

.home-hero h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.home-hero p {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: #012169;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-btns .btn {
    margin-right: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 4px;
}

.btn-blue {
    background-color: #012169;
    color: #fff;
    border: 2px solid #012169;
}

.btn-blue:hover {
    background-color: transparent;
    color: #012169;
}

.btn-orange {
    background-color: #0079C1;
    color: #fff;
    border: 2px solid #0079C1;
}

.btn-orange:hover {
    background-color: transparent;
    color: #0079C1;
}

.floating-form {
    background: transparent;
    padding: 10px 0;
    border-radius: 0;
    box-shadow: none;
}

/* Pink/red glow */
.floating-form input,
.floating-form select {
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 2px solid transparent;
    padding: 16px 20px;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: #333;
    font-weight: 500;
}

.floating-form .btn-submit {
    background-color: var(--accent-orange, #f97316);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 6px;
    border: none;
    width: 100%;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.floating-form .btn-submit:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.7);
}

.home-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.home-intro h2 {
    color: #012169;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.home-intro p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.home-intro img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-programs {
    padding: 80px 0 60px;
    background-color: #ffffff;
}

.featured-programs h3 {
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 40px;
}

.fp-card {
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 35px 25px;
    text-align: left;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.fp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.12);
}

.fp-card h4 {
    color: #012169;
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 20px;
}

.fp-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.fp-card a {
    color: #012169;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.achievements-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.achieve-box {
    background-color: #012169;
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
}

.achieve-box img {
    width: 100%;
    border-radius: 8px;
}

.achieve-text {
    padding: 20px 40px;
}

.achieve-text h2 {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.achieve-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.achieve-text ul {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
}

.info-split {
    padding: 60px 0;
    background-color: #ffffff;
}

.info-text-box {
    border-left: 3px solid #012169;
    padding-left: 30px;
}

.info-text-box p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-text-box ul {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 20px;
}

.btn-outline-blue {
    color: #012169;
    border: 2px solid #012169;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.info-image-placeholder {
    background-color: #7b8fac;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.vision-mission {
    padding: 0 0 60px;
    background-color: #ffffff;
}

.vm-box {
    background-color: #012169;
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}

.vm-box h3 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.vm-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: left;
}

.placements-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-heading-center {
    text-align: center;
    color: #012169;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.placement-grid img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.home-courses {
    padding: 60px 0;
    background-color: #ffffff;
}

.home-contact {
    padding: 80px 0;
    background-color: #ffffff;
}

.home-contact-box {
    border: 2px solid #eee;
    padding: 40px;
    border-radius: 8px;
}

/* Custom Footer */
.home-footer-top {
    background-color: #012169;
    padding: 60px 0;
    color: #fff;
}

.home-footer-top h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-footer-top p,
.home-footer-top li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.home-footer-top a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.home-footer-top a:hover {
    color: #fff;
}

.home-footer-top ul {
    padding: 0;
    list-style: none;
}

.home-footer-top ul li {
    margin-bottom: 10px;
}

.home-footer-bottom {
    background-color: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.home-footer-bottom p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.home-footer-bottom img {
    height: 40px;
    margin-right: 15px;
    opacity: 0.7;
}

.navbar.sticky-top {
    z-index: 1050;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.fp-card a {
    color: #012169;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.fp-card a i {
    font-size: 15px;
    margin-left: 8px;
    font-weight: 700;
    transition: transform 0.3s;
}

.fp-card:hover a i {
    transform: translateX(5px);
}













/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .home-hero {
        background: url('../images/home/home_hero.png') no-repeat center center;
        background-size: cover;
    }

    .home-hero {
        padding: 150px 0 80px;
    }

    .hero-title,
    .page-hero h1 {
        font-size: 32px;
    }

    .achievements-card,
    .join-card,
    .vm-card,
    .bd-colored-box,
    .director-box {
        padding: 30px;
    }

    .card-content-left,
    .card-img-right {
        padding: 30px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .site-footer,
    .home-footer-top,
    .courses-section,
    .placements-section,
    .contact-section {
        padding: 50px 0;
    }

    .section-title,
    .home-intro h2,
    .featured-programs h3,
    .achievements-title,
    .vm-title,
    .section-heading-center {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 0;
    }

    .home-hero {
        padding: 120px 0 60px;
    }

    .hero-title,
    .page-hero h1 {
        font-size: 28px;
    }

    .floating-form,
    .hero-form-card {
        padding: 20px;
        margin-top: 30px;
    }

    .feature-card,
    .course-card {
        margin-bottom: 20px;
    }

    .achieve-box {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .achieve-text {
        padding: 20px 0 0 0;
    }

    .achieve-text h2 {
        font-size: 24px;
    }

    .home-intro,
    .featured-programs,
    .courses-grid-section,
    .course-intro-section,
    .info-split,
    .home-courses,
    .home-contact,
    .life-section,
    .features-grid,
    .director-msg {
        padding: 40px 0;
    }

    .director-box,
    .t-box {
        padding: 25px;
    }

    .blog-detail-title {
        font-size: 24px;
    }

    .bd-colored-box-text {
        padding: 20px;
        text-align: center;
    }

    .bd-floating-white-box {
        padding: 25px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        margin-right: 0;
        width: 100%;
    }
}


/* --- DYNAMIC SHAPES & CUTS --- */
/* Hero section sweeping upward cut at the bottom */
.home-hero,
.page-hero {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding-bottom: 160px;
}

/* Footer section sweeping downward cut at the top */
.home-footer-top,
.site-footer {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    padding-top: 100px;
    margin-top: -40px;
}

/* Colored accent boxes with angular corner cuts */
.achievements-card,
.vm-card,
.bd-colored-box,
.achieve-box {
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
    border-radius: 0 !important;
}

/* Colored feature cards */
.colored-feature-card {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    border-radius: 0 !important;
}

@media (max-width: 767px) {

    .home-hero,
    .page-hero {
        clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
        padding-bottom: 100px;
    }

    .home-footer-top,
    .site-footer {
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
        padding-top: 80px;
    }

    .colored-feature-card {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }
}






/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 38px;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background-color: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-float:hover {
    animation: shake 0.5s ease-in-out;
    color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Marquee Animation */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content>div {
    flex-shrink: 0 !important;
}

.marquee-section:hover .marquee-content {
    animation-play-state: paused !important;
}

/* --- PREMIUM FAQ ACCORDION --- */
.faq-container {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
    border-radius: 0;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-button {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    background-color: transparent;
    padding: 20px 25px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #dbeafe;
    /* Light blue */
    color: #012169;
    font-weight: 600;
    border-radius: 0;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-accordion .accordion-body {
    padding: 20px 25px 25px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    background-color: #fff;
}

/* Placement Overlays */
.placement-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.placement-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.placement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(1, 33, 105, 0.95), rgba(1, 33, 105, 0));
    color: #fff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: left;
    pointer-events: none;
}

.placement-img-wrapper:hover .placement-overlay {
    transform: translateY(0);
}

.placement-overlay h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.placement-overlay p {
    font-size: 13px;
    margin-bottom: 0;
    opacity: 0.9;
    color: #fff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Active Nav Link */
.navbar-nav .nav-link.active {
    color: #f97316 !important;
}