     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #e0f2fe;
            color: #1e293b;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Contact Page Specific Styles */
        /* Animated gradient background */
        .background {
            position: fixed;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);;
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
            opacity: 0.9;
            top: 0;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Floating orbs 
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
            z-index: -1;
        }

        .orb1 {
            width: 400px;
            height: 400px;
            background: #3b82f6;
            top: -200px;
            left: -200px;
            animation-delay: 0s;
            opacity: 0.25;
        }

        .orb2 {
            width: 300px;
            height: 300px;
            background: #0ea5e9;
            bottom: -150px;
            right: -150px;
            animation-delay: 5s;
            opacity: 0.25;
        }

        .orb3 {
            width: 350px;
            height: 350px;
            background: #06b6d4;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
            opacity: 0.25;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }*/

        /* Main Container for Contact Page */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 20px 40px;
            position: relative;
            z-index: 1;
        }

        /* Contact Header */
        .contact-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease-out;
        }

         .contact-header h1 {
            position: relative; /* Important */
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight:800;
            margin-bottom: 40px; /* extra space for underline */
            background: #111;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
    }

        .contact-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px; /* space under text */
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #8a2be2); /* fallback colors */
            border-radius: 2px;
        }


        .contact-header p {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 0.4fr 0.6fr;
            gap: 40px;
            align-items: start;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(147, 197, 253, 0.3);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px; 
            margin: 0 auto;
            animation: fadeInRight 1s ease-out 0.3s both;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-col {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e293b;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #bfdbfe;
            border-radius: 10px;
            color: #1e293b;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder,
        .form-group select::placeholder {
            color: #94a3b8;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            background: #ffffff;
            border-color: #0066ff;
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
        }

        /* Phone input with country code */
        .phone-input-wrapper {
            display: flex;
            gap: 8px;
            align-items: stretch;
        }

        .country-code-select {
            width: 85px;
            min-width: 85px;
            max-width: 85px;
            padding: 15px 8px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #bfdbfe;
            border-radius: 10px;
            color: #1e293b;
            font-size: 0.875rem;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            flex-shrink: 0;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 8px center;
            background-size: 16px;
            padding-right: 30px;
        }

        .country-code-select:focus {
            outline: none;
            background-color: #ffffff;
            border-color: #0066ff;
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
            max-height: 52px;

        }

        /* Custom dropdown wrapper for better control */
        .phone-input-wrapper {
            display: flex;
            gap: 8px;
            align-items: stretch;
            position: relative;
        }

        /* Custom dropdown container */
        .country-dropdown-container {
            position: relative;
            width: 85px;
            min-width: 85px;
            max-width: 85px;
        }

        /* Custom dropdown list */
        .country-dropdown-list {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 4px;
            background: rgba(255, 255, 255, 0.98);
            border: 2px solid #bfdbfe;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 1000;
            max-height: 120px; /* Height for exactly 3 items */
            overflow-y: auto;
            overflow-x: hidden;
        }

        .country-dropdown-list.active {
            display: block;
        }

        .country-dropdown-option {
            padding: 10px 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.875rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        }

        .country-dropdown-option:last-child {
            border-bottom: none;
        }

        .country-dropdown-option:hover {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(0, 102, 255, 0.1));
            color: #0066ff;
        }

        .country-dropdown-option.selected {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(0, 102, 255, 0.15));
            color: #0066ff;
            font-weight: 600;
        }

        /* Custom scrollbar for dropdown */
        .country-dropdown-list::-webkit-scrollbar {
            width: 6px;
        }

        .country-dropdown-list::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .country-dropdown-list::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .country-dropdown-list::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Hide the default select dropdown */
        /* .country-code-select option { 

        } */
        .phone-input-wrapper input {
            flex: 1;
            font-size: 1.125rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Custom select wrapper */
        .select-wrapper {
            position: relative;
        }

        .select-wrapper select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding-right: 40px;
            cursor: pointer;
        }

        .select-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            fill: #64748b;
            transition: transform 0.3s ease;
        }

        .select-wrapper:hover .select-icon {
            fill: #0066ff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #4f46e5 0%, #0066ff 50%, #06b6d4 100%);
            border: none;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.5s ease;
        }

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

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }

        /* CSS for Centering and Responsiveness for  recaptcha*/
        .recaptcha-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .g-recaptcha {
            transform: scale(0.65);              /* Slightly scale down for mobile */
            transform-origin: center center;     /* Keep it centered */
        }

        @media (min-width: 576px) {
            .g-recaptcha {
            transform: scale(1);
            }
        }

        /* Contact Info */
        .contact-info {
            animation: fadeInLeft 1s ease-out 0.3s both;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(147, 197, 253, 0.3);
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
        }

        .info-card:hover {
            transform: translateX(10px);
            background: #ffffff;
            border-color: rgba(0, 102, 255, 0.3);
            box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
        }

        .info-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: #0066ff;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .info-card p {
            color: #475569;
            line-height: 1.6;
            font-size: 1rem;
        }

        .info-card p a {
            color: #4f46e5;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            word-break: break-word;
        }

        .info-card p a:hover {
            color: #0066ff;
            text-decoration: underline;
        }

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Success and error messages */
        .success-message,
        .sent-message {
            display: none;
            background: linear-gradient(135deg, #06b6d4 0%, #0066ff 100%);
            color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            animation: fadeInUp 0.5s ease-out;
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
            margin-top: 20px;
        }

        .error-message {
            display: none;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            animation: fadeInUp 0.5s ease-out;
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
            margin-top: 20px;
        }

        .loading {
            display: none;
            text-align: center;
            color: #0066ff;
            font-weight: 600;
            margin-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 0;
            }

            .nav-link {
                padding: 15px 15px;
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .container-fluid {
                padding: 0 15px;
            }

            .navbar {
                padding: 12px 0;
            }

            .logo img {
                height: 40px;
            }

            .mobile-menu {
                display: block;
            }

            /* Contact Page Mobile Styles */
            .main-container {
                padding: 100px 15px 20px;
            }

            .contact-header {
                margin-bottom: 30px;
            }

            .contact-header h1 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .contact-header p {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
             .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-col {
                margin-bottom: 20px;
            }

            .contact-form,
            .info-card {
                padding: 25px 20px;
            }

            .phone-input-wrapper {
                gap: 6px;
            }

            .country-code-select {
                width: 85px !important;
                min-width: 85px !important;
                max-width: 85px !important;
                padding: 15px 30px 15px 10px;
                font-size: 0.875rem;
                height: 48px;
            }

            .phone-input-wrapper input {
                font-size: 1.125rem;
                padding: 15px 12px;
                height: 48px;
            }

            .submit-btn {
                padding: 16px;
                font-size: 1rem;
                width: 100%;
            }

            
            .orb {
                animation: float 20s infinite ease-in-out;
            }

            .contact-form,
            .info-card {
                backdrop-filter: blur(5px);
            }

            .info-card:hover {
                transform: translateX(0) translateY(-2px);
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 16px;
            }

            .phone-input-wrapper input {
                font-size: 18px !important;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 100vw;
                max-width: 100vw;
            }

            .mobile-menu-header {
                padding: 0 15px;
            }

            .mobile-close-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .contact-header h1 {
                font-size: 1.75rem;
            }

            .orb {
                display: none;
            }

            .contact-form {
                padding: 20px 15px;
            }

            .info-card {
                padding: 20px 15px;
                margin-bottom: 15px;
            }

            /* Mobile specific fixes for country dropdown */
            .country-code-select {
                width: 85px !important;
                min-width: 85px !important;
                max-width: 85px !important;
                font-size: 0.875rem;
                height: 48px;
            }

            .phone-input-wrapper input {
                height: 48px;
            }
        }

        /* Smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }

         /* Focus states for accessibility */
        .nav-link:focus-visible,
        .dropdown-item:focus-visible,
        .mobile-nav-link:focus-visible,
        .mobile-dropdown-item:focus-visible {
            outline: 2px solid #0066ff;
            outline-offset: 2px;
        }
        /* Remove for mouse clicks */
        .nav-link:focus,
        .dropdown-item:focus,
        .mobile-nav-link:focus,
        .mobile-dropdown-item:focus {
            outline: none; 
            outline: none; 
        }

        /* Animation for dropdown items */
        .dropdown-item {
            animation: fadeInDown 0.3s ease forwards;
            opacity: 0;
            transform: translateY(-10px);
        }

        .nav-item:hover .dropdown-item:nth-child(1) { animation-delay: 0.1s; }
        .nav-item:hover .dropdown-item:nth-child(2) { animation-delay: 0.15s; }
        .nav-item:hover .dropdown-item:nth-child(3) { animation-delay: 0.2s; }
        .nav-item:hover .dropdown-item:nth-child(4) { animation-delay: 0.25s; }
        .nav-item:hover .dropdown-item:nth-child(5) { animation-delay: 0.3s; }

        @keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading animation for page transitions */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #06b6d4);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: 1003;
        }

        .page-transition.loading {
            transform: scaleX(1);
        }
     