        /* --- General Styles --- */
        body {
            font-family: 'Tajawal', sans-serif;
            overflow-x: hidden;

        }


        @layer base {
  html {
    scroll-behavior: smooth;
  }
  
  body {
    @apply antialiased;
  }

  ::selection {
    @apply bg-[#487D5A] text-white;
  }
}
        /* --- Navbar Styles --- */
        .glass-nav {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 78, 146, 0.08);
        }

        .nav-arrow { transition: transform 0.3s ease; }
        .group:hover .nav-arrow { transform: rotate(180deg); }

        .dropdown-menu {
            transform: translateY(15px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .group:hover .dropdown-menu {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        /* --- Responsive Helpers --- */
        .desktop-nav-elements { display: none; }
        .mobile-nav-elements { display: flex; }

        @media (min-width: 1100px) {
            .desktop-nav-elements { display: flex !important; }
            .mobile-nav-elements { display: none !important; }
        }

        /* --- Mobile Sidebar Transitions --- */
        #mobile-sidebar {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        #mobile-backdrop {
            transition: opacity 0.4s ease;
        }

        /* --- Hero Section & Layout --- */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
            min-height: 100vh;
        }

        .hero-container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            padding-top: 140px;
            padding-bottom: 4rem;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 992px) {
            .hero-container {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                padding-top: 110px;
                min-height: 90vh;
            }
            .hero-content {
                width: 50%;
                padding-right: 3rem;
            }
            .hero-form-wrapper {
                width: 45%;
                max-width: 480px;
            }
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-hero {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }
        .delay-100 { animation-delay: 0.2s; }

        /* --- Background Blobs --- */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            z-index: 0;
            animation: floatBlob 10s infinite ease-in-out alternate;
        }

        .blob-blue { background-color: rgba(0, 78, 146, 0.25); }
        .blob-orange { background-color: rgba(255, 140, 0, 0.2); }

        @keyframes floatBlob {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(20px, -20px) scale(1.1); }
        }

        /* --- FORM STYLES (Floating Labels) --- */
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 78, 146, 0.1);
            box-shadow: 0 20px 40px -10px rgba(0, 78, 146, 0.15);
        }

        .floating-group {
            position: relative;
            background: white;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .floating-group:focus-within {
            border-color: #004e92;
            box-shadow: 0 4px 12px rgba(0, 78, 146, 0.1);
            transform: translateY(-2px);
        }

        .floating-input {
            width: 100%;
            padding: 24px 16px 8px 50px;
            background: transparent;
            border: none;
            outline: none;
            font-size: 1rem;
            color: #002855;
            font-weight: 600;
        }

        .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #9ca3af;
            transition: color 0.3s ease;
        }
        .floating-group:focus-within .input-icon {
            color: #004e92;
        }

        .floating-label {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.9rem;
            color: #6b7280;
            pointer-events: none;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
        }

        .floating-input:focus ~ .floating-label,
        .floating-input:not(:placeholder-shown) ~ .floating-label {
            top: 14px;
            font-size: 0.7rem;
            color: #004e92;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-progress-bar {
            position: absolute;
            bottom: 0;
            right: 0;
            height: 4px;
            background-color: #fbbf24;
            width: 0%;
            transition: width 0.2s linear;
        }

        .valid-check {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #10b981;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .floating-input:not(:placeholder-shown):valid ~ .valid-check {
            opacity: 1;
        }

        /* --- Components --- */
        .social-btn {
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .social-btn:hover {
            transform: translateY(-5px) scale(1.1);
            color: #ff8c00;
            border-color: #ff8c00;
        }

        /* --- Modal --- */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 40, 85, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-content {
            background: white;
            width: 90%;
            max-width: 420px;
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            transform: scale(0.8) translateY(20px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .modal-active { opacity: 1; visibility: visible; }
        .modal-active .modal-content { transform: scale(1) translateY(0); opacity: 1; }
