
        /* Contact Form Section */
.contact-form-section {
            margin-top: 60px;
            padding: 80px 0;
            background:  #ffffff;
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            pointer-events: none;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        /* Contact Info Styling */
        .contact-info {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            animation: slideInLeft 1s ease-out;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e90ff, #000000);
            border-radius: 2px 2px 0 0;
        }

        .contact-heading {
            color: #1e90ff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
     .contact-head {
    text-align: center;
    justify-self: center;
    color: #1e90ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

        .contact-info h2 {
            color: #000000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #1e90ff, #000000);
            border-radius: 2px;
        }

        .contact-info > p {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .call-link, .email-link {
            color: #1e90ff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .call-link::before, .email-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #000000;
            transition: width 0.3s ease;
        }

        .call-link:hover, .email-link:hover {
            color: #000000;
            transform: translateY(-1px);
        }

        .call-link:hover::before, .email-link:hover::before {
            width: 100%;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .social-icon:hover {
            background: #1e90ff;
            border-color: #000000;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon img {
            width: 24px;
            height: 24px;
            transition: all 0.3s ease;
        }

        .social-icon:hover img {
            filter: brightness(0) invert(1);
        }

        /* Contact Form Styling */
        .contact-form {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            animation: slideInRight 1s ease-out;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #000000, #1e90ff);
            border-radius: 2px 2px 0 0;
        }

        .contact-form label {
            display: block;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #1e90ff;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
            transform: translateY(-2px);
        }

        .contact-form select {
            cursor: pointer;
        }

        .contact-form select option {
            background: #000000;
            color: #ffffff;
            padding: 10px;
        }

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

        .contact-form button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(45deg, #1e90ff, #000000);
            color: #ffffff;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-form button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .contact-form button:hover {
            background: linear-gradient(45deg, #000000, #1e90ff);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(30, 144, 255, 0.4);
        }

        .contact-form button:hover::before {
            left: 100%;
        }

        .contact-form button:active {
            transform: translateY(-1px);
        }

        /* Map Container */
        .map-container {
            margin-top: 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 4px solid #ffffff;
            position: relative;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: linear-gradient(45deg, #1e90ff, #000000, #1e90ff);
            border-radius: 24px;
            z-index: -1;
        }

        .map-container iframe {
            display: block;
            border: none;
            filter: grayscale(20%) contrast(1.1);
            transition: filter 0.3s ease;
        }

        .map-container:hover iframe {
            filter: grayscale(0%) contrast(1.2);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media screen and (max-width: 968px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info,
            .contact-form {
                padding: 40px 30px;
            }

            .contact-info h2 {
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 768px) {
            .contact-form-section {
                padding: 60px 0;
                margin-top: 80px;
            }

            .content-wrapper {
                padding: 0 15px;
                gap: 30px;
            }

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

            .contact-info h2 {
                font-size: 1.8rem;
            }

            .contact-info > p {
                font-size: 1rem;
            }

            .social-icons {
                gap: 15px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
            }

            .social-icon img {
                width: 20px;
                height: 20px;
            }

            .contact-form input,
            .contact-form select,
            .contact-form textarea {
                padding: 12px;
                margin-bottom: 20px;
            }

            .contact-form button {
                padding: 15px;
                font-size: 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .contact-info h2 {
                font-size: 1.5rem;
            }

            .contact-heading {
                font-size: 1rem;
            }

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

            .contact-form-section {
                margin-top: 30px;
            }
        }

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #1e90ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.cursor-bubble {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    background: rgba(30, 144, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Hide default cursor */
* {
    cursor: none !important;
}

/* Hover effects for interactive elements */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor,
input:hover ~ .custom-cursor,
textarea:hover ~ .custom-cursor,
select:hover ~ .custom-cursor,
[onclick]:hover ~ .custom-cursor {
    width: 30px;
    height: 30px;
    background: #000000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

a:hover ~ .cursor-bubble,
button:hover ~ .cursor-bubble,
input:hover ~ .cursor-bubble,
textarea:hover ~ .cursor-bubble,
select:hover ~ .cursor-bubble,
[onclick]:hover ~ .cursor-bubble {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness */
/* Removed media query that hides custom cursor on mobile to enable bubble cursor animations on mobile */
/* @media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .custom-cursor,
    .cursor-bubble {
        display: none;
    }
} */











    
