/* Hero Section Styles */

.hero_section {
    background: linear-gradient(135deg, #ffffffff 0%, #ffffffff 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hero_highlight {
    color: #FF0000;
    position: relative;
}

.hero_highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF0000, #c0392b);
    border-radius: 2px;
    opacity: 0.3;
}

.hero_subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.hero_subtitle em {
    font-style: normal;
    color: #FF0000;
    font-weight: 500;
}

.hero_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.hero_stat {
    text-align: left;
    padding: 20px 0;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero_stat:hover {
    transform: translateY(-5px);
}

.hero_stat_number {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #FF0000, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_stat_label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.hero_buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero_btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    /* border-radius: 8px; */
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero_btn:hover::before {
    left: 100%;
}

.hero_btn_primary {
    background: linear-gradient(45deg, #FF0000, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.hero_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero_btn_secondary {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.hero_btn_secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.hero_play_icon {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 10px;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.hero_btn_secondary:hover .hero_play_icon {
    transform: scale(1.1);
}

.hero_or_divider {
    background-color: white;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero_or_divider::before,
.hero_or_divider::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.hero_or_divider::before {
    left: -35px;
}

.hero_or_divider::after {
    right: -35px;
}

.hero_co_created {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero_co_created h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
    white-space: nowrap;
}

.hero_co_created img {
    height: 50px;
    width: auto;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    /* transition: filter 0.3s ease, opacity 0.3s ease; */
}

/* Enhanced Image Container Styles */
.hero_image_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.hero_main_image {
    position: relative;
    width: 100%;
    /* max-width: 450px; */
    height: 600px;
    /* border-radius: 20px; */
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
    overflow: hidden;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero_main_image:hover {
    transform: translateY(-10px);
}

.hero_main_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* border-radius: 20px; */
    /* transition: transform 0.3s ease; */
    background: white;
}

.hero_main_image:hover img {
    transform: scale(1.02);
}

/* Image Placeholder with Better Styling */
.hero_image_placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero_image_placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.placeholder_icon {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
    z-index: 1;
    position: relative;
}

.placeholder_text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    z-index: 1;
    position: relative;
}

.placeholder_subtext {
    font-size: 14px;
    opacity: 0.8;
    z-index: 1;
    position: relative;
}



/* Background Pattern */
.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image:  */
    /* radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(231, 76, 60, 0.1) 0%, transparent 50%); */
    z-index: 1;
}

@keyframes hero_counter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero_container {
        gap: 40px;
    }

    .hero_title {
        font-size: 42px;
    }

    .hero_stats {
        gap: 20px;
    }

    .hero_main_image {
        max-width: 400px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero_section {
        padding: 60px 0;
    }

    .hero_container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero_title {
        font-size: 36px;
    }

    .hero_stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
    }

    .hero_stat {
        text-align: center;
    }

    .hero_buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero_btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .hero_main_image {
        max-width: 350px;
        height: 300px;
    }

    .hero_image_container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero_container {
        padding: 0 15px;
    }

    .hero_title {
        font-size: 28px;
    }

    .hero_subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero_stat_number {
        font-size: 28px;
    }

    .hero_stat_label {
        font-size: 12px;
    }

    .hero_stats {
        gap: 20px;
    }

    .hero_buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero_btn {
        width: 100%;
        justify-content: center;
    }

    .hero_or_divider::before,
    .hero_or_divider::after {
        display: none;
    }

    .hero_main_image {
        max-width: 300px;
        height: 250px;
    }

    .hero_image_container {
        height: 350px;
    }
}

/* End of Hero Section Styles */

/* About Us Section Styles */

.about_us_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.about_us_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.about_us_content {
    padding-right: 20px;
}

.about_us_heading {
    color: #FF0000;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about_us_text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about_us_form_container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8ecef 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about_us_form_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #cc0000, #FF0000);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about_us_form_header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about_us_bell_icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about_us_form_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about_us_form_subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.about_us_highlight {
    color: #FF0000;
    font-weight: 600;
}

.about_us_form_group {
    margin-bottom: 20px;
}

.about_us_input,
.about_us_select,
.about_us_textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about_us_input:focus,
.about_us_select:focus,
.about_us_textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.about_us_input::placeholder,
.about_us_textarea::placeholder {
    color: #888;
    font-weight: 400;
}

.about_us_textarea {
    height: 120px;
    resize: vertical;
}

.about_us_captcha_container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.about_us_captcha_display {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #FF0000;
    user-select: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.about_us_captcha_refresh {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.about_us_captcha_refresh:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.about_us_captcha_input {
    flex: 1;
    min-width: 120px;
}

.about_us_submit_btn {
    width: 100%;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about_us_submit_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about_us_submit_btn:hover::before {
    left: 100%;
}

.about_us_submit_btn:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.about_us_submit_btn:active {
    transform: translateY(-1px);
}

.about_us_error_message {
    color: #FF0000;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about_us_main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about_us_content {
        padding-right: 0;
    }

    .about_us_heading {
        font-size: 36px;
        text-align: center;
    }

    .about_us_form_container {
        padding: 30px;
    }

    .about_us_form_title {
        font-size: 24px;
    }

    .about_us_form_subtitle {
        font-size: 15px;
    }

    .about_us_captcha_container {
        flex-direction: column;
        align-items: stretch;
    }

    .about_us_captcha_display {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about_us_container {
        padding: 20px 15px;
    }

    .about_us_heading {
        font-size: 28px;
    }

    .about_us_text {
        font-size: 14px;
    }

    .about_us_form_container {
        padding: 20px;
    }

    .about_us_form_title {
        font-size: 20px;
    }

    .about_us_form_subtitle {
        font-size: 14px;
    }
}
/* End of About Us Section Styles */

/* Trending Courses Section Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
} */

.trend_course_section {
    padding: 60px 20px 0 20px;
    background-color: #f8f9fa;
}

.trend_course_container {
    max-width: 1400px;
    margin: 0 auto;
}

.trend_course_header {
    text-align: center;
    margin-bottom: 50px;
}

.trend_course_title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.trend_course_subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.trend_course_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.trend_course_card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend_course_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.trend_course_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trend_course_content {
    padding: 25px;
}

.trend_course_name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trend_course_description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.trend_course_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.trend_course_duration,
.trend_course_fee {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.trend_course_duration strong,
.trend_course_icon {
    color: #FF0000;
    margin-right: 8px;
    font-size: 1rem;
}

.trend_course_detail_icon {
    margin-right: 5px;
    color: #666;
}

.trend_course_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trend_course_btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.trend_course_btn_primary {
    background-color: #FF0000;
    color: white;
}

.trend_course_btn_primary:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

.trend_course_btn_secondary {
    background-color: #2c3e50;
    color: white;
}

.trend_course_btn_secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.trend_course_cta {
    text-align: center;
    margin-top: 40px;
}

.trend_course_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trend_course_cta_btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.trend_course_whatsapp {
    background-color: #25D366;
    color: white;
}

.trend_course_whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-2px);
}

.trend_course_demo {
    background-color: #FF0000;
    color: white;
}

.trend_course_demo:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trend_course_section {
        padding: 40px 15px;
    }

    .trend_course_title {
        font-size: 2rem;
    }

    .trend_course_subtitle {
        font-size: 1rem;
    }

    .trend_course_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trend_course_content {
        padding: 20px;
    }

    .trend_course_name {
        font-size: 1.2rem;
    }

    .trend_course_details {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .trend_course_buttons {
        flex-direction: column;
    }

    .trend_course_btn {
        min-width: 100%;
    }

    .trend_course_cta_buttons {
        flex-direction: column;
        align-items: center;
    }

    .trend_course_cta_btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .trend_course_title {
        font-size: 1.8rem;
    }

    .trend_course_content {
        padding: 15px;
    }

    .trend_course_cta_btn {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}
/* End of Trending Courses Section Styles */

/* WhyDIGI Section Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.WhyDIGI-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    padding: 60px 20px 0 20px;
    min-height: 100vh;
}

.WhyDIGI-wrapper {
    max-width: 1400px;
    margin:60px 20px 0 20px;
}

.WhyDIGI-title {
    text-align: center;
    margin-bottom: 60px;
}

.WhyDIGI-title h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.WhyDIGI-title .highlight {
    color: #FF0000;
}

.WhyDIGI-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.WhyDIGI-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.WhyDIGI-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255,0,0,0.15);
    border-color: #FF0000;
}

.WhyDIGI-icon {
    width: 80px;
    height: 80px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #FF0000;
    transition: all 0.3s ease;
}

.WhyDIGI-card:hover .WhyDIGI-icon {
    background: #FF0000;
    transform: scale(1.1);
}

.WhyDIGI-icon i {
    font-size: 2rem;
    color: #FF0000;
    transition: color 0.3s ease;
}
.WhyDIGI-icon img {
    width: 3rem;              
    height: 3rem;             
    transition: filter 0.3s ease;
    filter: invert(17%) sepia(95%) saturate(7493%) hue-rotate(1deg) brightness(99%) contrast(107%);
}
.WhyDIGI-card:hover .WhyDIGI-icon img {
    filter: brightness(0) invert(1); /* makes image look white */
}
.WhyDIGI-card:hover .WhyDIGI-icon i {
    color: white;
}

.WhyDIGI-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.WhyDIGI-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.WhyDIGI-bonus-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.WhyDIGI-bonus-card {
    background: linear-gradient(135deg, #FF0000, #ff4444);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.WhyDIGI-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.WhyDIGI-bonus-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.WhyDIGI-bonus-icon i {
    font-size: 1.5rem;
    color: white;
}

.WhyDIGI-bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.WhyDIGI-bonus-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .WhyDIGI-container {
        padding: 60px 15px;
    }

    .WhyDIGI-title h2 {
        font-size: 2rem;
    }

    .WhyDIGI-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .WhyDIGI-card {
        padding: 30px 20px;
    }

    .WhyDIGI-icon {
        width: 70px;
        height: 70px;
    }

    .WhyDIGI-icon i {
        font-size: 1.7rem;
    }

    .WhyDIGI-card h3 {
        font-size: 1.2rem;
    }

    .WhyDIGI-bonus-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .WhyDIGI-bonus-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .WhyDIGI-title h2 {
        font-size: 1.7rem;
    }

    .WhyDIGI-card {
        padding: 25px 15px;
    }

    .WhyDIGI-icon {
        width: 60px;
        height: 60px;
    }

    .WhyDIGI-icon i {
        font-size: 1.5rem;
    }

    .WhyDIGI-bonus-card {
        padding: 20px 15px;
    }
}

/* Animation */
@keyframes WhyDIGI-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.WhyDIGI-animate {
    animation: WhyDIGI-fadeInUp 0.8s ease forwards;
}

/* End of WhyDIGI Section Styles */

/* Learning Path Section Styles */

.path-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
}

.path-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.path-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.path-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* border-radius: 20px; */
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.path-main-image:hover {
    transform: scale(1.05);
}

.path-image-bg {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FF0000 0%, #000000 100%);
    /* border-radius: 50% 50% 20% 50%; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.path-student-image {
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    /* border-radius: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.path-student-icon {
    font-size: 80px;
    color: #FF0000;
}

.path-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.path-star {
    color: #FF0000;
    font-size: 20px;
    animation: twinkle 2s infinite;
    position: absolute;
}

.path-star:nth-child(1) {
    top: 20px;
    left: 20px;
}

.path-star:nth-child(2) {
    bottom: 30px;
    right: 30px;
    animation-delay: 1s;
}

.path-star:nth-child(3) {
    top: 50%;
    left: 10px;
    animation-delay: 0.5s;
}

.path-rating {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 8px 16px;
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #FF0000;
}

.path-content {
    padding-left: 20px;
}

.path-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.path-main-title span {
    color: #FF0000;
}

.path-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.path-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    /* border-radius: 16px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #666666;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.path-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
    border-left-color: #FF0000;
}

.path-step-icon {
    width: 60px;
    height: 60px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.path-step:hover .path-step-icon {
    background: #000000;
    transform: scale(1.1);
    animation: none;
}

.path-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.path-step-content h3 span {
    color: #FF0000;
}

.path-step-content p {
    color: #666666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.path-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #FF0000, #666666);
    margin: 0 auto 0 50px;
}

.path-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #FF0000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .path-section {
        gap: 40px;
    }
    
    .path-main-image {
        max-width: 350px;
    }
    
    .path-image-bg {
        width: 300px;
        height: 300px;
    }
    
    .path-student-icon {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .path-container {
        padding: 40px 15px;
    }
    
    .path-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .path-content {
        padding-left: 0;
        order: 2;
    }
    
    .path-image-container {
        order: 1;
    }
    
    .path-main-image {
        max-width: 300px;
    }
    
    .path-image-bg {
        width: 280px;
        height: 280px;
    }
    
    .path-student-icon {
        font-size: 60px;
    }
    
    .path-main-title {
        font-size: 2rem;
    }
    
    .path-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .path-connector {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .path-main-title {
        font-size: 1.75rem;
    }
    
    .path-subtitle {
        font-size: 1rem;
    }
    
    .path-step {
        padding: 20px;
    }
    
    .path-step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .path-step-content h3 {
        font-size: 1.1rem;
    }
    
    .path-step-content p {
        font-size: 0.9rem;
    }
    
    .path-main-image {
        max-width: 250px;
    }
    
    .path-image-bg {
        width: 250px;
        height: 250px;
    }
    
    .path-student-icon {
        font-size: 50px;
    }
}

/* Fallback styles when image fails to load */
.path-main-image {
    background: linear-gradient(135deg, #FF0000 0%, #000000 100%);
    border: 3px solid #ffffff;
}
/*  */

/* Industry Expert Section Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    line-height: 1.6;
}

.industry_expert_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.industry_expert_content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.industry_expert_left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.industry_expert_heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    line-height: 1.2;
}

.industry_expert_description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry_expert_nav_buttons {
    display: flex;
    gap: 15px;
}

.industry_expert_nav_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.industry_expert_prev_btn {
    background-color: #f5f5f5;
    color: #666;
}

.industry_expert_next_btn {
    background-color: black;
    color: white;
}

.industry_expert_nav_btn:hover {
    transform: scale(1.1);
}

.industry_expert_nav_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.industry_expert_right {
    position: relative;
}

.industry_expert_slider {
    overflow: hidden;
}

.industry_expert_cards_container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.industry_expert_card {
    min-width: calc(50% - 10px);
    background: white;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.industry_expert_card:hover {
    transform: translateY(-5px);
}

.industry_expert_card_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    border: none;
}

.industry_expert_telegram_icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 2;
}

.industry_expert_expertise_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.industry_expert_card_content {
    padding: 20px;
    background: white;
    width: 100%;
}

.industry_expert_name {
    font-size: 1.3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.industry_expert_position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.industry_expert_linkedin {
    background-color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #ffffffff;
}

.industry_expert_linkedin:hover {
    transform: scale(1.1);
    background-color: #FF0000;
    color: white;
}

/* Tablet Responsive Design (768px - 1024px) */
@media (max-width: 1024px) {
    .industry_expert_container {
        max-width: 100%;
        padding: 50px 30px;
    }

    .industry_expert_content {
        gap: 50px;
    }

    .industry_expert_heading {
        font-size: 2.2rem;
    }
}

/* Medium Tablet and Small Desktop (768px - 900px) */
@media (max-width: 900px) {
    .industry_expert_content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .industry_expert_left {
        order: 1;
    }

    .industry_expert_right {
        order: 2;
    }

    .industry_expert_heading {
        font-size: 2rem;
    }

    .industry_expert_nav_buttons {
        justify-content: center;
    }
}

/* Mobile Landscape and Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .industry_expert_container {
        padding: 40px 20px;
    }

    .industry_expert_content {
        gap: 35px;
    }

    .industry_expert_heading {
        font-size: 1.9rem;
    }

    .industry_expert_description {
        font-size: 0.95rem;
    }

    .industry_expert_card {
        min-width: 100%;
    }

    .industry_expert_cards_container {
        gap: 0;
    }

    .industry_expert_card_image {
        height: 220px;
    }

    .industry_expert_nav_btn {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }
}

/* Mobile Portrait (480px - 600px) */
@media (max-width: 600px) {
    .industry_expert_container {
        padding: 35px 18px;
    }

    .industry_expert_heading {
        font-size: 1.7rem;
    }

    .industry_expert_card_image {
        height: 200px;
    }

    .industry_expert_card_content {
        padding: 18px;
    }

    .industry_expert_name {
        font-size: 1.2rem;
    }

    .industry_expert_position {
        font-size: 0.85rem;
    }

    .industry_expert_telegram_icon,
    .industry_expert_linkedin {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .industry_expert_expertise_badge {
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
    .industry_expert_container {
        padding: 30px 15px;
    }

    .industry_expert_content {
        gap: 30px;
    }

    .industry_expert_heading {
        font-size: 1.5rem;
    }

    .industry_expert_description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .industry_expert_card_image {
        height: 180px;
    }

    .industry_expert_card_content {
        padding: 15px;
    }

    .industry_expert_name {
        font-size: 1.1rem;
    }

    .industry_expert_position {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .industry_expert_nav_btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .industry_expert_telegram_icon,
    .industry_expert_linkedin {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .industry_expert_expertise_badge {
        top: 12px;
        left: 12px;
        padding: 3px 10px;
        font-size: 0.7rem;
    }

    .industry_expert_telegram_icon {
        top: 12px;
        right: 12px;
    }
}

/* Extra Small Mobile (320px - 360px) */
@media (max-width: 360px) {
    .industry_expert_container {
        padding: 25px 12px;
    }

    .industry_expert_heading {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .industry_expert_description {
        font-size: 0.85rem;
    }

    .industry_expert_card_image {
        height: 160px;
    }

    .industry_expert_card_content {
        padding: 12px;
    }

    .industry_expert_name {
        font-size: 1rem;
    }

    .industry_expert_position {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .industry_expert_nav_btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .industry_expert_nav_buttons {
        gap: 12px;
    }

    .industry_expert_telegram_icon,
    .industry_expert_linkedin {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .industry_expert_expertise_badge {
        padding: 2px 8px;
        font-size: 0.65rem;
    }
}

/* Very Small Mobile (280px - 320px) */
@media (max-width: 320px) {
    .industry_expert_container {
        padding: 20px 10px;
    }

    .industry_expert_heading {
        font-size: 1.3rem;
    }

    .industry_expert_description {
        font-size: 0.8rem;
    }

    .industry_expert_card_image {
        height: 150px;
    }

    .industry_expert_card_content {
        padding: 10px;
    }

    .industry_expert_name {
        font-size: 0.95rem;
    }

    .industry_expert_position {
        font-size: 0.7rem;
    }

    .industry_expert_nav_btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .industry_expert_telegram_icon,
    .industry_expert_linkedin {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .industry_expert_expertise_badge {
        top: 10px;
        left: 10px;
        padding: 2px 6px;
        font-size: 0.6rem;
    }

    .industry_expert_telegram_icon {
        top: 10px;
        right: 10px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .industry_expert_container {
        padding: 20px;
    }

    .industry_expert_content {
        gap: 30px;
    }

    .industry_expert_heading {
        font-size: 1.6rem;
    }

    .industry_expert_card_image {
        height: 120px;
    }

    .industry_expert_card_content {
        padding: 12px;
    }
}

/* Large Screens (1440px+) */
@media (min-width: 1440px) {
    .industry_expert_container {
        padding: 80px 40px;
    }

    .industry_expert_heading {
        font-size: 3rem;
    }

    .industry_expert_description {
        font-size: 1.1rem;
    }

    .industry_expert_card_image {
        height: 280px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .industry_expert_nav_btn:hover {
        transform: none;
    }

    .industry_expert_card:hover {
        transform: none;
    }

    .industry_expert_linkedin:hover {
        transform: none;
    }

    .industry_expert_nav_btn:active {
        transform: scale(0.95);
    }

    .industry_expert_card:active {
        transform: translateY(-2px);
    }

    .industry_expert_linkedin:active {
        transform: scale(0.95);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .industry_expert_card {
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
}

/* Accessibility improvements for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .industry_expert_cards_container,
    .industry_expert_nav_btn,
    .industry_expert_card,
    .industry_expert_linkedin {
        transition: none;
    }
}

/* End of Industry Expert Section Styles */

/* Who Can Section Styles */



.Who_Can_section {
    padding: 20px 20px 20px 20px;
    background-color: #ffffffff;
    min-height: 100vh;
}

.Who_Can_container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.Who_Can_header {
    margin-bottom: 60px;
}

.Who_Can_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: black;
    margin-bottom: 25px;
    line-height: 1.2;
}

.Who_Can_subtitle {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.Who_Can_highlight {
    color: #FF0000;
    font-weight: 700;
}

.Who_Can_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.Who_Can_card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.Who_Can_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.Who_Can_card:hover::before {
    left: 100%;
}

.Who_Can_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.15);
    border-color: #FF0000;
}

.Who_Can_icon_wrapper {
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.Who_Can_card:hover .Who_Can_icon_wrapper {
    transform: scale(1.1);
}

.Who_Can_icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF0000 0%, #ff3333 100%);
    color: white;
    transition: all 0.3s ease;
}

.Who_Can_icon.Who_Can_icon_graduate {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.Who_Can_icon.Who_Can_icon_creator {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.Who_Can_icon.Who_Can_icon_business {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.Who_Can_icon.Who_Can_icon_startup {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.Who_Can_icon.Who_Can_icon_jobseeker {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.Who_Can_icon.Who_Can_icon_homemaker {
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
}

.Who_Can_icon.Who_Can_icon_career {
    background: linear-gradient(135deg, #795548 0%, #5d4037 100%);
}

.Who_Can_icon.Who_Can_icon_freelancer {
    background: linear-gradient(135deg, #607d8b 0%, #455a64 100%);
}

.Who_Can_card_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
    margin-top: 20px;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .Who_Can_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .Who_Can_title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .Who_Can_section {
        padding: 60px 15px;
    }
    
    .Who_Can_title {
        font-size: 2rem;
    }
    
    .Who_Can_subtitle {
        font-size: 1.1rem;
    }
    
    .Who_Can_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .Who_Can_card {
        padding: 30px 20px;
    }
    
    .Who_Can_icon {
        font-size: 3rem;
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
}

@media (max-width: 480px) {
    .Who_Can_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .Who_Can_title {
        font-size: 1.8rem;
    }
    
    .Who_Can_card {
        padding: 25px 15px;
    }
    
    .Who_Can_icon {
        font-size: 2.8rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .Who_Can_card_title {
        font-size: 1.1rem;
    }
}

/* Animation Effects */
.Who_Can_card {
    opacity: 0;
    transform: translateY(20px);
    animation: Who_Can_slideUp 0.6s ease forwards;
}

.Who_Can_card:nth-child(1) { animation-delay: 0.1s; }
.Who_Can_card:nth-child(2) { animation-delay: 0.2s; }
.Who_Can_card:nth-child(3) { animation-delay: 0.3s; }
.Who_Can_card:nth-child(4) { animation-delay: 0.4s; }
.Who_Can_card:nth-child(5) { animation-delay: 0.5s; }
.Who_Can_card:nth-child(6) { animation-delay: 0.6s; }
.Who_Can_card:nth-child(7) { animation-delay: 0.7s; }
.Who_Can_card:nth-child(8) { animation-delay: 0.8s; }

@keyframes Who_Can_slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Who_Can_header_animation {
    opacity: 0;
    transform: translateY(-30px);
    animation: Who_Can_fadeInDown 0.8s ease forwards;
}

@keyframes Who_Can_fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* End of Who Can Section Styles */

/* Employers We Work With Section Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
} */

.E_work_container {
    /* max-width: 1400px; */
    /* margin: 0 auto; */
    padding: 60px 20px;
    background-color: white;
}

.E_work_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
}

.E_work_logo_item {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
    background-color: white;
}

.E_work_logo_item:hover {
    transform: translateY(-5px);
}

.E_work_logo_item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.E_work_logo_item:hover img {
    transform: scale(1.1);
}
.E_work_header h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}
.E_work_header p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .E_work_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 25px;
    }
}

@media (max-width: 768px) {
    .E_work_container {
        padding: 40px 15px;
    }
    
    .E_work_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 20px;
    }
    
    .E_work_logo_item {
        height: 70px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .E_work_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    
    .E_work_logo_item {
        height: 60px;
        padding: 8px;
    }
}

@media (max-width: 320px) {
    .E_work_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Animation for loading effect */
.E_work_logo_item {
    opacity: 0;
    animation: E_work_fadeInUp 0.6s ease forwards;
}

@keyframes E_work_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delay for each logo */
.E_work_logo_item:nth-child(1) { animation-delay: 0.1s; }
.E_work_logo_item:nth-child(2) { animation-delay: 0.2s; }
.E_work_logo_item:nth-child(3) { animation-delay: 0.3s; }
.E_work_logo_item:nth-child(4) { animation-delay: 0.4s; }
.E_work_logo_item:nth-child(5) { animation-delay: 0.5s; }
.E_work_logo_item:nth-child(6) { animation-delay: 0.6s; }
.E_work_logo_item:nth-child(7) { animation-delay: 0.7s; }
.E_work_logo_item:nth-child(8) { animation-delay: 0.8s; }
.E_work_logo_item:nth-child(9) { animation-delay: 0.9s; }
.E_work_logo_item:nth-child(10) { animation-delay: 1.0s; }
.E_work_logo_item:nth-child(11) { animation-delay: 1.1s; }
.E_work_logo_item:nth-child(12) { animation-delay: 1.2s; }
.E_work_logo_item:nth-child(13) { animation-delay: 1.3s; }
.E_work_logo_item:nth-child(14) { animation-delay: 1.4s; }
.E_work_logo_item:nth-child(15) { animation-delay: 1.5s; }
.E_work_logo_item:nth-child(16) { animation-delay: 1.6s; }
.E_work_logo_item:nth-child(17) { animation-delay: 1.7s; }
.E_work_logo_item:nth-child(18) { animation-delay: 1.8s; }
.E_work_logo_item:nth-child(19) { animation-delay: 1.9s; }
.E_work_logo_item:nth-child(20) { animation-delay: 2.0s; }

/* End of Employers We Work With Section Styles */

/* FAQ Section Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.FAQ-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
}

.FAQ-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.FAQ-title {
    font-size: 2.5rem;
    color: #FF0000;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.FAQ-subtitle {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.FAQ-columns {
    display: flex;
    gap: 20px;
}

.FAQ-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FAQ-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #FF0000;
}

.FAQ-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.15);
}

.FAQ-question {
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.FAQ-question:hover {
    background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
}

.FAQ-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

.FAQ-question-text {
    font-weight: bold;
    font-size: 1.1rem;
    flex: 1;
}

.FAQ-toggle {
    transition: transform 0.3s ease;
}

.FAQ-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    opacity: 0;
}

.FAQ-answer.active {
    padding: 25px;
    max-height: 1000px;
    opacity: 1;
}

.FAQ-item.active .FAQ-toggle {
    transform: rotate(180deg);
}

.FAQ-highlight {
    color: #FF0000;
    font-weight: bold;
}

.FAQ-checkmark {
    color: #28a745;
    margin-right: 8px;
}

.FAQ-list {
    margin: 15px 0;
    padding-left: 20px;
}

.FAQ-list li {
    margin: 8px 0;
    color: #555;
}

.FAQ-emphasis {
    background: linear-gradient(135deg, #FF0000, #ff3333);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .FAQ-container {
        padding: 20px 15px;
    }

    .FAQ-title {
        font-size: 2rem;
    }

    .FAQ-subtitle {
        font-size: 1rem;
    }

    .FAQ-columns {
        flex-direction: column;
        gap: 15px;
    }

    .FAQ-question {
        padding: 15px;
    }

    .FAQ-question-text {
        font-size: 1rem;
    }

    .FAQ-icon {
        font-size: 1.3rem;
    }

    .FAQ-answer.active {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .FAQ-container {
        padding: 15px 10px;
    }

    .FAQ-title {
        font-size: 1.8rem;
    }

    .FAQ-columns {
        flex-direction: column;
    }

    .FAQ-item {
        margin-bottom: 10px;
    }

    .FAQ-question {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .FAQ-question-text {
        font-size: 0.95rem;
    }

    .FAQ-answer.active {
        padding: 15px;
    }
}
/* end for FAQ items */

/* Success Stories Section Styles */
.Success_Stories_container {
    padding: 60px 20px;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

.Success_Stories_header {
    text-align: center;
    margin-bottom: 60px;
}

.Success_Stories_title {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.Success_Stories_description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.Success_Stories_highlight {
    color: #FF0000;
    font-weight: 600;
}

.Success_Stories_slider_container {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.Success_Stories_slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
}

.Success_Stories_card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Success_Stories_card_content {
    flex-grow: 1;
}

.Success_Stories_testimonial {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.Success_Stories_profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.Success_Stories_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF0000, #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.Success_Stories_info h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin: 0 0 5px 0;
}

.Success_Stories_info p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.Success_Stories_navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.Success_Stories_nav_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.Success_Stories_nav_btn:hover {
    background: #FF0000;
    transform: scale(1.1);
}

.Success_Stories_nav_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .Success_Stories_card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .Success_Stories_container {
        padding: 60px 15px;
    }

    .Success_Stories_title {
        font-size: 2.5rem;
    }

    .Success_Stories_description {
        font-size: 1rem;
    }

    .Success_Stories_card {
        flex: 0 0 calc(100% - 0px);
        padding: 30px 20px;
        min-height: 350px;
    }

    .Success_Stories_slider {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .Success_Stories_title {
        font-size: 2rem;
    }

    .Success_Stories_card {
        padding: 25px 15px;
        min-height: 320px;
    }

    .Success_Stories_testimonial {
        font-size: 0.9rem;
    }

    .Success_Stories_avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .Success_Stories_profile {
        gap: 10px;
    }

    .Success_Stories_info h4 {
        font-size: 1.1rem;
    }

    .Success_Stories_nav_btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Animation for smooth sliding */
.Success_Stories_card {
    opacity: 1;
    transform: translateX(0);
}

.Success_Stories_slider.sliding .Success_Stories_card {
    transition: all 0.5s ease;
}

/* End of Success Stories Section Styles */

/* Footer Section Styles */


footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 20px 0;
    margin-top: auto;
}

footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .footer-content {
    display: grid;
    grid-template-columns:1fr;
    gap: 40px;
    margin-bottom: 30px;
}

footer h2 {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer h3 {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

footer .subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: normal;
}

footer .course-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

footer .course-modules a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

footer .course-modules a:hover {
    color: #FF0000;
}

footer .course-modules a:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #ccc;
}

footer .locations a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

footer .locations a:hover {
    color: #FF0000;
}

footer .locations a:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #ccc;
}

footer .links-section {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 8px;
    /* margin-left: 15px; */

}

footer .links-section a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* margin-left: 15px; */

}

footer .links-section a:hover {
    color: #FF0000;
}

footer .links-section a i {
    width: 16px;
    color: #FF0000;
}

footer .bottom-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer .copyright {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .dmca-badge {
    background-color: #FF0000;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #FF0000;
}

footer .social-icons {
    display: flex;
    gap: 15px;
}

footer .social-icons a {
    color: #666;
    font-size: 20px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #FF0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    footer .locations {
        gap: 8px;
    }
    
    footer .locations a:nth-child(n+8):not(:last-child)::after {
        content: "";
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    footer .container {
        padding: 0 15px;
    }

    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    footer .course-modules {
        gap: 10px;
    }

    footer .course-modules a,
    footer .locations a {
        font-size: 13px;
    }

    footer .bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    footer .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0 15px 0;
    }

    footer h2 {
        font-size: 20px;
    }

    footer h3 {
        font-size: 16px;
    }

    footer .course-modules a,
    footer .locations a {
        font-size: 12px;
    }

    footer .course-modules a:not(:last-child)::after,
    footer .locations a:not(:last-child)::after {
        margin-left: 8px;
    }

    footer .social-icons {
        gap: 12px;
    }

    footer .social-icons a {
        font-size: 18px;
    }
}

/* End of Footer Section Styles */




        .about_hero {
            /* background: linear-gradient(135deg, #1a237e 0%, #283593 100%); */
            background-color: #F8F8F8;

            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .about_hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat; */
            opacity: 0.3;
        }

        .about_hero_container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about_hero_content {
            /* color: white; */
            color: rgb(0, 0, 0);
        }

        .about_hero_breadcrumb {
            color: rgb(203, 28, 28);
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .about_hero_breadcrumb a {
            color: rgb(237, 21, 21);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .about_hero_breadcrumb a:hover {
            color: #FF0000;
        }

        .about_hero_breadcrumb span {
            margin: 0 10px;
        }

        .about_hero_title {
            color: black;
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .about_hero_description {
            color: #555;
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .about_hero_stats {
            color: #000000;
            display: flex;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }

        .about_hero_avatars {
            color: #FF0000;
            display: flex;
            margin-right: 20px;
        }

        .about_hero_avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid #F8F8F8;
            margin-left: -10px;
            /* background: linear-gradient(45deg, #FF0000, #ff4444); */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F8F8F8;
            font-weight: bold;
            font-size: 18px;
        }

        .about_hero_avatar:first-child {
            margin-left: 0;
        }

        .about_hero_count {
            font-size: 3rem;
            font-weight: bold;
            color: rgb(0, 0, 0);
            line-height: 1;
        }

        .about_hero_count_label {
            font-size: 1rem;
            color: #FF0000;
            margin-top: 5px;
        }

        .about_hero_visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about_hero_video_container {
            position: relative;
            background: #F8F8F8;
            border-radius: 20px;
            padding: 20px;
            /* box-shadow: 0 20px 40px rgba(0,0,0,0.2); */
            /* transform: rotate(5deg); */
            transition: transform 0.3s ease;
        }

        /* .about_hero_video_container:hover {
            transform: rotate(0deg) scale(1.05);
        } */

        .about_hero_video {
            width: 300px;
            height: 200px;
            background: #F8F8F8;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about_hero_play_button {
            width: 80px;
            height: 80px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            /* box-shadow: 0 10px 20px rgba(255,0,0,0.3); */
        }

        .about_hero_play_button:hover {
            transform: scale(1.1);
            /* box-shadow: 0 15px 30px rgba(255,0,0,0.4); */
        }

        .about_hero_play_button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #F8F8F8;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .about_hero_person_info {
            position: absolute;
            bottom: -20px;
            right: -20px;
            /* background: white; */
            padding: 15px 20px;
            border-radius: 15px;
            /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about_hero_person_avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #FF0000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F8F8F8;
            font-weight: bold;
        }

        .about_hero_person_details h4 {
            font-size: 14px;
            color: #333;
            margin-bottom: 2px;
        }

        .about_hero_person_details p {
            font-size: 12px;
            color: #666;
        }

        .about_hero_floating_elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .about_hero_floating_element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .about_hero_floating_element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .about_hero_floating_element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .about_hero_floating_element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about_hero_container {
                gap: 40px;
            }
            
            .about_hero_title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .about_hero_container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .about_hero_title {
                font-size: 2.5rem;
            }
            
            .about_hero_description {
                font-size: 1.1rem;
            }
            
            .about_hero_stats {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .about_hero_video {
                width: 250px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .about_hero {
                padding: 15px;
            }
            
            .about_hero_title {
                font-size: 2rem;
                letter-spacing: -1px;
            }
            
            .about_hero_description {
                font-size: 1rem;
            }
            
            .about_hero_count {
                font-size: 2rem;
            }
            
            .about_hero_video {
                width: 200px;
                height: 120px;
            }
            
            .about_hero_play_button {
                width: 60px;
                height: 60px;
            }
            
            .about_hero_stats {
                gap: 20px;
            }
        }