@import url("https://fonts.googleapis.com/css2?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;
}
/* hero */
.landing-banner {
  background: url("/assets/Background\ pattern\ decorative.svg") no-repeat;
  background-size: cover;
  color: white;
  position: relative;
  overflow: hidden;
}
/* box-heading */
.boxed-heading {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid white; /* Box border */
  color: white;
  font-size: 28px;
  font-weight: 600;
  border-radius: 4px;
}

/* Common styles for corner squares */
.boxed-heading::before,
.boxed-heading::after,
.boxed-heading span::before,
.boxed-heading span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ff6600; /* Orange square */
}

/* Top-left */
.boxed-heading::before {
  top: -6px;
  left: -6px;
}

/* Top-right */
.boxed-heading::after {
  top: -6px;
  right: -6px;
}

/* Bottom-left */
.boxed-heading span::before {
  bottom: -6px;
  left: -6px;
}

/* Bottom-right */
.boxed-heading span::after {
  bottom: -6px;
  right: -6px;
}
/* end */
.layout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: no-wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.banner-content {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding: 20px;
}

.banner-images {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.banner-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  position: relative;
}

.banner-content p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  position: relative;
}

/* CTA Link Styles */
.cta-link {
  display: inline-block;
  max-width: 100%;
  transition: transform 0.3s ease;
  margin: 20px 0;
}

.cta-link:hover {
  transform: translateY(-3px);
}

.cta-link:active {
  transform: translateY(0);
}

.cta-link img {
  width: 100%;
  height: auto;
  max-width: 350px;
  display: block;
  /* margin: 0 auto; */
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .layout-container {
    padding: 60px 20px;
  }
  .layout-container {
    flex-direction: column-reverse;
  }
  .banner-content,
  .banner-images {
    flex: 1 1 100%;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* max-width: 800px;
    margin: 0 auto; */
  }

  .banner-images {
    margin-top: 30px;
    /* max-width: 500px; */
  }
}

@media screen and (max-width: 768px) {
  .cta-link {
    margin: 15px 0;
  }

  /* .cta-link img {
    max-width: 240px;
  } */
  .layout-container {
    padding: 0;
    gap: 20px;
  }

  .banner-content h1 {
    font-size: 40px;
    text-align: center;
  }

  .banner-content p {
    font-size: 16px;
  }

  .boxed-heading {
    padding: 10px 15px;
    font-size: 24px;
  }

  .boxed-heading::before,
  .boxed-heading::after,
  .boxed-heading span::before,
  .boxed-heading span::after {
    width: 8px;
    height: 8px;
  }

  .boxed-heading::before,
  .boxed-heading::after {
    top: -4px;
  }

  .boxed-heading span::before,
  .boxed-heading span::after {
    bottom: -4px;
  }
}

@media screen and (max-width: 480px) {
  .cta-link {
    margin: 10px 0;
  }

  /* .cta-link img {
    max-width: 200px;
  } */
  .layout-container {
    padding: 30px 10px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .boxed-heading {
    font-size: 20px;
    padding: 8px 12px;
  }

  .banner-images {
    padding: 10px;
    width: 100%;
  }
  .banner-images img {
    width: 100%;
    height: auto;
  }
}

.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;
}
/* next-section */
.alpha-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: no-wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.underline-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  background: linear-gradient(135deg, #e76100 -17.47%, #fff 114.75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Applies gradient to entire h2 */
}

