/* styles.css */
:root {
    --primary: #2563eb;
    --secondary: #64748b;
    --success: #22c55e;
    --dark: #0f172a;
    --light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                url('../assets/hero-bg.jpg') center/cover;
    padding: 120px 0 60px;
}

/* Feature Cards */
.feature-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary), #1d4ed8);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Footer */
.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary);
}

.social-links a {
    font-size: 20px;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
}

/* Course Cards Styling */
.course-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: white;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    height: 200px;
    object-fit: cover;
}

/* Success Story Cards Styling */
.success-story-card {
    background: white;
    transition: transform 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
}

.badge {
    padding: 0.5em 1em;
    font-weight: 500;
}


:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --success: #10b981;
    --light: #f8fafc;
    --dark: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #f9fafb;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background-color: white;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                url('https://source.unsplash.com/1600x900/?coding,programming') center/cover;
    padding: 120px 0 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* About Section */
.about-section {
    background: linear-gradient(to right, #1e293b, #334155);
    color: white;
    position: relative;
}

/* Feature Cards */
.feature-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.course-card img {
    height: 200px;
    object-fit: cover;
}

/* Teaching Approach */
.approach-section {
    padding: 80px 0;
    background: linear-gradient(to right, #1e293b, #334155);
    color: white;
    position: relative;
}

.approach-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.approach-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #93c5fd;
}

/* Success Story Cards */
.success-story-card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.success-story-card img.rounded-circle {
    border: 3px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.success-story-card:hover img.rounded-circle {
    border-color: var(--primary);
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 16px 24px;
    background-color: white;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e0f2fe;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(37, 99, 235, 0.1);
}

.accordion-body {
    padding: 16px 24px;
    background-color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--primary), #1d4ed8);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.03)" points="0,100 100,0 100,100"/></svg>');
    background-size: cover;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: white;
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #e2e8f0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Footer */
.footer {
    background-color: var(--dark);
    position: relative;
}

.footer a {
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
}

.footer .text-muted {
    color: #94a3b8 !important;
}

.footer .social-links a {
    font-size: 24px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Video Modal */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 24px;
}

.modal-title {
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 32px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
    
    .feature-icon, .approach-icon {
        margin: 0 auto 15px;
    }
    
    .feature-card, .approach-card {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero-image-container {
        margin-top: 40px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.25rem;
        font-size: 1rem;
    }
    
    .d-flex.gap-3 {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .display-4 {
        font-size: 1.75rem;
    }
    
    .feature-card, .success-story-card, .approach-card {
        padding: 15px;
    }
    
    .footer h5 {
        margin-top: 10px;
    }
}


/*Course1 Page CSS*/

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #64748b;
            --success: #10b981;
            --light: #f8fafc;
            --dark: #0f172a;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: #f9fafb;
        }
        
        /* Header/Navigation */
        .navbar {
            padding: 1rem 0;
            background-color: white;
        }
        
        /* Course Header Section */
        .course-header {
            background: linear-gradient(to right, #1e293b, #334155);
            padding: 80px 0 60px;
            color: white;
        }
        
        .course-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .course-thumbnail {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        
        .course-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--primary);
        }
        
        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: white;
        }
        
        .course-info {
            padding: 25px;
        }
        
        .tech-stack {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tech-badge {
            background: #e0f2fe;
            color: #0284c7;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .price-tag {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .enroll-btn {
            background: var(--primary);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            transition: all 0.3s ease;
        }
        
        .enroll-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* Course Overview */
        .overview-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        /* Curriculum */
        .curriculum-section {
            padding: 80px 0;
            background: #f1f5f9;
        }
        
        .level-card {
            border-radius: 12px;
            padding: 30px;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .level-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .level-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .level-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .module-list {
            list-style: none;
            padding: 0;
        }
        
        .module-list li {
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
        }
        
        .module-list li:last-child {
            border-bottom: none;
        }
        
        .module-list li i {
            margin-right: 10px;
            color: var(--success);
        }
        
        /* Projects */
        .projects-section {
            padding: 80px 0;
        }
        
        .project-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .project-img {
            height: 200px;
        }
        
        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-info {
            padding: 20px;
            background: white;
        }
        
        /* Teaching Approach */
        .approach-section {
            padding: 80px 0;
            background: linear-gradient(to right, #1e293b, #334155);
            color: white;
        }
        
        .approach-card {
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 25px;
            height: 100%;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .approach-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }
        
        .approach-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* FAQ */
        .faq-section {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #e0f2fe;
            color: var(--primary);
        }
        
        /* CTA */
        .cta-section {
            padding: 80px 0;
            background: #0f172a;
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .course-header {
                padding: 60px 0 40px;
            }
            
            .overview-section,
            .curriculum-section,
            .projects-section,
            .approach-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }
        }
    


        