.web-design-services {
    background: #f9f9f9;
    padding: 60px 15px;
}

.web-design-services .container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 28px;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.small-title {
    margin-top: 50px;
}

.section-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #ff7a18;
    transition: all 0.3s ease;
}

.service-box h3 {
    font-size: 18px;
    color: #0b2c4d;
    margin-bottom: 8px;
}

.service-box p {
    font-size: 14px;
    color: #666;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.types-grid span {
    background: #fff;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    border-radius: 20px;
    border: 1px solid #ddd;
}
/*Web Design Process*/
.web-design-process {
    background: #ffffff;
    padding: 60px 15px;
}

.web-design-process .container {
    max-width: 1200px;
    margin: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 6px;
    border-top: 4px solid #ff7a18;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 22px;
    font-weight: 700;
    color: #ff7a18;
    margin-bottom: 10px;
    display: block;
}

.process-step h3 {
    font-size: 17px;
    color: #0b2c4d;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 14px;
    color: #666;
}
/*Why choose Us*/
.why-choose-webdesign {
    background: #f9f9f9;
    padding: 60px 15px;
}

.why-choose-webdesign .container {
    max-width: 1200px;
    margin: auto;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.choose-box {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: 6px;
    border-left: 4px solid #ff7a18;
    transition: all 0.3s ease;
}

.choose-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.choose-box h3 {
    font-size: 17px;
    color: #0b2c4d;
    margin-bottom: 8px;
}

.choose-box p {
    font-size: 14px;
    color: #666;
}

/*Digital marketing page css*/
.dm-services{
    padding:90px 20px;
    background:linear-gradient(135deg,#eef4ff,#ffffff);
    text-align:center;
}
.dm-services h2{
    font-size:38px;
    margin-bottom:50px;
}
.services-wrap{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.service-box{
    padding:35px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    font-weight:600;
    transition:.4s;
}
.service-box:hover{
    transform:translateY(-12px);
    background:#0a58ca;
    color:#fff;
}
/*Process*/
.dm-process{
    padding:80px 20px;
    background:#0a58ca;
    color:#fff;
    text-align:center;
}
.dm-process h2{
    margin-bottom:40px;
}
.process-flow{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}
.process-flow span{
    padding:18px 30px;
    border-radius:50px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(6px);
    transition:.3s;
}
.process-flow span:hover{
    background:#fff;
    color:#0a58ca;
}
.dm-process{
    padding:80px 20px;
    background:#0a58ca;
    color:#fff;
    text-align:center;
}
.dm-process h2{
    margin-bottom:40px;
}
.process-flow{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}
.process-flow span{
    padding:18px 30px;
    border-radius:50px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(6px);
    transition:.3s;
}
.process-flow span:hover{
    background:#fff;
    color:#0a58ca;
}
/*Why us */
.why-choose-us {
    background: #fff7f0;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.why-choose-us .section-header h2 {
    color: #ff8045;
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
}
.why-choose-us .section-header h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #ff8045;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
.why-choose-us .section-header p {
    color: #333;
    font-size: 16px;
    margin-bottom: 50px;
}
.why-choose-us .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.why-choose-us .card {
    background: #fff;
    border: 2px solid #ff8045;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.why-choose-us .card:hover {
    background: #ff8045;
    color: #fff;
    transform: translateY(-10px);
}
.why-choose-us .card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ff8045;
    transition: color 0.3s ease;
}
.why-choose-us .card:hover .icon {
    color: #fff;
}
.why-choose-us .card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.why-choose-us .card p {
    font-size: 15px;
    line-height: 1.6;
}
@media(max-width:768px){
    .why-choose-us {
        padding: 60px 15px;
    }
    .why-choose-us .section-header h2 {
        font-size: 28px;
    }
    .why-choose-us .card {
        padding: 25px 15px;
    }
}

/*Grapic Design Page Custom Css*/
/* Course Highlights Section Styles */
    .course-highlights-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .highlights-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .highlights-title {
        font-size: 38px;
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .highlights-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .highlights-subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .highlight-card {
        background: #fff;
        padding: 35px 30px;
        border-radius: 12px;
        border: 2px solid #f0f0f0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .highlight-card:hover::before {
        transform: scaleX(1);
    }

    .highlight-card:hover {
        border-color: #ff6b35;
        box-shadow: 0 10px 35px rgba(255, 107, 53, 0.15);
        transform: translateY(-8px);
    }

    .highlight-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
        transition: all 0.4s ease;
    }

    .highlight-card:hover .highlight-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
    }

    .highlight-icon-wrapper i {
        font-size: 32px;
        color: #ffffff;
    }

    .highlight-card-title {
        font-size: 22px;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .highlight-card-description {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

    .highlight-badge {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        color: #fff;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Animation */
    @keyframes fadeInUpHighlight {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .highlight-card {
        animation: fadeInUpHighlight 0.6s ease forwards;
        opacity: 0;
    }

    .highlight-card:nth-child(1) { animation-delay: 0.1s; }
    .highlight-card:nth-child(2) { animation-delay: 0.2s; }
    .highlight-card:nth-child(3) { animation-delay: 0.3s; }
    .highlight-card:nth-child(4) { animation-delay: 0.4s; }
    .highlight-card:nth-child(5) { animation-delay: 0.5s; }
    .highlight-card:nth-child(6) { animation-delay: 0.6s; }

    /* Responsive Design */
    @media (max-width: 768px) {
        .course-highlights-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .highlights-title {
            font-size: 30px;
        }

        .highlights-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .highlight-card {
            padding: 30px 25px;
        }
    }
/*Why us css*/
/* What You'll Learn Section Styles */
        .what-youll-learn-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 60px 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 15px;
        }

        .learn-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .learn-title {
            font-size: 38px;
            color: #1e3a5f;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .learn-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #ff8f5f);
            border-radius: 2px;
        }

        .learn-subtitle {
            font-size: 16px;
            color: #666;
            margin-top: 20px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .learn-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
            align-items: start;
        }

        .learn-left-column {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        }

        .learn-category {
            margin-bottom: 35px;
        }

        .learn-category:last-child {
            margin-bottom: 0;
        }

        .category-title {
            font-size: 20px;
            color: #1e3a5f;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .category-title i {
            color: #ff6b35;
            font-size: 24px;
        }

        .learn-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .learn-item {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .learn-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 18px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #ff6b35, #ff8f5f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .learn-item::after {
            content: '✓';
            position: absolute;
            left: 5px;
            top: 16px;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .learn-item:hover {
            color: #1e3a5f;
            transform: translateX(5px);
        }

        /* Right Column - Skills Cards */
        .learn-right-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .skill-card {
            background: #ffffff;
            padding: 25px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border-left: 4px solid #ff6b35;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50px;
            width: 100px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05));
            transform: skewX(-15deg);
            transition: right 0.4s ease;
        }

        .skill-card:hover::before {
            right: -10px;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
            border-left-color: #ff8f5f;
        }

        .skill-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .skill-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35, #ff8f5f);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .skill-icon i {
            color: white;
            font-size: 24px;
        }

        .skill-card-title {
            font-size: 18px;
            color: #1e3a5f;
            font-weight: 600;
            margin: 0;
        }

        .skill-card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .skill-level {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 95, 0.1));
            color: #ff6b35;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Animation */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .learn-left-column {
            animation: fadeInLeft 0.8s ease forwards;
        }

        .skill-card {
            animation: fadeInRight 0.8s ease forwards;
            opacity: 0;
        }

        .skill-card:nth-child(1) { animation-delay: 0.2s; }
        .skill-card:nth-child(2) { animation-delay: 0.3s; }
        .skill-card:nth-child(3) { animation-delay: 0.4s; }
        .skill-card:nth-child(4) { animation-delay: 0.5s; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .learn-content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .learn-left-column {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {
            .what-youll-learn-section {
                padding: 40px 25px;
                margin: 30px 20px;
            }

            .learn-title {
                font-size: 30px;
            }

            .category-title {
                font-size: 18px;
            }

            .skill-card {
                padding: 20px 25px;
            }
        }
        /*Career opportunities*/
        * Career Opportunities Section Styles */
    .career-opportunities-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .career-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .career-title {
        font-size: 38px;
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .career-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .career-subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .career-stats-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
        padding: 30px;
        background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
        border-radius: 12px;
    }

    .career-stat-box {
        text-align: center;
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #ff6b35;
        margin-bottom: 8px;
        display: block;
    }

    .stat-label {
        font-size: 14px;
        color: #1e3a5f;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .career-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .career-card {
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        border: 2px solid #f5f5f5;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .career-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 143, 95, 0.05));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .career-card:hover::before {
        opacity: 1;
    }

    .career-card:hover {
        border-color: #ff6b35;
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
        transform: translateY(-8px);
    }

    .career-card-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .career-icon-box {
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
    }

    .career-card:hover .career-icon-box {
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
    }

    .career-icon-box i {
        font-size: 28px;
        color: #ffffff;
    }

    .career-card-info {
        flex: 1;
    }

    .career-role-title {
        font-size: 22px;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .career-role-type {
        font-size: 13px;
        color: #ff6b35;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .career-description {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .career-details-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .career-detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        font-size: 14px;
        color: #555;
    }

    .career-detail-item i {
        color: #ff6b35;
        font-size: 16px;
        width: 20px;
    }

    .salary-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #4CAF50, #45a049);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-top: 15px;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }

    .salary-badge i {
        font-size: 16px;
    }

    .freelance-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .career-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .career-card:nth-child(1) { animation-delay: 0.1s; }
    .career-card:nth-child(2) { animation-delay: 0.2s; }
    .career-card:nth-child(3) { animation-delay: 0.3s; }
    .career-card:nth-child(4) { animation-delay: 0.4s; }
    .career-card:nth-child(5) { animation-delay: 0.5s; }
    .career-card:nth-child(6) { animation-delay: 0.6s; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .career-grid {
            grid-template-columns: 1fr;
        }

        .career-stats-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .career-opportunities-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .career-title {
            font-size: 30px;
        }

        .career-stats-wrapper {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 20px;
        }

        .career-card {
            padding: 25px 20px;
        }

        .career-role-title {
            font-size: 20px;
        }
    }
    
    /*Video Editing page css*/
    * Course Highlights Section - Video Editing */
    .video-course-highlights-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .video-highlights-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .video-highlights-title {
        font-size: 38px;
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .video-highlights-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .video-highlights-subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .video-highlights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .video-highlight-card {
        background: #fff;
        padding: 35px 30px;
        border-radius: 12px;
        border: 2px solid #f0f0f0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .video-highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .video-highlight-card:hover::before {
        transform: scaleX(1);
    }

    .video-highlight-card:hover {
        border-color: #ff6b35;
        box-shadow: 0 10px 35px rgba(255, 107, 53, 0.15);
        transform: translateY(-8px);
    }

    .video-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
        transition: all 0.4s ease;
    }

    .video-highlight-card:hover .video-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
    }

    .video-icon-wrapper i {
        font-size: 32px;
        color: #ffffff;
    }

    .video-highlight-card-title {
        font-size: 22px;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .video-highlight-card-description {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

    .video-highlight-badge {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        color: #fff;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Animation */
    @keyframes fadeInUpVideo {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .video-highlight-card {
        animation: fadeInUpVideo 0.6s ease forwards;
        opacity: 0;
    }

    .video-highlight-card:nth-child(1) { animation-delay: 0.1s; }
    .video-highlight-card:nth-child(2) { animation-delay: 0.2s; }
    .video-highlight-card:nth-child(3) { animation-delay: 0.3s; }
    .video-highlight-card:nth-child(4) { animation-delay: 0.4s; }
    .video-highlight-card:nth-child(5) { animation-delay: 0.5s; }
    .video-highlight-card:nth-child(6) { animation-delay: 0.6s; }

    /* Responsive Design */
    @media (max-width: 768px) {
        .video-course-highlights-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .video-highlights-title {
            font-size: 30px;
        }

        .video-highlights-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .video-highlight-card {
            padding: 30px 25px;
        }
    }
    /* What You'll Learn Section - Video Editing */
    .video-learn-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 15px;
    }

    .video-learn-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .video-learn-title {
        font-size: 38px;
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .video-learn-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .video-learn-subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 20px;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .video-learn-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 40px;
        align-items: start;
    }

    .video-learn-left-column {
        background: #ffffff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    }

    .video-learn-category {
        margin-bottom: 35px;
    }

    .video-learn-category:last-child {
        margin-bottom: 0;
    }

    .video-category-title {
        font-size: 20px;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .video-category-title i {
        color: #ff6b35;
        font-size: 24px;
    }

    .video-learn-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .video-learn-item {
        padding: 12px 0;
        padding-left: 35px;
        position: relative;
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        transition: all 0.3s ease;
    }

    .video-learn-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18px;
        width: 20px;
        height: 20px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-learn-item::after {
        content: '✓';
        position: absolute;
        left: 5px;
        top: 16px;
        color: white;
        font-size: 12px;
        font-weight: bold;
    }

    .video-learn-item:hover {
        color: #1e3a5f;
        transform: translateX(5px);
    }

    /* Right Column - Skills Cards */
    .video-learn-right-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .video-skill-card {
        background: #ffffff;
        padding: 25px 30px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        border-left: 4px solid #ff6b35;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .video-skill-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: -50px;
        width: 100px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05));
        transform: skewX(-15deg);
        transition: right 0.4s ease;
    }

    .video-skill-card:hover::before {
        right: -10px;
    }

    .video-skill-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
        border-left-color: #ff8f5f;
    }

    .video-skill-card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 12px;
    }

    .video-skill-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .video-skill-icon i {
        color: white;
        font-size: 24px;
    }

    .video-skill-card-title {
        font-size: 18px;
        color: #1e3a5f;
        font-weight: 600;
        margin: 0;
    }

    .video-skill-card-description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    .video-skill-level {
        display: inline-block;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 95, 0.1));
        color: #ff6b35;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 11px;
        font-weight: 600;
        margin-top: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Animation */
    @keyframes fadeInLeftVideo {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRightVideo {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .video-learn-left-column {
        animation: fadeInLeftVideo 0.8s ease forwards;
    }

    .video-skill-card {
        animation: fadeInRightVideo 0.8s ease forwards;
        opacity: 0;
    }

    .video-skill-card:nth-child(1) { animation-delay: 0.2s; }
    .video-skill-card:nth-child(2) { animation-delay: 0.3s; }
    .video-skill-card:nth-child(3) { animation-delay: 0.4s; }
    .video-skill-card:nth-child(4) { animation-delay: 0.5s; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .video-learn-content-wrapper {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .video-learn-left-column {
            padding: 30px 25px;
        }
    }

    @media (max-width: 768px) {
        .video-learn-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .video-learn-title {
            font-size: 30px;
        }

        .video-category-title {
            font-size: 18px;
        }

        .video-skill-card {
            padding: 20px 25px;
        }
    }
    
    /* Software Covered Section - Video Editing */
    .video-software-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .video-software-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .video-software-title {
        font-size: 38px;
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .video-software-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .video-software-subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .video-software-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .video-software-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 35px 30px;
        border-radius: 12px;
        border: 2px solid #f0f0f0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        text-align: center;
        overflow: hidden;
    }

    .video-software-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 143, 95, 0.05));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .video-software-card:hover::before {
        opacity: 1;
    }

    .video-software-card:hover {
        border-color: #ff6b35;
        box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
        transform: translateY(-10px);
    }

    .video-software-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .video-software-card:hover .video-software-logo {
        transform: scale(1.15) rotate(-5deg);
        box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    }

    .video-software-logo i {
        font-size: 40px;
        color: #ffffff;
    }

    .video-software-name {
        font-size: 22px;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .video-software-description {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .video-software-features {
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
        text-align: left;
        position: relative;
        z-index: 1;
    }

    .video-software-feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 13px;
        color: #555;
    }

    .video-software-feature-item i {
        color: #ff6b35;
        font-size: 14px;
        flex-shrink: 0;
    }

    .video-software-badge {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 15px;
        position: relative;
        z-index: 1;
    }

    /* Animation */
    @keyframes zoomInSoftware {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .video-software-card {
        animation: zoomInSoftware 0.6s ease forwards;
        opacity: 0;
    }

    .video-software-card:nth-child(1) { animation-delay: 0.1s; }
    .video-software-card:nth-child(2) { animation-delay: 0.2s; }
    .video-software-card:nth-child(3) { animation-delay: 0.3s; }
    .video-software-card:nth-child(4) { animation-delay: 0.4s; }
    .video-software-card:nth-child(5) { animation-delay: 0.5s; }

    /* Responsive Design */
    @media (max-width: 768px) {
        .video-software-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .video-software-title {
            font-size: 30px;
        }

        .video-software-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .video-software-card {
            padding: 30px 25px;
        }
    }
    
    /* Career Opportunities Section - Video Editing */
    .video-career-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

    .video-career-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .video-career-title {
        font-size: 38px;
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .video-career-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .video-career-subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .video-career-stats-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
        padding: 30px;
        background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
        border-radius: 12px;
    }

    .video-career-stat-box {
        text-align: center;
        padding: 20px;
    }

    .video-stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #ff6b35;
        margin-bottom: 8px;
        display: block;
    }

    .video-stat-label {
        font-size: 14px;
        color: #1e3a5f;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .video-career-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .video-career-card {
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        border: 2px solid #f5f5f5;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .video-career-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 143, 95, 0.05));
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .video-career-card:hover::before {
        opacity: 1;
    }

    .video-career-card:hover {
        border-color: #ff6b35;
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
        transform: translateY(-8px);
    }

    .video-career-card-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .video-career-icon-box {
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
    }

    .video-career-card:hover .video-career-icon-box {
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
    }

    .video-career-icon-box i {
        font-size: 28px;
        color: #ffffff;
    }

    .video-career-card-info {
        flex: 1;
    }

    .video-career-role-title {
        font-size: 22px;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .video-career-role-type {
        font-size: 13px;
        color: #ff6b35;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .video-career-description {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .video-career-details-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .video-career-detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        font-size: 14px;
        color: #555;
    }

    .video-career-detail-item i {
        color: #ff6b35;
        font-size: 16px;
        width: 20px;
    }

    .video-salary-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #4CAF50, #45a049);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-top: 15px;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }

    .video-salary-badge i {
        font-size: 16px;
    }

    .video-freelance-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
    }

    /* Animation */
    @keyframes fadeInUpCareer {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .video-career-card {
        animation: fadeInUpCareer 0.6s ease forwards;
        opacity: 0;
    }

    .video-career-card:nth-child(1) { animation-delay: 0.1s; }
    .video-career-card:nth-child(2) { animation-delay: 0.2s; }
    .video-career-card:nth-child(3) { animation-delay: 0.3s; }
    .video-career-card:nth-child(4) { animation-delay: 0.4s; }
    .video-career-card:nth-child(5) { animation-delay: 0.5s; }
    .video-career-card:nth-child(6) { animation-delay: 0.6s; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .video-career-grid {
            grid-template-columns: 1fr;
        }

        .video-career-stats-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .video-career-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .video-career-title {
            font-size: 30px;
        }   

        .video-career-stats-wrapper {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 20px;
        }

        .video-career-card {
            padding: 25px 20px;
        }

        .video-career-role-title {
            font-size: 20px;
        }
    }
    
    /* Why Choose This Course Section - Video Editing */
    .video-why-choose-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 60px 40px;
        background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
        border-radius: 15px;
        position: relative;
        overflow: hidden;
    }

    .video-why-choose-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 107, 53, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .video-why-choose-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 143, 95, 0.08);
        border-radius: 50%;
        z-index: 0;
    }

    .video-why-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

    .video-why-title {
        font-size: 38px;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .video-why-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8f5f);
        border-radius: 2px;
    }

    .video-why-subtitle {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 20px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .video-why-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
        position: relative;
        z-index: 1;
    }

    .video-why-card {
        background: rgba(255, 255, 255, 0.95);
        padding: 35px 30px;
        border-radius: 12px;
        border-left: 5px solid #ff6b35;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        backdrop-filter: blur(10px);
    }

    .video-why-card:hover {
        background: #ffffff;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
        transform: translateX(10px);
        border-left-color: #ff8f5f;
    }

    .video-why-card-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .video-why-icon-box {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
    }

    .video-why-card:hover .video-why-icon-box {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
    }

    .video-why-icon-box i {
        font-size: 26px;
        color: #ffffff;
    }

    .video-why-card-title {
        font-size: 22px;
        color: #1e3a5f;
        font-weight: 600;
        margin: 0;
    }

    .video-why-card-description {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .video-why-points-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .video-why-point-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 8px 0;
        font-size: 14px;
        color: #666;
    }

    .video-why-point-item i {
        color: #ff6b35;
        font-size: 16px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .video-why-highlight-badge {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b35, #ff8f5f);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 15px;
    }

    /* Special Stats Box */
    .video-why-stats-box {
        grid-column: span 2;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 143, 95, 0.95));
        padding: 40px;
        border-radius: 12px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .video-stat-item {
        border-right: 2px solid rgba(255, 255, 255, 0.3);
    }

    .video-stat-item:last-child {
        border-right: none;
    }

    .video-stat-value {
        font-size: 36px;
        font-weight: 700;
        color: #ffffff;
        display: block;
        margin-bottom: 8px;
    }

    .video-stat-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Animation */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .video-why-card {
        animation: slideInLeft 0.6s ease forwards;
        opacity: 0;
    }

    .video-why-card:nth-child(1) { animation-delay: 0.1s; }
    .video-why-card:nth-child(2) { animation-delay: 0.2s; }
    .video-why-card:nth-child(3) { animation-delay: 0.3s; }
    .video-why-card:nth-child(4) { animation-delay: 0.4s; }
    .video-why-card:nth-child(5) { animation-delay: 0.5s; }
    .video-why-card:nth-child(6) { animation-delay: 0.6s; }
    .video-why-stats-box { animation-delay: 0.7s; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .video-why-content-wrapper {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .video-why-stats-box {
            grid-column: span 1;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .video-stat-item {
            border-right: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 20px;
        }

        .video-stat-item:nth-last-child(-n+2) {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

    @media (max-width: 768px) {
        .video-why-choose-section {
            padding: 40px 25px;
            margin: 30px 20px;
        }

        .video-why-title {
            font-size: 30px;
        }

        .video-why-stats-box {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 30px 25px;
        }

        .video-stat-item {
            padding-bottom: 20px;
        }

        .video-stat-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .video-why-card {
            padding: 30px 25px;
        }

        .video-why-card:hover {
            transform: translateX(5px);
        }
    }



