/* css1 */

.diploma-page {
        font-family: 'Cairo', sans-serif;
        
    }
    
    /* Arabic font styles */
    html[lang="ar"] .diploma-page,
    .section-title {
        font-family: 'Cairo', sans-serif!important;
        direction: rtl;
        line-height: normal;
    }
    html[lang="ar"] .diploma-hero-content h1{
        line-height: 1.5;
    }
    html[lang="ar"] .diploma-page h1,
    html[lang="ar"] .diploma-page h2,
    html[lang="ar"] .diploma-page h3,
    html[lang="ar"] .diploma-page h4,
    html[lang="ar"] .diploma-page h5,
    html[lang="ar"] .diploma-page h6,
    html[lang="ar"] .diploma-page p,
    html[lang="ar"] .diploma-page span,
    html[lang="ar"] .diploma-page a,
    html[lang="ar"] .diploma-page li,
    html[lang="ar"] .diploma-page div,
    html[lang="ar"] .hero-title {
        font-family: 'Cairo', sans-serif !important;
    }
    html[lang="ar"] .diploma-hero-content h1{
        font-size: 55px;
    }
    /* Ensure buttons use Cairo in Arabic */
    html[lang="ar"] body,
    html[lang="ar"] .Applications-container a,
    html[lang="ar"] .take-the-first-step-content-inner a,
    html[lang="ar"] .Admission-container-requirements a {
        font-family: 'Cairo', sans-serif !important;
    }
    
    /* Fix text alignment for Arabic */
    html[lang="ar"] .why-choose-discriptions ul {
        padding-right: 20px;
        padding-left: 0;
    }
    
    html[lang="ar"] .why-choose-discriptions ul li {
        text-align: right;
    }
    .diploma-hero{
        background: url("https://academy.tharwah.net/wp-content/uploads/2025/07/Frame-1.jpg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
        height: 100vh;
        overflow: hidden;
        position: relative;
    }
    
    /* Vertical Slider Styles */
    .vertical-slider-container {
        height: 100%;
        position: relative;
    }
    
    .vertical-slider-wrapper {
        height: 100%;
        position: relative;
        transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    
    .vertical-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    
    .vertical-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .vertical-slide.prev {
        transform: translateY(-100%);
    }
    
    /* Beautiful Pagination */
    .vertical-slider-nav {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .slider-dots {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .slider-dots .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-dots .dot::before {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        opacity: 0;
        transform: scale(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .slider-dots .dot::after {
        content: attr(data-title);
        position: absolute;
        right: 30px;
        white-space: nowrap;
        font-size: 12px;
        font-weight: 500;
        color: #FFFFFF;
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
        pointer-events: none;
        background: rgba(46, 57, 72, 0.9);
        padding: 6px 12px;
        border-radius: 6px;
        backdrop-filter: blur(10px);
    }
    
    .slider-dots .dot:hover {
        border-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.2);
    }
    
    .slider-dots .dot:hover::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    .slider-dots .dot.active {
        width: 14px;
        height: 50px;
        border-radius: 25px;
        background: linear-gradient(180deg, #187FD3 0%, #1469B0 100%);
        border-color: transparent;
        animation: pulseActive 2s ease-in-out infinite;
    }
    
    .slider-dots .dot.active::before {
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .slider-dots .dot.active::after {
        opacity: 0;
    }
    
    /* Pagination indicator line */
    .pagination-progress {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 1px;
        overflow: hidden;
    }
    
    .pagination-progress .progress-fill {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(24, 127, 211, 0) 0%, #187FD3 100%);
        transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 1px;
    }
    
    @keyframes pulseActive {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(24, 127, 211, 0.4);
        }
        50% {
            box-shadow: 0 0 0 10px rgba(24, 127, 211, 0);
        }
    }
    
    /* Page counter */
    .slide-counter {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .slide-counter .current {
        font-size: 20px;
        font-weight: 700;
        color: #FFFFFF;
    }
    
    .slide-counter .separator {
        width: 20px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .slide-counter .total {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        opacity: 0.8;
        animation: scrollBounce 2s ease-in-out infinite;
    }
    
    .scroll-indicator span {
        color: #FFFFFF;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
    }
    
    .scroll-line {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
        position: relative;
        overflow: hidden;
    }
    
    .scroll-line::after {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        background: #FFFFFF;
        animation: scrollLineAnim 2s ease-in-out infinite;
    }
    
    @keyframes scrollBounce {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(10px);
        }
    }
    
    @keyframes scrollLineAnim {
        0% {
            top: -20px;
        }
        100% {
            top: 100%;
        }
    }
    .diploma-hero .container{
        height: 100%;

    }
.diploma-hero-content {
    max-width: 650px;
    position: relative;
    margin-top: -100px;
    z-index: 5;
}
    .diploma-hero-content h1{
        font-family: 'Cairo', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 65px;
        leading-trim: NONE;
        line-height: 110.00000000000001%;
        letter-spacing: -4%;
        color: #FFFFFF;
        margin-top: 22px;
        margin-bottom: 14px;
    }
    .diploma-hero-content span{
        font-weight: 500;
        font-style: Medium;
        font-size: 12px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .diploma-hero-content span >div{
        background: #D0C7C0;
        border-radius: 100%;
        width: 6px;
        height: 6px;
    }
    .diploma-hero-content p{
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: -2%;
        color: #FFFFFF;
        margin-bottom: 14px;
        max-width: 400px;
    }
    .diploma-hero-content a{
        font-weight: 600;
        font-style: SemiBold;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: -2%;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .diploma-hero-container{
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    /* Content animations - also wait for page load on first slide */
    .vertical-slide .diploma-hero-content > * {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-content > * {
        opacity: 1;
        transform: translateY(0);
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-content > *:nth-child(1) {
        transition-delay: 0.2s;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-content > *:nth-child(2) {
        transition-delay: 0.3s;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-content > *:nth-child(3) {
        transition-delay: 0.4s;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-content > *:nth-child(4) {
        transition-delay: 0.5s;
    }
    
    /* Image animations - wait for page load */
    .vertical-slide .diploma-hero-main-image {
        opacity: 0;
        transform: translateX(-55%) translateY(50px) scale(0.95);
        transition: all 0.8s ease;
    }
    
    /* Only animate after page is loaded */
    body.page-loaded .vertical-slide.active .diploma-hero-main-image {
        opacity: 1;
        transform: translateX(-55%) translateY(0) scale(1);
        transition-delay: 0.3s;
    }
    
    /* Initial state for first slide before page load */
    .vertical-slide.active .diploma-hero-main-image.animate-on-load {
        opacity: 0;
        transform: translateX(-55%) translateY(50px) scale(0.95);
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-main-image.animate-on-load {
        animation: heroImageEntrance 1s ease forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes heroImageEntrance {
        from {
            opacity: 0;
            transform: translateX(-55%) translateY(50px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateX(-55%) translateY(0) scale(1);
        }
    }
    .diploma-hero-main-image{
        max-height: 85vh;
        object-fit: contain;

    }
    .vertical-slide .diploma-hero-sub-image {
        opacity: 0;
        transition: all 0.8s ease;
    }
    
    .vertical-slide .diploma-hero-sub-image.right {
        transform: translateX(50px) translateY(-20%);
    }
    
    .vertical-slide .diploma-hero-sub-image.left {
        transform: translateX(-50px) translateY(-5%);
    }
    
    /* Sub images also wait for page load */
    body.page-loaded .vertical-slide.active .diploma-hero-sub-image {
        opacity: 1;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-sub-image.right {
        transform: translateX(0) translateY(-20%);
        transition-delay: 0.8s;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-sub-image.left {
        transform: translateX(0) translateY(-5%);
        transition-delay: 1s;
    }
    
    /* Initial state for sub images */
    .vertical-slide.active .diploma-hero-sub-image.animate-on-load {
        opacity: 0;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-sub-image.right.animate-on-load {
        animation: subImageRightEntrance 0.8s ease forwards;
        animation-delay: 0.8s;
    }
    
    body.page-loaded .vertical-slide.active .diploma-hero-sub-image.left.animate-on-load {
        animation: subImageLeftEntrance 0.8s ease forwards;
        animation-delay: 1s;
    }
    
    @keyframes subImageRightEntrance {
        from {
            opacity: 0;
            transform: translateX(50px) translateY(-20%);
        }
        to {
            opacity: 1;
            transform: translateX(0) translateY(-20%);
        }
    }
    
    @keyframes subImageLeftEntrance {
        from {
            opacity: 0;
            transform: translateX(-50px) translateY(-5%);
        }
        to {
            opacity: 1;
            transform: translateX(0) translateY(-5%);
        }
    }
    .diploma-hero-main-image {
        position: absolute;
        bottom: 0%;
        left: 55%;
        transform: translateX(-55%);
        z-index: 3;
    }
    .diploma-hero-sub-image{
        position: absolute;
        z-index: 2;
    }
    .diploma-hero-sub-image.right{
        bottom: 20%;
        right: 0;
        transform: translateY(-20%);
    }
    html[lang="ar"] .diploma-hero-sub-image.right{
        bottom: -5%;
        transform: translateY(-0%);

    }html[lang="ar"] .diploma-hero-sub-image.left{
        bottom: 20%;
        transform: translateY(-20%);

    }
    html[lang="ar"] .diploma-hero-main-image{
        left: 45%;
        transform: translate(-45%);
    }
    html[lang="ar"] .why-choose-content h3{
        font-size: 20px;
    }
    html[lang="ar"] .why-choose-content h2{
        font-size: 54px;
    }
    
    /* Hide Damam/Dammam references */
    .hide-damam {
        display: none !important;
        visibility: hidden !important;
    }
    .diploma-hero-sub-image.left{
        bottom: 5%;
        left: 0;
        transform: translateY(-5%);
    }
    .Applications-sec{
        background-color: #2E3948;
        padding: 40px 0;
    }
    .Applications-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .Applications-container h2{
        font-family: Cairo;
        font-weight: 400;
        font-style: Regular;
        font-size: 30px;
        leading-trim: NONE;
        line-height: 121%;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin-bottom: 26px;
    }
    .Applications-container a{
        font-family: Cairo;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 18px;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: uppercase;
        width: 364px;
        height: 74px;
        background-color: #FFFFFF;
        border-radius: 15000px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1469B0;
    }
    html[lang="ar"] .vertical-slider-nav{
        right: auto;
        left: 40px;
    }
    
    html[lang="ar"] .slider-dots .dot::after {
        right: auto;
        left: 30px;
        transform: translateX(-10px);
    }
    
    html[lang="ar"] .slider-dots .dot:hover::after {
        transform: translateX(0);
    }
    html[lang="ar"] .diploma-hero-content a img{
        transform: rotate(180deg);
    }


/* css2 */

        .brochure-download-sec {
            background: linear-gradient(135deg, #f8f9fc 0%, #e8ecf4 100%);
            padding: 60px 0;
                    }

        .brochure-download-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .brochure-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            box-shadow: 0 10px 40px rgba(24, 127, 211, 0.08);
            border: 1px solid rgba(24, 127, 211, 0.1);
        }

        .brochure-icon {
            flex-shrink: 0;
        }

        .brochure-text {
            flex-grow: 1;
        }

        .brochure-text h3 {
            font-family: 'Cairo', 'Cairo', sans-serif;
            font-size: 32px;
            font-weight: 500;
            color: #2E3948;
            margin: 0 0 12px 0;
            line-height: 1.2;
        }

        .brochure-text p {
            font-family: 'Cairo', 'Cairo', sans-serif;
            font-size: 16px;
            color: #2E394899;
            margin: 0;
            line-height: 1.5;
        }

        .brochure-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            background: linear-gradient(135deg, #187FD3 0%, #1469B0 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Cairo', 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(24, 127, 211, 0.25);
        }

        .brochure-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(24, 127, 211, 0.35);
            background: linear-gradient(135deg, #1469B0 0%, #187FD3 100%);
        }

        /* Arabic specific styles */
        html[lang="ar"] .brochure-text h3,
        html[lang="ar"] .brochure-text p {
            font-family: 'Cairo', sans-serif !important;
        }

        html[lang="ar"] .brochure-content {
            direction: rtl;
        }

        html[lang="ar"] .brochure-btn svg {
            transform: rotate(0deg);
        }

        /* Tablet styles */
        @media (max-width: 992px) {
            .brochure-content {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .brochure-text h3 {
                font-size: 28px;
            }

            .brochure-text p {
                font-size: 15px;
                margin-bottom: 20px;
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .brochure-download-sec {
                padding: 40px 20px;
                margin: 40px 0;
            }

            .brochure-content {
                padding: 25px;
                gap: 20px;
            }

            .brochure-text h3 {
                font-size: 24px;
            }

            .brochure-text p {
                font-size: 14px;
            }

            .brochure-btn {
                padding: 14px 28px;
                font-size: 15px;
                width: 100%;
                justify-content: center;
            }

            .brochure-icon svg {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .brochure-text h3 {
                font-size: 20px;
            }

            .brochure-text p {
                font-size: 13px;
            }

            .brochure-content {
                padding: 20px;
            }
        }


/* css3 */

        .why-choose-sec{
           margin-top: 100px;
        }
        .why-choose-container{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        .why-choose-content,.why-choose-discriptions{
            flex: 1;
        }
        .why-choose-content h2{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 64px;
            leading-trim: NONE;
            line-height: 110.00000000000001%;
            letter-spacing: -4%;
            color: #2E3948;
        }
        .why-choose-content h3{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 46px;
            leading-trim: NONE;
            line-height: 130%;
            letter-spacing: -4%;
            color: #2E3948;
            margin-bottom: 60px;
            margin-top: 25px;
        }
        .why-choose-content h3 span{
            color:#187FD3;
        }
        .why-choose-discriptions h4{
            font-family: Roobert;
            font-weight: 400;
            font-style: Regular;
            font-size: 32px;
            leading-trim: NONE;
            line-height: 120%;
            letter-spacing: -4%;
            color: #2E3948;
            margin-bottom: 65px;
        }
        .why-choose-discriptions ul{
            list-style: disc;
            padding-left: 20px;
        }
        .why-choose-discriptions ul li{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 22px;
            leading-trim: NONE;
            line-height: 140%;
            letter-spacing: -2%;
            color: #2E394899;
        }
/* css4 */
        .take-the-first-step-sec{
            margin-top: 100px;
            height: 900px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            background-image: url("https://academy.tharwah.net/wp-content/uploads/2025/07/0901420985f95320bb330d48cb094f88b42d6024.png");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            position: relative;
            background-attachment: fixed;
        }
        .take-the-first-step-overlay{
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #00000073;
        }
        .take-the-first-step-container{
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        .take-the-first-step-content{
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding-bottom:50px;
            padding-top:80px;
            border-top:1px solid #FFFFFF3D;
        }
        .take-the-first-step-content h2{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 64px;            
            leading-trim: NONE;
            line-height: 110.00000000000001%;
            letter-spacing: -4%;
            color: #FFFFFF;
            width: 60%;
        }
        .take-the-first-step-content-inner{
            display: flex;
            flex-direction: column;
            gap: 44px;
            width: 30%;
        }
        .take-the-first-step-content-inner p{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            leading-trim: NONE;
            line-height: 130%;
            letter-spacing: -2%;
            color: #FFFFFF;
            }
        .take-the-first-step-content-inner a{
            font-family: Cairo;
            font-weight: 600;
            font-style: SemiBold;
            font-size: 18px;
            leading-trim: NONE;
            line-height: 120%;
            letter-spacing: 0%;
            text-transform: uppercase;
            width: 286px;
            height: 74px;
            background-color: #FFFFFF;
            border-radius: 15000px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2E3948;
                    }
/* css5 */

            .Admission-sec{
                margin-top: 100px;
            }
            .Admission-container{
                display: flex;
                align-items: flex-end;
                
                flex-direction: column;
                gap: 115px;
            }
            .Admission-header{
                width: 100%;
            }
            .Admission-header h2{
                font-family: Cairo;
                font-weight: 400;
                font-style: Regular;
                font-size: 64px;
                leading-trim: NONE;
                line-height: 120%;
                letter-spacing: -4%;
                color: #2E3948;

            }
            .Admission-header h2 span{
                color: #187FD3;
            }
            .Admission-header h3{
                font-family: Cairo;
                font-weight: 400;
                font-style: Regular;
                font-size: 46px;
                leading-trim: NONE;
                line-height: 130%;
                letter-spacing: -4%;
                color: #2E3948;
            }
            .Admission-container-requirements{
                max-width: 900px;
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                gap: 23px;
                row-gap:100px ;
            }
            .Admission-container-requirements div{
                padding-top:16px ;
                border-top: 1px solid #2E394833;
                display: flex;
                gap: 12px;
                justify-content: space-between;
                max-width: 438px;
                width: 100%;

            }
            .Admission-container-requirements div h4{
                font-family: Cairo;
                font-weight: 400;
                font-style: Regular;
                font-size: 27px;
                leading-trim: NONE;
                line-height: 110.00000000000001%;
                letter-spacing: -2%;
                color: #2E3948;
            }
            .Admission-container-requirements div span{
                font-family: Cairo;
                font-weight: 500;
                font-style: Medium;
                font-size: 14px;
                leading-trim: NONE;
                line-height: 100%;
                letter-spacing: -2%;
                text-align: right;
                text-transform: uppercase;
                color: #2E394833;
            }
            .Admission-container-requirements a{
                background-color: #187FD3;
                border-radius: 15000px;
                width: 300px;
                height: 74px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: Cairo;
                font-weight: 600;
                font-style: SemiBold;
                font-size: 18px;
                leading-trim: NONE;
                line-height: 120%;
                letter-spacing: 0%;
                text-transform: uppercase;
                color: #FFFFFF;
            }
/* css6 */
            .Excellence-sec{
                margin-top: 100px;
                height: 900px;
                background-image: url("https://academy.tharwah.net/wp-content/uploads/2025/07/12072eb690dcb250928bf2cf7f60066a00346486.png");
                background-repeat: no-repeat;
                background-position: center center;
                background-size: cover;
                position: relative;
                background-attachment: fixed;
        }
        .Excellence-sec .container{
            height: 100%;
        }
        .Excellence-overlay{
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #00000073;
        }
        .Excellence-container{
            padding: 75px 0;
            display: flex;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }
        .Excellence-container h2{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 64px;
            leading-trim: NONE;
            line-height: 110.00000000000001%;
            letter-spacing: -2%;
            color: #FFFFFF;
            max-width: 440px;
        }
        .Excellence-container div{
            padding-top: 80px;
            border-top: 1px solid #FFFFFF3D;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
        }
        .Excellence-container div p{
            width: 30%;
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            leading-trim: NONE;
            line-height: 130%;
            letter-spacing: -2%;
            color: #FFFFFF;
        }
/* css7 */
            .our-impact-sec{
                margin-top: 100px;
                margin-bottom: 100px;
            }
            .our-impact-container{
                display: flex;
                flex-direction: column;
                gap: 120px;
            }
            .our-impact-header{
                padding-bottom: 28px;
                border-bottom: 1px solid #2E394899;
            }
            .our-impact-header span.tag{
                font-family: Cairo;
                font-weight: 500;
                font-style: Medium;
                font-size: 12px;
                leading-trim: NONE;
                line-height: 100%;
                letter-spacing: -2%;
                text-transform: uppercase;
                color: #2E3948;
                display: flex;
                align-items: center;
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 20px;
            }
            .our-impact-header span.tag div{
                width: 6px;
                height: 6px;
                background-color: #D0C7C0;
                border-radius: 100%;
            }
            .our-impact-header h2{
                font-family: Cairo;
                font-weight: 400;
                font-style: Regular;
                font-size: 64px;
                leading-trim: NONE;
                line-height: 110.00000000000001%;
                letter-spacing: -2%;
                color: #2E3948;
            }
            .our-impact-header h2 span{
                color: #187FD3;
            }
            .our-impact-counter{
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
            }
            .our-impact-counter div{
                max-width: 360px;
                width: 100%;
            }
            .our-impact-counter div h3{
                font-family: Cairo;
                font-weight: 300;
                font-style: Light;
                font-size: 85px;
                leading-trim: NONE;
                line-height: 121%;
                letter-spacing: 0.5%;
                color: #2E3948;
            }
            .our-impact-counter div p{
                font-family: Cairo;
                font-weight: 300;
                font-style: Light;
                font-size: 24px;
                leading-trim: NONE;
                line-height: 121%;
                letter-spacing: 0.5%;
                color: #2E3948BF;
            }
        .Excellence-and-Trust-sec{
            margin-top: 100px;
            height: 900px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            background-image: url("https://academy.tharwah.net/wp-content/uploads/2025/07/0fe33c84c5a3f26eacdd559eec0c81b4c173ffa0-scaled-1.jpg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            position: relative;
            background-attachment: fixed;
        }
        .Excellence-and-Trust-overlay{
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #00000073;
        }
        .Excellence-and-Trust-container{
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        .Excellence-and-Trust-content{
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding-bottom:50px;
            padding-top:80px;
            border-top:1px solid #FFFFFF3D;
        }
        .Excellence-and-Trust-content h2{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 64px;            
            leading-trim: NONE;
            line-height: 110.00000000000001%;
            letter-spacing: -4%;
            color: #FFFFFF;
            width: 60%;
            max-width: 440px;
        }
        .Excellence-and-Trust-content-inner{
            display: flex;
            flex-direction: column;
            gap: 44px;
            width: 30%;
        }
        .Excellence-and-Trust-content-inner p{
            font-family: Cairo;
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            leading-trim: NONE;
            line-height: 130%;
            letter-spacing: -2%;
            color: #FFFFFF;
            }
        .Excellence-and-Trust-content-inner a{
            font-family: Cairo;
            font-weight: 600;
            font-style: SemiBold;
            font-size: 18px;
            leading-trim: NONE;
            line-height: 120%;
            letter-spacing: 0%;
            text-transform: uppercase;
            width: 286px;
            height: 74px;
            background-color: #FFFFFF;
            border-radius: 15000px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2E3948;
                    }
           @media(min-width:1024px){
                .diploma-hero {
                    min-height: 950px;
                }
               
            }
            @media(max-width:1024px){
                .diploma-hero {
                    height: 800px;
                }
                html[lang="ar"] .diploma-hero-container{
                    justify-content:flex-end !important;
                }
                .diploma-hero-sub-image {
                    display: none;
                }
                .diploma-hero-content h1{
                    font-size: 40px;
                }
                .vertical-slide .container {
                    padding: 0 20px !important;
                }
                .diploma-hero-content{
                    max-width: 400px;
                    width: 100%;
                    margin-top: 50px;
                }
                .diploma-hero-content p{
                    max-width: 350px;
                }
                .diploma-hero-main-image{
                    left: auto;
                    right: 0;
                    transform: translateX(0);
                    max-width: 400px;
                    width: 100%;
                    height: auto;
                }
                
                /* Applications section */
                .Applications-container h2 {
                    font-size: 24px;
                }
                .Applications-container a {
                    width: 300px;
                    height: 60px;
                    font-size: 16px;
                }
                
                /* Why Choose section */
                .why-choose-container {
                    flex-direction: column;
                    gap: 40px;
                }
                .why-choose-content h2 {
                    font-size: 48px;
                }
                .why-choose-content h3 {
                    font-size: 36px;
                }
                .why-choose-discriptions h4 {
                    font-size: 24px;
                }
                .why-choose-discriptions ul li {
                    font-size: 18px;
                }
                
                /* Take the First Step section */
                .take-the-first-step-sec {
                    height: 700px;
                }
                .take-the-first-step-content {
                    flex-direction: column;
                    gap: 40px;
                }
                .take-the-first-step-content h2 {
                    font-size: 48px;
                    width: 100%;
                }
                .take-the-first-step-content-inner {
                    width: 100%;
                }
                
                /* Admission section */
                .Admission-header h2 {
                    font-size: 48px;
                }
                .Admission-header h3 {
                    font-size: 36px;
                }
                .Admission-container-requirements {
                    gap: 20px;
                    row-gap: 60px;
                }
                .Admission-container-requirements div h4 {
                    font-size: 22px;
                }
                
                /* Excellence sections */
                .Excellence-sec, .Excellence-and-Trust-sec {
                    height: 700px;
                }
                .Excellence-container h2, .Excellence-and-Trust-content h2 {
                    font-size: 48px;
                }
                .Excellence-container div p, .Excellence-and-Trust-content-inner p {
                    width: 50%;
                }
                
                /* Our Impact section */
                .our-impact-header h2 {
                    font-size: 48px;
                }
                .our-impact-counter div h3 {
                    font-size: 60px;
                }
                .our-impact-counter div p {
                    font-size: 20px;
                }
                
                /* Vertical slider nav */
                .vertical-slider-nav {
                    right: 20px;
                }
                
                html[lang="ar"] .vertical-slider-nav {
                    left: 20px;
                    right: auto;
                }
                
                .slider-dots .dot {
                    width: 12px;
                    height: 12px;
                }
                
                .slider-dots .dot.active {
                    height: 40px;
                }
                
                .slide-counter {
                    font-size: 12px;
                    bottom: -40px;
                }
                
                .slide-counter .current {
                    font-size: 16px;
                }
            }
            
            /* Mobile styles */
            @media(max-width:768px){
              html[lang="ar"] .diploma-hero-content h1{
        font-size: 24px;
    }
                .diploma-hero {
                    height: 70vh;
                    min-height: 600px;
                    background-position-x: 25%;
                }
                .diploma-hero-content h1{
                    font-size: 32px;
                    line-height: 120%;
                }
                .diploma-hero-content span {
                    font-size: 11px;
                }
                .diploma-hero-content p {
                    font-size: 13px;
                    margin-bottom: 20px;
                }
                .diploma-hero-content a {
                    font-size: 14px;
                }
                .diploma-hero-content{
                    max-width: 300px;
                    margin-top: 0;
                }
                .diploma-hero-main-image{
                    max-width: 300px;
                    bottom: -10%;
                }
                .vertical-slider-nav {
                    right: 20px;
                }
                
                .slider-dots .dot::after {
                    display: none;
                }
                
                .slide-counter {
                    display: none;
                }
                
                .pagination-progress {
                    display: none;
                }
                .scroll-indicator {
                    bottom: 30px;
                }
                
                /* Applications section */
                .Applications-sec {
                    padding: 30px 0;
                }
                .Applications-container h2 {
                    font-size: 20px;
                    margin-bottom: 20px;
                }
                .Applications-container a {
                    width: 280px;
                    height: 54px;
                    font-size: 14px;
                }
                
                /* Why Choose section */
                .why-choose-sec {
                    margin-top: 60px;
                }
                .why-choose-content h2 {
                    font-size: 36px;
                }
                .why-choose-content h3 {
                    font-size: 28px;
                    margin-bottom: 40px;
                    margin-top: 15px;
                }
                .why-choose-content img {
                    width: 100%;
                    height: auto;
                }
                .why-choose-discriptions h4 {
                    font-size: 20px;
                    margin-bottom: 40px;
                }
                .why-choose-discriptions ul li {
                    font-size: 16px;
                    line-height: 150%;
                    margin-bottom: 10px;
                }
                
                /* Take the First Step section */
                .take-the-first-step-sec {
                    margin-top: 60px;
                    height: auto;
                    min-height: 500px;
                    background-attachment: scroll;
                }
                .take-the-first-step-content {
                    padding-top: 40px;
                    padding-bottom: 40px;
                }
                .take-the-first-step-content h2 {
                    font-size: 32px;
                    line-height: 120%;
                }
                .take-the-first-step-content-inner {
                    gap: 30px;
                }
                .take-the-first-step-content-inner p {
                    font-size: 13px;
                }
                .take-the-first-step-content-inner a {
                    width: 250px;
                    height: 60px;
                    font-size: 16px;
                }
                
                /* Admission section */
                .Admission-sec {
                    margin-top: 60px;
                }
                .Admission-container {
                    gap: 60px;
                }
                .Admission-header h2 {
                    font-size: 36px;
                    line-height: 110%;
                }
                .Admission-header h3 {
                    font-size: 24px;
                    margin-top: 10px;
                }
                .Admission-container-requirements {
                    max-width: 100%;
                    gap: 15px;
                    row-gap: 40px;
                }
                .Admission-container-requirements div {
                    max-width: 100%;
                    justify-content: space-between;
                }
                .Admission-container-requirements div h4 {
                    font-size: 18px;
                    line-height: 120%;
                }
                .Admission-container-requirements a {
                    width: 250px;
                    height: 60px;
                    font-size: 16px;
                }
                
                /* Excellence sections */
                .Excellence-sec, .Excellence-and-Trust-sec {
                    margin-top: 60px;
                    height: auto;
                    min-height: 500px;
                    background-attachment: scroll;
                }
                .Excellence-container {
                    padding: 50px 0;
                }
                .Excellence-container h2, .Excellence-and-Trust-content h2 {
                    font-size: 32px;
                    max-width: 100%;
                }
                .Excellence-container div {
                    padding-top: 40px;
                }
                .Excellence-container div p {
                    width: 100%;
                    font-size: 13px;
                }
                .Excellence-and-Trust-content {
                    padding-top: 40px;
                    padding-bottom: 40px;
                }
                .Excellence-and-Trust-content h2 {
                    width: 100%;
                    max-width: 100%;
                }
                .Excellence-and-Trust-content-inner {
                    width: 100%;
                }
                .Excellence-and-Trust-content-inner p {
                    font-size: 13px;
                    width: 100%;
                }
                
                /* Our Impact section */
                .our-impact-sec {
                    margin-top: 60px;
                }
                .our-impact-container {
                    gap: 60px;
                }
                .our-impact-header {
                    padding-bottom: 20px;
                }
                .our-impact-header h2 {
                    font-size: 36px;
                    line-height: 110%;
                }
                .our-impact-counter {
                    flex-direction: column;
                    gap: 40px;
                }
                .our-impact-counter div {
                    text-align: center;
                }
                .our-impact-counter div h3 {
                    font-size: 48px;
                    margin-bottom: 10px;
                }
                .our-impact-counter div p {
                    font-size: 18px;
                }
              

            }
            @media(max-width:992px){
                .vertical-slide.active .diploma-hero-main-image {
                        left: auto;
                        right: -50% !important;
                        transform: translateX(-100%);
                        bottom: 0;
                    }
            }
            @media(max-width:650px){
                .vertical-slide.active .diploma-hero-main-image {
                    right: -65% !important;
                }
            }
            /* Small mobile styles */
            @media(max-width:480px){
                .vertical-slide.active .diploma-hero-main-image {
                        left: auto;
                        right: -60% !important;
                        transform: translateX(-100%);
                        bottom: 0;
                    }
                .diploma-hero-content h1{
                    font-size: 28px;
                }
                .diploma-hero-content{
                    max-width: 200px;
                }
                .diploma-hero-content p {
                    max-width: 100%;
                }
                .diploma-hero-main-image{
                    max-width: 250px;
                }
                .vertical-slide  .slide-2-image.diploma-hero-main-image{
                    max-width: 300px;
                    right: -80% !important;
                }
                
                /* Applications section */
                .Applications-container h2 {
                    font-size: 18px;
                }
                .Applications-container a {
                    width: 100%;
                    max-width: 260px;
                }
                
                /* Why Choose section */
                .why-choose-content h2 {
                    font-size: 30px;
                }
                .why-choose-content h3 {
                    font-size: 24px;
                }
                
                /* Take the First Step section */
                .take-the-first-step-content h2 {
                    font-size: 28px;
                }
                
                /* Admission section */
                .Admission-header h2 {
                    font-size: 30px;
                }
                .Admission-header h3 {
                    font-size: 20px;
                }
                .Admission-container-requirements div h4 {
                    font-size: 16px;
                }
                
                /* Our Impact section */
                .our-impact-header h2 {
                    font-size: 30px;
                }
                .our-impact-counter div h3 {
                    font-size: 40px;
                }
                .our-impact-counter div p {
                    font-size: 16px;
                }
            }
            @media (max-width:400px) {
                .vertical-slide.active .diploma-hero-main-image {
                    right: -60% !important;
                }
            }