  :root {
            --primary: #3bd4ae;
            --primary-dark: #2bb08a;
            --dark: #020919;
            --light: #ffffff;
            --accent: #b0c4de;
        }
        
        /* Contact Form Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1c4487 0%, #2a6f8e 25%, #2c8c94 50%, #369b94 75%, #3db090 100%);
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0 20px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 0;
            font-size: 16px;
            color: var(--dark);
            border: none;
            border-bottom: 1px solid #ddd;
            outline: none;
            background: transparent;
            transition: all 0.3s;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-group label {
            position: absolute;
            top: 12px;
            left: 0;
            font-size: 16px;
            color: #777;
            pointer-events: none;
            transition: all 0.3s;
        }
        
        .form-group input:focus ~ label,
        .form-group input:valid ~ label,
        .form-group select:focus ~ label,
        .form-group select:valid ~ label,
        .form-group textarea:focus ~ label,
        .form-group textarea:valid ~ label {
            top: -20px;
            font-size: 14px;
            color: var(--primary);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-bottom: 2px solid var(--primary);
        }
        
        .error-message {
            color: #ff4444;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            position: relative;
            font-weight: 600;
        }
        
        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(59, 212, 174, 0.3);
        }
        
        .submit-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .btn-text {
            display: inline-block;
        }
        
        .loading-spinner {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: none;
        }
        
        /* Contact Details */
        .contact-details {
            flex: 1;
            min-width: 300px;
            color: white;
        }
        
        .contact-details h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-details h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: white;
            border-radius: 2px;
        }
        
        .details-container {
            display: grid;
            gap: 25px;
        }
        
        .detail-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        
        .detail-icon {
            font-size: 24px;
            color: var(--primary);
            margin-top: 5px;
        }
        
        .detail-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .detail-content p,
        .detail-content a {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin: 0;
        }
        
        .detail-content a {
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .detail-content a:hover {
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .contact-form {
                padding: 30px;
            }
        }
        .g-recaptcha {
            margin: 20px 0;
        }
        
        #recaptcha-error {
            color: #ff4444;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-content {
  position: relative;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.logo-spinner-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.preloader-logo {
 width: 220px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: pulse 2s infinite ease-in-out;
}

.spinner-track {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.spinner-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform-origin: 50% 50%;
  animation: spin 2s infinite linear;
}

.dot-1 {
  top: 0;
  left: 50%;
  background: #3db090;
  animation-delay: 0s;
}
.dot-2 {
  top: 50%;
  left: 100%;
  background: #2c8c94;
  animation-delay: -0.5s;
}
.dot-3 {
  top: 100%;
  left: 50%;
  background: #1d526b;
  animation-delay: -1s;
}
.dot-4 {
  top: 50%;
  left: 0;
  background: #0c2d64;
  animation-delay: -1.5s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.preloader-text {
  color: black;
  font-size: 1.2rem;
  margin: 20px 0;
}

.loading-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0c2d64, #3db090);
  transition: width 0.3s ease;
}

.preloader.fade-out {
  opacity: 0;
}

/* Ensure no scrolling during preloader */
body.has-preloader {
  overflow: hidden;
  height: 100vh;
}