@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #000000;
            --primary-white: #ffffff;
            --gray-900: #111111;
            --gray-800: #1a1a1a;
            --gray-700: #2d2d2d;
            --gray-600: #404040;
            --gray-500: #666666;
            --gray-400: #999999;
            --gray-300: #cccccc;
            --gray-200: #e5e5e5;
            --gray-100: #f5f5f5;
            --shadow-light: rgba(255, 255, 255, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.3);
            --light-blue: #f8f9ff;
            --light-gray: #f4f6f8;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.8) 0%, 
                    rgba(255, 255, 255, 0.8) 50%, 
                    rgba(255, 254, 254, 0.8) 100%),
                    url('/static/image/about.webp') center/cover no-repeat;             
            color: var(--gray-800);
            min-height: 100vh;
            overflow-x: hidden;
            direction: ltr;
            text-align: left;
        }

        /* For elements that need alignment */
        .auto-align {
            text-align: left;
            margin-left: 20px;
            margin-right: 20px;
        }

        /* Animated background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundMove 20s ease-in-out infinite alternate;
        }

        @keyframes backgroundMove {
            0% { transform: translateX(0px) translateY(0px); }
            100% { transform: translateX(-10px) translateY(-10px); }
        }

        /* Navigation Bar - Dark */
        .navbar {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.95) 0%, 
                rgba(17, 17, 17, 0.9) 100%);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 10000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo {
            transition: all 0.3s ease;
            width: 6rem;
        }

        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-list li a {
            color: var(--primary-white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
            font-size: .9rem;

        }

        .nav-list li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-list li a:hover::before {
            width: 100%;
        }

        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--primary-white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dropdown-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            min-width: 120px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 0.7rem 1rem;
            color: var(--primary-white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .login-btn {
            background: transparent;
            color: var(--primary-white);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .login-btn:hover {
            background: var(--primary-white);
            color: var(--primary-black);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .logout-btn {
            background: rgba(255, 255, 255, 0.1);
            color: var(--primary-white);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .logout-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .nav-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-menu div {
            width: 25px;
            height: 3px;
            background: var(--primary-white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .nav-menu.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .nav-menu.active .line2 {
            opacity: 0;
        }

        .nav-menu.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        /* Hero Section - Dark */
        .hero-section {
            text-align: center;
            padding: 4rem 1rem;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.1) 0%, 
                rgba(17, 17, 17, 0.1) 50%, 
                rgba(0, 0, 0, 0.1) 50%),
                url('/static/image/Saber-Profile.webp') center/cover no-repeat;
            margin: 0;
            position: relative;
            overflow: hidden;
            color: var(--primary-white);
            height: 42rem;
            margin-top: -2rem;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.02) 50%, 
                transparent 70%);
            animation: heroShine 8s linear infinite;
        }

        @keyframes heroShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-buttons a {
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #b5a51a, #f7eea4);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray-300);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-right: auto;
            text-align: justify;
            line-height: 1.8;
            text-justify: inter-word;
        }

        .consultation-section {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.0) 0%, 
                rgba(17, 17, 17, 0.0) 50%, 
                rgba(0, 0, 0, 0.0) 100%),
                url('/static/image/hero-bg.webp') center/cover no-repeat;    
            padding: 3rem 0;
            margin-top: 2rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .consultation-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
            animation: heroShine 8s linear infinite;
        }

        .consultation-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .consultation-subtitle {
            color: var(--gray-300);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .consultation-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .consultation-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .consultation-btn::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;
        }

        .consultation-btn:hover::before {
            left: 100%;
        }

        .primary-btn {
            background: linear-gradient(135deg, var(--primary-white), var(--gray-200));
            color: var(--primary-black);
            border-color: var(--gray-300);
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
            background: linear-gradient(135deg, var(--gray-100), var(--primary-white));
        }

        .secondary-btn {
            background: transparent;
            color: var(--primary-white);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-white);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
        }

        /* Services Section - White */
        .services-section {
            margin: 4rem 0;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(17, 17, 17, 0.8) 50%, 
                rgba(0, 0, 0, 0.8) 50%),
                url('/static/image/13.png') center/cover no-repeat;            
            padding: 4rem 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-200);
        }

        .services-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: rgb(253, 211, 44);
            text-align: center;
        }

        .services-section p {
            color: white;
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .service-card {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.5) 0%, 
                rgba(17, 17, 17, 0.5) 50%, 
                rgba(0, 0, 0, 0.5) 50%);            
            border: 1px solid var(--gray-200);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--gray-300);
        }

        .service-card i {
            font-size: 3rem;
            color: rgb(253, 211, 44);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: rgb(253, 211, 44);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: white;
            text-align: center;
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            right: 2rem;
            bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--primary-white);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .consult-btn {
            background: linear-gradient(135deg, var(--gray-800), var(--primary-black));
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            cursor: pointer;
        }

        .floating-btn:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .floating-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .floating-btn:hover::before {
            transform: translateX(100%);
        }

        /* WhatsApp Chat - White */
        .whatsapp-chat {
            position: fixed;
            right: 2rem;
            bottom: 150px;
            width: 300px;
            background: var(--primary-white);
            color: var(--gray-800);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transform: translateY(20px) scale(0.8);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
        }

        .whatsapp-chat.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .chat-header {
            background: linear-gradient(135deg, var(--gray-800), var(--primary-black));
            color: var(--primary-white);
            padding: 1rem;
            border-radius: 15px 15px 0 0;
            font-weight: bold;
        }

        .chat-body {
            padding: 1.5rem;
        }

        .chat-body p {
            color: var(--gray-700);
            margin-bottom: 1rem;
        }

        .chat-body a {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .chat-body a:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* Footer - Dark */
        footer {
            background: linear-gradient(135deg, var(--primary-black), var(--gray-900));
            padding: 3rem 2rem 1rem;
            text-align: center;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--primary-white);
        }

        footer h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-white), var(--gray-300));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        footer p {
            color: var(--gray-300);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-white);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: var(--primary-white);
            color: var(--primary-black);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            list-style: none;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-white);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-links a:hover {
            color: var(--primary-white);
        }

        /* Reveal Animations */
        .reveal-item {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal-item.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(17, 17, 17, 0.2) 50%, 
                rgba(0, 0, 0, 0.2) 100%),
                url('/static/image/about.png') center/cover no-repeat;
            color: #ffffff;
            padding: 50px 20px;
            line-height: 1.8;
        }

        .about header {
            text-align: left;
            margin-bottom: 40px;
        }

        .about header h1 {
            font-size: 2.8rem;
            color: #ffffff;
            position: relative;
            display: inline-block;
        }

        .about header h1::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #dcce0f;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .about header p {
            font-size: 1.2rem;
            color: #cccccc;
        }

        .about-section {
            margin-bottom: 60px;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.5) 0%, 
                rgba(17, 17, 17, 0.5) 50%, 
                rgba(0, 0, 0, 0.5) 100%);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            transition: 0.3s ease-in-out;
        }

        .about-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.6);
        }

        .about-section h2 {
            color: #dcce0f;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .about-section p, .about-section ul {
            color: #e0e0e0;
            font-size: 1.1rem;
        }

        .about-section ul {
            padding-left: 20px;
        }

        .about-section li {
            margin-bottom: 8px;
            list-style: disc;
        }

        .values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .value-card {
            background-color: #2c2c2c;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            background-color: #383838;
            transform: scale(1.03);
        }

        .value-card h3 {
            color: #dcce0f;
            margin-bottom: 10px;
        }

        .value-card p {
            color: #dfe6e9;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .navbar {
                padding: 1rem;
            }

            .nav-list {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-list.active {
                left: 0;
            }

            .nav-menu {
                display: flex;
            }

            .hero-title {
                font-size: 1.6rem;
            }
            .hero-subtitle {
                font-size: 12px;
            }

            .floating-buttons {
                right: 1rem;
                bottom: 1rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .whatsapp-chat {
                right: 1rem;
                width: calc(100vw - 2rem);
                max-width: 300px;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 485px) {
            .about header h1 {
                font-size: 1.5rem;
            }
            .about header p {
                font-size: 1rem;
            }
            .about-section h2 {
                font-size: 1.2rem;
            }
            .about-section h2 {
                font-size: 1rem;
            }


            .logo {
                width: 3rem;
            }

            .login-btn {
                font-size: 10px;
            }

            .hero-title {
                font-size: 20px;
            }

            .hero-subtitle {
                font-size: 12px;
            }

            .btn {
                font-size: 14px;
            }

            .services-section h2 {
                font-size: 18px;
            }

            .services-section p {
                font-size: 14px;
                text-align: center;
                line-height: 1.8;
                text-justify: inter-word;
            }

            .service-card h3 {
                font-size: 14px;
            }

            .service-card p {
                font-size: 12px;
            }

            .service-card {
                padding: 4px;
                width: 20rem;
                margin-left: auto;
                margin-right: auto;
            }

            .partners-header h2 {
                font-size: 18px;
            }

            .partners-header p {
                font-size: 14px;
            }

            .consultation-content p {
                font-size: 18px;
            }

            .consultation-buttons {
                font-size: 14px;
            }

            .consultation-buttons a {
                padding: 4px 4px;
            }
        }

        /* Additional Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Typewriter Effect */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid var(--primary-white);
            white-space: nowrap;
            animation: typewriter 4s steps(40) 1s both,
                       blinkCursor 0.8s step-end infinite;
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blinkCursor {
            50% { border-color: transparent; }
        }

        /* Input and Textarea Styling */
        input, textarea {
            direction: ltr;
            text-align: left;
        }

        /* Hero and Footer Padding */
        .hero-section, footer {
            padding-left: 40px;
            padding-right: 40px;
        }

            .consultation-content p {
                font-size: 18px;
            }

            .consultation-buttons {
                font-size: 14px;
            }

            .consultation-buttons a {
                padding: 4px 4px;
            }
        

        @media (max-width: 400px) {
            .logo {
                width: 3rem;
            }

            .login-btn {
                font-size: 10px;
            }

            .hero-title {
                font-size: 18px;
            }

            .hero-subtitle {
                font-size: 12px;
            }

            .btn {
                font-size: 14px;
            }

            .services-section h2 {
                font-size: 18px;
            }

            .services-section p {
                font-size: 14px;
                text-align: center;
                line-height: 1.8;
                text-justify: inter-word;
            }

            .service-card h3 {
                font-size: 14px;
            }

            .service-card p {
                font-size: 12px;
            }

            .service-card {
                padding: 3px;
                width: 14rem;
            }

            .partners-header h2 {
                font-size: 18px;
            }

            .partners-header p {
                font-size: 14px;
            }}