/* ============ RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}


/* Hero Section */
.hero {
  position: relative;
  background: url('images/HERO__04.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%; /* ensures content doesn't overflow */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #00a86b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #007f52;
}

/* Divider Styles */
.divider {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-shape {
  display: none; /* hide all by default */
  position: relative;
  width: 100%;
  height: 150px;
  fill: #d3d3d3; /* light gray color */
}






/* ?????//////////////////// CONTACT FORM //////////// */

/* Contact Section Styling */
#contactSection {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

#contactSection .contact-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  align-items: stretch;
}

/* Left Contact Info */
#contactSection .contact-info {
 background: linear-gradient(135deg, #0a3d62, #f7b500);

  color: #fff;
  padding: 50px 40px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#contactSection .contact-info h2 {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}

#contactSection .contact-info p {
  margin: 18px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

#contactSection .contact-info p:hover {
  transform: translateX(5px);
}

#contactSection .contact-info p i {
  background: rgba(255,255,255,0.15);
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 18px;
}
/* Social Media Links */
.contact-info .social-links {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.contact-info .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
  background: #fff;
  color: #0a3d62;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Right Form */
#contactSection .contact-form {
  width: 60%;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 30px;
}

#contactSection .form-overlay {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

#contactSection .form-overlay h2 {
  color: #0a0a23;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
}

#contactSection .form-overlay p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Inputs */
#contactSection .form-overlay input,
#contactSection .form-overlay textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

#contactSection .form-overlay input:focus,
#contactSection .form-overlay textarea:focus {
  border-color: #0a3d62;
  box-shadow: 0 0 8px rgba(183,28,28,0.2);
}

/* Button */
#contactSection .form-overlay button {
  background: #0a3d62;
  border: none;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(183,28,28,0.25);
}

#contactSection .form-overlay button:hover {
  background: #d92a34;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183,28,28,0.35);
}

/* Responsive */
@media (max-width: 900px) {
  #contactSection .contact-container {
    flex-direction: column;
    align-items: center;
  }
  #contactSection .contact-info,
  #contactSection .contact-form {
    width: 100%;
  }
  #contactSection .form-overlay {
    width: 90%;
    margin: 20px auto;
  }
}



/* ///////////////////////// MAP///////////////// */
/* Google Map Section */


.map-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.map-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 30px;
  color: #333;
}

.map-location {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

.map-location i {
  color: #e60023; /* red icon */
  margin-right: 8px;
}

.map-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 10px; /* optional styling */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* optional styling */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
