.course-body-atgvct {
    font-family: Inter, sans-serif;
    /*background: var(--bg-atgvct);*/
    color: #f1f5f9;
    line-height: 1.6;
}

/* About Our Courses Section */
.about-courses-section-atgvct {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding: 30px;
}
.about-text-atgvct {
    flex: 1 1 400px;
}
.about-text-atgvct h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffd166;
}
.about-text-atgvct p {
    color: #cfd3e0;
    font-size: 1.1em;
    line-height: 1.7;
}
.about-images-atgvct {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.about-images-atgvct img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s;
}
.about-images-atgvct img:hover {
    transform: scale(1.08);
}
.about-images-atgvct img:nth-child(3) {
    grid-column: span 2;
    height: 250px;
}

/* Courses Grid */
.courses-container-atgvct {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
}
.courses-title-atgvct {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
    animation: fadeInDown-atgvct 1s ease;
}

/* Make course title clickable */
.course-title-link-atgvct {
    color: #ffd166;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}
.course-title-link-atgvct:hover {
    color: #ff6a00;
    transform: scale(1.03);
}

.courses-grid-atgvct {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.course-card-atgvct {
    background: linear-gradient(145deg, #151729, #10121d);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid #222538;
}
.course-card-atgvct:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.course-img-container-atgvct img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #222538;
    transition: transform 0.5s;
}
.course-img-container-atgvct img:hover {
    transform: scale(1.05);
}
.course-name-atgvct {
    font-size: 1.7em;
    margin: 15px 20px 10px;
    color: #ffd166;
    display: flex;
    align-items: center;
    gap: 8px;
}
.course-icon-img-atgvct {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.course-description-atgvct {
    font-size: 1em;
    margin: 0 20px 15px;
    color: #cfd3e0;
}
.course-icon-atgvct {
    margin: 0 20px 15px;
}
.course-cost-atgvct {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 25px;
    background: linear-gradient(90deg, #06d6a0, #1b9aaa);
    color: #0b0c17;
    font-weight: bold;
    margin: 10px 20px;
    transition: transform 0.3s;
}
.course-cost-atgvct:hover {
    transform: scale(1.05);
}
.course-features-atgvct {
    list-style: none;
    padding: 0 20px 20px;
}
.course-features-atgvct li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #06d6a0;
}
.enroll-btn-atgvct {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 1.05em;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}
.enroll-btn-atgvct:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,111,111,0.5);
}



/* Course info help */

.courseinfo-modal-overlay-atginfo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.courseinfo-modal-box-atginfo {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
    text-align: center;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.courseinfo-modal-close-atginfo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
}

.courseinfo-modal-close-atginfo:hover {
    color: #333;
}

.courseinfo-modal-title-atginfo {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3085d6;
}

.courseinfo-modal-content-atginfo p {
    font-size: 1rem;
    color: #444;
}





/* Trial Class Section */
.trial-section-atgvct {
    text-align: center;
    padding: 40px 20px;
}
.trial-section-atgvct h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #60a5fa;
}
.trial-section-atgvct p {
    color: var(--muted-atgvct);
    font-size: 1.1em;
    margin-bottom: 25px;
}
.trial-buttons-atgvct {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trial-btn-atgvct {
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: var(--radius-atgvct);
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(135deg, #6ee7b7, #3b82f6);
    color: #0f1720;
}
.trial-btn-atgvct.contact-us {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
}
.trial-btn-atgvct:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Why Courses Section */
.why-courses-section-atgvct h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: #6ee7b7;
}
.why-courses-grid-atgvct {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.why-card-atgvct {
    background: var(--glass-atgvct);
    padding: 25px 20px;
    border-radius: var(--radius-atgvct);
    text-align: center;
    box-shadow: var(--shadow-atgvct);
    transition: var(--transition);
}
.why-card-atgvct h3 {
    font-size: 1.3em;
    color: var(--accent2-atgvct);
    margin-bottom: 12px;
}
.why-card-atgvct p {
    font-size: 0.95em;
    color: var(--muted-atgvct);
}
.why-card-atgvct:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.why-icon-atgvct {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s;
}
.why-card-atgvct:hover .why-icon-atgvct {
    transform: scale(1.1);
}
.why-btn-atgvct {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.95em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #06d6a0, #1b9aaa);
    color: #0b0c17;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-btn-atgvct:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    text-decoration: none;
    color: #0b0c17;
}

/* Animations */
@keyframes fadeInDown-atgvct {
    0% {opacity: 0; transform: translateY(-20px);}
    100% {opacity: 1; transform: translateY(0);}
}




/* Show More Button */
.show-more-container {
    text-align: center;
    margin-top: 30px;
}
.show-more-btn-atgvct {
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #fca311, #fb8500);
    color: #0f1720;
    transition: transform 0.3s, box-shadow 0.3s;
}
.show-more-btn-atgvct:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hide course cards */
.hidden-atgvct {
    display: none !important;
}
