
body{
  text-transform: capitalize;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}






 /* 🌟 CONTACT-FOCUSED HEADER DESIGN 🌟 */
 .header-title {
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(90deg, #33a893, #08622d, #5b9d91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s linear infinite;
  letter-spacing: 1.5px;
  position: relative;
  margin-bottom: 15px;
  margin-top: 80px;
  font-family: "Figtree", serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal; 
}

.header-title::before {
  content: "📞";
  position: absolute;
  top: -10px;
  left: -35px;
  font-size: 40px;
  animation: bounce 2s infinite;
}

.header-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #5b9d91, #07b34f);
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
  animation: underlineExpand 2s infinite;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }

  50% {
      transform: translateY(-10px);
  }
}

@keyframes underlineExpand {
  0% {
      width: 50px;
  }

  50% {
      width: 100px;
  }

  100% {
      width: 50px;
  }
}

@keyframes gradientFlow {
  0% {
      background-position: 0% 50%;
  }

  50% {
      background-position: 100% 50%;
  }

  100% {
      background-position: 0% 50%;
  }
}

.header-subtitle {
  text-align: center;
  font-size: 20px;
  color: #4a4a4a;
  letter-spacing: 1px;
  margin-top: -5px;
  font-weight: 700;
  opacity: 0;
  animation: fadeIn 2s forwards 1s;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}



.contact-main {
  background-color: transparent;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.details-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}
.detail-box {
  background: linear-gradient(135deg, #0e6b5a, #08360f, #05913f);
  background-size: 400% 400%;
  animation: gradientMove 5s ease infinite;
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  overflow: hidden;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.detail-box::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
  transition: all 0.5s;
}
.detail-box:hover::before {
  top: 0;
  left: 0;
}
.detail-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.detail-icon {
  font-size: 55px;
  margin-bottom: 25px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.detail-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 5px;
}
.detail-content a:hover {
  color: #b9f6ca;
  text-decoration: underline;
}
.detail-content {
  font-size: 18px;
  line-height: 1.6;
  word-break: break-word;
}
@media (max-width: 576px) {
  .detail-box {
    padding: 25px;
  }
}




.map-main{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
  background-color: #fff;
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1150px;
  gap: 20px;
  
}

.form-section, .map-section {
  flex: 1;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 25px;
  background-color: #f9f9f9;
}

.form-section h2 {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 24px;
  color: #333;
}

.form-control {
  border-radius: 5px;
  padding: 12px;
  border: 1px solid #ccc;
}

.form-control:focus {
  border-color: #28a745;
  box-shadow: none;
}

.form-btn {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 400px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }
}


