@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');

* {
  font-family: "Red Hat Display";
}

/* section */

.benefits {
  padding: 100px 5%;
  text-align: center;
  background: #fff;
  color: black;
}

.benefits span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.benefits-heading h1 {
  margin-bottom: 60px;
  font-weight: 700;
}

/* container */

.benefits-container {
  max-width: 1200px;
  margin: auto;
}

/* first row */
.cardbox_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 5px;
}

/* second row */

.cardbox_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin: 0 auto;
}


/* cards */

.cards {
  position: relative;
  height: 220px;
  overflow: hidden;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.6s ease;
}

/* animation */

.cards.show {
  transform: translateY(0);
  opacity: 1;
}

/* image */

.cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay */

.cards::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}


/* text */


.cards h3 {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  z-index: 2;
  font-size: 20px;
  text-align: left;
}


@media (max-width: 900px) {

  /* .cardbox_1 {
    grid-template-columns: 1fr 1fr;
  } */

  .cardbox_2 {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {

  .cardbox_1,
  .cardbox_2 {
    grid-template-columns: 1fr;
  }

}



/* ====================================== consultation- section ====================================== */



.consultation {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #1b4965, #5fa8d3);

}

/* background image */

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 40%;
  z-index: 0;
}

/* left bottom image */

.shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: .9;
  z-index: 1;
}

/* right top image */

.shape-right {
  position: absolute;
  right: 0;
  top: 0;
  opacity: .9;
  z-index: 1;
}

/* content */

.consultation-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

/* tag */

.tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* heading */

.consultation h1 {
  font-size: 45px;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 700;
}

/* text */



.consultation p {
  font-size: 20px;
  margin-bottom: 25px;
  opacity: .95;
  color: white;
  align-items: center;
}

/* button */

.cta-btn {
  background: white;
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* =======================Mobile=========================================
========================================================================== */


@media (max-width: 576px) {

  .consultation {
    padding: 60px 15px;
  }

  .consultation h1 {
    font-size: 24px;
  }

  .consultation p {
    font-size: 15px;
  }

  .tag {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* hide shapes for clean UI */
  .shape-left,
  .shape-right {
    display: none;
  }

  /* background adjust */
  .bg-img {
    object-position: center;
  }

  .cta-btn,
  .universe-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}


/* =======================Tab=========================================
========================================================================== */


@media (max-width: 991px) {

  .consultation {
    height: auto;
    /* fix fixed height issue */
    padding: 80px 20px;
  }

  .consultation-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .consultation h1 {
    /* font-size: 32px; */
    line-height: 1.3;
  }

  .consultation p {
    font-size: 18px;
  }

  .tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* reduce decorative images */
  .shape-left,
  .shape-right {
    width: 120px;
    opacity: 0.6;
  }

  .shape-left {
    bottom: -10px;
  }

  .shape-right {
    top: -10px;
  }

  .cta-btn,
  .universe-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}


/* ====================================== Comparison ====================================== */


/* section */

.comparison {
  padding: 90px 5%;
  text-align: center;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* small title */

.mini-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

/* main title */

.comparison h2 {
  font-size: 45px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #0f1117;
}

.comparison h2 span {
  color: #000;
  /* border-bottom: 3px solid #5fa8d3 ; */

}

/* grid */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

/* image */

.compare-card img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 20px;
}

/* title */

.compare-card h3 {
  color: #1f57ff;
  margin-bottom: 20px;
  font-size: 20px;
}

/* list */

.compare-card ul {
  list-style: disc;
  padding-left: 22px;
  max-width: 460px;
  margin: auto;
  text-align: left;
}

/* bullet points */

.compare-card li {
  margin-bottom: 14px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}



/* Tablet */
@media (max-width: 1024px) {
  .comparison h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .comparison h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .comparison h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}





/* ====================================== faq-item ====================================== */


/* ===============================
   WHY SECTION
=================================*/

.why-section {
  padding: 80px 10%;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: left;
  margin-bottom: 20px;
}

.title p {
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: center;
}

.title h2 {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.title span {
  color: #000000;

}


/* Tablet */
@media (max-width: 1024px) {
  .title h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .title h2 {
    font-size: 28px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .title h2 {
    font-size: 22px;
  }
}

/* ===============================
   CONTENT LAYOUT
=================================*/

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===============================
   FAQ SECTION
=================================*/

.faq {
  flex: 1;
}
 
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #1b4965;
}

/* Question */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  cursor: pointer;
  color: #1b4965;
  font-weight: 500;
  text-align: left;
}

/* Arrow */

.faq-question i {
  transition: transform 0.3s ease;
}

/* Answer (Hidden by default) */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  padding: 0;
   list-style-type: disc;
}

/*  Hover Open */

.faq-item:hover .faq-answer {
  max-height: 600px;
  padding: 10px 0 20px 0;
}

/* Rotate Arrow */

.faq-item:hover .faq-question i {
  transform: rotate(180deg);
}

.faq-answer ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style-type: disc;

}

