* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #f97316;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}


.btn-outline.btn-hero {
    background: rgb(0 0 0 / 5%);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #f97316;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f97316;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary {
    background: #f97316;
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* Enhanced blink/pulse for Apply Now button */
#applyNowBtn {
    animation: btnBlink 1.2s ease-in-out infinite !important;
    position: relative;
    overflow: visible;
}

#applyNowBtn::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    opacity: 0;
    animation: ringPulse 1.8s ease-out infinite !important;
}

@keyframes btnBlink {

    0%,
    100% {
        background: #f97316;
        /* Orange */
        color: white;
        box-shadow: 0 0 0 rgba(249, 115, 22, 0);
        transform: scale(1);
    }

    50% {
        background: #fbbf24;
        /* Yellow */
        color: #1a1a1a;
        /* Dark text for yellow background */
        box-shadow: 0 16px 40px rgba(251, 191, 36, 0.7);
        transform: scale(1.02);
    }
}

@keyframes ringPulse {
    0% {
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    }

    70% {
        opacity: 0;
        box-shadow: 0 0 0 25px rgba(249, 115, 22, 0);
    }

    100% {
        opacity: 0;
        box-shadow: 0 0 0 25px rgba(249, 115, 22, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

/* Ambient floating bubbles for hero background */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(120px 120px at 10% 20%, rgba(249, 115, 22, 0.20), rgba(249, 115, 22, 0) 60%),
        radial-gradient(140px 140px at 85% 25%, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0) 60%),
        radial-gradient(160px 160px at 20% 80%, rgba(251, 146, 60, 0.16), rgba(251, 146, 60, 0) 60%),
        radial-gradient(110px 110px at 75% 75%, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0) 60%);
    background-repeat: no-repeat;
    animation: heroDrift 14s ease-in-out infinite alternate;
    opacity: 0.8;
    z-index: 1;
    will-change: background-position;
}

@keyframes heroDrift {
    0% {
        background-position:
            8% 18%,
            82% 22%,
            18% 78%,
            72% 72%;
    }

    50% {
        background-position:
            15% 28%,
            78% 18%,
            24% 70%,
            68% 80%;
    }

    100% {
        background-position:
            12% 24%,
            86% 30%,
            28% 86%,
            80% 68%;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    #applyNowBtn {
        animation: none;
    }

    .hero::after {
        animation: none;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.study-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.study-badge i {
    color: #fbbf24;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}




.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expert-profile-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.expert-photo-container {
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
}

.expert-photo-frame {
    position: relative;
    display: inline-block;
}

.expert-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
}

.expert-photo:hover {
    transform: scale(1.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1) contrast(1.15);
}

.expert-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.15));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.expert-photo:hover .expert-photo-overlay {
    opacity: 0.8;
}

