/* Modern Design System - Zalomi Academy */
:root {
    /* Color Palette */
    --primary: #0077b6;
    /* Deep Ocean Blue */
    --primary-light: #48cae4;
    /* Sky Blue */
    --primary-dark: #023e8a;
    /* Navy */
    --secondary: #f3722c;
    /* Modern Orange */
    --secondary-hover: 0077b6;
    /* Red-Orange */

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --grad-secondary: linear-gradient(135deg, var(--secondary) 0%, #f9c74f 100%);

    /* Backgrounds */
    --bg-body: #f8f9fa;
    --bg-white: #ffffff;
    --bg-light: #e9ecef;
    --bg-glass: rgba(255, 255, 255, 0.9);

    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --text-main: #212529;
    --text-light: #6c757d;
    --text-white: #ffffff;

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Header --- */
header {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 119, 182, 0.08);
    transform: translateY(-2px);
}

.nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(0, 119, 182, 0.12);
    font-weight: 600;
}

.nav-link.active i {
    opacity: 1;
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-phone {
    background: var(--grad-primary);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.4);
}

.nav-phone a {
    color: white !important;
    font-weight: 600;
}


.nav-phone  .fas {

    rotate: 90deg;

}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('../Images/slider-03-a (1).jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 62, 138, 0.8) 0%, rgba(33, 37, 41, 0.6) 100%);
    backdrop-filter: blur(2px);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 35px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 8px 20px rgba(243, 114, 44, 0.4);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* --- Features Section --- */
.features {
    padding: 100px 20px;
    background: var(--bg-body);
}

.section-title,
.section-title-2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- Course Syllabus --- */
.course-syllabus {
    padding: 100px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.course-syllabus::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 50%;
}

.syllabus-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.syllabus-swiper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 50px;
}

.courseSwiper {
    padding: 20px 20px 50px !important;
}

.course-card-box {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* No hover scale on the box itself if it causes layout shift in swiper, mostly shadow */
.course-card-box:hover {
    box-shadow: var(--shadow-lg);
}

.course-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.course-name {
    font-size: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.course-location-badge {
    background: var(--grad-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 5px;
}

.course-duration {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 100px;
}

.duration-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.duration-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.syllabus-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.syllabus-subtitle::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--secondary);
}

.view-more-btn {
    background: var(--grad-primary);
    color: white;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.view-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* --- Why Choose Us --- */
.why-choose {
    padding: 100px 20px;
    background: var(--bg-light);
}

.why-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.why-item {
    margin-bottom: 25px;
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.why-item h4 i {
    color: var(--secondary);
}

.why-item p {
    color: var(--text-light);
    padding-left: 30px;
    font-size: 0.95rem;
}

.why-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.badge {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--primary);
}

.badge:hover i,
.badge:hover h4 {
    color: white;
}

.badge i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: 0.3s;
}

.badge h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    transition: 0.3s;
}

