
        :root {
            --primary-blue: #4f46e5;
            --light-blue: #6366f1;
            --dark-blue: #3730a3;
            --light-gray: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #334155;
        }

        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
        } */

       #contact-us{

        .btn-primary {
            background: var(--primary-blue);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        .hero-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
            padding: 20px 0 50px !important;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-muxp8d7IRMknmrW6EvikXdJzQ0XZUF.png') no-repeat center center; */
            background-size: cover;
            /* opacity: 0.1; */
            z-index: 1;
            background-color: #ffffff;
        }

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

        .building-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 3;
        }

        .contact-form h2 {
            color: var(--dark-gray);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .contact-form p {
            color: var(--medium-gray);
            margin-bottom: 2rem;
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #f8fafc;
            color: gray;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            background: white;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        .phone-input {
            display: flex;
            gap: 0.5rem;
        }

        .country-code {
            background: var(--light-gray);
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 0.75rem;
            min-width: 80px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            background: linear-gradient(to bottom, #012169 33%, white 33%, white 66%, #C8102E 66%);
            border-radius: 2px;
        }

        .submit-btn {
            background: var(--primary-blue);
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
        }

        .submit-btn::after {
            content: '→';
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover::after {
            transform: translateX(5px);
        }

        .contact-info {
            background: white;
            padding: 10px 0;
        }

        .contact-info h2 {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }

        .contact-info p {
            color: var(--medium-gray);
            font-size: 1.1rem;
        }

        .info-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .info-card .location-text {
            color: #5955eb;
            font-weight: 600;
        }

        .info-card h4 {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }

        .info-card p {
            color: var(--medium-gray);
            margin-bottom: 0.5rem;
        }

        .info-card a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .info-card a:hover {
            color: var(--dark-blue);
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .building-image {
                height: 250px;
                transform: none;
                margin-bottom: 2rem;
            }
            
            .contact-form {
                padding: 2rem;
                margin-top: 2rem;
            }
            
            .phone-input {
                flex-direction: column;
            }
            
            .country-code {
                min-width: auto;
            }
        }

        .gmap iframe{
            margin-left: -30px;
        }


       }