@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 20px auto;
        }
        
        .contact-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
            width: 100%;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .map-container {
            width: 100%;
            height: 300px;
            margin-top: 30px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #ddd;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .section-header {
            position: relative;
        }

        .section-header h1 {
            font-size: 32px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .section-header::after {
            content: "";
            display: block;
            width: 120px;
            height: 6px;
            background-color: #1e3a8a;
            margin-top: 8px;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .office-section {
            margin-bottom: 30px;
        }

        .office-section h2 {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 15px;
        }

        .contact-item i {
            color: #1e3a8a;
            font-size: 20px;
            width: 24px;
            text-align: center;
            margin-top: 3px;
        }

        .contact-item .text {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        .contact-item a {
            color: #1e3a8a;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #2c4db9;
        }

        /* Form styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #1e3a8a;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #1e3a8a;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .map-link {
            margin-top: 8px;
        }
        
        .map-link a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            background-color: #f0f4ff;
            padding: 4px 10px;
            border-radius: 4px;
        }
        
        .map-link a i {
            font-size: 14px;
            width: auto;
            margin-top: 0;
        }
        
        .office-hours {
            background-color: #f9f9f9;
            border-left: 4px solid #1e3a8a;
            padding: 15px;
            margin-top: 30px;
            border-radius: 4px;
        }
        
        .office-hours h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .office-hours h3 i {
            color: #1e3a8a;
        }
        
        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
            color: #555;
        }
        
        .hours-item .day {
            font-weight: 600;
        }
        
        .hours-item.closed .time {
            color: #e53e3e;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
            
            .section-header h1 {
                font-size: 28px;
            }
            
            .office-section h2 {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 20px;
            }
            
            .section-header h1 {
                font-size: 24px;
            }
            
            .contact-item {
                gap: 10px;
            }
            
            .contact-item i {
                font-size: 18px;
            }
            
            .contact-item .text {
                font-size: 14px;
            }
        }




        .submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  border: 2px solid #1e3a8a;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.4s ease;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.12);
  user-select: none;
  z-index: 0;
}

.submit-btn i {
  color: red;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background-color: #1e3a8a;
  border-radius: inherit;
  transform-origin: left center; /* Animate fill from left */
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.submit-btn:hover::before {
  transform: scaleX(1);
}

.submit-btn:hover {
  color: white;
}

.submit-btn:hover i {
  transform: scale(1.15);
}


input.valid, textarea.valid {
  border: 2px solid green;
}

input.error, textarea.error {
  border: 2px solid red;
}



