:root {
    --primary: #2A2A72;
    --secondary: #2c5927;
    --accent: #FF6B6B;
    --text: #444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Course Header */
.course-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
    gap: 2rem;
    position: relative;
}

.course-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
}

.course-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.course-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9ff;
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
}

.course-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.learners {
    background: #f0f4f8;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.learners i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.3);
}

.preview-btn {
    background: var(--secondary);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.preview-btn i {
    font-size: 1.4rem;
}

.preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,159,253,0.3);
    background: linear-gradient(135deg, var(--secondary), #275b44);
}

/* Ratings Grid */
.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.rating-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.rating-stars {
    color: #FFD700;
    font-size: 1.4rem;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.rating-platform {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rating-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

/* Batch Options */
.batch-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.batch-card {
    padding: 1.5rem 3rem;
    border: 2px solid var(--secondary);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
}

.batch-card i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.batch-card:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,159,253,0.2);
}

.batch-card:hover i {
    color: white;
}

@media (max-width: 768px) {
    .course-header {
        flex-direction: column;
    }
    
    .course-title {
        font-size: 2.2rem;
    }
    
    .preview-btn {
        width: 100%;
        justify-content: center;
    }
    
    .course-description {
        font-size: 1rem;
        padding: 1rem;
    }
}

.schedule-card {
    transition: transform 0.3s;
    border-left: 4px solid #ff9900;
}
.schedule-card:hover {
    transform: translateY(-5px);
}
.price-badge {
    background: linear-gradient(45deg, #ff9900, #ff4500);
    color: white;
}
.guarantee-badge {
    background: #232f3e;
    color: white;
}
.enroll-cta {
    background: #232f3e;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.enroll-btn {
    background: #2c5f2d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.enroll-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.curriculum-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.curriculum-card:hover {
    transform: translateY(-5px);
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #232f3e, #2b4325);
    color: white !important;
}
.skill-badge {
    background: #232f3e;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
}
.lab-badge {
    background: #2b5127;
    color: white;
}
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255,153,0,0.25);
}


.download-modal .modal-content {
border-radius: 15px;
border: 2px solid #ff9900;
}
.download-gate-form .form-control:focus {
box-shadow: 0 0 0 0.25rem rgba(255,153,0,0.25);
border-color: #ff9900;
}
.download-btn {
background: linear-gradient(45deg, #ff9900, #ff4500);
color: white;
padding: 12px 30px;
border: none;
transition: transform 0.3s;
}
.download-btn:hover {
transform: scale(1.05);
}

/*hero*/

.hero-section {
    background: linear-gradient(135deg, #434878, #627735);
    color: white;
    padding: 4rem 0;
}
.program-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.highlight-text {
    color: #64ffda;
    font-weight: 500;
}
.demo-date {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
}
.register-btn {
    background: #00e676;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,230,118,0.3);
}
.company-logos {
    margin-top: 3rem;
    opacity: 0.8;
}
.company-logos img {
    height: 40px;
    margin: 0 2rem;
}
.build-text {
    font-size: 1.4rem;
    margin: 1.5rem 0;
}

.program-header {
    background: #f8f9fa;
    padding: 3rem 0;
    border-bottom: 3px solid #dee2e6;
}
.stats-badge {
    background: #2a2a72;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 18px;
    font-size: 0.9rem;
}
.curriculum-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.course-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.certificate-badge {
    background: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1.5rem;
}


.process-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}
.process-step {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.process-step:hover {
    transform: translateY(-3px);
}
.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a2a72;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.demo-box {
    background: linear-gradient(135deg, #dc7c16, #b86b05);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}
.countdown {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 1rem 0;
}
.countdown span {
    padding: 0 0.5rem;
}
.register-btn {
    background: #2a841a84;
    color: #000;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,230,118,0.3);
}

  
        
.dashboard {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem;
}

.skill-pill {
    background: #fff;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    margin: 0.5rem;
    box-shadow: 0 3px 10px rgba(165, 1, 1, 0.876);
    transition: all 0.3s ease;
    border-left: 4px solid var(--aws-orange);
}

.skill-pill:hover {
    transform: translateX(10px);
    background: linear-gradient(45deg, var(--aws-dark), var(--aws-orange));
    color: rgb(15, 28, 58);
}

.tool-card {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card img {
    height: 25px;
    margin-bottom: 1rem;
}

.progress-ring {
    width: 120px;
    height: 120px;
}

.module-timeline {
    position: relative;
    padding-left: 30px;
    margin: 2rem 0;
}

.module-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--aws-orange);
}

.faq-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 800px;
}
.faq-card {
    background: white;
    border: none;
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-header h5 {
    margin: 0;
    font-weight: 600;
    color: #2a2a72;
}
.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.faq-body {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
    display: none;
}
.faq-card.active {
    border-left: 4px solid #00e676;
}
.faq-card.active .faq-icon {
    transform: rotate(45deg);
    color: #00e676;
}
.view-more {
    text-align: center;
    margin-top: 2rem;
}