.underline-heading span {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #e76100 -17.47%, #fff 114.75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.underline-heading span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px; /* adjust for perfect alignment */
  height: 0.8em; /* scales with text size */
  background: url("/assets/underline.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.right-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.shape-wave {
  position: absolute;
  top: -5px;
  left: -200px;
  width: 100%;
  height: auto;
  z-index: 1;
}
.right-wrap img {
  max-width: 400px;
  height: auto;
  display: block;
}
.left-wrap {
  flex: 2;
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.img-wrap {
  display: flex;
  gap: 20px;
  height: 100%;
  position: relative;
}
/* Spiral Image */
.spiral {
  position: absolute;
  top: 13%; /* adjust based on design */
  left: 28%; /* adjust based on design */
  max-width: 150px;
  height: auto;
  z-index: -1;
}

/* Dawn Image */
.dawn {
  position: absolute;
  bottom: 6%; /* adjust based on design */
  right: 10%; /* adjust based on design */
  max-width: 250px;
  height: auto;
  z-index: -1;
}
.alpha-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.alpha-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.alpha-img-2 img {
  max-width: 100%;
  height: auto;
  display: block;
}
.right-wrap p {
  color: #bbbec2;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.right-wrap p a {
  color: #bbbec2;
}
@media screen and (max-width: 1024px) {
  .shape-wave {
    display: none !important;
  }
  .img-wrap {
    display: none;
  }
}
@media screen and (max-width: 922px) {
  .alpha-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  .left-wrap,
  .right-wrap {
    flex: 1 1 100%;
    max-width: 800px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .underline-heading {
    text-align: center;
  }
  .underline-heading br {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .underline-heading span::after {
    display: none;
  }
  .underline-heading {
    font-size: 36px;
    text-align: center;
  }
  .right-wrap p {
    font-size: 16px;
    text-align: center;
  }
  .right-wrap img {
    max-width: 300px;
  }
}
.why-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 32px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #1f242f;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Decorative Elements */
.circles-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 35%;
  opacity: 0.3;
  z-index: -1;
}

.stars-1 {
  position: absolute;
  top: 0;
  left: 30%;
  z-index: -1;
}

.circles-2 {
  position: absolute;
  bottom: 0;
  left: -50px;
  transform: rotate(180deg);
  width: 20%;
  opacity: 0.3;
  z-index: -1;
}

.stars-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
}

/* Headings */
.third-head h2 {
  color: #ffaa6d;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

/* Steps Layout */
.why-steps {
  display: flex;
  flex-wrap: wrap; /* allow wrapping on small screens */
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 300px; /* ensures steps shrink nicely */
  max-width: 400px;
}

.step h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
}

.step p {
  color: #bbbec2;
  font-size: 16px;
  line-height: 140%;
}

.step h3 span {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 10%;
  text-underline-offset: 20%;
  text-underline-position: from-font;
}

/* --- Responsive Tweaks --- */
@media (max-width: 1024px) {
  .third-head h2 {
    font-size: 40px;
  }
  .circles-1 {
    width: 30%;
    top: -30px;
    right: -30px;
  }
  .circles-2 {
    width: 18%;
    bottom: -20px;
    left: -30px;
  }
}

@media (max-width: 768px) {
  .why-section {
    /* padding: 40px 20px; */
    border-radius: 24px;
  }
  .third-head h2 {
    font-size: 32px;
  }
  .step h3 {
    font-size: 24px;
  }
  .step p {
    font-size: 14px;
  }
  .circles-1,
  .circles-2 {
    width: 50%;
    opacity: 0.2;
  }
  .stars-1,
  .stars-2 {
    transform: scale(0.8);
  }
}

@media (max-width: 480px) {
  .why-steps {
    gap: 20px;
  }
  .step h3 {
    font-size: 20px;
  }
  .step p {
    font-size: 13px;
  }
}
.third-section {
  position: relative;
}
.bg-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 0;
  background: none;
}
.camera-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Wrap (text + image) */
.camera-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.camera-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

.camera-head {
  flex: 1;
}

.camera-img {
  flex: 1;
  z-index: 1;
}

/* Headings & Text */
.camera-head h2 {
  color: #ffaa6d;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}

.camera-head p {
  color: #bbbec2;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 12px;
}

/* Cards */
.camera-cards{
display:flex;
gap:20px;
justify-content:center;
margin-top:32px;
}

.card {
  flex: 1 1 250px;
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  max-height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(84, 35, 0, 0.07) 36.5%,
      rgba(231, 97, 0, 0.2) 100%
    ),

    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 100%
    );

  box-shadow: -8px -8px 24px 0 rgba(0, 0, 0, 0.25) inset,
  4px 4px 24px 0 rgba(255, 255, 255, 0.2) inset;
  backdrop-filter: blur(20px);
  color: #fff;

}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}
.card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
}

/* ---- Responsive Breakpoints ---- */

/* Tablet (below 1024px) */
@media (max-width: 1024px) {
  .camera-head h2 {
    font-size: 40px;
  }

  .camera-head p {
    font-size: 15px;
  }

  .camera-wrap {
    gap: 12px;
  }

  .card {
    max-height: auto;
    flex: 1 1 100%;
    padding: 14px;
  }
  .bg-svg {
    display: none !important;
  }
}

