/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    --primary-color: #0B3C5D;
    --accent-color: #D4AF37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-course {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    margin-top: auto;
}

.btn-course:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 12px 44px;
    font-size: 1.125rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0;
}

.logo-tagline {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-color);
    height: 3px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--accent-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* ============================================
   Hero Carousel Section
   ============================================ */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Hide radio inputs */
.carousel-container input[type="radio"] {
    display: none;
}

/* Slides container */
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 0s 1.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

/* Unique gradient backgrounds for each slide */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-1::after {
    background-image: url('../assets/01.webp');
}

.slide-2::after {
    background-image: url('../assets/03.webp');
}

.slide-3::after {
    background-image: url('../assets/05.webp');
}

.slide-4::after {
    background-image: url('../assets/07.webp');
}

.hero-overlay {
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Simplier Content Transitions */
@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes indicatorProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Show active slide with refined logic */
#slide1:checked~.hero-slides .slide-1,
#slide2:checked~.hero-slides .slide-2,
#slide3:checked~.hero-slides .slide-3,
#slide4:checked~.hero-slides .slide-4 {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}

#slide1:checked~.hero-slides .slide-1 .hero-content,
#slide2:checked~.hero-slides .slide-2 .hero-content,
#slide3:checked~.hero-slides .slide-3 .hero-content,
#slide4:checked~.hero-slides .slide-4 .hero-content {
    animation: contentSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Active Indicator Animation */
#slide1:checked~.carousel-indicators label[for="slide1"]::after,
#slide2:checked~.carousel-indicators label[for="slide2"]::after,
#slide3:checked~.carousel-indicators label[for="slide3"]::after,
#slide4:checked~.carousel-indicators label[for="slide4"]::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 3px;
    background: var(--accent-color);
    animation: indicatorProgress 5s linear forwards;
    border-radius: 2px;
}

/* Hero content - Simple & Clear */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.slide-badge {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.75rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-highlights li {
    color: var(--bg-white);
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-highlights li::before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: 900;
    margin-right: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c24d 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #e6c24d 0%, var(--accent-color) 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(212, 175, 55, 0.3);
}


/* Navigation Indicators Refined */
.carousel-indicators {
    position: absolute;
    bottom: 25px;
    /* Moved down to avoid overlapping buttons */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#slide1:checked~.carousel-indicators label[for="slide1"],
#slide2:checked~.carousel-indicators label[for="slide2"],
#slide3:checked~.carousel-indicators label[for="slide3"],
#slide4:checked~.carousel-indicators label[for="slide4"] {
    background: var(--accent-color);
    width: 50px;
}


/* ============================================
   Career Paths Section (Two Powerful Paths)
   ============================================ */
.career-paths {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.career-paths-header {
    text-align: center;
    margin-bottom: 2rem;
}

.career-paths-subtitle {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.path-card {
    background-color: var(--bg-white);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.path-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-color);
}

.path-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), #1a5c8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.path-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.path-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.path-benefits {
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.benefit-block {
    margin-bottom: 0.75rem;
}

.benefit-block h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.benefit-block p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

.income-streams {
    margin-top: 0.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
}

.income-streams li {
    font-size: 0.8rem;
    padding: 0.2rem 0;
    font-weight: 500;
}

.income-streams li::before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.path-conclusion {
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0.75rem 0 1rem;
    padding: 0.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.btn-path {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    width: 100%;
}

.btn-path:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* ============================================
   Courses Section
   ============================================ */
.courses {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.course-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5c8a 100%);
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.course-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.course-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.course-features li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.course-features li::before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-light);
}

/* Trainer Section */
.trainer-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.trainer-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5c8a 100%);
}

.trainer-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.trainer-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.trainer-expertise {
    margin-top: 1.5rem;
}

.trainer-expertise li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    font-weight: 500;
}

.trainer-expertise li::before {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* ============================================
   Placements Section
   ============================================ */
.placements {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5c8a 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--bg-white);
    font-size: 1.125rem;
    font-weight: 500;
}

.job-roles h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.role-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.role-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.salary-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.role-card p:last-child {
    color: var(--text-light);
    line-height: 1.7;
}

