/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* ===== Base Styling ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ===== Layout ===== */
.form-area {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sub-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.form-heading {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* ===== Info Area ===== */
.info-area {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.address-info {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.address-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.address-info h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #007bff;
}

.info-block p {
  font-size: 14px;
  margin-bottom: 10px;
}

.info-block i {
  color: #007bff;
  margin-right: 8px;
}

/* ===== Map Styling ===== */
.map {
  flex: 1;
  min-width: 400px;
  height: 550px;
  border-radius: 10px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .info-area {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
  }
}


@media (max-width: 768px) {
  .container {
    width: 105%;
    padding: 20px 10px;
    
  }

  .contact-section {
    gap: 10px;
  }

  .info-area {
    flex-direction: column;
    gap: 15px;
  }

  .address-info,
  .map {
    width: 100%;
    min-width: auto;
    height: 300px;
    padding: 15px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
  }

  .form-heading {
    font-size: 24px;
  }

  .address-info h2 {
    font-size: 22px;
  }

  .address-info h3 {
    font-size: 16px;
  }

  .sub-text {
    font-size: 13px;
  }
  .contact-section{
    padding-left: 10px;
    padding-right: 25px;
  }
  .map{
    padding-left: 1px;
    padding-right: 1px;

  }
}

