* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", Arial, sans-serif !important;
  background-color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.input,
.title {
  font-weight: 500;
}
.btn,
.title {
  line-height: 1;
}
.input-container span:before,
.square {
  left: 50%;
}
.containers,
.form,
.map-section,
form {
  overflow: hidden;
}
.contact-hero-container {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 0;
}
.contact-bg-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #2a0fd9, #282e68, #1e3c72, #2a5298);
  background-size: 400% 400%;
  animation: 8s infinite bgGradientMove;
  z-index: -1;
}
@keyframes bgGradientMove {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.contact-floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.contact-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: linear infinite floatParticles;
}
@keyframes floatParticles {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(-10vh);
  }
}
.contact-content {
  position: relative;
  z-index: 1;
  animation: 2s ease-in-out fadeInEffect;
}
@keyframes fadeInEffect {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-button {
  padding: 12px 24px;
  font-size: 1rem;
  background: #fff;
  color: #ff4b2b;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.contact-button:hover {
  background: #ff4b2b;
  color: #fff;
  transform: scale(1.1);
}

/* contact hero section start */
.contact-hero-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  text-align: center;
  background: #66affc;
  color: white;
  margin: 0 auto;
}
.contact-hero-title {
  font-size: 3rem;
  overflow: hidden;

  white-space: nowrap;
  letter-spacing: 2px;
  animation: contact-typing 3s steps(30) forwards, contact-blink 0.5s infinite;
}
@keyframes contact-typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes contact-blink {
  50% {
    border-color: transparent;
  }
}
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2rem;
  }
}
/* contact hero section end */
.container-custom-request-quote-main-section {
  background-image: url("/assets/images/form-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
}
.content-custom-request-quote-description {
  width: 40%;
}
.content-custom-request-quote-description h2 {
  font-size: 36px;
  font-weight: bold;
}
.content-custom-request-quote-description p {
  font-size: 16px;
  color: #000000;
  font-weight: bolder;
}
.form-container-custom-request-quote-box {
  width: 50%;

  padding: 30px;
  border: 1px solid #343434;
}
.form-group-custom-request-quote-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.form-group-custom-request-quote-inputs input {
  width: 48%;
  padding: 10px;
  /* border: 1px solid #ccc; */
  border: none;
  margin: 10px;
}
.textarea-custom-request-quote-message {
  width: 100%;
  height: 100px;
  padding: 10px;
  margin: 10px;
  /* border: 1px solid #ccc; */
  border: none;
}
.button-custom-request-quote-submit {
  background: linear-gradient(to right, #29e30c, #12c32a);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
.button-custom-request-quote-submit:hover {
  background: #4d0e00;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .container-custom-request-quote-main-section {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }
  .content-custom-request-quote-description,
  .form-container-custom-request-quote-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .form-group-custom-request-quote-inputs {
    flex-direction: column;
  }
  .form-group-custom-request-quote-inputs input {
    width: 100%;
    margin-bottom: 10px;
  }
  .button-custom-request-quote-submit {
    width: 100%;
    padding: 12px 0;
  }
}

/* 
map section :start */
.contact-section-container-unique-2025 {
  padding: 50px 5%;
  background-color: #fff;
}
.contact-section-flex-unique-2025 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.contact-info-unique-2025 {
  width: 45%;
  /* background-color: #f1f1f1; */
  padding: 20px;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.contact-info-unique-2025 h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-item-unique-2025 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-item-unique-2025 i {
  font-size: 20px;
  color: #333;
  margin-right: 10px;
}
.map-container-unique-2025 {
  width: 45%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-section-flex-unique-2025 {
    flex-direction: column;
  }
  .contact-info-unique-2025,
  .map-container-unique-2025 {
    width: 100%;
  }
}

a {
  text-decoration: none;
  color: #000000;
}
