:root {
    /* Navy Blue Primary Palette */
    --primary-color: #0a1f3d;
    --primary-light: #1b3a5f;
    --primary-dark: #051428;

    /* Golden Accent */
    --secondary-color: #d4a537;
    --secondary-dark: #b8922f;
    --secondary-light: #f0c85a;

    /* Accent Colors */
    --accent-color: #4a90c4;
    --accent-light: #7ab8e8;

    /* Text Colors */
    --text-dark: #0a1f3d;
    --text-muted: #5a6a7d;

    /* Backgrounds */
    --bg-light: #f4f7fb;
    --bg-card: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 90px;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #ffffff;
    min-height: 80px;
    padding: 0.8rem 0;
    transition: box-shadow 0.3s ease;
}

/* Shadow on scroll */
.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Links */
.nav-link {
    font-weight: 500;
    margin: 0 6px;
    color: #333 !important;
    position: relative;
    padding-bottom: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Underline animation (desktop only) */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Button - Navy Blue Theme */
.btn-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.3);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 31, 61, 0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 15px;
    }

    .nav-link {
        margin: 6px 0;
        padding: 10px 15px !important;
    }

    .nav-link::after {
        display: none;
    }

    .btn-contact {
        width: calc(100% - 30px);
        margin: 10px 15px;
        text-align: center;
    }
}

/* ===== ABOUT ===== */
/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    background-color: #f9f9ff;
}

.about-title {
    color: var(--primary-color);
}

.about-text {
    color: #111111;
    line-height: 1.7;
}

/* Image styling */
.about-img {
    max-height: 380px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Custom Buttons - Navy Blue Theme */
.btn-secondary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 31, 61, 0.4);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.3);
}

/* COMMON BUTTON STYLE - Navy Blue Theme */
.btn-secondary-custom,
.btn-outline-primary-custom {
    border-radius: 8px;
    font-weight: 600;
    min-width: 160px;
    text-align: center;
}

/* SOLID NAVY BLUE BUTTON */
.btn-secondary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: #fff !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 31, 61, 0.4) !important;
}

/* OUTLINE NAVY BLUE BUTTON */
.btn-outline-primary-custom {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-outline-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.3) !important;
}



/* ===== VISION & OBJECTIVES ===== */
.vision-section {
    background-color: #f9f9ff;
}

.vision-title {
    color: var(--primary-color);
    font-weight: 700;
}

.vision-divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.vision-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.vision-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.vision-card p {
    color: #111111;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== course ===== */

/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 40px 20px;
    background: #f7f8fc;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}

.course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-6px);
}

.course-img {
    height: 150px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-body {
    padding: 18px;
    text-align: center;
}

.course-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.course-body p {
    font-size: 14px;
    color: #555;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.modal-content {
    background: #fff;
    max-width: 500px;
    margin: 12% auto;
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .course-img {
        height: 130px;
    }

    .modal-content {
        margin: 30% 15px;
    }
}

/*contact*/


:root {
    /* Navy Blue Primary Palette */
    --primary-color: #0a1f3d;
    --primary-light: #1b3a5f;
    --primary-dark: #051428;

    /* Golden Accent */
    --secondary-color: #d4a537;
    --secondary-dark: #b8922f;
    --secondary-light: #f0c85a;

    /* Accent Colors */
    --accent-color: #4a90c4;
    --accent-light: #7ab8e8;

    /* Utility Colors */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --text-color: #0a1f3d;
}








.tagline {
    font-style: italic;
    font-weight: 300;
    margin-top: 10px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--medium-gray);
}

.card-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-title {
    font-size: 22px;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--medium-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 3px;
    min-width: 24px;
}

.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-text p,
.contact-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-text .phone {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    display: block;
    transition: all 0.3s;
}

.phone-link {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.phone-link:hover {
    background-color: rgba(26, 35, 126, 0.1);
    transform: translateY(-2px);
}

.phone-link:hover .phone {
    color: var(--secondary-color);
}

.phone-icon {
    margin-right: 8px;
    color: var(--accent-color);
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 35, 126, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-overlay i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 31, 61, 0.4);
}

.btn i {
    margin-right: 8px;
}

.hours-list {
    list-style-type: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--medium-gray);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/*whatsapp*/

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.8s infinite;

    /* FIX */
    text-decoration: none !important;
}

.whatsapp-float i {
    text-decoration: none !important;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== ENHANCED FOOTER ===== */

.footer-enhanced {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 40px;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-section h4 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer About Section */
.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Footer Links */
.footer-links ul,
.footer-courses ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-courses li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-courses a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i,
.footer-courses a i {
    font-size: 10px;
    margin-right: 10px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-courses a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover i,
.footer-courses a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item>i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
    min-width: 22px;
}

.footer-contact-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 165, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 25px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    font-style: italic;
    color: var(--secondary-color) !important;
    font-weight: 500;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-enhanced {
        padding: 40px 0 25px;
        border-radius: 20px 20px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-links a,
    .footer-courses a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-section h4 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .phone-link {
        padding: 8px 12px;
        background-color: rgba(26, 35, 126, 0.05);
        border-radius: 8px;
        display: block;
    }
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel-section {
    margin-top: 0;
}

.hero-slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide Backgrounds with Images */
.hero-slide-1 {
    background-image: url('./media/hero1.png');
}

.hero-slide-2 {
    background-image: url('./media/hero2.png');
}

.hero-slide-3 {
    background-image: url('./media/hero3.png');
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(10, 31, 61, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 31, 61, 0.5);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}

/* Carousel Indicators - Navy Blue Theme */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-light);
    box-shadow: 0 0 8px rgba(27, 58, 95, 0.6);
    transform: scale(1.2);
}

/* Carousel Controls - Navy Blue Theme */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 31, 61, 0.4);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Responsive Styles */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: 15px;
    }
}