/* Mobile (below 768px) */
@media (max-width: 978px) {
  .camera-section {
    padding: 60px 16px;
  }

  .camera-wrap {
    flex-direction: column; /* stack text and image */
    text-align: center;
  }

  .camera-head h2 {
    font-size: 32px;
  }

  .camera-head p {
    font-size: 14px;
  }

  .camera-cards {
    gap: 16px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
  .camera-section {
    padding: 40px 12px;
  }

  .camera-head h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .camera-head p {
    font-size: 13px;
  }

  .camera-cards {
    flex-direction: column; /* cards in single column */
    gap: 12px;
  }

  .card {
    padding: 12px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
  .card h3 br {
    display: none !important;
  }
}
/* svg */
svg {
  display: block;
}
.animated-shape {
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill-opacity: 0; /* Start with no fill */
  animation: none; /* Animation paused initially */
}
/* Animation keyframes */
@keyframes draw {
  from {
    stroke-dashoffset: var(--dash-length);
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
  }
}
/* Animation classes to apply when in view */
.animate .animated-shape {
  animation: draw 1s ease-in-out forwards, fill 0.25s ease-in-out forwards;
  animation-delay: var(--draw-delay), calc(var(--draw-delay) + 0.75s);
}
/* Assign delays and stroke colors for each shape group */
#shape1 .animated-shape {
  --draw-delay: 0s;
  stroke: #efc356;
}
#shape2 .animated-shape {
  --draw-delay: 0.4s;
  stroke: #e76100;
}
#shape3 .animated-shape {
  --draw-delay: 0.6s;
  stroke: #ffaa6d;
}
#shape4 .animated-shape {
  --draw-delay: 0.8s;
  stroke: #e76100;
}
#shape5 .animated-shape {
  --draw-delay: 1s;
  stroke: #ffaa6d;
}
#shape6 .animated-shape {
  --draw-delay: 1.2s;
  stroke: #efc356;
}
/* influencer section */
.influencer-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.influencer-head h2 {
  color: #ffaa6d;
  font-size: clamp(28px, 5vw, 64px); /* scales smoothly */
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

.influencer-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: start;
  justify-items: center; /* keeps cards centered */
}

.works-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 280px;
  width: 100%;
}

.works-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.works-card h3 {
  color: #ffaa6d;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

.works-card p {
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .influencer-section {
    padding: 60px 16px;
    gap: 60px;
  }

  .influencer-works {
    gap: 30px;
  }

  .works-card {
    max-width: 260px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .influencer-section {
    padding: 40px 12px;
    gap: 40px;
  }

  .influencer-works {
    grid-template-columns: 1fr 1fr; /* 2 per row for mid-screen */
    gap: 20px;
  }

  .works-card {
    max-width: 220px;
    gap: 12px;
    display: flex;
    flex-direction: column; /* ensure image stays on top */
    align-items: center;
  }

  .works-card img {
    order: 0; /* image first */
    width: auto;
    margin-bottom: 6px;
  }

  .works-card h3 {
    order: 1;
  }

  .works-card p {
    order: 2;
  }

  /* Ensure second card follows the same order */
  .works-card:nth-child(2) {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .influencer-works {
    grid-template-columns: 1fr; /* single column for small devices */
    gap: 30px;
  }

  .works-card {
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .works-card p {
    max-width: 90%;
  }
  .works-card img {
    width: 40%;
  }
}

/* Container */
.industries-section {
  background: radial-gradient(
    91.48% 91.48% at 50% 100%,
    #094098 0%,
    #001332 100%
  );
  width: 100%;
  position: relative;
  padding: 80px 40px;

  overflow: hidden;
}
.bg-asset-1 {
  position: absolute;
  top: 0;
  right: 0px;
  width: auto;
  opacity: 0.3;
  z-index: 0;
}
.bg-asset-2 {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: auto;
  opacity: 0.3;
  z-index: 0;
}
.industries-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.industries-heading {
  color: #ffaa6d;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ✅ FLEX for icon + heading */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 145, 77, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-header h3 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}

.industry-card p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media screen and (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industries-section {
    padding: 40px 20px;
  }
  .industries-heading {
    font-size: 32px;
  }
}
/* cta-section */
.cta-wrap {
  padding: 80px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.asset-1,
.asset-2 {
  position: absolute;
  width: 22%;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.asset-1 {
  top: -20px;
  right: -20px;
}

.asset-2 {
  bottom: -20px;
  left: -20px;
}

.cta-section {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  gap: 20px;
  position: relative;
  z-index: 1;

  /* Glassmorphic Effect */
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-head p {
  color: #bbbec2;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 10px 0;
}

.cta-head h2 {
  color: #ffaa6d;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 30px 20px;
  }

  .cta-head h2 {
    font-size: 32px;
  }

  .asset-1,
  .asset-2 {
    width: 50%;
  }
}
/* 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;
  }
}
