/* ========================================
   BASE STYLES - Global for all pages
   ======================================== */
:root {
    --primary-blue: #0489DA;
    --dark-blue: #0C5F9A;
    --navy-blue: #0F385F;
    --gold: #B6873C;
    --dark: #182330;
    --black: #000000;
    --light-bg: #f6f7fb;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
     HEADER & FOOTER (global)
     ======================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--gold);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer ul li:hover {
    color: var(--gold);
}

.footer img {
    height: 60px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* ========================================
     BUTTONS & UTILITIES (global)
     ======================================== */
.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gold);
}

.btn-secondary:hover {
    background: #9e6f2e;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.section-title span {
    color: var(--primary-blue);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

.section-sub {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 18px;
}

/* ========================================
     HOME PAGE SPECIFIC STYLES
     ======================================== */

/* ========================================
   HERO SLIDER FIXED
   ======================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    color: #fff;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 600px;
    padding: 0 20px;
    margin-left: 10%;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Navigation dots */

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: #fff;
}

/* Arrows */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ========================================
   ABOUT SECTION FIX
   ======================================== */

.about-section {
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 80px 0;
    margin-top: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content span {
    color: #0489DA;
}

.about-content p {
    margin-bottom: 30px;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: #0489DA;
}

.stat-box p {
    font-size: 14px;
    color: #777;
}


/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px){

.hero-slider{
height:70vh;
}

.slide-content h1{
font-size:28px;
}

.about-grid{
grid-template-columns:1fr;
}

.stats{
grid-template-columns: repeat(2,1fr);
}

}

