/* @import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.inter-font {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.eb-font,
h1,
h2,
h3,
h4 {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  z-index: 100;
  height: 100px;
  display: flex;
}

.container {
  width: 92%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.column-container {
  width: 92%;
  max-width: 1320px;
  margin: auto;
}

.logo img {
  width: 200px;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 4px;
  transition: 0.3s ease;
}

/* Active underline (subtle like screenshot) */
.nav-menu a.active {
  color: #073842;
  border-bottom: 2px solid #073842;
}

/* Hover effect */
.nav-menu a:hover {
  color: #073842;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    display: none;
  }
}

.hero {
  background-image: url("./assets/herobg.jpg");
  background-size: cover;
  background-position: center;
  /* position: relative; */
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: white;
  z-index: -1;
  margin-top: 11vh;
  transition:
    transform 0.2s linear,
    opacity 0.2s linear;
  will-change: transform, opacity;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  width: 92%;
  max-width: 1320px;
  margin: auto;
}

.hero-left h1 {
  font-size: 3.7vw;
  line-height: 1.2;
  font-weight: 700;
  color: #073842;
}

.hero-right p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* FIXED HERO EFFECT UNTIL NEXT SECTION COVERS IT */
.hero {
  position: sticky;
  top: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
  .hero-left h1 {
    font-size: 34px;
  }
  .hero-right p {
    font-size: 16px;
  }
}

.consult-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  z-index: 10;
}

.consult-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("./assets/consultBg.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  z-index: 1;
}

.consult-content {
  position: relative;
  z-index: 2;
  width: 55%;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.consult-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.consult-form {
  position: relative;
  z-index: 3;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-form form {
  width: 500px;
  background: #fff;
  padding: 25px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.consult-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 14px;
}

.consult-form select,
.cta-form select {
  cursor: pointer;
  outline: none;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
}

.cta-form select {
  padding: 14px 18px;
  margin: 0;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #a5b3b8;
  background: transparent;
  color: #ffffff;
}

.cta-form select option {
  color: black;
}

.consult-form button {
  width: 100%;
  padding: 14px;
  background: #073842;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.consult-form .policy {
  font-size: 11px;
  text-align: center;
  margin-top: 8px;
  color: #333;
}

.consult-form .policy a {
  color: #073842;
  text-decoration: underline;
}

.formWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .consult-section {
    flex-direction: column;
    height: auto;
  }
  .consult-content {
    width: 100%;
    padding: 40px 20px;
  }
  .consult-form {
    width: 100%;
    padding-bottom: 40px;
  }
}

.brands {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.brands h2 {
  font-size: 28px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 12px;
}

.brands-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin: auto;
  line-height: 1.6;
  margin-bottom: 50px;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.brand-logos img {
  opacity: 0.9;
  transition: 0.3s ease;
}

.brand-logos img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 900px) {
  .brand-logos {
    justify-content: center;
    gap: 30px;
  }
  .brand-logos img {
    height: 55px;
  }

  .brands .owl-carousel.owl-drag .owl-item {
    display: flex;
    justify-content: center;
  }
}

.tech-section {
  padding: 100px 0;
  background: #ffffff;
}

.tech-wrap {
  display: grid;
  grid-template-columns: 1.2fr 20px 1fr;
  align-items: start;
  gap: 40px;
}

.tech-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 18px;
  line-height: 1.3;
}

.tech-left p {
  font-size: 16px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 16px;
}

.tech-divider {
  /* border-right: 2px dotted #073842; */
  height: 100%;
  opacity: 0.6;
}

.tech-right img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .tech-wrap {
    grid-template-columns: 1fr;
  }

  .tech-divider {
    display: none;
  }

  .tech-right {
    margin-top: 20px;
  }

  .tech-left h2 {
    font-size: 26px;
  }
}

.why-airbrick {
  position: relative;
  background-image: url("./assets/whyAB.jpg");
  background-size: cover;
  background-position: center;
  padding: 10px 0;
  /* background-color: #fafafa; */
  height: calc(100vh - 100px);
  display: flex;
}

@media (max-width: 768px) {
  .why-airbrick {
    height: auto;
    padding: 60px 0;
  }

  .why-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.why-airbrick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.why-title {
  font-size: 30px;
  font-weight: 500;
  color: white;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.why-title span {
  font-weight: 700;
  color: #073842;
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition:
    background-color 0.4s ease,
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-item .head {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item .numbering {
  font-size: 16px;
  border: 1px solid white;
  padding: 4px 9px;
  border-radius: 50%;
  font-weight: 700;
}

.feature-item:hover {
  /* background-color: #073842; */
  transform: translateY(-5px);
}

.feature-item .icon {
  transition:
    transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    filter 0.4s ease;
}

.feature-item:hover .icon {
  transform: scale(1.2) translateY(-5px);
  filter: drop-shadow(0 8px 15px rgba(55, 140, 182, 0.4));
}

.feature-item p {
  font-size: 14px;
  color: #fafafa;
  transition: color 0.3s ease;
  text-align: left;
}

.feature-item h2 {
  font-size: 20px;
}

.feature-item:hover p {
  color: gray;
}

.icon {
  width: 32px;
  margin-bottom: 15px;
}

/* INTERNAL BORDERS */
.feature-item:not(:nth-child(3n)) {
  border-right: 1px solid rgba(255, 255, 255, 0.3); /* vertical internal lines */
}

.feature-item:nth-child(n + 4) {
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* horizontal internal lines */
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:not(:nth-child(2n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .feature-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
  }
  .feature-item:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

/* MAIN GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CARD */
.why-left-card {
  border: 1px solid #e5e5e5;
  padding: 28px;
  border-radius: 6px;
  background: #ffffff;
}

.why-left-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 15px;
}

.why-left-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* RIGHT SIDE GRID */
.why-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 22px;
  position: relative;
}

/* Individual Feature Card */
.why-card {
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 24px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.why-card:hover {
  background-color: #073842;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.why-card:hover svg,
.why-card:hover h4,
.why-card:hover p {
  color: #ffffff;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #073842;
  margin: 10px 0;
}

.why-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-right {
    grid-template-columns: 1fr;
  }
}

.services-list {
  /* padding: 90px 0; */
  /* margin-top: 90px; */
  /* background-color: #fafafa; */
  background-image: url("./assets/herobg.jpg");
  background-attachment: fixed;
  background-size: contain;
}

@media (max-width: 768px) {
  .services-list {
    background-attachment: scroll;
  }
}

.services-list .column-container {
  padding: 90px 0;
  min-height: 300vh;
  display: flex;
}

@media (max-width: 768px) {
  .services-list .column-container {
    flex-direction: column;
    min-height: auto;
    padding: 60px 0;
  }
}

.sticky-media {
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  width: 50vw;
  overflow: hidden;
  padding: 20px;
}

@media (max-width: 768px) {
  .sticky-media {
    display: none;
  }
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.media-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(100%);
  transition:
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-img.active {
  opacity: 1;
  transform: translateY(0);
}

.content-sections {
  width: 50vw;
  padding: 10vh 5vw;
}

@media (max-width: 768px) {
  .content-sections {
    width: 100%;
    padding: 0;
  }
}

.content-box {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 768px) {
  .content-box {
    min-height: auto;
    padding: 30px 0;
    text-align: center;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

/* Mobile inline images */
.content-box .mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .content-box .mobile-img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}

.services-list .content-box h1 {
  font-size: 50px;
  font-weight: 700;
  color: #073842;
}

.services-list .content-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .services-list .content-box h1 {
    font-size: 28px;
  }

  .services-list .content-box p {
    font-size: 14px;
  }
}

.services-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: #073842;
  stroke-width: 2.2;
}

.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.workflow {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.workflow-title {
  font-size: 28px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 12px;
}

.workflow-subtitle {
  font-size: 15px;
  max-width: 750px;
  margin: 0 auto 50px auto;
  color: #444;
  line-height: 1.55;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  align-items: start;
  position: relative;
}

/* Horizontal connector line */
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 2%;
  right: 15%;
  height: 2px;
  background: #073842;
  z-index: 1;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0 10px;
  position: relative;
}

.step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 14px;
  border-radius: 50%;
  border: 2px solid #073842;
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  z-index: 2;
  background: #ffffff;
}

.step-number {
  position: absolute;
  top: -12px;
  background: #073842;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 50%;
}

.step-item i {
  width: 28px;
  height: 28px;
  color: #073842;
}

.step-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 8px;
  text-align: left;
}

.step-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  text-align: left;
}

/* Responsive */
@media (max-width: 1000px) {
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .workflow-steps {
    grid-template-columns: 1fr;
  }
}

.gallery-grid {
  width: 100%;
  margin: 0 auto;
}

.grid-sizer,
.gallery-grid-item {
  width: calc(33.333% - 16px);
}

.gallery-grid-item {
  padding: 9px 0;
}

.gallery-grid-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-sizer,
  .gallery-grid-item {
    width: calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .grid-sizer,
  .gallery-grid-item {
    width: 100%;
  }
}

.primaryBtn {
  padding: 14px 28px;
  background-color: #073842;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.testimonial-carousel {
  position: relative;

  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 15%,
    rgba(0, 0, 0, 0.4) 25%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.4) 75%,
    rgba(0, 0, 0, 0) 85%,
    rgba(0, 0, 0, 0) 100%
  );

  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 10%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0.4) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.testimonial-item {
  max-width: 700px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
}

.testimonial-img {
  width: 100%;
  border-radius: 14px 14px 0 0;
  display: block;
}

/* Bottom Content Box */
.testimonial-box {
  background: #073842;
  padding: 20px 30px 65px 30px;
  border-radius: 0 0 14px 14px;
  color: #ffffff;
  position: relative;
}

.testimonial-box p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 15px;
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: -22px;
  left: 30px;
  /* background: #ffffff; */
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand Logo */
.testimonial-brand {
  position: absolute;
  right: 30px;
  bottom: 15px;
}

.testimonial-brand img {
  width: 70px !important;
  border-radius: 50%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial-box {
    padding: 32px 26px 60px 26px;
  }

  .testimonial-brand {
    right: 50px;
  }

  #testimonial .testimonial-brand img {
    width: 70px !important ;
  }

  .testimonial-carousel {
    position: relative;

    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 5%,
      rgba(0, 0, 0, 0.4) 10%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0.4) 90%,
      rgba(0, 0, 0, 0) 95%,
      rgba(0, 0, 0, 0) 100%
    );

    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 5%,
      rgba(0, 0, 0, 0.4) 10%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0.4) 90%,
      rgba(0, 0, 0, 0) 95%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .workflow .owl-carousel .owl-item img {
    height: auto !important;
    width: 100% !important;
  }
}

.featured {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.featured-title {
  font-size: 28px;
  font-weight: 700;
  color: #073842;
  margin-bottom: 10px;
}

.featured-subtitle {
  font-size: 15px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 50px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.featured-card {
  text-align: left;
}

.featured-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 14px;
}

.featured-brand {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.featured-brand span {
  color: #b81c23;
}

.featured-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.read-more {
  font-weight: 600;
  color: #073842;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e3e3e3;
  padding: 16px 0;
  max-width: 800px;
  width: 100%;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1426;
  margin: 0;
}

.faq-header span i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  color: #0b1426;
}

.faq-body {
  font-size: 16px;
  color: #5d626c;
  line-height: 1.6;
  margin-top: 12px;
  text-align: left;
}

.follow-up-form {
  padding: 20px 0;
  color: white;
  text-align: center;
}

.follow-up-form .sectionbg {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  /* flex-direction: column; */
  align-items: center;
  gap: 40px;
  background-image: url("./assets/CTA.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}

.follow-up-form h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.cta-form input {
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #a5b3b8;
  background: transparent;
  color: #ffffff;
  min-width: 260px;
}

.cta-form input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.cta-form button {
  padding: 14px 42px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  background: #040712;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-form button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 700px) {
  .follow-up-form .sectionbg {
    flex-direction: column;
    text-align: center;
  }

  .cta-form {
    /* flex-direction: column; */
    grid-template-columns: 1fr;

    width: 100%;
  }

  .cta-form input,
  .cta-form button {
    width: 100%;
  }
}

.socialLinks a {
  padding: 10px !important;
}

footer {
  padding-top: 90px;
}

footer .site-info {
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* BACKDROP */
.modal-backlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden; /* Prevent page scroll */
}

/* MAIN POPUP BOX */
.modal-container {
  background: #fff;
  width: 70%;
  max-height: 80vh;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: fadeInScale 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* WRAPPER OF FORM + IMAGE */
.modal-body.addedImg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

/* ---------- LEFT FORM SECTION ---------- */
.main-leadModal-form {
  width: 65%;
  padding: 10px 40px;
  /* position: relative; */
  max-height: 85vh;
  overflow-y: auto; /* Allows internal scrolling */
}

.main-leadModal-form > h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #013a43;
}

/* CLOSE BUTTON */
.main-leadModal-form .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  background: #ffff;
  border-radius: 50%;
  padding: 2px;
}

.main-leadModal-form .close-modal i {
  font-size: 20px;
  color: #0b4c57;
}

/* FORM ROW */
.main-leadModal-form .tail-form-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.main-leadModal-form .input-field,
.main-leadModal-form .input-select-field {
  width: 50%;
}

/* INPUTS & SELECTS — scoped safely */
.main-leadModal-form .input-field input,
.main-leadModal-form .input-select-field select {
  width: 100%;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  background: #fff;
  transition: 0.2s ease;
}

.main-leadModal-form .input-field input:focus,
.main-leadModal-form .input-select-field select:focus {
  border-color: #0b4c57;
}

/* SUBMIT BUTTON */
.main-leadModal-form .btn-box button {
  width: 100%;
  padding: 14px;
  background: #004653;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.2s;
}

.main-leadModal-form .btn-box button:hover {
  opacity: 0.85;
}

/* ---------- RIGHT IMAGE SECTION ---------- */
.imageInPopup {
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.imageInPopup > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-danger {
  margin: 0;
  color: #d9534f;
  font-size: 12px;
  line-height: 1.5;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 900px) {
  .modal-container {
    width: 90%;
    max-height: 90vh;
  }

  .modal-body.addedImg {
    flex-direction: column;
  }

  .main-leadModal-form {
    width: 100%;
    max-height: none;
  }

  .main-leadModal-form .close-modal {
    top: 3px;
    right: 5px;
  }

  .imageInPopup {
    display: none;
    width: 100%;
    max-height: 300px;
  }

  .imageInPopup > img {
    height: 100%;
  }
}

/* ---------- ANIMATION ---------- */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
