@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");

:root {
  /* Color Variables */
  --color-primary: #1f2734;
  --color-secondary: #2e93fa;
  --color-text: #ffffff;
  --color-text-secondary: #e0e0ef;
  --color-card-bg: #3b3f5a;
  --color-accent-orange: #ffaa6d;
  --color-dot-blue: #4bd5f5;
  --color-dot-orange: #ff6940;
  --color-dot-cyan: #3ef7e8;
  --color-dot-white: #ffffff;
  --gradient-orange: linear-gradient(180deg, #ee8d47 5.26%, #ffaa6d 100%);
  --gradient-glow: linear-gradient(to right, rgba(58, 115, 255, 0.5), rgba(30, 30, 48, 0));
  
  /* Font Variables */
  --font-primary: "Poppins", sans-serif;
  --font-cursive: "Caveat", cursive;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  overflow-x: hidden;
  background: var(--color-primary);
  color: var(--color-text);
}
/* hero */
.landing-banner {
  background: url("/assets/Background pattern decorative.svg") no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: no-wrap; /* allows wrapping on smaller screens */
}

.banner-content {
  flex: 1 1 50%;
}

.banner-content h1 {
  color: var(--color-text);
  font-size: 64px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: var(--spacing-md);
}

.banner-content h1 span {
  background: var(--gradient-orange);
  padding: var(--spacing-xs);
  border-radius: var(--radius-sm);
}

.banner-content p {
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 15px;
}

.banner-content p:first-of-type {
  font-size: 20px;
  font-weight: 500;
}

.banner-images {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-images img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .layout-container {
    flex-direction: column; /* stack text + image */
    text-align: center;
    padding: 60px 20px;
  }

  .banner-content {
    order: 1; /* text first */
  }

  .banner-images {
    order: 2;
    margin-top: 30px;
  }

  .banner-content h1 {
    font-size: 42px;
    text-align: center;
  }
  .banner-content h1 br {
    display: none;
  }

  .banner-content p:first-of-type {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 32px;
    line-height: 130%;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-content p:first-of-type {
    font-size: 16px;
  }

  .layout-container {
    padding: 40px 16px;
    gap: 20px;
  }
}
/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .layout-container {
    padding: 60px 20px;
  }

  .banner-content,
  .banner-images {
    flex: 1 1 100%;
    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;
  }
  .layout-container {
    flex-direction: column-reverse;
  }
  /* .cta-link img {
    max-width: 240px;
  } */
  .layout-container {
    padding: 0;
    gap: 20px;
  }

  .banner-content h1 {
    font-size: 30px;
    text-align: center;
  }
  .banner-content h1 span {
    padding: 4px;
  }
  .banner-content p {
    font-size: 16px;
  }
}

@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;
  }

  .banner-images {
    padding: 10px;
  }
}

.glow-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: var(--gradient-glow);
  z-index: 0;
}
.glow-strip:first-of-type,
.glow-strip:last-of-type {
  background-color: var(--color-secondary);
  filter: blur(138px);
}
.glow-strip:first-of-type {
  left: 0;
}
.glow-strip:last-of-type {
  right: 0;
}

/* 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;
}
/* Second section */
.services-wrap {
  background: radial-gradient(
    70.97% 72.57% at 50% 99.98%,
    #adb3e0 0%,
    var(--color-card-bg) 100%
  );
}
.services-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Top Row: Heading + Subheading */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  gap: 40px;
  flex-wrap: wrap;
}

.services-header h2 {
  flex: 1 1 300px;
  color: var(--color-text);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.services-header p {
  flex: 1 1 300px;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  margin-top: var(--spacing-xs);
}

/* Cards Section */
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card {
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-text);
  background: var(--color-card-bg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dot.blue {
  background: var(--color-dot-blue);
}
.dot.orange {
  background: var(--color-dot-orange);
}
.dot.cyan {
  background: var(--color-dot-cyan);
}
.dot.white {
  background: var(--color-dot-white);
}

.card h3 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.72px;
  margin: 0;
}

.card p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.48px;
  margin: 0;
}

/* Responsive: stack cards on small screens */
@media (max-width: 768px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    gap: 12px; /* smaller gap */
  }

  .services-header h2,
  .services-header p {
    flex: unset; /* remove forced flex sizing */
    width: 100%; /* take full width */
  }

  .services-header h2 {
    font-size: 28px;
    text-align: center;
  }
  .services-header h2 br {
    display: none;
  }
}
/* next section */
.choose-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  align-items: stretch; /* equal height */
}

.choose-left,
.choose-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.choose-left {
  justify-content: flex-start; /* text & image flow normally */
}

.choose-right {
  justify-content: flex-start; /* content sticks to top */
  height: 100%; /* match height of left */
  gap: 24px;
  margin-top: 10px;
}

.choose-left h2 {
  color: #e76100;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.choose-left p {
  color: #1f2734;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  margin-bottom: 20px;
}

.choose-left img {
  max-width: 60%;
  border-radius: 12px;
  margin: 20px 0;
}

.highlight-box {
  border-radius: 12px;
  background: #ffeada;
  padding: 12px;
  color: #1f2734;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  margin-top: auto; /* pushes box to bottom if extra space */
}

.choose-right h3 {
  color: #1f2734;

  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.48px;
}

.choose-card {
  border-radius: 20px;
  background: #fafafa;
  padding: 32px;
  color: #1f2734;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -0.6px;
  /* margin-bottom: 16px; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
  .choose-section {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .choose-left img {
    margin: 20px auto;
    width: 100%;
  }

  .choose-right {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .choose-left h2 {
    font-size: 30px;
  }

  .choose-right h3 {
    font-size: 18px;
  }
}
/* comparison */
.comparison-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.comparison-section h2 {
  color: #ffaa6d;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  vertical-align: middle;
  text-align: left;
  color: #fff;
  border-bottom: 2px solid #d9dbe9;
}

.comparison-table th {
  color: #ffaa6d;

  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}

/* Middle banner */
.middle-banner {
  width: 100%;
  margin: 40px 0;
  padding: 18px 20px;
  text-align: center;
  color: #1f2734;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  background: linear-gradient(
    90deg,
    #cafff8 0%,
    #d9deff 32.69%,
    #c0bfff 67.31%,
    #ffed92 100%
  );
  color: #222;
}

/* Bottom section */
.discovery-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.discovery-left {
  flex: 1;
}

.discovery-left h3 {
  color: #ffaa6d;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.discovery-left p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

.discovery-left ul {
  list-style: none; /* remove default bullets */
  padding-left: 30px; /* space for the icon */
  margin: 0;
}

.discovery-left ul li {
  position: relative;
  margin-bottom: 12px; /* spacing between items */
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.discovery-left ul li::before {
  content: "";
  position: absolute;
  left: -30px; /* aligns icon in the space */
  top: 50%;
  transform: translateY(-50%);
  width: 24px; /* adjust size */
  height: 24px;
  background-image: url("assets/CheckCircle.svg"); /* <-- replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
}

.discovery-right {
  flex: 1;
  border-radius: 12px;
}
.discovery-right img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .discovery-section {
    flex-direction: column;
    text-align: center;
  }

  .discovery-left ul {
    text-align: left;
    display: inline-block;
  }

  .discovery-right {
    width: 100%;
    height: 200px;
  }
  .discovery-left h3 br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .comparison-section {
    display: none;
  }
}
/* cta */
.cta-wrap {
  padding: 80px 40px;
}

.cta-box {
  display: flex;
  width: 100%;
  max-width: 1024px;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  color: #fff;
  box-sizing: border-box;
}

.cta-box h2 {
  color: #ffaa6d;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.cta-box p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.cta-box .cta-btn img {
  max-width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .cta-box {
    padding: 32px;
    gap: 24px;
  }

  .cta-box h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cta-wrap {
    padding: 60px 20px;
  }

  .cta-box {
    padding: 28px;
    gap: 20px;
  }

  .cta-box h2 {
    font-size: 32px;
  }
  .cta-box h2 br {
    display: none;
  }
  .cta-box p {
    font-size: 15px;
  }
  .cta-box p br {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-box {
    padding: 20px;
    gap: 16px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-box p {
    font-size: 14px;
  }
}
/* 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;
  }
}
