* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9fafb;
            color: #333;
        }

        /* --- Banner Section (Matching image_a3ba05.jpg) --- */
        .contact-banner {
            background: linear-gradient(135deg, #9333ea, #ec4899); /* Matching image_a3ba05.jpg */
    padding: 80px 20px;
    text-align: center; /* Pura text center align karne ke liye */
    color: #ffffff;
        }

        .contact-banner span {
            font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
        }

        .contact-banner h1 {
            font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
        }

        .contact-banner p {
            font-size: 16px;
    max-width: 700px;
    margin: 0 auto; /* Yha space correction kiya hai (0 auto) jisse block hamesha center me rahe */
    text-align: center; /* Pura description paragraph perfectly center karne ke liye */
    opacity: 0.9;
    line-height: 1.6;
        }

        /* --- Main Content Section --- */
        .contact-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        /* Left Side: Contact Info Card */
        .contact-info-card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-info-card h2 {
            font-size: 26px;
            color: #111827;
            margin-bottom: 15px;
            position: relative;
        }

        .contact-info-card p {
            color: #6b7280;
            font-size: 15px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
            color: #9333ea;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 16px;
            color: #374151;
            margin-bottom: 5px;
        }

        .info-text p {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 0;
        }

        /* Right Side: Contact Form Card */
        .contact-form-card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-form-card h2 {
            font-size: 26px;
            color: #111827;
            margin-bottom: 25px;
        }

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

        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        @media (max-width: 600px) {
            .form-group.full-width {
                grid-column: span 1;
            }
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: #4b5563;
            margin-bottom: 8px;
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            padding: 12px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 15px;
            color: #1f2937;
            background-color: #f9fafb;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            border-color: #9333ea;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
        }

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

        /* Submit Button with matching theme color */
        .submit-btn {
            background: linear-gradient(135deg, #9333ea, #ec4899);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            opacity: 0.95;
            transform: translateY(-1px);
        }

        .submit-btn:active {
            transform: translateY(0);
        }