.expert-credentials {
    position: absolute;
    bottom: 40px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential-badge {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.credential-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
}

.credential-badge i {
    font-size: 16px;
}

.expert-details {
    margin-top: 30px;
}



.expert-profile-header {
    text-align: center;
}

.expert-name {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: none;
    letter-spacing: 2px;
}

.expert-designation {
    font-size: 1.3rem;
    color: #ebebeb;
    font-weight: 600;
    line-height: 1.4;
}

.expert-specialties {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.specialty-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.expert-description {
    text-align: center;
}

.expert-description p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive design for expert profile section */
@media (max-width: 768px) {
    .expert-profile-section {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .expert-photo {
        width: 280px;
        height: 280px;
    }
    
    .expert-credentials {
        bottom: 20px;
        right: -15px;
        gap: 8px;
    }
    
    .credential-badge {
        padding: 8px 12px;
        font-size: 11px;
    }
    

    
    .expert-name {
        font-size: 2.5rem;
    }
    
    .expert-designation {
        font-size: 1.1rem;
    }
    
    .expert-specialties {
        gap: 8px;
    }
    
    .specialty-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .expert-photo {
        width: 250px;
        height: 250px;
    }
    
    .expert-credentials {
        position: static;
        margin-top: 20px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    

    
    .expert-name {
        font-size: 2.2rem;
    }
}

/* Enhanced animations */
.expert-profile-section {
    animation: fadeInUp 0.8s ease-out;
}

.expert-photo-container {
    animation: fadeInScale 1s ease-out 0.2s both;
}

.expert-profile-card {
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.trainer-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
    color: #f97316;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

/* Learning Path Section */
.learning-path {
    padding: 80px 0;
    background: #f8fafc;
}

.path-timeline {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.path-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.step-icon i {
    font-size: 32px;
    color: white;
}

.path-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.path-step p {
    color: #666;
    line-height: 1.5;
}

.path-arrow {
    font-size: 24px;
    color: #f97316;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Problem Statement Section */
.problem-statement {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Image Box */
.problem-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80%;
}

.image-container {
    position: relative;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.problem-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay span {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Right Side - Content */
.problem-text {
    text-align: left;
}

.text-white {
    color: white;
}

.problem-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.problem-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.challenge-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.challenge-item.expanded {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #f97316;
}

.challenge-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: #f97316;
}

.challenge-item:hover .challenge-header {
    background: #f1f5f9;
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
}

.challenge-icon {
    color: #ef4444;
    font-size: 20px;
    flex-shrink: 0;
}

.challenge-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    flex-grow: 1;
    user-select: none;
}

.expand-btn {
    background: #f8fafc;
    border: 1px solid #ffffff;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* .expand-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f97316, #f59e0b);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.expand-btn:hover::before {
    opacity: 0.1;
}

.expand-btn:hover,
.expand-btn:focus {
    background: #e2e8f0;
    color: #1a1a1a;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: 2px solid #f97316;
    outline-offset: 2px;
} */

.expand-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
    animation: subtle-bounce 2s ease-in-out infinite;
}

@keyframes subtle-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}

.challenge-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.challenge-item.expanded .expand-btn i {
    transform: rotate(180deg);
    animation: none;
}

.challenge-item.expanded .challenge-description {
    max-height: 500px;
}

.challenge-item.expanded .expand-btn {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.challenge-description p {
    padding: 0 20px 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.challenge-solution {
    padding: 16px 20px 20px;
    background: #f0f9ff;
    border-top: 1px solid #e0f2fe;
    color: #0369a1;
    font-size: 14px;
    line-height: 1.5;
}

.challenge-solution strong {
    color: #1e40af;
}

/* Solution Section - Full Width */
.solution-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    width: 100%;
}

.solution-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.solution-icon i {
    font-size: 36px;
    color: white;
}

.solution-text {
    flex-grow: 1;
}

.solution-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.solution-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .image-container {
        width: 300px;
        height: 300px;
    }

    .problem-main-icon {
        font-size: 80px;
    }

    .challenge-header {
        padding: 16px;
    }

    .solution-content {
        flex-direction: column;
        gap: 20px;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
    }

    .solution-icon i {
        font-size: 28px;
    }
}

/* Learning Features Section */
.learning-features {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Course Level Badges */
.course-level {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -7px;
    left: 50%;
    background: #f97316;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    transform: translateX(-50%);
}

.price-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}


/* Rating Stars */
.rating {
    display: flex;
    gap: 2px;
    margin-top: 8px;
}

.rating i {
    color: #fbbf24;
    font-size: 12px;
}

/* Trainer Stats */
.trainer-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #f97316;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.hero .stat-label {
    font-size: 12px;
    color: #ececec;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Benefits */
.cta-benefits {
    margin: 20px 0;
    color: #0a0400;
}

.text-black {
    color: #0a0400;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.benefit i {
    color: #10b981;
    font-size: 18px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
    
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Courses Section */
.courses {
    background: #ffffff;
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto;
}

/* Enhanced Courses Table Styles */
.courses-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.courses-table:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.courses-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 700;
    padding: 24px 32px;
    position: relative;
    overflow: hidden;
}

.courses-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.courses-header .courses-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced hover effects for courses table */
.courses-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    padding: 24px 32px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.courses-row:hover {
    background: #fef3c7;
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.courses-row:last-child {
    border-bottom: none;
}

.courses-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    transition: all 0.3s ease;
}

.courses-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.courses-row:hover .courses-col h4 {
    color: #f97316;
}

.courses-col.duration {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f97316;
    transition: all 0.3s ease;
}

.courses-row:hover .courses-col.duration {
    transform: scale(1.1);
}

.courses-col .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.courses-row:hover .courses-col .btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Responsive courses table */
@media (max-width: 768px) {

    .courses-header,
    .courses-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }



    .courses-row .courses-col {
        text-align: center;
        padding: 8px 0;
    }

    .courses-row .courses-col:first-child {
        font-weight: 700;
        font-size: 1.1rem;
        color: #f97316;
        border-bottom: 2px solid #f97316;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

/* Additional responsive improvements */
@media (max-width: 480px) {

    .courses-table,
    .pricing-grid {
        margin: 0 -20px;
        border-radius: 20px;
    }

    .courses-header,
    .courses-row,
    .pricing-card {
        padding: 16px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

/* Old Courses Grid Styles (keeping for reference) */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.course-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f97316;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.course-card.featured {
    border-color: #f97316;
    background: #fef3c7;
    transform: scale(1.02);
}

.course-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: #f97316;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.course-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.course-features li {
    padding: 10px 0;
    color: #4b5563;
    position: relative;
    padding-left: 28px;
    font-weight: 500;
}

.course-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    background: #d1fae5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.course-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 20px;
}

/* Pricing Plans Section */
.pricing {
    background: #f8fafc;
    padding: 100px 20px;
}

/* New Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Enhanced Pricing Card Styles */
.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f97316;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.featured {
    border-color: #f97316;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

/* .pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    z-index: 10;
} */

.pricing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    transition: color 0.3s ease;
}

.pricing-card:hover h3 {
    color: #f97316;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover .price {
    transform: scale(1.05);
    text-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #4b5563;
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    background: #d1fae5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.pricing-features li:hover::before {
    background: #10b981;
    color: white;
    transform: scale(1.1);
}

/* Old Pricing Table Styles (keeping for reference) */
.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    background: #f97316;
    color: white;
    font-weight: 700;
    padding: 24px 32px;
}

.pricing-header .pricing-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
    padding: 24px 32px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background-color 0.3s ease;
}

.pricing-row:hover {
    background: #fef3c7;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
}

.pricing-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.pricing-col.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f97316;
}

.pricing-col .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive pricing table */
@media (max-width: 768px) {

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .pricing-header .pricing-col {
        display: none;
    }

    .pricing-row .pricing-col {
        text-align: center;
        padding: 8px 0;
    }

    .pricing-row .pricing-col:first-child {
        font-weight: 700;
        font-size: 1.1rem;
        color: #f97316;
        border-bottom: 2px solid #f97316;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

/* Benefits Section */
.benefits {
    background: #fffacf;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f97316;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
    border-color: #f97316;
}

.benefit-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-img {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    background: #ffffff;
    padding: 100px 0;
}

.testimonials-grid {
    column-count: 3;
    column-gap: 32px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        column-count: 1;
    }
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    margin: 0 0 32px;
    break-inside: avoid;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f97316;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
    border-color: #f97316;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: #f97316;
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.testimonial-info h4 {
    color: #1a1a1a;
    margin-bottom: 4px;
    font-weight: 700;
}

.testimonial-info p {
    color: #4b5563;
    font-size: 14px;
}

.testimonial-text {
    color: #374151;
    line-height: 1.6;
    font-size: 15px;
    font-style: italic;
}

/* Trainer Section */
.trainer {
    background: #fffacf;
    color: #1a1a1a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 100px 20px;

}

.trainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.trainer-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.trainer-media {
    text-align: center;
    position: relative;
    background: rgb(249, 115, 22);
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.trainer-media .trainer-photo-lg {
    max-width: 100%;
    height: 360px;
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: top center;
}

.trainer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding: 0 8px;
}

.trainer-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.social-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.social-toggle-btn.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

.shadow-box {
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.10), 0 0 0 6px rgba(255, 255, 255, 0.5);
}

.trainer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    background-color: rgb(249 115 22 / 44%);
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trainer-socials.show {
    opacity: 1;
    max-height: 80px;
    margin-top: 16px;
}

.trainer-socials.hidden {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
}

.trainer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.trainer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
}

.trainer h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.trainer p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.trainer .certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
    justify-items: start;
}

.trainer .certification {
    background: rgba(249, 115, 22, 0.1);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trainer .certification i {
    color: #f97316;
}

.trainer .certification:hover {
    background: rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .trainer-grid {
        grid-template-columns: 1fr;
    }

    .trainer-media {
        order: -1;
    }

    .trainer-media .trainer-photo-lg {
        height: 300px;
        border-radius: 20px;
    }
    
    .trainer-info {
        margin-top: 12px;
        padding: 0 6px;
    }
    
    .trainer-name {
        font-size: 12px;
    }
    
    .social-toggle-btn {
        width: 28px;
        height: 28px;
    }
}

/* CTA Section */
.cta {
    background: #ffffff;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* CTA Container Box */
.cta-container {
    border-radius: 24px;
    overflow: hidden;
    /* max-width: 800px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

/* CTA Image Section */
.cta-image {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(8px 8px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(6px 6px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(10px 10px at 90px 40px, rgba(255, 255, 255, 0.12), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: ctaFloat 20s linear infinite;
    opacity: 0.6;
}

.cta-image-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-image-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.cta-image h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-image p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* CTA Content Section */
.cta-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cta-content.text-center {
    text-align: center;
    align-items: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: rgba(29, 29, 29, 0.95);
    line-height: 1.6;
}

/* CTA Button Styling */
.cta .btn-hero {
    background: #f97316;
    color: white;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid #f97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: center;
    text-decoration: none;
    display: inline-block;
}

.cta .btn-hero:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-container {
        max-width: 95%;
    }

    .cta-image {
        padding: 30px;
    }

    .cta-content {
        padding: 30px;
    }
}

/* CTA Form Styles */
.cta-form {
    padding: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    align-content: center;
}

.white-container {
    background: #ffffff;
    border-radius: 20px;
}

.cta-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.enrolment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #1e293b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

/* Update CTA container for form layout */
.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-content {
    text-align: left;
    align-items: flex-start;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* Responsive form layout */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        max-width: 95%;
    }

    .cta-form {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .cta-content {
        text-align: center;
        align-items: center;
    }
}













/* .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(8px 8px at 20px 30px, rgba(255,255,255,0.15), transparent),
        radial-gradient(6px 6px at 40px 70px, rgba(255,255,255,0.1), transparent),
        radial-gradient(10px 10px at 90px 40px, rgba(255,255,255,0.12), transparent),
        radial-gradient(12px 12px at 130px 80px, rgba(255,255,255,0.08), transparent),
        radial-gradient(8px 8px at 160px 30px, rgba(255,255,255,0.15), transparent),
        radial-gradient(6px 6px at 200px 60px, rgba(255,255,255,0.1), transparent),
        radial-gradient(10px 10px at 240px 20px, rgba(255,255,255,0.12), transparent),
        radial-gradient(8px 8px at 280px 70px, rgba(255,255,255,0.08), transparent);
    background-repeat: repeat;
    background-size: 300px 100px;
    animation: ctaFloat 20s linear infinite;
    opacity: 0.6;
} */

.cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #0a0400;
    color: white;
    padding: 80px 0 40px;
    border-top: 2px solid #ea580c;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 560px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.25);
    border: 2px solid #f3e8ff;
    overflow: hidden;
    animation: modalIn 300ms ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translate(-50%, -46%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #8b5cf6;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    padding: 24px 24px 8px 24px;
    background: #fef3c7;
    border-bottom: 2px solid #fbbf24;
}

.modal-header h3 {
    margin-bottom: 6px;
    font-weight: 800;
    color: #f97316;
}

.modal-subtitle {
    color: #6b7280;
    font-size: 14px;
}

.modal-form {
    padding: 20px 24px 24px 24px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.form-row label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.2s ease;
    font-size: 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 8px;
}

.apply-success {
    padding: 32px 24px;
    text-align: center;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .white-container {
        border-radius: 0px;
    }
    
    


    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .path-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .path-arrow {
        transform: rotate(90deg);
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .courses-table {
        overflow-x: auto;
    }

    .courses-header,
    .courses-row {
        grid-template-columns: 200px 150px 200px 90px 170px;
        min-width: 895px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trainer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .btn-hero {
        flex-direction: column;
        width: 100%;
    }

    .trainer-photo {
        width: 300px;
        height: 300px;
    }

    .trainer-photo-lg {
        height: 200px;
    }

    .section-title h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
}

/* Additional Educational Elements */
.study-progress {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 40px 0;
    margin: 40px 0;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 10px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 85%;
    }
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Learning Milestones */
.milestones {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.milestone {
    text-align: center;
    flex: 1;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #f97316;
    border-radius: 50%;
    z-index: 2;
}

.milestone::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #f97316;
    z-index: 1;
}

.milestone:last-child::after {
    display: none;
}

.milestone-text {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out;
}

/* Interactive Elements */
.interactive-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Success Indicators */
.success-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 5px;
}

.success-indicator i {
    font-size: 14px;
}

/* Learning Path Visual */
.learning-path-visual {
    position: relative;
    margin: 40px 0;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 2px;
    z-index: 1;
}

.path-step-visual {
    position: relative;
    z-index: 2;
    background: white;
    border: 4px solid #f97316;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.path-step-visual i {
    font-size: 24px;
    color: #f97316;
}

/* Enhanced Typography */
.educational-text {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #374151;
}

.emphasis-text {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    color: #92400e;
}

/* Study Tips Section */
.study-tips {
    background: #f8fafc;
    padding: 60px 0;
    margin: 40px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #f97316;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tip-icon i {
    font-size: 20px;
    color: white;
}

.tip-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f1f5f9;
    border-top: 4px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    animation: slideInFromBottom 0.5s ease-out;
}

.success-message i {
    margin-right: 10px;
    font-size: 18px;
}

/* Enhanced Form Styling */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}


.hero .floating-icons {
    display: none;
}


@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
       .trainer {
        padding: 0px;
    }
    
    .problem-text h2 {
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* Print Styles */
@media print {

    .floating-icons,
    .hero-buttons,
    .cta-form,
    .modal {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}