* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }


/* Contact Us  */
        .get-in-touch-section {
           
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
        }

        .touch-container {
            max-width: 1200px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            animation: slideUp 0.8s ease-out;
        }

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

        .info-panel {
            background: linear-gradient(135deg, #2196F3, #1976D2);
            padding: 60px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .info-panel::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

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

        .info-panel h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .info-panel p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(10px);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .info-details h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .info-details p {
            font-size: 1rem;
            opacity: 0.8;
            margin: 0;
        }

        .social-connect {
            margin-top: 40px;
        }

        .social-connect h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

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

        .social-link {
            width: 50px;
            height: 50px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: white;
            color: #2196F3;
            transform: translateY(-5px);
        }

        .message-form {
            padding: 60px 40px;
            background: white;
        }

        .form-header {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .form-description {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .input-group {
            margin-bottom: 25px;
            position: relative;
        }

        .input-group label {
            display: block;
            font-weight: 500;
            color: #555;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .input-field {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e8ed;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .input-field:focus {
            outline: none;
            border-color: #2196F3;
            background: white;
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }

        .input-field::placeholder {
            color: #aaa;
        }

        textarea.input-field {
            resize: vertical;
            min-height: 120px;
        }

        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .send-btn {
            width: 100%;
            padding: 16px 30px;
            background: linear-gradient(135deg, #2196F3, #1976D2);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .send-btn::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;
        }

        .send-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
        }

        .send-btn:hover::before {
            left: 100%;
        }

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

        /* Responsive Design */
        @media (max-width: 968px) {
            .touch-container {
                grid-template-columns: 1fr;
                margin: 20px;
            }
            
            .info-panel {
                order: 2;
                padding: 40px 30px;
            }
            
            .message-form {
                order: 1;
                padding: 40px 30px;
            }
            
            .info-panel h2 {
                font-size: 2rem;
            }
            
            .form-header {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .get-in-touch-section {
                padding: 40px 15px;
            }
            
            .touch-container {
                margin: 10px;
            }
            
            .info-panel, .message-form {
                padding: 30px 20px;
            }
            
            .input-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .info-panel h2 {
                font-size: 1.8rem;
            }
            
            .form-header {
                font-size: 1.6rem;
            }
            
            .social-list {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .info-panel h2 {
                font-size: 1.5rem;
            }
            
            .form-header {
                font-size: 1.4rem;
            }
            
            .info-item {
                margin-bottom: 20px;
            }
            
            .info-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }