
        body {
            font-family: 'Open Sans', sans-serif;
            scroll-behavior: smooth;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        .bg-laylah-green {
            background-color: #a8cf45;
          }
          .bg-laylah-blue {
            background-color: blue;
          }
        .hero-section {
            background: linear-gradient(rgba(15, 98, 172, 0.85), rgba(15, 98, 172, 0.85)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .cta-button {
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .section-divider {
            height: 4px;
            width: 80px;
            background-color: #a8cf45;
            margin: 0 auto;
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #a8cf45;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .feature-card {
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
        }
        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
        }
   
        :root {
            --primary-color: #e94560;
            --secondary-color: #16213e;
        }
        
        .bg-primary {
            background-color: var(--primary-color);
        }
        
        .bg-secondary {
            background-color: var(--secondary-color);
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .text-secondary {
            color: var(--secondary-color);
        }
        
        /* Hero Section Styles */
        .hero-section {
            background-color: var(--secondary-color);
        }
        
        /* Slider Styles */
        .hero-slide {
            opacity: 0;
            z-index: 1;
        }
        
        .hero-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .dot.active {
            background-color: white;
            width: 10px;
            height: 10px;
        }



         /* Gallery Styles */
        .gallery-item {
            transition: all 0.3s ease;
            overflow: hidden;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .gallery-item-image {
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-item-image {
            transform: scale(1.05);
        }
        
        /* .gallery-overlay {
            background: linear-gradient(to top, rgba(22, 33, 62, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
         */
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        /* Slideshow Modal Styles */
        .slideshow-modal {
            transition: opacity 0.3s ease;
        }
        
        .slideshow-container {
            max-width: 1000px;
            width: 100%;
            height: 70vh;
            max-height: 800px;
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .slide-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide-image svg {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s ease;
        }
        
        .slide-nav:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .slide-nav.prev {
            left: 20px;
        }
        
        .slide-nav.next {
            right: 20px;
        }
        
        .slide-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            z-index: 10;
        }
        
        /* Filter button styles */
        .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Animation for gallery items */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .gallery-item {
            animation: fadeIn 0.5s ease forwards;
        }

        .course-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .course-header {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .course-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
        }
        
        .course-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #fff;
            color: #333;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            z-index: 10;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .course-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            z-index: 10;
        }
        
        .facilitator-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-right: 6px;
            margin-bottom: 6px;
        }
        
        .session-item {
            transition: all 0.2s ease;
        }
        
        .session-item:hover {
            background-color: #f0f4f8;
            transform: translateX(5px);
        }
        
        .tab-button {
            transition: all 0.3s ease;
        }
        
        .tab-button.active {
            background-color: #a8cf45;
            color: white;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .course-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .course-duration {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(255,255,255,0.9);
            color: #333;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            z-index: 10;
        }
        
        .course-table th, .course-table td {
            padding: 16px;
            text-align: left;
        }
        
        .course-table tr {
            transition: all 0.2s ease;
        }
        
        .course-table tr:hover {
            background-color: #f0f4f8;
        }



