
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
}


/* Hero Section */
.contact-header {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #fff;
}
.main-title {
  font-size: 60px;
  color: #0a3d62;
  animation: riseUp 1s ease-out forwards;
}
.sub-title {
  font-size: 18px;
  color: #000;
  max-width: 800px;
  margin: 20px auto 10px;
  animation: riseUp 1s ease-out 0.3s forwards;
}

/* Contact Section */
.contact-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #f3f1ee;
  padding: 60px 15px;
  justify-content: center;
  align-items: stretch;
}
.contact-left, .contact-right {
  width: 100%;
  max-width: 500px;
  margin: 10px;
  border-radius: 15px;
}
.contact-left {
  position: relative;
  overflow: hidden;
  animation: slideInLeft 1s ease-out forwards;
}
.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.contact-left img:active {
  transform: scale(1.18);
  cursor: zoom-out;
  box-shadow: 0 8px 32px rgba(44,26,94,0.18);
}
.overlay-message {
  position: absolute;
  top: 8%; /* moved higher from 13% */
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #000;
  font-weight: bold;
  text-align: center;
  white-space: pre-wrap;
}


/* Form */
.contact-right {
  background-color: #ffffff;
  padding: 40px 50px;
  animation: slideInRight 1s ease-out forwards;
}
.form-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}
form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
input, textarea {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  width: 100%;
  resize: none;
}
textarea {
  height: 130px;
}
.contact-btn {
  background: linear-gradient(to right, #ff000e, #e5d118);
  color: black;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.18s;
}
.contact-btn:hover,
.contact-btn:focus {
  background: linear-gradient(to right, #e5d118, #ff000e);
  color: #fff;
  transform: scale(1.05);
}
#formMessage {
  font-size: 14px;
  margin-top: -10px;
}
.alt-contact {
  font-size: 14px;
  text-align: center;
  margin-top: -10px;
}
.alt-contact a {
  color: #176a5d;
  text-decoration: none;
}
.alt-contact a:hover {
  text-decoration: underline;
}

/* Info Boxes */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  padding: 80px 20px;
  gap: 30px;
}
.info-card {
  flex: 1 1 30%;
  min-width: 260px;
  max-width: 300px;
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 14, 0.1), rgba(229, 209, 24, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 0;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background: #edf2f7;
}
.info-card:hover::before {
  opacity: 1;
}
.info-card:hover .info-icon {
  transform: translateY(-10px);
}
.info-icon {
  font-size: 24px;
  background: linear-gradient(to right, #ff000e, #e5d118);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}
.info-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}
.info-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  padding: 16px 18px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp-chat:hover {
  transform: scale(1.1);
}

/* Footer Social Icons */
/* .footer-socials {
  text-align: center;
  padding: 30px 0;
  background-color: #ffffff;
}
.footer-socials a {
  color: #0a66c2;
  font-size: 24px;
  margin: 0 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-socials a:hover {
  transform: scale(1.2);
  color: #064e96;
} */

/* Section Heading Underline Style (matches about page) */
.section-heading-underline,
.section-heading-underline1 {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  width: fit-content;
}

.section-heading-underline::after,
.section-heading-underline1::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  width: 50%;
  height: 7px;
  background: linear-gradient(to right, #ff000e, #e5d118);
  border-radius: 4px;
  transition: width 0.3s ease; /* Animate width on hover */
}

.section-heading-underline:hover::after,
.section-heading-underline1:hover::after {
  width: 100%; /* Expand to full width on hover */
}

.about-us-left h2.section-heading-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  color: #222;
  width: fit-content;
}

.about-us-left h2.section-heading-underline::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  width: 50%;
  height: 7px;
  background: linear-gradient(to right, #ff000e, #e5d118);
  border-radius: 4px;
  transition: width 0.3s ease; /* Animate width on hover */
}

.about-us-left h2.section-heading-underline:hover::after {
  width: 100%; /* Expand to full width on hover */
}

/* Animations */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px 15px;
  }
  .form-title {
    margin-bottom: 10px;
  }
  .info-card {
    padding: 35px 25px;
  }
  .overlay-message {
    font-size: 16px;
    top: 12%;
    padding: 0 15px;
 }
 }
/* Hover underline for "Let's ge" with gradient */
.hover-highlight {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.hover-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 5px;
  background: linear-gradient(to right, #ff000e, #e5d118);
  transition: width 0.4s ease-in-out;
  border-radius: 4px;
}

.hover-highlight:hover::after {
  width: 100%;
}
/* Gradient icon styles */
.info-icon {
  font-size: 24px;
  margin-bottom: 25px;
  background: linear-gradient(to right, #ff000e, #e5d118);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
}
.section-heading-underline::after,
  .section-heading-underline1::after {
    width: 90px;
    height: 7px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
  .about-us-left h2.section-heading-underline::after {
    width: 90px;
    height: 7px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }

