@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
  background: #1f2734;
}
.landing-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: url("/assets/Background\ pattern\ decorative.svg") no-repeat;
  background-size: cover;
  color: white;
  padding: 140px 20px 160px;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  padding: 0 15px;
}

.banner-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* prevent blocking clicks on CTA */
}

/* Common wrapper */
.img-wrapper {
  position: absolute;
  display: inline-block;
}

/* Glow background */
/* .img-glow {
  position: absolute;
  bottom: 50px;
  right: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(100px);
  z-index: 0;
} */

/* Image styles */
.img-1,
.img-2 {
  position: relative;
  width: auto;
  height: 100%;
  z-index: 1;
}

/* Position for left image */
.img-1-wrapper {
  left: -150px; /* adjust placement */
  top: -50px;
}
.glow-1 {
  background: #2e93fa; /* blue */
}

/* Position for right image */
.img-2-wrapper {
  right: -250px; /* adjust placement */
  top: 0;
}
.img-3-wrapper {
  bottom: -150px;
  z-index: 1;
}
.glow-2 {
  background: #e76100; /* orange */
}
.banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
}

.banner-content p b {
  font-weight: 600;
}
.banner-content p b:nth-of-type(1) {
  color: #1aac87;
}
.banner-content p b:nth-of-type(2) {
  color: #92bfff;
}
.banner-content p b:nth-of-type(3) {
  color: #fff;
}
.banner-content p b:nth-of-type(4) {
  color: #fff;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .banner-images {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .landing-banner {
    padding: 80px 15px 40px;
  }

  .banner-content h1 {
    font-size: 42px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .landing-banner {
    padding: 60px 10px 30px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 14px;
  }
}

.glow-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(
    to right,
    rgba(58, 115, 255, 0.5),
    rgba(30, 30, 48, 0)
  );
  z-index: 0;
}
.glow-strip:first-of-type {
  left: 0;
  background-color: #2e93fa;
  filter: blur(138px);
}
.glow-strip:last-of-type {
  right: 0;
  background-color: #2e93fa;
  filter: blur(138px);
}

