   @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');
        
        :root {
            --primary: #3a5a78;
            --secondary: #e67e22;
            --accent: #9b59b6;
            --light: #f5f7fa;
            --dark: #2c3e50;
            --text: #34495e;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text);
            background-color: #f9f9f9;
            padding-top: 0;
            transition: padding-top 0.3s ease;
        }
        
        body.scrolled {
            padding-top: 60px;
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            position: relative;
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        
        .top-bar.hidden {
            transform: translateY(-100%);
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar-contact {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .top-bar-contact a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .top-bar-contact a:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .top-bar-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .language-selector {
            position: relative;
            cursor: pointer;
        }
        
        .language-selector:hover .language-dropdown {
            display: block;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
            min-width: 120px;
            display: none;
            z-index: 1000;
        }
        
        .language-dropdown a {
            display: block;
            padding: 0.5rem 1rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .language-dropdown a:hover {
            background-color: rgba(0,0,0,0.05);
        }
        
        .social-links-top {
            display: flex;
            gap: 0.75rem;
        }
        
        .social-link-top {
            color: white;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        
        .social-link-top:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Header */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 0.5rem 0;
            transition: transform 0.3s ease, top 0.3s ease;
        }
        
        .main-header.with-topbar {
            top: 40px;
        }
        
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        
        .main-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .main-menu-item {
            margin: 0 0.25rem;
        }
        
        .main-menu-link {
            display: block;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0.75rem;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        
        .main-menu-link:hover {
            color: var(--secondary);
            background-color: rgba(230, 126, 34, 0.08);
        }
        
        .main-menu-link.active {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .auth-buttons {
            display: flex;
            gap: 0.5rem;
        }
        
        .auth-button {
            padding: 0.4rem 0.75rem;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .login-button {
            color: var(--primary);
        }
        
        .login-button:hover {
            background-color: rgba(58, 90, 120, 0.08);
        }
        
        .signup-button {
            background-color: var(--secondary);
            color: white;
        }
        
        .signup-button:hover {
            background-color: #d35400;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.25rem;
        }
        
        /* Side drawer menu for mobile */
        .side-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .side-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .side-menu {
            position: fixed;
            top: 0;
            bottom: 0;
            right: -280px;
            width: 280px;
            background-color: white;
            z-index: 1002;
            padding: 1.5rem;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow-y: auto;
        }
        
        .side-menu.active {
            right: 0;
        }
        
        .side-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .side-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
        }
        
        .side-menu-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .side-menu-item {
            margin-bottom: 0.5rem;
        }
        
        .side-menu-link {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.2s ease;
            font-weight: 500;
        }
        
        .side-menu-link:hover {
            background-color: rgba(230, 126, 34, 0.08);
            color: var(--secondary);
        }
        
        .side-menu-link.active {
            background-color: rgba(230, 126, 34, 0.1);
            color: var(--secondary);
            font-weight: 600;
        }
        
        .side-menu-footer {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        
        .side-menu-auth {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .side-menu-auth-button {
            display: block;
            padding: 0.75rem;
            text-align: center;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .side-menu-login {
            background-color: rgba(58, 90, 120, 0.08);
            color: var(--primary);
        }
        
        .side-menu-signup {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Mobile menu styles */
        @media (max-width: 768px) {
            .main-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .top-bar-contact, .top-bar-actions {
                justify-content: center;
            }
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 0;
            position: relative;
            overflow: hidden;
            height: 50vh;
            display: flex;
            align-items: center;
            margin-top: 0;
            transition: margin-top 0.3s ease;
        }
        
        .hero-section.with-topbar {
            margin-top: 80px;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 0;
        }
        
        /* Hero Section Video Container - Specific styles to avoid conflicts */
        .hero-section .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .hero-section .video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translateX(-50%) translateY(-50%);
            pointer-events: none;
            border: none;
            object-fit: cover;
            background: #000; /* Fallback background */
            will-change: transform; /* Optimize for animations */
            backface-visibility: hidden; /* Prevent flickering */
            -webkit-backface-visibility: hidden;
        }
        
        /* Custom Search Box */
        .search-container {
            position: relative;
            z-index: 2;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 2rem;
            margin-top: -50px;
            margin-bottom: 30px;
        }
        
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .search-input-group {
            flex: 1;
            min-width: 200px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 3rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
            outline: none;
        }
        
        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
            pointer-events: none;
        }
        
        .search-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 1rem center;
            background-size: 16px 12px;
            transition: all 0.3s ease;
        }
        
        .search-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
            outline: none;
        }
        
        .search-button {
            padding: 0.75rem 2rem;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
        }
        
        .search-button:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }
        
        .search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .search-tag {
            padding: 0.35rem 0.75rem;
            background-color: #f0f0f0;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .search-tag:hover {
            background-color: #e0e0e0;
            color: var(--primary);
        }
        
        /* Featured Professionals Section */
        .professionals-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .professional-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            height: 100%;
            text-align: center;
            padding-bottom: 1.5rem;
        }
        
        .professional-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .professional-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 1.5rem auto 1rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .professional-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .professional-content {
            padding: 0 1.25rem 1rem;
        }
        
        .professional-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        
        .professional-title {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }
        
        .professional-rating {
            color: #f1c40f;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
        }
        
        .professional-stats {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 0.75rem;
        }
        
        .professional-stat {
            text-align: center;
        }
        
        .professional-stat-value {
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
        }
        
        .professional-stat-label {
            font-size: 0.7rem;
            color: #7f8c8d;
        }
        
        .professional-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-top: 0.75rem;
            justify-content: center;
        }
        
        .professional-tag {
            padding: 0.2rem 0.5rem;
            background-color: #f0f0f0;
            border-radius: 50px;
            font-size: 0.7rem;
            color: var(--text);
        }
        
        .professional-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0 1.5rem;
        }
        
        .professional-action {
            flex: 1;
            padding: 0.4rem;
            text-align: center;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .professional-profile {
            background-color: var(--primary);
            color: white;
        }
        
        .professional-contact {
            background-color: rgba(230, 126, 34, 0.1);
            color: var(--secondary);
        }
        
        .professional-action:hover {
            transform: translateY(-2px);
        }
        
        /* Success Stories Slider */
        .success-stories-section {
            padding: 5rem 0;
            background-color: white;
            position: relative;
        }
        
        .success-stories-container {
            position: relative;
        }
        
        .success-story-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .success-story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .success-story-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .success-story-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }
        
        .success-story-category {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--secondary);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .success-story-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
        }
        
        .success-story-content {
            padding: 1.5rem;
        }
        
        .success-story-excerpt {
            color: var(--text);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .success-story-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1rem;
        }
        
        .success-story-author {
            display: flex;
            align-items: center;
        }
        
        .success-story-author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-left: 0.75rem;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }
        
        .success-story-author-name {
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .success-story-date {
            color: #7f8c8d;
            font-size: 0.8rem;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-title {
            position: relative;
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .footer-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 30px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-right: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
        
        /* Subscription form */
        .subscription-form {
            display: flex;
            flex-direction: row;
        }
        
        .subscription-form .form-control {
            border-top-left-radius: 50px;
            border-bottom-left-radius: 50px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        
        .subscription-form .btn {
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
        
        /* Contact Info */
        .contact-info {
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.7);
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 0;
                height: 50vh;
            }
            
            .search-container {
                padding: 1.5rem;
            }
            
            .search-button {
                width: 100%;
            }
            
            .professional-card {
                margin-bottom: 30px;
            }
        }
        
        /* Swiper styles */
        .swiper-container {
            width: 100%;
            height: 100%;
            padding-bottom: 50px;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--primary);
            opacity: 0.3;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--secondary);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--secondary);
            background-color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }
               /* Testimonial Slider */
        .testimonials-section {
            padding-top: 5rem;
padding-bottom: 0rem;
            
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slider {
            overflow: hidden;
            padding: 2rem 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 5rem;
            color: rgba(0,0,0,0.05);
            font-family: serif;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-left: 1rem;
        }
        
        .testimonial-rating {
            color: #f1c40f;
            margin-bottom: 1rem;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--primary);
            opacity: 0.3;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--secondary);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--secondary);
            background-color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .podcast-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .podcast-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .podcast-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .podcast-content {
            padding: 1.5rem;
        }
        
        .podcast-rating {
            color: #f1c40f;
            margin-bottom: 0.5rem;
        }
        
        .podcast-meta {
            display: flex;
            justify-content: space-between;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        
        .podcast-play {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: absolute;
            bottom: 20px;
            right: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .podcast-play:hover {
            transform: scale(1.1);
        }
              
        /* Enhanced Category Cards */
        .categories-section {
            background-color: #f8f9fa;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .categories-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(58, 90, 120, 0.03) 0%, rgba(155, 89, 182, 0.03) 100%);
            z-index: 0;
        }
        
        .categories-container {
            position: relative;
            z-index: 1;
        }
        
        .category-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 240px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            margin-bottom: 30px;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .category-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease;
        }
        
        .category-card:hover .category-bg {
            transform: scale(1.1);
        }
        
        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
            z-index: 1;
        }
        
        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            z-index: 2;
            color: white;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-content {
            bottom: 10px;
        }
        
        .category-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-icon {
            transform: scale(1.1);
            background: rgba(255,255,255,0.25);
        }
        
        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .category-description {
            font-size: 0.9rem;
            opacity: 0.8;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-description {
            max-height: 100px;
            margin-top: 0.5rem;
        }
         /* Custom Search Box */
        .search-container {
            position: relative;
            z-index: 2;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 2rem;
            margin-top: -50px;
            margin-bottom: 30px;
        }
        
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .search-input-group {
            flex: 1;
            min-width: 200px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 3rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
            outline: none;
        }
        
        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
            pointer-events: none;
        }
        
        .search-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 1rem center;
            background-size: 16px 12px;
            transition: all 0.3s ease;
        }
        
        .search-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
            outline: none;
        }
        
        .search-button {
            padding: 0.75rem 2rem;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
        }
        
        .search-button:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }
        
        .search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .search-tag {
            padding: 0.35rem 0.75rem;
            background-color: #f0f0f0;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .search-tag:hover {
            background-color: #e0e0e0;
            color: var(--primary);
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #d35400;
            border-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .video-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .video-placeholder {
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .play-button:hover {
            transform: scale(1.1);
        }
        
        .play-icon {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent var(--primary);
            margin-left: 5px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 0px;
            height: 3px;
            background: var(--secondary);
        }
        
        .section-title.text-center::after {
            right: 50%;
            transform: translateX(50%);
        }
            /* Enhanced Feature Cards */
        .features-section {
            padding: 5rem 0;
            background-color: #fff;
            position: relative;
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            z-index: 2;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .feature-icon-wrapper {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon-wrapper {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            color: var(--accent);
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .feature-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .feature-description {
            text-align: center;
            color: var(--text);
            line-height: 1.7;
        }
              /* Enhanced Category Cards */
        .categories-section {
            background-color: #f8f9fa;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .categories-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(58, 90, 120, 0.03) 0%, rgba(155, 89, 182, 0.03) 100%);
            z-index: 0;
        }
        
        .categories-container {
            position: relative;
            z-index: 1;
        }
        
        .category-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 240px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            margin-bottom: 30px;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .category-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease;
        }
        
        .category-card:hover .category-bg {
            transform: scale(1.1);
        }
        
        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
            z-index: 1;
        }
        
        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            z-index: 2;
            color: white;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-content {
            bottom: 10px;
        }
        
        .category-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-icon {
            transform: scale(1.1);
            background: rgba(255,255,255,0.25);
        }
        
        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .category-description {
            font-size: 0.9rem;
            opacity: 0.8;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .category-card:hover .category-description {
            max-height: 100px;
            margin-top: 0.5rem;
        }
        
                /* Animation for category backgrounds */
        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .animated-bg {
            background: linear-gradient(-45deg, #3a5a78, #9b59b6, #e67e22, #2c3e50);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }
        
        /* Fixed subscription form */
        .subscription-form {
            display: flex;
            flex-direction: row;
        }
        
        .subscription-form .form-control {
            border-top-left-radius: 50px;
            border-bottom-left-radius: 50px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        
        .subscription-form .btn {
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 0;
                height: 50vh;
            }
            
            .search-container {
                padding: 1.5rem;
            }
            
            .search-button {
                width: 100%;
            }
            
            .video-placeholder {
                height: 250px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .category-card {
                height: 200px;
                margin-bottom: 1.5rem;
            }
            
            .category-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .category-title {
                font-size: 1.3rem;
            }
        }

        /* Talents Section Styles */
        .talents-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 0;
        }

        .talent-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .talent-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .talent-header {
            position: relative;
            padding: 1.5rem 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .talent-avatar {
            flex-shrink: 0;
        }

        .talent-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .talent-content {
            padding: 1rem 1.5rem;
        }

        .talent-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .talent-category {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .talent-rating {
            margin-bottom: 0.75rem;
        }

        .talent-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .talent-skill {
            background: rgba(58, 90, 120, 0.1);
            color: var(--primary);
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .talent-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            font-size: 0.85rem;
        }

        .talent-actions {
            padding: 1rem 1.5rem 1.5rem;
            display: flex;
            gap: 0.5rem;
        }

        .talent-btn {
            flex: 1;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
        }

        .talent-view {
            background: var(--primary);
            color: white;
        }

        .talent-view:hover {
            background: #2c4a6b;
            color: white;
            transform: translateY(-2px);
        }

        .talent-contact {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .talent-contact:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive adjustments for talents */
        @media (max-width: 768px) {
            .talent-card {
                margin-bottom: 1.5rem;
            }
            
            .talent-actions {
                flex-direction: column;
            }
            
            .talent-skills {
                justify-content: center;
            }
        }

        /* Spotlight Section Styles */
        .spotlight-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 0;
        }

        .spotlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .spotlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .spotlight-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            z-index: 1;
        }

        .spotlight-content {
            position: relative;
            z-index: 2;
        }

        .spotlight-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .spotlight-avatar {
            flex-shrink: 0;
        }

        .spotlight-badge {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .spotlight-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .spotlight-title {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .spotlight-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .spotlight-stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffd700;
        }

        .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .spotlight-description {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .spotlight-actions {
            display: flex;
            gap: 1rem;
        }

        .spotlight-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .spotlight-btn.primary {
            background: #ffd700;
            color: #333;
        }

        .spotlight-btn.primary:hover {
            background: #ffed4e;
            transform: translateY(-2px);
        }

        .spotlight-btn.secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .spotlight-btn.secondary:hover {
            background: white;
            color: #333;
            transform: translateY(-2px);
        }

        /* Talent Categories Grid */
        .talent-categories {
            margin-top: 3rem;
        }

        .category-mini-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

        .category-mini-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .category-mini-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: #ffd700;
        }

        .category-mini-card span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Responsive adjustments for spotlight */
        @media (max-width: 768px) {
            .spotlight-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .spotlight-actions {
                flex-direction: column;
            }
            
            .category-mini-card {
                padding: 1rem 0.5rem;
            }
            
                         .category-mini-icon {
                 width: 40px;
                 height: 40px;
                 font-size: 1.2rem;
             }
         }

         /* Statistics Section Styles */
         .stats-section {
             background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
             color: white;
             padding: 4rem 0;
         }

         .stat-card {
             background: rgba(255, 255, 255, 0.1);
             border-radius: 15px;
             padding: 2rem 1.5rem;
             text-align: center;
             transition: all 0.3s ease;
             border: 1px solid rgba(255, 255, 255, 0.2);
             position: relative;
             overflow: hidden;
         }

         .stat-card::before {
             content: '';
             position: absolute;
             top: 0;
             left: -100%;
             width: 100%;
             height: 100%;
             background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
             transition: left 0.5s;
         }

         .stat-card:hover::before {
             left: 100%;
         }

         .stat-card:hover {
             transform: translateY(-5px);
             box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
         }

         .stat-icon {
             width: 80px;
             height: 80px;
             background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 1.5rem;
             font-size: 2rem;
             color: white;
             transition: all 0.3s ease;
         }

         .stat-card:hover .stat-icon {
             transform: scale(1.1);
             background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
         }

         .stat-number {
             font-size: 2.5rem;
             font-weight: 700;
             color: #f39c12;
             margin-bottom: 0.5rem;
             transition: all 0.3s ease;
         }

         .stat-card:hover .stat-number {
             color: #e74c3c;
             transform: scale(1.1);
         }

         .stat-label {
             font-size: 1rem;
             font-weight: 600;
             color: rgba(255, 255, 255, 0.9);
         }

         /* Animation for statistics */
         @keyframes countUp {
             from {
                 opacity: 0;
                 transform: translateY(20px);
             }
             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }

         .stat-card.animated {
             animation: countUp 0.6s ease-out;
         }

         /* Responsive adjustments for stats */
         @media (max-width: 768px) {
             .stat-card {
                 margin-bottom: 1.5rem;
             }
             
             .stat-icon {
                 width: 60px;
                 height: 60px;
                 font-size: 1.5rem;
             }
             
             .stat-number {
                 font-size: 2rem;
             }
         }

         /* Hero Section Title Slider and Buttons Styling */
         .title-slider-container {
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translateX(-50%) translateY(-50%);
             width: 100%;
             z-index: 3;
             text-align: center;
             margin-top: -20px; /* Negative margin to bring elements closer */
         }

         .title-slider {
             position: relative;
             height: 150px; /* Reduced height */
             overflow: hidden;
         }

         .slide {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             opacity: 0;
             transform: translateY(30px);
             transition: all 0.8s ease;
         }

         .slide.active {
             opacity: 1;
             transform: translateY(0);
         }

         .hero-title {
             font-size: 3.5rem;
             font-weight: 700;
             color: white;
             margin-bottom: 0.1rem; /* Minimal margin */
             text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
             line-height: 1.0; /* Tighter line height */
         }

         .hero-subtitle {
             font-size: 1.3rem;
             color: rgba(255, 255, 255, 0.9);
             text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
             line-height: 1.3; /* Reduced line height */
             max-width: 800px;
             margin: 0 auto;
         }

         .slider-nav {
             display: flex;
             justify-content: center;
             gap: 3px; /* Minimal gap */
             margin-top: 5px; /* Minimal margin */
         }

         .slider-dot {
             width: 10px; /* Smaller dots */
             height: 10px;
             border-radius: 50%;
             border: 2px solid rgba(255, 255, 255, 0.5);
             background: transparent;
             cursor: pointer;
             transition: all 0.3s ease;
         }

         .slider-dot.active {
             background: white;
             border-color: white;
             transform: scale(1.2);
         }

         .slider-dot:hover {
             border-color: white;
             transform: scale(1.1);
         }

         /* تحسين موقع الأزرار في البنر */
         .hero-content {
             position: absolute;
             bottom: 20px; /* Closer to text */
             left: 50%;
             transform: translateX(-50%);
             z-index: 3;
             width: 100%;
         }

         .hero-buttons {
             position: absolute;
             bottom: 20px; /* Closer to text */
             left: 50%;
             transform: translateX(-50%);
             z-index: 3;
             display: flex;
             gap: 8px; /* Minimal gap */
             flex-wrap: wrap;
             justify-content: center;
         }

         .hero-btn {
             display: inline-block;
             padding: 0.75rem 1.5rem;
             border-radius: 0.5rem;
             font-weight: 600;
             transition: all 0.3s ease;
             text-decoration: none;
         }

         .hero-btn-primary {
             background: linear-gradient(135deg, var(--primary), var(--accent));
             color: white;
             box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
         }

         .hero-btn-primary:hover {
             transform: translateY(-2px);
             box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
             color: white;
         }

         .hero-btn-outline {
             border: 2px solid white;
             color: white;
             background: transparent;
         }

         .hero-btn-outline:hover {
             background: white;
             color: var(--primary);
         }

         /* Responsive adjustments for hero section */
         @media (max-width: 768px) {
             .hero-title {
                 font-size: 2.5rem;
             }
             
             .hero-subtitle {
                 font-size: 1.1rem;
             }
             
             .title-slider {
                 height: 120px; /* Reduced for mobile */
             }
             
             .title-slider-container {
                 margin-bottom: 10px; /* Minimal margin */
                 margin-top: -15px; /* Negative margin for mobile */
             }
             
             .hero-content {
                 bottom: 10px; /* Minimal bottom margin */
             }
             
             .hero-buttons {
                 bottom: 15px; /* Minimal bottom margin */
                 gap: 6px; /* Minimal gap */
             }
             
             .hero-btn {
                 padding: 0.5rem 1rem; /* Smaller padding */
                 font-size: 0.85rem; /* Smaller font */
             }
         }