/* PadTop Section */
.padTop {
    padding-top: 90px;
    padding-bottom: 40px;
    /* background: linear-gradient(135deg, #0A0F1D, #1A1F35); */
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Container Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.col-50 {
    flex: 0 0 48%;
    max-width: 48%;
}

/* Hero Text Styling */
.hero-text {
    width: 100%;
    position: relative;
    padding-top: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-text h1 span{
    color: rgba(241, 99, 99, 0.9);

}
.hero-text p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 100%;
    font-weight: 800;
}

/* Enhanced Mobile-First Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 992px) {
    .padTop {
        padding-top: 100px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .flex {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .padTop {
        padding-top: 120px;
    }
    .container {
        padding: 0 15px;
    }
    .flex {
        flex-direction: column;
        gap: 25px;
    }
    .col-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero-text {
        padding: 0 10px;
    }
    .hero-text h1 {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 15px;
        margin-top: 0;
    }
    .hero-text p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 576px) {
    .padTop {
        padding-top: 130px;
    }
    .container {
        padding: 0 12px;
    }
    .hero-text {
        padding: 0 8px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 400px) {
    .padTop {
        padding-top: 140px;
    }
    .container {
        padding: 0 10px;
    }
    .hero-text {
        padding: 0 5px;
    }
    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .hero-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .flex {
        gap: 20px;
    }
}

/* Program Details & Syllabus Section */
.program-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0F1D, #1A1F35);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF4B2B, #FF416C);
    margin: 0 auto;
    border-radius: 2px;
}

.term-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.term-header {
    text-align: center;
    margin-bottom: 40px;
}

.term-badge {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.syllabus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.syllabus-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.syllabus-card h3 {
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Enhanced Responsive Design */
@media screen and (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 992px) {
    .program-details {
        padding: 60px 0;
    }
    .syllabus-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .section-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .term-badge {
        font-size: 1.1rem;
        padding: 8px 25px;
    }
    .syllabus-card {
        padding: 20px;
    }
    .term-container {
        padding: 15px;
    }
    .syllabus-grid {
        padding: 10px;
    }
}

@media screen and (max-width: 576px) {
    .program-details {
        padding: 50px 0;
    }
    .section-header {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .term-container {
        padding: 10px;
    }
    .syllabus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px 15px;
    }
    .syllabus-card {
        padding: 20px;
        margin: 0 10px;
    }
    .card-icon {
        width: 40px;
        height: 40px;
    }
    .card-icon i {
        font-size: 20px;
    }
    .syllabus-card h3 {
        font-size: 1rem;
        text-align: left;
        padding-right: 10px;
    }
}

@media screen and (max-width: 400px) {
    .section-header {
        padding: 0 10px;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .term-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }
    .syllabus-grid {
        padding: 5px 10px;
    }
    .syllabus-card {
        /* margin-left: 20px; */
        padding: 15px;
        margin: 0 5px;
    }
    .syllabus-card h3 {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .term-container {
        padding: 5px;
    }
}

/* Gap AniVFX Section */
.gap-anivfx {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0F1D, #1A1F35);
    position: relative;
    overflow: hidden;
}

.gap-anivfx::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('path-to-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF4B2B, #FF416C);
    margin: 0 auto;
    border-radius: 2px;
}

.anivfx-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.anivfx-text {
    flex: 0 0 50%;
    padding: 30px;
}

.highlight-box {
    margin-bottom: 30px;
}

.highlight-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 15px;
}

.highlight-box h3 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

.feature-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item i {
    color: #FF416C;
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1.1rem;
}

.course-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF416C;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.anivfx-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.anivfx-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.2), rgba(255, 65, 108, 0.2));
    border-radius: 20px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.4rem;
    }
    .highlight-box h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 992px) {
    .gap-anivfx {
        padding: 80px 0;
    }
    .anivfx-content {
        flex-direction: column;
        gap: 40px;
    }
    .anivfx-text, .anivfx-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .highlight-box h3 {
        font-size: 1.6rem;
    }
    .feature-item span {
        font-size: 1rem;
    }
    .course-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    .cta-buttons {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .gap-anivfx {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .anivfx-text {
        padding: 20px;
    }
    .highlight-box h3 {
        font-size: 1.4rem;
    }
    .stat-item {
        flex: 0 0 100%;
    }
    .feature-item {
        margin-bottom: 12px;
    }
    .feature-item i {
        font-size: 1rem;
    }
    .feature-item span {
        font-size: 0.95rem;
    }
} 