.faq-answer ul li {
  margin-bottom: 6px;
  /* spacing between points */
}

.faq-answer li {
  margin-bottom: 8px;
}

/* ===============================
   IMAGE SECTION
=================================*/

.illustration {
  flex: 1;
  text-align: center;
}

.illustration img {
  width: 80%;
  max-width: 420px;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 900px) {

  .content {
    flex-direction: column;
    gap: 40px;
  }

  .illustration img {
    width: 60%;
  }

}

/* ====================================== card-section-steps ====================================== */


/* Section */
.ai-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  
}

/* Background Image from HTML */
.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Dark Overlay */
.ai-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Container */
.steps-cards {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  padding: 120px 40px 40px 40px;
}

/* Title */
.section-title {
  position: absolute;
  top: 20px;
  left: 40px;
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-left: 27%;

}

/* Cards */
.steps-card {
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: flex .6s ease;
  background: linear-gradient(200deg, #1b4965, #072a3f, #1b4965);
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 5px; */
}

.steps-card.active {
  flex: 2.5;
}

/* Vertical Title */
.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-size: 18px;
}

.steps-card.active .vertical-title {
  display: none;
}

/* Content */
.steps-card-content {
  position: absolute;
  left: 40px;
  top: 60px;
  width: 320px;
  opacity: 0;
  transform: translateX(30px);
  transition: .6s;
}

.steps-card.active .steps-card-content {
  opacity: 1;
  transform: translateX(0);
}

.steps-card-content h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.steps-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.step-image {
  width: 70%;
  border-radius: 10px;
}

@media (max-width: 991px) {

  .ai-section {
    height: auto;
  }

  .steps-cards {
    flex-direction: column;
    padding: 80px 20px 40px;
    gap: 15px;
  }

  .section-title {
    position: static;
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 32px;
  }

  .steps-card {
    flex: none;
    width: 100%;
    border-radius: 12px;
    padding: 20px;
  }

  /* ❌ REMOVE ACTIVE DEPENDENCY */
  .steps-card-content {
    position: static;
    width: 100%;
    opacity: 1;
    /* 👈 always visible */
    transform: none;
    display: block;
    /* 👈 always visible */
  }

  /* ❌ no need active */
  .steps-card.active .steps-card-content {
    display: block;
    opacity: 1;
  }

  /* ❌ hide vertical */
  .vertical-title {
    display: none;
  }

  /* ❌ mobile title bhi hide (duplicate avoid) */
  .mobile-step-title {
    display: none;
  }

  /* images */
  .step-image {
    width: 100%;
    margin-top: 10px;
  }
}

/* ====================================== Strip ====================================== */


/* ===== Section ===== */
.section-dark {
  position: relative;
  height: 300px;
  overflow: hidden;
  padding-bottom: 20px;
}

/* ===== Strip Base ===== */
.strip {
  position: absolute;
  width: 140%;
  left: -20%;
  height: 95px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ===== Text Style ===== */
.track span {
  font-size: 44px;
  color: #fff;
  padding-right: 80px;
  white-space: nowrap;
  font-weight: 500;
}

.opc {
  opacity: 50%;

}

/* ===== Strip Positions ===== */
.strip-one {
  top: 70px;
  background: linear-gradient(90deg, #1e5d81, #5fa8d3);
  transform: rotate(2deg);
}

.strip-two {
  top: 140px;
  background: linear-gradient(180deg, #102c3d, #1b4965);
  transform: rotate(-1.8deg);
}

/* ================================================= */
/* STRIP 1 : LEFT → RIGHT (FAST CROSS → SLOW FLOW)   */
/* ================================================= */

.track-left {
  display: flex;
  white-space: nowrap;
  transform: translateX(100%);
  animation:
    crossLeft 1.2s ease-out forwards,
    loopLeft 14s linear 1.2s infinite;
}

@keyframes crossLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-5%);
  }
}

@keyframes loopLeft {
  0% {
    transform: translateX(-5%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================================================= */
/* STRIP 2 : RIGHT → LEFT (SYNC CROSS)               */
/* ================================================= */

.track-right {
  display: flex;
  white-space: nowrap;
  transform: translateX(-100%);
  animation:
    crossRight 1.2s ease-out forwards,
    loopRight 14s linear 1.2s infinite;
}

@keyframes crossRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(-55%);
  }
}

@keyframes loopRight {
  0% {
    transform: translateX(-55%);
  }

  100% {
    transform: translateX(-5%);
  }
}

/* ==========================Mobile View ===================================
========================================================================= */


@media (max-width: 576px) {


  .section-dark{
    position: relative;
    height: 200px;
    overflow: hidden;
    padding-bottom: 20px;

  }
  
  
  .strip {
    height: 60px;
    margin-top: -110px;
  }

  .track span {
    font-size: 32px;
    /* 👈 optional: text thoda adjust */
    padding-right: 50px;
  }

  .strip-one {
    top: 130px;
    /* 👈 spacing adjust */
  }

  .strip-two {
    top: 180px;
  }
}

/* =========================   About Section =================================== */

/* ROW LAYOUT */
.about-wrapper-2 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

/* LEFT IMAGE */
.about-left {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* RIGHT CONTENT */
.about-right {
  flex: 1;
}

.about-content-fixed {
  padding: 20px;
}

/* HEADING */
.about-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 20px;
}

/* .about-title span {
  color: #ff4d4d;
} */

/* TEXT */
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 18px;
  text-align: justify;
}







