/* ================= GLOBAL ================= */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937; /* Dark text for visibility */
  background-color: #ffffff;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  color: #111827;
  font-weight: 700;
}

p {
  color: #4b5563;
}
/* Header */
/* ================= NAVBAR ================= */
.custom-navbar {
  /* background: linear-gradient(135deg, #ff7a18, #ff9f1c); */
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.4rem;
  color: #ffffff !important;
}

.nav-link {
  color: #343232 !important;
  font-weight: 500;
  margin-left: 15px;
  position: relative;
}

/* Active ScrollSpy Link */
.nav-link.active {
  color: #1f2937 !important;
  background: #ffffff;
  border-radius: 20px;
  padding: 6px 14px;
}

/* CTA Button Color Fix */
.text-orange {
  color: #ff7a18 !important;
}

/* Offset for fixed navbar */
section {
  scroll-margin-top: 90px;
}

/* Mobile Navbar */
@media (max-width: 991px) {
  .nav-link {
    margin: 10px 0;
  }
}

.logo {
  height: 60px;
}
/* Header End */
/* ================= HERO ================= */
.hero-section {
  background-image: url("../../images/banner-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  /* background: linear-gradient(135deg, #ff7a18, #ff9f1c); */
  color: #ffffff;
  padding: 90px 0;
  position: relative;
}
.banner-content {
  position: absolute;
  top: 30%;
  width: 40%;
}
.banner-content h1 {
  color: #353434;
  font-size: 45px;
}
.banner-content h1,
.banner-content p {
  padding-top: 10px;
}
/* .hero-section h1 span {
  color: #ff7a18;
} */
.hero-btns {
  margin-top: 30px;
}
.hero-btns .btn-primary {
  background-color: #ffffff;
  color: #ff7a18;
  border: none;
  font-weight: 600;
}

.hero-btns .btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.d-btn img {
  height: 50px;
  width: auto;
}
.my-btn {
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.my-btn:hover {
  background-color: #ff7a18;
  color: #fff;
  transition: 0.5;
}
/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
}

/* ================= PROBLEM CARDS ================= */
/* ================= PROBLEM SECTION ================= */
.problem-section {
  padding: 90px 0;
  background-color: #fff7ed;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  text-transform: capitalize;
}

.section-subtitle {
  font-size: 1rem;
  color: #9a3412;
  margin-top: 10px;
}

/* Problem Card */
.problem-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff7a18, #ff9f1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 30px;
  color: #ffffff;
}

/* Card Text */
.problem-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.problem-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Mobile Optimization */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
}
/* ==================Solutions======================= */
/* ================= SOLUTION SECTION ================= */
.solution-section {
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

/* Title & Text */
.solution-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.solution-text {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 30px;
  max-width: 520px;
}

/* List */
.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #1f2937;
}

.solution-list i {
  font-size: 20px;
  color: #ff7a18;
  margin-right: 12px;
}

/* Image */
.solution-image {
  max-width: 450px;
  position: relative;
  z-index: 2;
}

/* Sun Ray / Glow Effect */
.image-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255, 154, 28, 0.35) 0%,
    rgba(255, 154, 28, 0.2) 40%,
    rgba(255, 154, 28, 0.1) 60%,
    rgba(255, 154, 28, 0) 75%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .solution-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .solution-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .solution-list li {
    justify-content: center;
  }

  .image-glow {
    width: 300px;
    height: 300px;
  }
}

/* why */
/* ================= AUDIENCE SECTION ================= */
.audience-section {
  padding: 100px 0;
  background-color: #fff7ed;
  overflow: hidden;
}

/* Title & Text */
.audience-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.audience-text {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 30px;
  max-width: 520px;
}

/* List */
.audience-list {
  list-style: none;
  padding: 0;
}

.audience-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.audience-list i {
  font-size: 20px;
  color: #ff7a18;
  margin-right: 12px;
}

/* Image */
.audience-image {
  max-width: 360px;
  position: relative;
  z-index: 2;
}

/* Glow Effect */
.audience-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    rgba(255, 154, 28, 0.35) 0%,
    rgba(255, 154, 28, 0.2) 40%,
    rgba(255, 154, 28, 0.1) 60%,
    rgba(255, 154, 28, 0) 75%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(6px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .audience-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .audience-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .audience-list li {
    justify-content: center;
  }

  .audience-glow {
    width: 300px;
    height: 300px;
  }
}

/*  */
/* ================= HOW IT WORKS ================= */
/* ================= HOW IT WORKS ================= */
.how-section {
  padding: 100px 0;
  background-color: #ffffff;
}

/* Title */
.how-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
}

.how-subtitle {
  color: #6b7280;
  margin-top: 10px;
}

/* Card */
.how-card {
  background: #fff7ed;
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.35s ease;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.how-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a18, #ff9f1c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-icon i {
  font-size: 28px;
  color: #ffffff;
}

/* Text */
.how-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.how-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Step Number */
.step-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 122, 24, 0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .how-title {
    font-size: 1.9rem;
  }

  .step-number {
    font-size: 2.8rem;
  }
}

/* ================= FEATURES ================= */
.feature-box {
  background: #fff7ed;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  color: #9a3412;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ================= CTA ================= */
/* ================= CTA GRADIENT ================= */
.cta-gradient {
  padding: 110px 0;
  background: linear-gradient(135deg, #ff7a18, #ff9f1c, #ffb347);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Overlay */
.cta-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
}

/* Text */
.cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

.cta-text {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 35px;
  opacity: 0.95;
  position: relative;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 999999;
  position: relative;
}
.cta-buttons:hover {
  cursor: pointer;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  color: #111827;
  background: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 210px;
}

.store-btn i {
  font-size: 30px;
}

.store-btn span {
  text-align: left;
  line-height: 1.1;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b7280;
}

/* Hover */
.store-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .store-btn {
    min-width: 180px;
  }
}

/* Our Partner */
/* ================= PARTNERS / LOGO CAROUSEL ================= */
.partners-section {
  padding: 90px 0;
  background-color: #fff7ed;
  text-align: center;
}

.partners-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.partners-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 35px;
}

/* Owl Carousel Item */
.partner-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.partner-carousel .item img {
  max-width: 120px;
  filter: grayscale(60%);
  transition: all 0.3s ease;
}

.partner-carousel .item img:hover {
  filter: none;
  transform: scale(1.1);
}

.item img {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 5px;
  border-radius: 7px;
}
/* ================= FOOTER ================= */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 25px 0;
  font-size: 14px;
}

/* ================= FOOTER ================= */
.footer {
  background: #111827;
  padding: 22px 0;
}

.footer-text {
  color: #d1d5db;
  font-size: 0.9rem;
  margin: 0;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

.footer-menu li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #ff7a18;
}
.download-btn {
  background-color: #ff7a18;
  color: #fff !important;
}
.download-btn:hover {
  background-color: #f8934a;
  color: #fff !important;
}
/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .footer-menu {
    gap: 15px;
  }
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }

  .section {
    padding: 60px 0;
  }
}
