
        /* Contact Hero Section */
        .ved-contact-hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 81, 132, 0.5) 100%), 
                        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 80px;
            color: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .ved-contact-hero:before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--secondary);
            transform: skewY(-3deg);
            z-index: 1;
        }

        .ved-contact-hero h1 {
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .ved-contact-hero .lead {
            font-weight: 300;
            font-size: 1.25rem;
            opacity: 0.9;
        }

        /* Contact Cards */
        .ved-contact-cards {
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }

        .ved-contact-card {
            background: var(--secondary);
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: none;
            text-align: center;
        }

        .ved-contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .ved-contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gray) 0%, var(--dark-gray) 100%);
            color:var(--accent) ;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .ved-contact-card h3 {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .ved-contact-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .ved-contact-card .btn {
            background: var(--gray);
            border: none;
            color: var(--secondary);
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .ved-contact-card .btn:hover {
            background: var(--dark-gray);
            transform: translateY(-2px);
        }

        /* Contact Form Section */
        .ved-contact-form-section {
            padding: 100px 0;
            background: url('VedLab_Image/bgimg.png') no-repeat center center;
            background-size: cover;
            position: relative;
        }

        .ved-contact-form-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 81, 132, 0.5);
        }

        .ved-contact-form-container {
            background: var(--secondary);
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            padding: 50px;
            position: relative;
            z-index: 2;
        }

        .ved-form-title {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 30px;
            position: relative;
        }

        .ved-form-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gray);
        }

        .ved-contact-form .form-control {
            height: 50px;
            border-radius: 8px;
            border: 2px solid grey;
            padding: 10px 20px;
            margin-bottom: 20px;
            transition: all 0.3s;
            background: var(--secondary);
        }

        .ved-contact-form .form-control:focus {
            border-color: grey;
            box-shadow: 0 0 0 0.25rem rgba(102, 102, 102, 0.2);
            outline: none;
        }

        .ved-contact-form textarea.form-control {
            min-height: 150px;
            resize: none;
        }

        .ved-contact-form .form-label {
            font-weight: 500;
            color: var(--dark-gray);
            margin-bottom: 8px;
            display: block;
        }

        .ved-contact-form .btn-submit {
           
            color: var(--accent);
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
			 background: var(--dark-gray);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-3px);
        }

        .ved-contact-form .btn-submit:hover {
            background: var(--accent);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-3px);
			color: var(--secondary);
        }

        .ved-contact-form .is-invalid {
            border-color: var(--error);
        }

        .ved-contact-form .invalid-feedback {
            color: var(--error);
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .ved-contact-form .is-invalid ~ .invalid-feedback {
            display: block;
        }

        /* Map Section */
        .ved-map-section {
            padding: 80px 0;
            background: var(--light-gray);
            position: relative;
        }

        .ved-map-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.03;
            z-index: 0;
        }

        .ved-section-title {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }

        .ved-section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gray);
        }

        .ved-map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
            border: 10px solid var(--secondary);
            position: relative;
            z-index: 1;
        }

        .ved-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .ved-location-details {
            background: var(--secondary);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .ved-location-details h3 {
            color: var(--dark-gray);
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }

        .ved-location-details h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gray);
        }

        .ved-location-feature {
            display: flex;
            margin-bottom: 20px;
        }

        .ved-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--accent) ;
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .ved-location-feature h5 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .ved-location-feature p {
            color: var(--gray);
            margin-bottom: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .ved-contact-hero h1 {
                font-size: 2.5rem;
            }

            .ved-contact-form-container {
                padding: 30px;
            }

            .ved-map-container {
                height: 350px;
                margin-bottom: 30px;
            }

            .ved-location-details {
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
            .ved-contact-hero {
				margin-top: 50px;
                padding: 100px 0 60px;
            }

            .ved-contact-hero h1 {
                font-size: 2rem;
            }

            .ved-contact-cards {
                margin-top: 0;
            }

            .ved-contact-card {
                margin-bottom: 30px;
            }

            .ved-map-container {
                height: 300px;
            }

            .ved-location-feature {
                flex-direction: column;
                text-align: center;
            }

            .ved-feature-icon {
                margin: 0 auto 15px;
            }
        }