/* --- About Section --- */
.about {
    padding: 100px 20px;
    background: white;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title-large {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
}

.about-title-academy {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.mv-card {
    background: var(--bg-body);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mv-card h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}
/* --- Testimonials --- */
.testimonials {
    padding: 100px 20px;
    background: var(--bg-body);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.stars {
    color: #ffb703;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
/* --- CTA Section --- */
.cta-section {
    padding: 100px 20px;
    background: var(--grad-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content .btn {
    background: white;
    color: var(--primary);
    margin-top: 15px;
    box-shadow: var(--shadow-md);
}

.cta-content .btn:hover {
    background: var(--bg-body);
    transform: translateY(-3px);
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 20px;
    background: white;
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: white;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-details a {
    color: var(--text-light);
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-body);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    transition: 0.3s;
    background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.contact-form .submit-btn {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(243, 114, 44, 0.3);
}

.contact-form .submit-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 114, 44, 0.4);
}

/* --- Footer --- */
footer {
    background: #111;
    color: #eee;
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links li a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive */
@media (max-width: 970px) {

    .header-container,
    .why-container,
    .about-container,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .mobile-menu {
        display: block;
    }

    nav.main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 10px;
    }

    nav.main-nav.nav-mobile {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        border-left: 4px solid var(--primary);
        background: rgba(0, 119, 182, 0.1);
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
    }

    /* Testimonials Section - Tablet Responsive */
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}

/* Mobile Design Improvements */
@media (max-width: 768px) {

    /* Hero Section - Better Mobile Spacing */
    .hero {
        height: 70vh;
        min-height: 500px;
        padding: 20px;
    }

    .hero-container {
        padding: 15px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* Button Size Reduction */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Navigation Phone Button */
    .nav-phone {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Section Padding Reduction */
    .features,
    .course-syllabus,
    .why-choose,
    .about,
    .testimonials,
    .cta-section,
    .contact-section {
        padding: 60px 15px;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-title,
    .section-title-2,
    .syllabus-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    /* Testimonials Section - Mobile Responsive */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-header {
        gap: 12px;
        margin-bottom: 15px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-info h4 {
        font-size: 0.95rem;
    }

    .testimonial-info p {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stars {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 25px 20px;
    }

    /* Course Cards */
    .course-card-box {
        padding: 25px 20px;
    }

    /* Course Card - Center All Content on Mobile */
    .course-card-box {
        text-align: center;
        align-items: center;
    }

    /* Course Header - Mobile Alignment Fix */
    .course-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        width: 100%;
    }

    .course-title-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .course-location-badge {
        margin-top: 8px;
    }

    /* Orange Duration Box - Better Flex Alignment */
    .course-duration {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-self: center;
        min-width: auto;
        width: auto;
        padding: 10px 20px;
        margin: 0 auto;
    }

    .duration-value {
        font-size: 1.5rem;
        text-align: center;
    }

    .duration-label {
        font-size: 0.7rem;
        text-align: center;
    }

    /* Course Syllabus Content - Center on Mobile */
    .course-syllabus-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Syllabus Subtitle - Center on Mobile */
    .syllabus-subtitle {
        justify-content: center;
    }

    /* Syllabus List - Center on Mobile */
    .syllabus-list {
        text-align: left;
        display: inline-block;
        width: 100%;
        max-width: 100%;
    }

    .syllabus-list li {
        text-align: left;
    }

    /* View More Button - Center on Mobile */
    .view-more-btn {
        align-self: center;
        margin-top: 20px;
    }

    /* Submit Buttons */
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }

    /* Apply Button */
    .course-details-hero .apply-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Back Button */
    .back-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* View More Button */
    .view-more-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Registration Container */
    .registration-container {
        padding: 30px 20px;
    }

    /* Form Inputs - Better Padding */
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Course Info Bar */
    .course-info-bar {
        padding: 25px 15px;
        margin-top: -30px;
    }

    .course-info-container {
        gap: 20px;
    }

    /* Module Cards */
    .module-card {
        padding: 25px 20px;
    }

    /* Module Topic Text - Mobile Font Size */
    .module-topic span {
        font-size: 18px;
    }

    /* Module Title - Mobile Font Size */
    .module-title {
        font-size: 1.25rem;
    }

    /* Module Header - Mobile Flex Direction */
    .module-header {
        display: flex;
        flex-direction: row;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content .btn {
        padding: 12px 24px;
    }

    /* About Title Academy - Mobile Font Size */
    .about-title-academy {
        font-size: 32px;
    }

    /* Course Name - Mobile Font Size */
    .course-name {
        font-size: 19px;
        text-align: center;
    }

    /* Course Details Hero Title - Mobile Font Size */
    .course-details-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile */
    .hero {
        height: 65vh;
        min-height: 450px;
        padding: 15px;
    }

    .why-content h2 {

        font-size: 32px;

    }



    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .section-title,
    .section-title-2,
    .syllabus-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .features,
    .course-syllabus,
    .why-choose,
    .about,
    .testimonials,
    .cta-section,
    .contact-section {
        padding: 50px 12px;
    }

    /* Testimonials Section - Extra Small Mobile Responsive */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }

    .testimonial-info h4 {
        font-size: 0.9rem;
    }

    .testimonial-info p {
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .stars {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .course-card-box {
        padding: 20px 15px;
    }

    /* Course Header - Extra Small Mobile Alignment */
    .course-header {
        gap: 12px;
        margin-bottom: 18px;
        align-items: center;
    }

    .course-title-group {
        align-items: center;
    }

    .course-duration {
        padding: 8px 15px;
        align-items: center;
        justify-content: center;
    }

    .duration-value {
        font-size: 1.3rem;
        text-align: center;
    }

    .duration-label {
        text-align: center;
    }

    .registration-container {
        padding: 25px 15px;
    }

    /* About Title Academy - Extra Small Mobile */
    .about-title-academy {
        font-size: 32px;
    }

    /* Course Name - Extra Small Mobile */
    .course-name {
        font-size: 22px;
        margin-bottom: 12px;
    }

    /* Course Details Hero Title - Extra Small Mobile */
    .course-details-hero h1 {
        font-size: 1.5rem;
    }

    /* Module Topic Text - Extra Small Mobile */
    .module-topic span {
        font-size: 18px;
    }

    /* Module Title - Extra Small Mobile */
    .module-title {
        font-size: 22px;
        line-height: 1.5;
    }

    /* Module Header - Extra Small Mobile Flex Direction */
    .module-header {
        display: flex;
        flex-direction: row;
    }
}

/* --- Course Details Page Styles --- */

.course-details-hero {
    background: var(--grad-primary);
    padding: 140px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.course-details-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.course-details-hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.course-details-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.course-details-hero .apply-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 45px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.course-details-hero .apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--secondary);
    color: white;
}

.course-info-bar {
    background: white;
    padding: 40px 20px;
    box-shadow: var(--shadow-md);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.course-info-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.course-info-item {
    text-align: center;
}

.course-info-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.course-info-item span {
    display: block;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
}

.course-description-section {
    margin-top: 30px;
    padding: 100px 20px;
    background: white;
}

.course-description-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.course-description-container h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.course-description-container p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.course-modules-section {
    padding: 100px 20px;
    background: var(--bg-body);
}

.modules-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.module-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.module-badge {
    background: var(--grad-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
}

.module-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-topic {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.module-topic:hover {
    background: rgba(0, 119, 182, 0.04);
}

.module-topic i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 5px;
    background: rgba(243, 114, 44, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-topic span {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.registration-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.registration-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.registration-container h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 15px;
}

.registration-container p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(243, 114, 44, 0.3);
}

.submit-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary);
}

.back-btn:hover {
    max-width: var(--container-width);
    margin: 0 auto;
}

.course-description-container h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.course-description-container p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.course-modules-section {
    padding: 100px 20px;
    background: var(--bg-body);
}

.modules-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.module-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.module-badge {
    background: var(--grad-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
}

.module-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-topic {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.module-topic:hover {
    background: rgba(0, 119, 182, 0.04);
}

.module-topic i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 5px;
    background: rgba(243, 114, 44, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-topic span {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.registration-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.registration-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 25px 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.registration-container h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 15px;
}

.registration-container p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(243, 114, 44, 0.3);
}

.submit-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary);
}

.back-btn:hover {
    background: var(--primary);
    color: white;
}

/* Course Details Mobile Styles - Already handled in main mobile query above */

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Registration Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-light);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.close-modal:hover {
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    padding-right: 40px;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content .form-group input,
.modal-content .form-group textarea,
.modal-content .form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    transition: 0.3s;
    background-color: var(--bg-white);
}

.modal-content .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230077b6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.modal-content .form-group input:focus,
.modal-content .form-group textarea:focus,
.modal-content .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.modal-content .submit-btn {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(243, 114, 44, 0.3);
    margin-top: 10px;
}

.modal-content .submit-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 114, 44, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 20px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 30px;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 30px;
        height: 30px;
    }
}

/* --- Page Banner Styles --- */
.page-banner {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, rgba(2, 62, 138, 0.9) 0%, rgba(0, 119, 182, 0.8) 100%), url('../Images/slider-03-a (1).jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* margin-top: 70px; */
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Breadcrumb Styles --- */
.breadcrumb {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #1ba6ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.breadcrumb span {
    color: #999;
}

.breadcrumb span i {
    font-size: 0.75rem;
}

/* Responsive Banner & Breadcrumb */
@media (max-width: 768px) {
    .page-banner {
        height: 250px;
        /* margin-top: 60px; */
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .breadcrumb-container {
        font-size: 0.85rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {

    .logo img {
        height: 32px;
        width: auto;
    }
    .page-banner {
        height: 200px;
        /* margin-top: 60px; */
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-container {
        font-size: 0.8rem;
        gap: 8px;
    }
}


