@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Contact Hero Section */

   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .image-section {
      position: relative;
      width: 100%;
      max-width: 100%;
      height: 300px; /* Full screen height */
      overflow: hidden;
    }

    .image-section img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 300px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .overlay h1 {
      font-size: 3.2rem;
      margin-bottom: 10px;
      font-family: "Arimo", sans-serif;
    }

    .overlay p {
      font-size: 1.5rem;
      font-family: "Arimo", sans-serif;
      color: #edecec;
    }

    @media (max-width: 768px) {
      .overlay h1 {
        font-size: 2rem;
      }

      .overlay p {
        font-size: 1rem;
      }
    }



/* Location Section */

.location-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 90px 20px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  color: black;
}

.contact-item i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #223883 ;
}

.contact-item p {
  margin: 0;
  font-size: 20px;
  font-family: "Arimo", sans-serif;
}

.contact-item a {
  color: black;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
  .location-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

  .contact-item {
    max-width: 100%;
    font-size: 15px;
  }

  .contact-item i {
    font-size: 30px;
  }

  .contact-item p {
    font-size: 14px;
    padding: 0 10px;
  }
}




/* Contact Section */

.contact-section {
  background: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* Card Wrapper */
.contact-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 40px auto; /* ✅ Add this line */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fefaf9;
  padding: 40px 30px;
}


/* Right Card */
.contact-wrapper h2 {
  color: #223883 ;
  margin-bottom: 20px;
  font-size: 3rem;
  font-family: "Arimo", sans-serif;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.row.full {
  flex-direction: column;
}

input,
select,
textarea {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: "Arimo", sans-serif;
}

textarea {
  resize: none;
}

.con-btn-si {
  background: #177cc0;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
  font-family: "Arimo", sans-serif;
}

.con-btn-si:hover {
  background-color: white;
  color: #177cc0;
  border: 1px solid #177cc0;
}

  /* Tablet and Below */
  @media (max-width: 768px) {
    .contact-wrapper {
      padding: 30px 20px;
    }

    .row {
      flex-direction: column;
      gap: 10px;
    }

    .contact-wrapper h2 {
      font-size: 2rem;
    }

    .con-btn-si {
      font-size: 15px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 480px) {
    .contact-wrapper {
      padding: 20px 15px;
    }

    input,
    select,
    textarea {
      font-size: 13px;
      padding: 10px;
    }

    .contact-wrapper h2 {
      font-size: 1.6rem;
    }

    .con-btn-si {
      font-size: 14px;
      padding: 12px;
    }
  }


/* Map Section */

body {
  margin: 0;
}

.map-section {
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  color: #223883 ;
  font-family: "Arimo", sans-serif;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .map-section h2 {
    font-size: 28px;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-section h2 {
    font-size: 24px;
  }

  .map-container iframe {
    height: 250px;
  }
}
