/* =====================
   Courses Hero Section
   ===================== */
.courses-hero {
    background: linear-gradient(135deg, #0a4a0a 0%, #1a7a1a 50%, #0a4a0a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.courses-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0PjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgxMCwgNzQsIDEwLCAwLjAzKSI+PC9yZWN0PjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.courses-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.courses-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.courses-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.courses-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
}

.courses-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #e0f2e9;
    margin: 0 0 40px;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.courses-hero .hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #4ade80;
    border-radius: 2px;
}

.courses-hero .hero-catchy {
    font-size: 1.3rem;
    color: #4ade80;
    font-weight: 600;
    margin: 30px 0;
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(74, 222, 128, 0.4); }
}

.courses-hero .hero-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 0 50px;
}

.courses-hero .hero-description p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.courses-hero .hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.courses-hero .hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.courses-hero .hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.courses-hero .hero-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.courses-hero .hero-stat .stat-label {
    font-size: 0.9rem;
    color: #e0f2e9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.courses-hero .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    gap: 10px;
}

.btn-hero-primary {
    background: #4ade80;
    color: white;
}

.btn-hero-primary:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.courses-hero .hero-visual {
    position: relative;
    z-index: 10;
}

.courses-hero .hero-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.8s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.courses-hero .hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.courses-hero .hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.courses-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 74, 10, 0.3) 0%, rgba(26, 122, 26, 0.1) 100%);
    pointer-events: none;
}

.course-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.course-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #0a4a0a;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.course-badge:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.course-badge i {
    font-size: 1.1rem;
}

/* Floating elements */
.courses-hero .hero-float {
    position: absolute;
    z-index: 5;
}

.courses-hero .hero-float-1 {
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    animation: float1 15s ease-in-out infinite;
}

.courses-hero .hero-float-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    animation: float2 12s ease-in-out infinite;
}