/* Services Section (home) */
.services-section {
    background: var(--white);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-card a:hover {
    color: var(--dark-blue);
}

/* Team Section (home) */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.team-text p {
    color: var(--gray);
    margin-bottom: 30px;
}

.team-images img {
    width: 100%;
    border-radius: 10px;
}

/* Partners Section (home) */
.partners {
    background: var(--white);
    padding: 60px 0;
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partners-logos img {
    height: 60px;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.partners-logos img:hover {
    filter: grayscale(0);
}

/* Products Section (home) */
.products {
    padding: 80px 0;
}

.product-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.product-list ul {
    list-style: none;
}

.product-list ul li {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--navy-blue);
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.product-diagram img {
    max-width: 400px;
}

/* Industries Section (home) */
.industries {
    background: var(--light-bg);
    padding: 80px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: scale(1.05);
}

.industry-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 18px;
}

/* Testimonials Section (added to home) */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i {
    font-size: 30px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color: var(--navy-blue);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section (added to home) */
.cta-section {
    background: linear-gradient(135deg, var(--navy-blue), var(--primary-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--navy-blue);
}

.cta-section .btn-primary:hover {
    background: var(--gold);
    color: var(--white);
}

/* ========================================
     ABOUT PAGE SPECIFIC STYLES
     ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--primary-blue));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h3 {
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.team-members {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-card h4 {
    margin: 20px 0 5px;
    color: var(--navy-blue);
}

.member-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ========================================
     SERVICES PAGE SPECIFIC STYLES
     ======================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-detail-card h3 {
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.service-detail-card p {
    color: var(--gray);
}

/* ========================================
     COURSES PAGE SPECIFIC STYLES
     ======================================== */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-info {
    padding: 25px;
}

.course-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.course-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.syllabus {
    list-style: none;
    margin: 15px 0;
}

.syllabus li {
    padding: 5px 0;
    border-bottom: 1px dashed var(--light-gray);
}

.batch-details {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.batch-details p {
    margin: 5px 0;
    color: var(--dark);
}

.enroll-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s;
}

.enroll-btn:hover {
    background: #9e6f2e;
}

/* ========================================
     TRAINING PAGE SPECIFIC STYLES
     ======================================== */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.training-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.training-card:hover {
    transform: translateY(-5px);
}

.training-info {
    padding: 25px;
}

.training-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.training-info p {
    color: var(--gray);
    margin-bottom: 10px;
}

/* ========================================
     JOB PLACEMENT PAGE SPECIFIC STYLES
     ======================================== */
.placement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.placement-text h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.placement-text ul {
    list-style: none;
    margin: 20px 0;
}

.placement-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.placement-text ul li i {
    color: var(--gold);
    margin-right: 10px;
}

.placement-image img {
    width: 100%;
    border-radius: 10px;
}

.partners-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.partners-list img {
    height: 50px;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.partners-list img:hover {
    filter: grayscale(0);
}

/* ========================================
     PRICING PAGE SPECIFIC STYLES
     ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(182, 135, 60, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.price {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: var(--gray);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-card .btn-primary {
    width: 100%;
}

/* ========================================
     CONTACT PAGE SPECIFIC STYLES
     ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 20px;
    color: var(--primary-blue);
    width: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    height: 120px;
}

.map {
    margin: 40px 0;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

/* ========================================
     PRIVACY & TERMS PAGES
     ======================================== */
.policy-content {
    padding: 60px 0;
}

.policy-content h2 {
    color: var(--navy-blue);
    margin: 40px 0 20px;
}

.policy-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ========================================
     RESPONSIVE STYLES
     ======================================== */
@media (max-width: 992px) {

    .services-grid,
    .industry-grid,
    .pricing-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .team-grid,
    .story-grid,
    .placement-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-layout {
        flex-direction: column;
        text-align: center;
    }

    .product-list ul li {
        border-left: none;
        border-bottom: 2px solid var(--gold);
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .industry-grid,
    .pricing-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ========================================
   UPCOMING BATCHES SECTION
   ======================================== */
.upcoming-batches {
    padding: 80px 0;
    background: var(--light-bg);
}

.batches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.batch-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.batch-card:hover {
    transform: translateY(-5px);
}

.batch-card h4 {
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.batch-card p {
    margin-bottom: 10px;
    color: var(--gray);
}

.batch-card p i {
    color: var(--primary-blue);
    width: 25px;
}

.batch-card .btn-secondary {
    margin-top: 20px;
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.batch-card .btn-secondary:hover {
    background: #9e6f2e;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--navy-blue);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* adjust as needed */
    padding: 20px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #9e6f2e;
}

/* ========================================
   TESTIMONIAL CAROUSEL STYLES
   ======================================== */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-slide {
    flex: 0 0 100%;
    /* Default: 1 slide on mobile */
    padding: 0 10px;
    box-sizing: border-box;
}

/* Desktop: show 3 slides */
@media (min-width: 769px) {
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--primary-blue);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ======================================== */
@media (max-width: 992px) {

    .features-grid,
    .batches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .features-grid,
    .batches-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .faq-question h4 {
        font-size: 16px;
    }
}


/* ========================================
   MOBILE MENU STYLES
   ======================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    /* Adjust header flex for mobile */
    .header-flex {
        position: relative;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Adjust container padding for very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .team-text h2 {
        font-size: 32px;
    }

    .product-list ul li {
        font-size: 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-detail {
        flex-direction: column;
        text-align: center;
    }
}






/* ========================================
   ABOUT PAGE - VALUES SECTION
   ======================================== */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.value-card h4 {
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.value-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-blue);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
}

.timeline-content h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(0);
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

/* ========================================
   WHY WORK WITH US SECTION
   ======================================== */
.why-work-section {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-item i {
    font-size: 30px;
    color: var(--primary-blue);
}

.why-item h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.why-item p {
    color: var(--gray);
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICES PAGE - PROCESS STEPS
   ======================================== */
.process-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h4 {
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.step p {
    color: var(--gray);
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CASE STUDIES
   ======================================== */
.case-studies {
    padding: 80px 0;
    background: var(--white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h4 {
    padding: 20px 20px 10px;
    color: var(--navy-blue);
}

.case-card p {
    padding: 0 20px 20px;
    color: var(--gray);
}

.case-card .read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRODUCTS PAGE - FEATURES & DEMO
   ======================================== */
.product-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-products {
    padding: 80px 0;
    background: var(--white);
}

.demo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

.demo-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.demo-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   COURSES PAGE - LEARNING PATHS & INSTRUCTORS
   ======================================== */
.learning-paths {
    padding: 80px 0;
    background: var(--light-bg);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.path-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.path-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.path-card h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.path-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.path-card span {
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.instructors {
    padding: 80px 0;
    background: var(--white);
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.instructor-card {
    text-align: center;
}

.instructor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.instructor-card h4 {
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.instructor-card p {
    color: var(--gray);
}

@media (max-width: 768px) {

    .paths-grid,
    .instructor-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   JOB PLACEMENT PAGE - SUCCESS STORIES & PROCESS
   ======================================== */
.success-stories {
    padding: 80px 0;
    background: var(--light-bg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.story-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.story-card h4 {
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.story-card p {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

.story-card span {
    color: var(--gray);
    font-style: italic;
}

.process-flow {
    padding: 80px 0;
    background: var(--white);
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.flow-step {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resources {
    padding: 80px 0;
    background: var(--light-bg);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.resource-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.resource-card h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.download-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {

    .stories-grid,
    .flow-steps,
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRICING PAGE - GUARANTEE & CUSTOM QUOTE
   ======================================== */
.guarantee-section {
    padding: 60px 0;
    background: var(--white);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid var(--gold);
}

.guarantee-box i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.guarantee-box h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.guarantee-box p {
    color: var(--gray);
}

.custom-quote {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.custom-quote h2 {
    margin-bottom: 15px;
}

.custom-quote p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   CONTACT PAGE - HOURS & SOCIAL
   ======================================== */
.office-hours {
    padding: 60px 0;
    background: var(--light-bg);
}

.hours-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-box,
.social-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.hours-box h3,
.social-box h3 {
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--dark-blue);
}

.quick-faq {
    padding: 60px 0;
    background: var(--white);
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.faq-mini-grid div {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.faq-mini-grid strong {
    color: var(--navy-blue);
}

@media (max-width: 768px) {

    .hours-social-grid,
    .faq-mini-grid {
        grid-template-columns: 1fr;
    }
}





/* ========================================
   HOME PAGE - IMPACT SECTION
   ======================================== */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.impact-section .section-title,
.impact-section .section-sub {
    color: var(--white);
}

.impact-section .section-title::after {
    background: var(--gold);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.impact-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FEATURED CLIENTS CAROUSEL
   ======================================== */
.featured-clients {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.client-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.client-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 12);
    /* 6 logos * 2 duplicates * 200px width */
}

.client-slide {
    flex: 0 0 200px;
    height: 100px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-slide img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.client-slide img:hover {
    filter: grayscale(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6));
    }

    /* half of total width */
}

/* Pause animation on hover */
.client-carousel:hover .client-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .client-slide {
        flex: 0 0 150px;
    }

    .client-track {
        width: calc(150px * 12);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 6));
        }
    }
}

/* ========================================
   LATEST INSIGHTS
   ======================================== */
.insights-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 25px;
}

.insight-content .date {
    font-size: 14px;
    color: var(--gray);
    display: block;
    margin-bottom: 10px;
}

.insight-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-blue);
    line-height: 1.4;
}

.insight-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.insight-content .read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all .btn-secondary {
    background: var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.view-all .btn-secondary:hover {
    background: #9e6f2e;
}

@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GET IN TOUCH BANNER
   ======================================== */
.touch-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, #c99c4a 100%);
    color: var(--white);
    text-align: center;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.touch-banner .btn-primary {
    background: var(--navy-blue);
    color: var(--white);
    border: none;
}

.touch-banner .btn-primary:hover {
    background: var(--dark-blue);
}