/* ========================= */
/* 📱 TABLET (≤ 991px) */
/* ========================= */
@media (max-width: 991px) {

  .about-wrapper-2 .row {
    flex-direction: column;
    text-align: center;
  }

  .about-content-fixed {
    padding: 10px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-text p {
    /* text-align: center; */
    padding: 12px;
  }


}

/* ========================= */
/* 📱 MOBILE (≤ 576px) */
/* ========================= */
@media (max-width: 576px) {

  .about-title {
    font-size: 24px;
  }

  .about-text p {
    font-size: 14px;
  }


}



/* ======================================= Header Section ===================================== */


/* HERO SECTION */
.hero {
  position: relative;
  height: 50vh;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  /* Top alignment */
  padding: 140px 8% 0 8%;
  /*  Pixel controlled spacing */
  color: #fff;
  overflow: visible;
}

/* Background Image */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.45); */
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-button {
  margin-top: 50px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 60px;
  background: #ffffff;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}


.theme-btn i {
  font-size: 14px;
  transition: 0.3s;
}

.theme-btn:hover {
  background: #111;
  color: #fff;
}

.theme-btn:hover i {
  transform: translateX(5px);
}

/* Content */
/* Content */
.hero-content {
  position: relative;
  top: -30px;
  z-index: 3;
  max-width: 750px;
  /* display: flex; */
  flex-direction: column;
  gap: 30px;
}

.hero-content h2 {
  font-size: 16px;
  font-weight: 100;

}

.hero-content p {
  font-size: 13px;

  letter-spacing: 2px;
  color: #fff;

}

.hero h1 {
  font-weight: 700;
  font-size: 42px;
}

/* DOWNLOAD STRIP */
.download-strip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  background: #fff;
  width: 65%;
  max-width: 1100px;
  padding: 30px 50px;
  /* border-radius: 20px; */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

/* Flex Layout */
.download-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-flex h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 25px;
}

.store-buttons img {
  height: 55px;
  cursor: pointer;
  transition: 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.08);
}

/* Spacer below */
.spacer {
  height: 150px;
}

.hero-bg_mobile {
  display: none;
  /* ❌ mobile image hidden on desktop */
}

/* ===================== */
/* TABLET */
/* ===================== */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 38px;
  }
}

/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width: 768px) {

  /* ✅ Switch images */
  .hero-bg {
    display: none;
  }

  .hero-bg_mobile {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }

  /* HERO SECTION */
  .hero {
    height: auto;
    padding: 100px 5% 80px;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
  }

  .hero h2 {
    /* font-size: 14px; */
    margin-bottom: 10px;
  }

  /* BUTTON */
  .universe-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-size: 14px;
  }

  /* DOWNLOAD STRIP */
  .download-strip {
    width: 92%;
    padding: 20px;
    bottom: -60px;
  }

  .download-flex {
    /* flex-direction: column; */
    /* gap: 20px; */
    text-align: center;
  }

  .store-buttons img {
    height: 45px;
  }
}

/* ===================== */
/* SMALL MOBILE */
/* ===================== */

@media (max-width: 576px) {

  .hero h1 {
    font-size: 22px;
    text-align: left;
  }

  /* .hero h2 {
    font-size: 13px;
  } */

  /* .download-strip {
    position: static;
    margin-top: 30px;
  } */
}

/* ===================== */
/* TYPING EFFECT */
/* ===================== */

.typing-text {
  color: #fff;
  border-right: 3px solid #fff;
  padding-right: 5px;
  white-space: nowrap;
  animation: blink 0.7s infinite;
  font-weight: 600;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* ========================================== QUE ANS ===================================== */

/* ===== FAQ SECTION ===== */
.que-section {
  padding: 80px 10%;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.que-container {
  max-width: 900px;
  margin: auto;
}

.que-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* Wrapper */
.que-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each Item */
.que-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Question */
.que-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  transition: 0.3s ease;
}

.que-question:hover {
  background: #f1f5f9;
}

/* Icon */
.que-icon {
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

/* Answer */
.que-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  transition: all 0.4s ease;
}

/* Active State */
.que-item.active .que-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
  text-align: justify;
}

.que-item.active .que-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .que-section {
    padding: 60px 20px;
  }

  .que-title {
    font-size: 24px;
  }

  .que-question {
    font-size: 14px;
  }
}