.courses-hero .hero-float-3 {
    top: 30%;
    left: 15%;
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 40px) scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .courses-hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .courses-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .courses-hero .hero-title {
        font-size: 3.5rem;
    }
    
    .courses-hero .hero-subtitle {
        font-size: 1.3rem;
        text-align: center;
        padding-left: 0;
    }
    
    .courses-hero .hero-subtitle::before {
        display: none;
    }
    
    .courses-hero .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .courses-hero .hero-image {
        height: 400px;
    }
    
    .courses-hero .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .courses-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .courses-hero .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .courses-hero .hero-title::after {
        width: 80px;
        bottom: -10px;
    }
    
    .courses-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .courses-hero .hero-catchy {
        font-size: 1.1rem;
        padding: 12px 25px;
        margin: 20px 0;
    }
    
    .courses-hero .hero-description {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .courses-hero .hero-description p {
        font-size: 1.1rem;
    }
    
    .courses-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .courses-hero .hero-stat {
        min-width: 200px;
    }
    
    .courses-hero .hero-image {
        height: 300px;
    }
    
    .courses-hero .hero-float {
        display: none;
    }
    
    .course-badges {
        top: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .course-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .courses-hero {
        padding: 60px 0 40px;
    }
    
    .courses-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .courses-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .courses-hero .hero-catchy {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .courses-hero .hero-description p {
        font-size: 1rem;
    }
    
    .courses-hero .hero-stat {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .courses-hero .hero-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .courses-hero .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .courses-hero .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* =====================
   Enhanced Courses Section
   ===================== */

/* Computer Courses Section */
.computer-courses {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.computer-courses .section-header {
    margin-bottom: 60px;
}

.computer-courses .section-subtitle {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.computer-courses .section-title {
    color: #1e40af;
    margin-bottom: 15px;
}

.computer-courses .section-description {
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

/* Course Features List */
.course-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.course-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #4b5563;
    font-size: 0.95rem;
}

.course-features li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #0a4a0a;
    font-size: 0.8rem;
}

/* Course Meta Info */
.course-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #6b7280;
}

.course-duration i,
.course-level i {
    margin-right: 5px;
}

/* Course CTA Buttons */
.course-cta .btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #0a4a0a;
    color: #0a4a0a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.course-card:hover .course-cta .btn-outline {
    background: #0a4a0a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.3);
}

/* Computer Courses CTA */
.computer-courses .courses-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(10, 74, 10, 0.1);
}

.computer-courses .highlight-text {
    color: #0a4a0a;
}

.computer-courses .highlight-text::after {
    background: linear-gradient(90deg, #0a4a0a, #0a6a0a);
}

.computer-courses .btn-primary {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.3);
}

.computer-courses .btn-primary:hover {
    background: linear-gradient(135deg, #0a6a0a, #0a4a0a);
    box-shadow: 0 8px 25px rgba(10, 74, 10, 0.4);
}

/* Course Icons */
.course-icon {
    width: 80px;
    height: 80px;
    background: rgba(10, 74, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #0a4a0a;
    font-size: 32px;
    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    background: #0a4a0a;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .computer-courses {
        padding: 80px 0;
    }
    
    .computer-courses .section-title {
        font-size: 2.2rem;
    }
    
    .course-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .computer-courses .section-title {
        font-size: 1.8rem;
    }
    
    .computer-courses .section-description {
        font-size: 1rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* =====================
   Driving Courses Section
   ===================== */
.Courses_sec {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.Courses_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
}

/* Section Header */
.Courses_sec .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.Courses_sec .section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ff9000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.Courses_sec .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: #1e293b;
    line-height: 1.2;
    position: relative;
}

.Courses_sec .header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.Courses_sec .divider-line {
    width: 60px;
    height: 2px;
    background: #ff9000;
    display: inline-block;
    position: relative;
}

.Courses_sec .header-divider i {
    color: #ff9000;
    margin: 0 20px;
    font-size: 20px;
}

.Courses_sec .section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff9000;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff9000, #ff6b00);
    transition: all 0.4s ease;
    z-index: 1;
}

.course-card:hover::before {
    width: 6px;
    height: 100%;
}

.course-icon {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 30px 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-card:hover .course-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 144, 0, 0.2);
}

.course-content {
    padding: 0 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 15px;
}

.course-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.course-card:hover .course-content h3::after {
    width: 100px;
}

.course-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.course-duration, .course-level {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

.course-duration i, .course-level i {
    margin-right: 5px;
    color: #ff9000;
}

.course-cta {
    margin-top: 20px;
}

.course-cta .btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.course-card:hover .course-cta .btn-outline {
    border-color: #ff9000;
    background: #ff9000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 144, 0, 0.2);
}

/* CTA Section */
.courses-cta {
    text-align: center;
    margin: 100px auto 0;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 144, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.courses-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
}

.highlight-text {
    display: block;
    font-size: 1.4rem;
    color: #1e293b;
    margin: 0 0 30px;
    padding: 0 20px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
}

.highlight-text::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Button Styles */
.courses-cta .btn-primary {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    padding: 16px 45px;
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.courses-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 144, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .courses-cta {
        margin: 70px 20px 0;
        padding: 40px 20px;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .courses-cta .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .courses-cta {
        margin: 50px 15px 0;
        padding: 30px 15px;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .highlight-text::after {
        margin: 15px auto 0;
    }
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 144, 0, 0.4);
    background: linear-gradient(135deg, #ff9a1a, #ff7a1a);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .Courses_sec {
        padding: 80px 0;
    }
    
    .Courses_sec .section-title {
        font-size: 2.2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .course-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .Courses_sec .section-title {
        font-size: 1.8rem;
    }
    
    .Courses_sec .section-description {
        font-size: 1rem;
    }
    
    .course-content {
        padding: 0 20px 25px;
    }
    
    .course-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin: 25px 25px 15px;
    }
}

/* ====================
   Pricing & Packages Section
   ==================== */
.pricing-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0PjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgxMCwgNzQsIDEwLCAwLjAzKSI+PC9yZWN0PjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.05;
    z-index: 1;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a4a0a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    margin: 15px auto 0;
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 25px;
    text-align: center;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.pricing-options {
    padding: 30px 25px;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pricing-option:last-child {
    border-bottom: none;
}

.pricing-option:hover {
    background: rgba(74, 222, 128, 0.05);
    margin: 0 -25px;
    padding-left: 25px;
    padding-right: 25px;
}

.option-title {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.option-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a4a0a;
}

.pricing-requirements {
    padding: 0 25px 25px;
}

.pricing-requirements h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-requirements li {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.pricing-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.pricing-cta {
    padding: 0 25px 25px;
}

.pricing-cta .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.pricing-cta .btn-primary:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

/* Computer Pricing Section */
.computer-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    position: relative;
    overflow: hidden;
}

.computer-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0PjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjAzKSI+PC9yZWN0PjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.computer-pricing-section .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.computer-pricing-section .section-title {
    color: white;
}

.computer-pricing-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.computer-pricing-section .header-divider .divider-line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.computer-pricing-section .header-divider i {
    color: #4ade80;
}

.computer-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.course-pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.course-pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.course-pricing-card.featured {
    border: 2px solid #4ade80;
    box-shadow: 0 15px 35px rgba(74, 222, 128, 0.3);
}

.course-pricing-header {
    padding: 25px;
    text-align: center;
    position: relative;
}

.course-pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.course-pricing-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.course-pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4ade80;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-pricing-content {
    padding: 0 25px 25px;
}

.course-pricing-list {
    margin-bottom: 20px;
}

.course-pricing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.course-pricing-item i {
    color: #4ade80;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.course-pricing-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.course-pricing-description h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.course-pricing-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-pricing-description li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.course-pricing-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
}

.course-pricing-footer {
    padding: 0 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-pricing-price {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4ade80;
}

.course-pricing-cta {
    flex-shrink: 0;
}

.course-pricing-cta .btn-primary {
    background: #4ade80;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.course-pricing-cta .btn-primary:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.course-pricing-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.course-pricing-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0 60px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        border-radius: 15px;
    }
    
    .pricing-header {
        padding: 20px;
    }
    
    .pricing-options {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .computer-pricing-section {
        padding: 80px 0 60px;
    }
    
    .computer-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-pricing-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .course-pricing-cta {
        width: 100%;
    }
    
    .course-pricing-cta .btn-primary,
    .course-pricing-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
