* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Updated Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 40px; /* Increased gap from 30px to 40px */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #573606; /* Brown color */
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #F4D408;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #F4D408;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-login {
    display: flex;
    align-items: center;
}

.login-btn {
    background: transparent; /* Changed from brown background to transparent */
    color: #573606; /* Changed to match navlinks color */
    padding: 8px 20px; /* Reduced padding to match navlinks */
    border: 2px solid #573606; /* Added border to match navlinks style */
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    /* Removed box-shadow to match navlinks */
}

.login-btn:hover {
    background: #573606; /* Brown background on hover */
    color: #F4D408; /* Yellow text on hover */
    transform: translateY(-2px);
    border-color: #573606; /* Ensure border matches background */
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #573606;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-links {
        gap: 30px; /* Slightly reduced gap for smaller screens */
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
    
    .login-btn {
        font-size: 15px;
        padding: 6px 18px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 15px; /* Reduced gap for mobile */
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .nav-login {
        margin-left: auto;
        margin-right: 15px;
    }
    
    /* Include login button in mobile menu */
    .nav-links.active + .nav-login {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 40px;
    }
    
    .login-btn {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .nav-links {
        gap: 10px; /* Further reduced gap for very small screens */
    }
}

/* Updated Hero Section with Two-Line Title */
.hero-section {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
     font-size: 3rem;
    font-weight: 600;
    color: #F4D408;
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
    width: 100%;
}

.hero-title .line-1 {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
}


.hero-subtitle {
    font-size: 1.1rem;
    color: #013635;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%; /* Slightly increased width */
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    max-width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px;
    background: rgba(244, 212, 8, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(244, 212, 8, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 10px;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-item span {
    color: #573606;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 80px 0;
}

.cta-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 5%;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #F4D408;
    margin-bottom: 30px;
    text-align: left;
    max-width: 600px; /* Constrain width to force natural line breaks */
    line-height: 1.2;
}

.cta-button {
    background: #573606;
    color: #F4D408;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0;
}

.cta-button:hover {
    background: #3d2404;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        align-items: center;
        margin-left: 0;
    }
    
    .cta-content h2 {
        text-align: center;
        max-width: 100%;
    }
    
    .cta-button {
        margin: 0 auto;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -40px;
}

.image-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for Two-Line Title */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .hero-title {
        max-width: 100%; /* Full width on larger tablets */
    }
    
    .image-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        max-width: 90%; /* Controlled width for centered layout */
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3; /* Slightly increased for better readability */
    }
    
    .hero-subtitle {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        margin: 0 auto;
    }
    
    .image-circle {
        width: 320px;
        height: 320px;
        margin-top: 0;
    }
    
    .hero-image {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        max-width: 95%;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .image-circle {
        width: 280px;
        height: 280px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        max-width: 100%;
        line-height: 1.3; /* More relaxed line-height on mobile */
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .image-circle {
        width: 250px;
        height: 250px;
    }
    
    .hero-features {
        max-width: 100%;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.35;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Updated Section Titles Throughout the Site */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Reduced section title size */
    font-weight: 800;
    color: #F4D408;
    text-align: center;
    margin-bottom: 30px; /* Reduced margin */
    max-width: 90%; /* Increased width */
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Reduced header title size */
    font-weight: 800;
    color: #F4D408;
    margin-bottom: 15px;
    max-width: 90%; /* Increased width */
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.1rem; /* Reduced subtitle size */
    color: #573606;
    max-width: 80%; /* Increased width */
    margin-left: auto;
    margin-right: auto;
}

/* Updated Card Titles */
.card-content h3 {
    font-size: 1.7rem; /* Reduced card title size */
    font-weight: 700;
    color: #B36B00;
    margin-bottom: 18px; /* Reduced margin */
    background: linear-gradient(135deg, #B36B00, #AD7B2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-content h3 {
    font-size: 1.3rem; /* Reduced course title size */
    font-weight: 700;
    color: #573606;
    margin-bottom: 12px; /* Reduced margin */
}

.different-card h3 {
    font-size: 1.2rem; /* Reduced different card title size */
    font-weight: 700;
    color: #573606;
    margin-bottom: 8px; /* Reduced margin */
}

.audience-card h3 {
    font-size: 1.1rem; /* Reduced audience card title size */
    font-weight: 700;
    color: #573606;
}

/* Updated CTA Section Title */
.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Reduced CTA title size */
    font-weight: 700;
    color: #F4D408;
    margin-bottom: 25px; /* Reduced margin */
    max-width: 90%; /* Increased width */
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .image-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-features,
    .cta-section {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        margin: 0 auto;
    }
    
    .image-circle {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .image-circle {
        width: 280px;
        height: 280px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .section-title,
    .section-header h2 {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem; /* Further reduced on mobile */
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .image-circle {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 1.6rem; /* Further reduced on mobile */
    }
}

/* Section Titles */
/* .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #F4D408;
    text-align: center;
    margin-bottom: 50px;
} */

/* Certifications Section */
.certifications-section {
    background: #ffffff;
    padding: 80px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    background: #F7FAFD;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    margin-bottom: 20px;
}

.cert-icon img {
    height: 60px;
    object-fit: contain;
}

.cert-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #573606;
    line-height: 1.4;
}

/* Responsive Design for Certifications Section */
@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* Alumni Section */
.alumni-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E3F2FD 100%);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #F4D408;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #573606;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.stars {
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #013635;
    margin-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #573606;
    font-size: 1rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #573606;
    background: #ffffff;
    color: #573606;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover,
.nav-btn.active {
    background: #573606;
    color: #ffffff;
}

/* Founder Section */
.founder-section {
    background: #ffffff;
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #013635;
}

.founder-text p {
    margin-bottom: 20px;
}

.learn-section {
            background: #F8F9FA;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .learn-cards-container {
            position: relative;
    height: auto; /* Changed from 1500px to auto */
    margin-top: 30px; /* Reduced from 50px */
    min-height: 400px; /* Added minimum height for overlap effect */
        }
        
        .learn-card {
            position: sticky;
            top: 100px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 40px;
            transition: all 0.5s ease;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(50px);
            z-index: 1;
        }
        
        .learn-card.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .learn-card.main-card {
            z-index: 3;
        }
        
        .learn-card:nth-child(2) {
            z-index: 2;
        }
        
        .learn-card:nth-child(3) {
            z-index: 1;
        }
        
        .learn-card:nth-child(even) {
            flex-direction: row-reverse;
            background: rgba(248, 250, 252, 0.95);
        }
        
        .card-image {
            flex: 1;
            min-width: 300px;
            transition: transform 0.5s ease;
        }
        
        .card-image img {
            width: 100%;
            max-width: 350px;
            border-radius: 16px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .learn-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            flex: 2;
        }
        
        .card-content h3 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #B36B00;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #B36B00, #AD7B2F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .card-content p {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.7;
        }
        
        /* Overlap effect on scroll */
        .learn-card.scrolled {
            transform: scale(0.95) translateY(-20px);
            opacity: 0.7;
        }
        
        .learn-card.scrolled.main-card {
            transform: scale(0.9) translateY(-40px);
            opacity: 0.5;
        }
        
        /* Responsive design for overlap effect */
        @media (max-width: 1024px) {
            .learn-card {
                flex-direction: column !important;
                text-align: center;
            }
            
            .card-image {
                min-width: auto;
            }
            
            .learn-cards-container {
                height: 1800px; /* Adjust height for mobile */
            }
        }
        
        @media (max-width: 768px) {
            .learn-cards-container {
                height: 2000px; /* Further adjust for smaller screens */
            }
            
            .learn-card {
                padding: 20px;
                gap: 20px;
            }
            
            .card-content h3 {
                font-size: 1.5rem;
            }
        }

/* Different Section */
.different-section {
    background: #ffffff;
    padding: 60px 0;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.different-card {
    background: #F7FAFD;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.different-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    height: 50px;
    object-fit: contain;
}

.different-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #573606;
    margin-bottom: 10px;
}

.different-card p {
    color: #573606;
    font-size: 1rem;
}

/* Target Audience Section */
.target-audience {
    background: #F8F9FA;
    padding: 80px 0;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.audience-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4D408;
}

.audience-card .card-icon img {
    height: 50px;
}

.audience-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #573606;
}

/* Join Our Program Button */
.join-program-container {
    text-align: center;
    margin-top: 60px;
}

.join-program-btn {
    background: #573606;
    color: #F4D408;
    padding: 18px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.join-program-btn:hover {
    background: #3d2404;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Target Audience Section */
@media (max-width: 768px) {
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .join-program-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

/* Courses Section */
.courses-section {
    background: #ffffff;
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: #F7FAFD;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #573606;
    color: #F7FAFD;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.course-badge.trending {
    background: #F4D408;
    color: #573606;
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #573606;
    margin-bottom: 15px;
}

.course-content p {
    color: #013635;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-btn {
    background: #EAB308;
    color: #573606;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: #F4D408;
    transform: translateY(-2px);
}

/* View All Courses Button */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: #573606;
    color: #F4D408;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.view-all-btn:hover {
    background: #3d2404;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Courses Section */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: #573606;
}

.faq-arrow {
    font-size: 1.5rem;
    color: #573606;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #573606;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #F4D408;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.cta-button {
    background: #573606;
    color: #F4D408;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.cta-button:hover {
    background: #3d2404;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #ffffff;
    color: #573606;
    padding: 60px 0 30px;
    border-top: 2px solid #F4D408;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.footer-column h4 {
    color: #F4D408;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #573606;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #F4D408;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: #F4D408;
    font-size: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #F4D408;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #573606;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #EAB308;
    transform: translateY(-2px);
    color: #573606;
}

.footer-bottom {
    border-top: 1px solid #F4D408;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
   display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a,
.footer-copyright {
    color: #573606;
    text-decoration: none;
    font-weight: 500;
}

.footer-legal a:hover {
    color: #F4D408;
}

.footer-copyright {
    text-align: center;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .learn-card {
        flex-direction: column !important;
        text-align: center;
    }
    
    .card-image {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .certifications-grid,
    .different-grid,
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .learn-card {
        padding: 20px;
        gap: 20px;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}