body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9fffd; /* soft mint teal */
  padding: 1rem 2rem;
  border-bottom: 0px solid #00bfa6;
}

.brand-name {
  font-size: 26px;
  font-weight: 500;
  color: #00332e;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: -0.5px;
}

.brand-name .highlight {
  color: #00bfa6; /* brand teal for 'RE' */
}

.banner-right .cta-button {
  background-color: white;
  color: #00bfa6;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
/* create hover effect */
.banner-right .cta-button:hover {
  background-color: #00bfa6;
  color: white;
}

header {
  position: relative;
  color: white;
  text-align: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.cta-button {
  background: white;
  color: #00bfa6;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 23px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
}
/* create hover effect */
.overlay .cta-button:hover {
  background-color: #00bfa6;
  color: white;
}
 

.services, .testimonials, .contact {
  padding: 1rem .1rem;
  text-align: center;
}

.service {
  margin: 2rem 0;
}

.service img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.contact {
  background: #87CEEB;
  padding: 4rem 1rem;
}

/* Make form more responsive and wider */


form {
  background: white;
  margin: 0 auto;
  padding: 2.5rem;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #00332e;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #333;
}

.required {
  color: #d9534f;
  margin-left: 0.25rem;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.video-wrapper {
      width: 74%;
      max-width: 80%; /* Set a max width for control */
      aspect-ratio: 16 / 13; /* Keeps width greater than height */
      overflow: none;
      padding-bottom:0.1rem;
      align:center;
      
    }

textarea {
  resize: vertical;
}

.input-with-symbol {
  position: relative;
  margin-bottom: 1.2rem;
}

.input-with-symbol .symbol {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #555;
  font-size: 1rem;
  pointer-events: none;
}

.input-with-symbol input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-left: 1.8rem; /* space for the $ */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}


/* Dollar sign styling */
.currency-input {
  position: relative;
  margin-bottom: 1.2rem;
}

.currency-symbol {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #555;
  font-size: 1rem;
  pointer-events: none;
}

.currency-input input {
  padding-left: 1.8rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}
.radio-group {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the group horizontally */
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Label styling */
.radio-group label {
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5rem;
}

/* Hide native radio */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #f28b82; /* light red */
  width: 1em;
  height: 1em;
  border: 2px solid #f28b82;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}

/* Inner dot */
input[type="radio"]::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #f28b82;
}

/* Show dot when selected */
input[type="radio"]:checked::before {
  transform: scale(1);
}

button {
  background: #00bfa6;
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

button:hover {
  background: #00a38f;
}

input[name^="hp_"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* Add this to your CSS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}

.facebook  { background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png'); }
.youtube   { background-image: url('https://cdn-icons-png.flaticon.com/512/1384/1384060.png'); }
.tiktok    { background-image: url('https://cdn-icons-png.flaticon.com/512/3046/3046122.png'); }
.linkedin  { background-image: url('https://cdn-icons-png.flaticon.com/512/174/174857.png'); }
.instagram { background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png'); }


    
footer {
  background: #F3EFE3;
  /*linear-gradient(135deg, #00bfa6, #ff6f61)*/
  color: #1F2A44;
  text-align: center;
  padding: 1rem;
  font-weight:500;
}

footer a {
  color: #CCCCCC;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
  font-weight: 500;
  color: #1F2A44;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    text-align: left;
  }

  .footer-right {
    margin-top: 0.5rem;
  }
}

.footer-divider {
  width: 99%;
  margin: 1rem auto;
  border: none;
  border-top: 1px solid #B0B0B0; /* soft gray line */
}