/* Spark (stars) */
.spark {
  position: absolute;
  background-image: url("./assets/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

.spark-1 {
  top: 10%;
  left: 20%;
  width: 25px;
  height: 100%;
}
.spark-2 {
  top: 10%;
  left: 80%;
  width: 25px;
  height: 100%;
}
.spark-3 {
  top: 50%;
  right: 10%;
  width: 15px;
  height: 15px;
}
.spark-4 {
  bottom: 25%;
  left: 5%;
  width: 18px;
  height: 18px;
}
.spark-5 {
  bottom: 10%;
  right: 20%;
  width: 22px;
  height: 22px;
}

/* Pointer (arrows) */
.pointer {
  position: absolute;
  background-image: url("./assets/arrow\ up.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.3s ease;
}

.pointer-1 {
  top: 15%;
  right: 0;
  width: 300px;
  height: 200px;
}
.pointer-2 {
  top: 40%;
  left: 20%;
  width: 35px;
  height: 35px;
}
.pointer-3 {
  bottom: 30%;
  right: 25%;
  width: 40px;
  height: 40px;
}
.pointer-4 {
  bottom: 15%;
  left: 35%;
  width: 45px;
  height: 45px;
}
.pointer-5 {
  top: 5%;
  left: 50%;
  width: 38px;
  height: 38px;
}
.bg-rest {
  background-image: url("assets/grid\ bg.svg");
  background-repeat: repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}
/* section-2 */
.geo-wrap {
  background-color: #fff;
}
.geo-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.geo-section h2 {
  color: #1f2734;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.geo-section p {
  color: #1f2734;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.32px;
  max-width: 1000px;
  margin-bottom: 20px;
}

.geo-label {
  color: #d7692a;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  margin-bottom: 20px;
}

.geo-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.geo-options div {
  flex: 1;
  min-width: 280px;
  color: #1f2734;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.54px;
  padding: 0 10px;
  position: relative;
}

/* Divider */
.geo-options div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ddd;
  margin: auto;
  height: 100%;
}

.geo-footer {
  color: #1f2734;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  max-width: 1000px;
}

/* Tablet screens */
@media (max-width: 1024px) {
  .geo-section h2 {
    font-size: 26px;
  }
  .geo-options {
    gap: 15px;
  }
  .geo-options div {
    font-size: 15px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .geo-section {
    padding: 40px 15px;
  }
  .geo-section h2 {
    font-size: 22px;
    text-align: center;
  }
  .geo-section h2 br {
    display: none;
  }
  .geo-section p {
    font-size: 16px;
    text-align: center;
  }
  .geo-options {
    flex-direction: column;
    gap: 15px;
  }
  .geo-options div {
    border: none !important;
    text-align: center;
    font-size: 15px;
  }
  .geo-options div::after {
    display: none;
  }
  .geo-footer {
    font-size: 14px;
  }
  .geo-label {
    text-align: center;
  }
}
/* next section */
.content-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Heading */
.main-heading {
  color: #ffaa6d;

  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 40px;
}

/* Flex Rows */
.top-block,
.bottom-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.illustration-box,
.text-box {
  flex: 1 1 500px;
}
.text-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-box p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.text-box h3 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* margin-bottom: 15px; */
}

/* Lists */
.check-list,
.bullet-list {
  list-style: none;
  padding: 0;
}

.check-list li,
.bullet-list li {
  margin: 20px 0;
  padding-left: 30px;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.highlight-link {
  color: #fff;
  text-decoration: underline;
}
.check-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("assets/CheckCircle.svg") no-repeat center center;
  background-size: contain;
}

/* Highlight Bar - Full Width Section */
.highlight-section {
  background: linear-gradient(
    90deg,
    #cafff8 0%,
    #d9deff 32.69%,
    #c0bfff 67.31%,
    #ffed92 100%
  );
  padding: 24px 10px;
  text-align: center;
  color: #1f2734;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

/* Notes */
.note-text {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.6rem;
  }
  .text-box h3 {
    font-size: 1rem;
  }
}
/* services */
.services-section {
  padding: 60px 20px;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-radius: 16px;
  border: 2px dashed #e2d7b5;

  background: radial-gradient(
    68.24% 133.89% at 54.47% 133.89%,
    #fff 0%,
    rgba(255, 107, 0, 0.36) 100%
  );
  background-clip: padding-box;
  backdrop-filter: blur(1.5px);

  max-width: 1400px;
  margin: 0 auto;
  padding: 29px 20px;
  width: 100%; /* ✅ remove fixed width */
  box-sizing: border-box;
}

.bg-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* ✅ relative width */
  max-width: 1000px;
  height: 50px;
  background-color: #fff;
  z-index: -1;
  border-radius: 8px;
}

.services-heading {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
  word-break: break-word;
  padding: 0 10px;
}

.services-subtext {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
  text-align: center;
  padding: 0 10px;
}

/* Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative;
  width: 100%;
}

.service-card {
  background: #fff;
  color: #000;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.blue {
  background: #3ba3ff;
}
.orange {
  background: #ff6b3d;
}
.purple {
  background: #8a5cf6;
}

.service-title {
  color: #1f2734;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.6px;
}

.service-desc {
  color: #547492;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
}

/* 📱 Responsive tweaks */
@media (max-width: 1024px) {
  .services-heading {
    font-size: 2rem;
  }
  .services-subtext {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .services-heading {
    font-size: 1.6rem;
  }
  .services-subtext {
    font-size: 0.9rem;
  }
  .service-card {
    padding: 18px;
  }
  .bg-cards {
    display: none; /* ✅ Hide background element on small screens */
  }
}

@media (max-width: 480px) {
  .services-heading {
    font-size: 24px;
  }
  .services-subtext {
    font-size: 16px;
  }
  .services-grid {
    grid-template-columns: 1fr; /* ✅ single column on mobile */
  }
  .services-wrap {
    padding: 20px 15px;
  }
}

/* why adlift */
.choose-agency {
  color: #fff;
}

.choose-container {
  max-width: 1400px;
  padding: 60px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.choose-content {
  flex: 1 1 550px;
}

.choose-content h2 {
  color: #ffaa6d;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.choose-content p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.feature-box {
  background: #fff;
  color: #1e293b;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-text {
  color: #ffaa6d !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 12px;
}

.choose-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.mockup {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  overflow: hidden;
}

.mockup img {
  width: 100%;
  margin-bottom: 10px;
}

/* Infinite scrolling logos */
.logo-scroller {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.logo-track img {
  height: 40px;
  object-fit: contain;
}

/* First row scrolls left */
.logo-scroller .logo-track:first-child {
  animation: scroll-left 50s linear infinite;
}

/* Second row scrolls right */
.logo-scroller .logo-track:last-child {
  animation: scroll-right 50s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* 📱 Responsive Tweaks */

/* Tablet */
@media (max-width: 1024px) {
  .choose-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .choose-content,
  .choose-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .mockup {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .choose-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .choose-content p {
    font-size: 0.9rem;
  }

  .feature-box {
    font-size: 0.85rem;
    padding: 12px;
  }

  .highlight-text {
    font-size: 1rem;
  }

  .mockup {
    max-width: 100%;
  }

  .logo-track img {
    height: 30px;
  }
}
/* cta */
.cta-section {
  background: #fff;
}

.cta-container {
  max-width: 1400px;
  padding: 60px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1 1 600px;
}

.cta-text h2 {
  color: #222;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.cta-text p {
  color: #1f2734;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.32px;
  margin-bottom: 12px;
}

.cta-action {
  flex: 0 0 auto; /* ❌ don’t let it stretch too wide */
  text-align: center;
}

.cta-action p {
  color: #000;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 20px;
}

.cta-button {
  display: inline-block;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button img {
  display: block;
  height: 48px;
  width: auto;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cta-container {
    gap: 30px; /* tighter spacing */
  }

  .cta-text h2 {
    font-size: 38px;
  }

  .cta-action p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column; /* stack */
    align-items: center; /* center everything */
    text-align: center;
    gap: 20px; /* reduce vertical gap */
  }

  .cta-text {
    flex: 1 1 100%;
  }

  .cta-text h2 {
    font-size: 32px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-action {
    flex: unset; /* reset flex */
    margin-top: 10px;
  }

  .cta-action p {
    font-size: 18px;
    line-height: 24px;
  }

  .cta-button img {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .cta-text h2 {
    font-size: 26px;
    line-height: 130%;
  }

  .cta-text p {
    font-size: 13px;
    line-height: 150%;
  }

  .cta-action p {
    font-size: 16px;
    line-height: 22px;
  }

  .cta-button img {
    height: 38px;
  }
}

/* faq */
/* faq */
.faq-section {
  display: flex;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 30px;
}

.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-start;
  z-index: 2;
}

.right-section {
  flex: 1;
}

/* FAQ Item */
.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid #fff;
  overflow: hidden;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 18px;
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  background-color: white;
}

.faq-question {
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.072px;
}

.faq-answer ul {
  padding: 20px;
}

.faq-item.active .faq-question h3 {
  color: #f97316;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question:hover {
  background-color: rgba(249, 115, 22, 0.1);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: "-";
  color: #f97316;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s;
  padding: 0 1.5rem;
  color: #373737;
  opacity: 0;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.064px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
  padding-top: 0;
  color: #1f2937;
  opacity: 1;
}

/* Heading */
.left-section h2 {
  color: #ff8e3d;
  font-size: 62px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.86px;
}

/* ---------------- Responsive ---------------- */

/* Large screens (keep sticky above 1024px) */
@media (min-width: 1025px) {
  .left-section {
    position: sticky;
    top: 20px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .faq-section {
    flex-direction: column;
    gap: 2rem;
    padding: 60px 20px;
  }
  .left-section {
    /* align-items: center; */
    text-align: center;
    width: 100%;
  }
  .left-section h2 {
    font-size: 42px;
    line-height: 120%;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 16px;
  }

  .left-section h2 {
    font-size: 40px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 12px;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-question::after {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }
}
