        /* Reset and base styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #ff6b6b;
            --dark: #2b2d42;
            --gray: #8d99ae;
            --light: #f8f9fa;
            --white: #ffffff;
            --section-padding: 5rem 0;
            --container-padding: 0 2rem;
            --border-radius: 8px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --text-color: #1f2937;
            --light-text: #6b7280;
            --background: #ffffff;
            --light-background: #f3f4f6;
        }

        body {
            font-family: 'Poppins', 'Tajawal', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--light);
            transition: all 0.3s ease;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--container-padding);
        }

        section {
            padding: var(--section-padding);
        }

        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 1rem;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            margin-bottom: 2.5rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -0.8rem;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            left: 50%;
        }

        h3 {
            font-size: 22px;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .text-center {
            text-align: center;
        }

        .text-center h2::after {
           left: 50%;
            transform: translateX(-50%);
            inset-inline-start: auto;
        }

        .btn {
            display: inline-block;
            padding: 10px 15px;
            font-size: 1rem;
            font-weight: 500;
            text-align: center;
            text-decoration: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            inset-inline-end: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            transition: var(--transition);
            padding: 1.5rem 0;
        }

        header.scrolled {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        header.scrolled .logo {
            color: var(--dark);
        }

        .logo i {
            margin-inline-start: 0.5rem;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-inline-end: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        header.scrolled .nav-links a {
            color: var(--dark);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
        }

        header.scrolled .hamburger {
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, rgba(43, 45, 66, 0.9), rgba(43, 45, 66, 0.7)), url('/api/placeholder/1200/800') center/cover no-repeat;
            color: var(--white);
            overflow: hidden;
            padding: 0;
            background-image: url('./assets/imgs/lb.jpg');
            background-repeat: no-repeat;
            background-size: cover;
        }

        .hero .container{
            display: flex;
            align-items: flex-end;
            padding-bottom: 30px;
            height: 100%;

        }
        .hero-content {
            max-width: 700px;
        }

         h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            background-color: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .about-content.trainer {
            align-items: stretch;
        }

        .about-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .about h2::after , .audience-text h2::after , .trainer h2::after {
            left: auto;
            inset-inline-start: 0;
        }

        /* Features Section */
        .features {
            background-color: var(--light);
        }

        .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            text-align: start;
            flex: 1 0 35%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }
.feature-card ul {
    list-style: none;
}
.feature-card ul li {
    text-align: start;
}
        .feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.5rem;
            /* margin-bottom: 1.5rem; */
            flex-shrink: 0;
        }
        .feature-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .feature-head h3 {
            font-size: 20px;
            margin: 0;
            text-align: start;
        }

        /* Audience Section */
        .audience {
            background-color: var(--white);
        }

        .audience-content {
            display: grid;
            grid-template-columns: 1fr ;
            gap: 3rem;
            align-items: center;
        }

        .audience-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .audience-image img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .audience-points {
            list-style: none;
        }

        .audience-points li {
            margin-bottom: 1rem;
            padding-inline-start: 2rem;
            position: relative;
        }

        .audience-points li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset-inline-start: 0;
            color: var(--primary);
        }
.wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
        align-items: stretch;
    align-content: space-between;
}
        /* Testimonials Section */
        .testimonials {
            background-color: #fff;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.4s ease;
        }

        .testimonial-card {
            flex: 0 0 100%;
            padding: 2rem;
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin: 0 1rem;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-inline-start: 1rem;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info h4 {
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            color: var(--gray);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 0.5rem;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background-color: var(--primary);
        }

        /* Pricing Section */
        .pricing {
            background-color: #f7f7f7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-card {
            background-color: var(--light);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'Popular';
            position: absolute;
            top: 1.5rem;
            inset-inline-start: -3rem;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.25rem 3rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        html[dir="ltr"] .pricing-card.featured::before {
            transform: rotate(-45deg);
        }

        .pricing-name {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            font-weight: 600;
            justify-content: center;
        }
        .old-price {
            text-decoration: line-through; margin-right: 0.5rem;
            font-size: 1.5rem;
        }

        .pricing-price span {
            color: var(--gray);
        }
.new-price {
    font-size: 2rem;
}
        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }

        .pricing-features li {
            margin-bottom: 0.75rem;
        }

        /* FAQ Section */
        .faq {
            background-color: #fff;
        }

        .faq-grid {
            max-width: 800px;
            margin: 2rem auto 0;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            text-align: start;
        }

        .faq-answer-content {
            padding-bottom: 1.5rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: var(--white);
            text-align: center;
        }

        .cta h2::after {
            background-color: var(--white);
            left: 50%;
            inset-inline-start: auto;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            inset-inline-start: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 50%;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            inset-inline-end: 2rem;
            width: 45px;
            height: 45px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Mobile menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            inset-inline-start: -300px;
            width: 300px;
            height: 100vh;
            background-color: var(--white);
            z-index: 1001;
            padding: 2rem;
            transition: var(--transition);
            overflow-y: auto;
        }

        .mobile-nav.active {
            inset-inline-start: 0;
        }

        .close-menu {
            position: absolute;
            top: 1rem;
            inset-inline-start: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        .mobile-nav-links {
            list-style: none;
            margin-top: 3rem;
        }

        .mobile-nav-links li {
            margin-bottom: 1rem;
        }

        .mobile-nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
            padding-inline-end: 0.5rem;
        }

        .overlay {
            position: fixed;
            top: 0;
            inset-inline-end: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }

        .overlay.active {
            display: block;
        }
.owl-carousel {
    direction: ltr;
}
.owl-item{
    aspect-ratio:  1 / 1 ;
    .image-wrap , img{
        width: 100%;
        height: 100%;
        overflow: hidden;
        object-fit: contain;
    }
}
.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gray);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;

}
.owl-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary);
}
        /* Media Queries */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.75rem;
            }

            h2 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .about-content,
            .audience-content , .wrapper {
                grid-template-columns: 1fr;
            }

            /* .about-image,
            .audience-image {
                grid-row: 1;
            } */
        }

        @media (max-width: 768px) {
            hero-content{
                padding-top: 60px;
            }
            .hero .container{
                justify-content: center;
            }
            h1 {
                font-size: 2.25rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .hero-cta {
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
            }

            .hero-cta .btn {
                width: fit-content;
                min-width: 200px;
            }

            .pricing-card.featured {
                transform: none;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .hero {
                text-align: center;
            }

            .btn {
                width: 100%;
            }
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            gap: 10px;
        }

        .lang-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            background: var(--primary-color);
            color: white;
            cursor: pointer;
            font-family: 'Poppins', 'Tajawal', sans-serif;
            transition: all 0.3s ease;
        }
        .lang-btn.hidden{
            display: none;
        }

        .lang-btn:hover {
            background: var(--secondary-color);
        }

        /* RTL Support */


        [dir="rtl"] .container {
            direction: rtl;
        }



        [dir="rtl"] .about-content {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .audience-content {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .footer-grid {
            direction: rtl;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            [dir="rtl"] .mobile-nav.active {
                inset-inline-start: 0;
                inset-inline-end: auto;
            }
        }

        .course-benefits {
            background-color: #f7f7f7;
            padding: 50px 0;
            margin-bottom: 20px;
            border-radius: 10px;
            /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
          }
          
          .course-benefits h2 {
            color: #333;
            font-weight: bold;
            margin-top: 0;
            text-align: center;
          }
          .course-benefits h3 {
            text-align: start;
          }
          
          .course-benefits ul {
            list-style: none;
            padding-inline-start: 20px;
            margin: 0;
          }
          .course-benefits p{
            text-align: start;
          }
          
          .course-benefits li {
            margin-bottom: 10px;
            position: relative;
            padding-inline-start: 20px;
            text-align: start;
          }
          
          .course-benefits li ::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900; /* needed for solid icons */
            position: absolute;
            top: 5px;
            inset-inline-start: -20px;
            width: 25px;
            height: 25px;
            background-color: var(--primary-dark);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          .course-benefits p {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
            padding-inline-start: 20px;
          }
        .countdown {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            justify-content: center;
          }
          .time-section {
            background-color: #333;
            color: white;
            padding: 8px;
            border-radius: 5px;
            min-width: clamp(60px, 8vw, 100px);
          }
          #days, #hours, #minutes, #seconds {
            font-size: 22px;
            font-weight: bold;
            display: block;
          }
          .float-button {
            position: fixed;
            bottom: 20px;
            inset-inline-start: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            z-index: 9999;
          }
          
        .whatsapp-button {
            background-color: #25D366;
            color: #fff;
            padding: 10px;
            border-radius: 50px;
            font-size: 26px;
            cursor: pointer;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            
        }
        .whatsapp-button i {
            margin-right: 0px;
        }