

            .contact-container {
                max-width: 100%;
                margin: 0 auto;padding: 2vw 2vw;
          
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                display: grid;
                grid-template-columns: 1fr 1fr;
                min-height: 600px;
            }

            /* Form Section */
            .form-section {
                padding: 120px;
    
            }

            .form-section h1 {
                font-size: 42px;

                margin-bottom: 15px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: -1px;
            }

            .form-section .subtitle {
                color: #666;
                margin-bottom: 40px;
                font-size: 16px;
            }

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

            .form-group label {
                display: block;
                margin-bottom: 8px;
                color: #333;
                font-weight: 600;
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .form-group label span {
                color: #ff4757;
                font-size: 12px;
                text-transform: lowercase;
                font-weight: 400;
            }

            .form-group input,
            .form-group textarea {
                width: 100%;
                padding: 15px;
                border: 2px solid #e0e0e0;
                border-radius: 10px;
                font-size: 15px;
                transition: all 0.3s ease;
                font-family: inherit;
            }

            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: #667eea;
                box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            }

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

            .submit-btn {
                 background: linear-gradient(135deg, #181819 0%, #1a1a1a 100%);
                color: white;
                padding: 16px 50px;
                border: none;
                border-radius: 50px;
                font-size: 16px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: 10px;
            }
            a{
                text-decoration: none;
            }

            .submit-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(32, 32, 37, 0.4);
            }

            /* Details Section */
            .details-section {
                /* padding: 60px; */
         background: linear-gradient(135deg, #181819 0%, #1a1a1a 100%);
                color: white;padding: 5vw 2vw;
                display: flex;
                flex-direction: column;border-radius: 15px;
                justify-content: center;
            }

            .details-section h2 {
                font-size: 36px;
                margin-bottom: 40px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: -1px;
            }

            .detail-item {
                margin-bottom: 35px;
                padding-bottom: 25px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }

            .detail-item:last-child {
                border-bottom: none;
            }

            .detail-item strong {
                display: block;
                font-size: 16px;
                margin-bottom: 10px;
                text-transform: uppercase;
                letter-spacing: 1px;
                opacity: 0.9;
            }

            .detail-item p,
            .detail-item a {
                color: white;
                text-decoration: none;
                line-height: 1.8;
                font-size: 15px;
                opacity: 0.95;
            }

            .detail-item a:hover {
                opacity: 1;
                text-decoration: underline;
            }

            .detail-item b {
                display: block;
                font-size: 18px;
                margin-bottom: 5px;
                text-transform: uppercase;
            }

            .social-links {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
            }

            .social-links a {
                background: rgba(255, 255, 255, 0.2);
                padding: 10px 20px;
                border-radius: 25px;
                transition: all 0.3s ease;
                font-size: 14px;
                text-transform: capitalize;
            }

            .social-links a:hover {
                background: white;
                color: #667eea;
                transform: translateY(-2px);
            }

            .working-hours p {
                margin: 8px 0;
                font-size: 15px;
            }

        

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

                .form-section,
                .details-section {
                    padding: 120px 30px;
                }

                .form-section h1 {
                    font-size: 32px;
                }

                .details-section h2 {
                    font-size: 28px;
                }
            }

            @media (max-width: 480px) {
          
                .form-section,
                .details-section {
                    padding: 120px 20px;
                }

                .form-section h1 {
                    font-size: 28px;
                }

                .submit-btn {
                    width: 100%;
                }
            }

            /* Success Message */
            .success-message {
                display: none;
                background: #4caf50;
                color: white;
                padding: 15px;
                border-radius: 10px;
                margin-bottom: 20px;
                text-align: center;
                font-weight: 600;
            }

            .success-message.show {
                display: block;
                animation: slideDown 0.5s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

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