.placement-gallery h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.placement-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.placement-images img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.placement-images img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.placement-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Testimonials Section (Sliding Carousel)
   ============================================ */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.testimonial-slider-container {
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.testimonial-slider-container::before,
.testimonial-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.testimonial-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollTestimonials 40s linear infinite;
    padding-left: 2rem;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3 * 2));
        /* Scroll enough to loop seamlessly */
    }
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.75rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.reviewer-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.stars {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.85rem;
}


/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.benefit-box {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-box h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   FAQ Section (CSS-only Accordion)
   ============================================ */
.faq {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #0e4a6e;
}

.faq-arrow {
    transition: var(--transition);
    font-size: 1rem;
}

.faq-item input[type="checkbox"]:checked+.faq-question .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 2rem;
    color: var(--text-light);
    line-height: 1.8;
    background-color: var(--bg-light);
}

/* ============================================
   Placement Slider Animation
   ============================================ */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 6 - 2rem * 6));
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Placement Slider
   ============================================ */
.placement-slider {
    margin-top: 2rem;
    overflow: hidden;
}

.placement-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollTestimonials 35s linear infinite;
    padding-left: 2rem;
}

.placement-track:hover {
    animation-play-state: paused;
}

.placement-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.placement-card {
    background-color: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.placement-img-container {
    width: 160px;
    height: 160px;
    background-color: #f5f5f5;
    border-radius: 50%;
    /* Make circular */
    border: 4px solid var(--accent-color);
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.placement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.student-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.placement-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
    width: 100%;
    padding-left: 0.5rem;
}

.placement-info-list p {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.placement-info-list strong {
    color: var(--text-dark);
    font-weight: 700;
    margin-right: 4px;
}

/* ============================================
   Responsive Design & Mobile Menu
   ============================================ */

/* Mobile Navigation Implementation */
@media screen and (max-width: 991px) {
    .nav-toggle-label {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        padding: 50px;
    }

    .nav a {
        font-size: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Toggle Logic */
    .nav-toggle:checked~.nav {
        right: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(45deg);
        top: 0;
    }

    /* Body scroll lock when menu open */
    body:has(.nav-toggle:checked) {
        overflow: hidden;
    }
}

/* Tablet & Mobile Layout Enhancements */
@media screen and (max-width: 991px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card-wrapper {
        flex-direction: column;
    }

    .contact-info-side {
        flex: 1;
        padding: 40px;
    }

    .contact-form-side {
        padding: 40px;
    }

    .trainer-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .trainer-image img {
        min-height: auto;
        aspect-ratio: 4/3;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 5% 4rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-highlights {
        display: none;
        /* Hide to save space on mobile if overflowing */
    }

    .hero-highlights li {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 3rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .placement-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    /* Contact Form Responsive */
    .main-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .main-contact-form .form-group {
        margin-bottom: 1.5rem;
    }

    .radio-group {
        gap: 1rem;
    }

    .btn-send {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-slide {
        padding-top: 60px;
    }

    .slide-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .header {
        padding: 0.75rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.75rem;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 30px 20px;
    }

    .info-header h3 {
        font-size: 1.75rem;
    }

    .trainer-section {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .trainer-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ============================================
   Contact Section Specific Styles (Cleanup)
   ============================================ */
.contact-page-container {
    padding: 100px 0 80px;
    background-color: var(--bg-light);
    position: relative;
}

.contact-card-wrapper {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Side - Info */
.contact-info-side {
    flex: 0 0 40%;
    background-color: var(--primary-color);
    padding: 50px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
}

.decorative-circle {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.info-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.info-header p {
    opacity: 0.8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.detail-item:hover .icon-box {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.detail-text span {
    font-size: 0.875rem;
    opacity: 0.6;
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-text p {
    font-size: 1.1rem;
    font-weight: 500;
}

.social-connect {
    margin-top: 3rem;
}

.social-connect p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Right Side - Form */
.contact-form-side {
    flex: 1;
    padding: 50px;
}

.main-contact-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.main-contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-contact-form label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.main-contact-form input,
.main-contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.main-contact-form input:focus,
.main-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.radio-label input {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: var(--transition);
}

.radio-label input:checked+.radio-custom {
    border-color: var(--accent-color);
}

.radio-label input:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.btn-send {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(11, 60, 93, 0.2);
}

.btn-send:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Map Section Cleanup */
.map-container {
    line-height: 0;
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1);
}