:root {
  --primary-blue: #324896;
  --primary-green: #7ab93b;
  --nav-text: #333333;
  --pill-bg: #eef2f7;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Navbar Customization */
.navbar {
  padding: 1.25rem 0;
  background: #ffffff;
  transition: all 0.3s ease;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23073569' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-brand {
  padding: 0;
}

/* Responsive Logo Container */

.logo-wrapper {
  display: flex;
  align-items: center; 
  justify-content: center;
  height: 50px; 
}

.logo-wrapper img {
  height: 100%; 
  width: auto;
  display: block;
}

.logo-divider {
  width: 1.5px;
  height: 24px;
  background-color: #e0e0e0;
  margin: 0 4px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-text .blue {
  color: var(--primary-blue);
}
.logo-text .green {
  color: var(--primary-green);
}

/* Navigation Links */
.nav-link {
  color: var(--nav-text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.nav-link.active-page {
  background-color: var(--pill-bg);
  color: var(--primary-blue) !important;
}

/* Add Business Button */
.btn-add-biz {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 33, 91, 0.15);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  white-space: nowrap;
  border-bottom: #7ab93b 4px solid;
}
.nav-btn{
  margin-top: -15px;
}
.btn-add-biz:hover {
  background-color: #001a4a;
  transform: translateY(-1px);
}
/* HERO SECTION */
.hero {
  font-family: "Brice", sans-serif;
  background: url(../images/background-home.jpeg) center/cover no-repeat;
  padding: 80px 0 120px;
  position: relative;
  margin-top: -17px;
}


/* CONTAINER FIX */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*  CAROUSEL FIX (VERY IMPORTANT) */
.carousel-item {
  min-height: 520px;
}

.carousel-item .row {
  min-height: 520px;
  align-items: center;
}

/* TEXT */
.hero-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  color: #073569;
}

.hero-title .green {
  color: #7ab93b;
}

.hero-text {
  font-size: 20px;
  line-height: 30px;
  color: #334155;
  margin-top: 15px;
  max-width: 450px;
}

/* TAGS */
.hero-tags span {
  border: 1px solid #b2d093;
  padding: 8px 14px;
  border-radius: 50px;
  margin-right: 8px;
  font-size: 13px;
  color: #073569;
}

/* BUTTON */
.hero-btn {
  margin-top: 20px;
  background: #324896;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 0 #7ab93b;
}

/* IMAGE FIX (MAIN) */
.hero-img {
  width: 100%;
  max-width: 550px;
  height: 350px;              
  border-radius: 40px;
  overflow: hidden;
  margin-left: auto;
  margin-right: -150px;
}
@media (max-width: 992px) {
  .hero-img {
    margin-right: 0; /* mobile e reset */
    margin: 20px auto 0;
  }
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;          
}

/* Hero carousel */
/* POSITION */
.hero-slider-ui {
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* DOTS */
.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots span.active {
  width: 20px;
  border-radius: 10px;
  background: #000;
}

/* TIMER */
.hero-timer {
  position: relative;
  width: 40px;
  height: 40px;
}

.hero-timer svg {
  transform: rotate(-90deg);
}

.hero-timer circle {
  fill: none;
  stroke-width: 3;
}

.hero-timer .bg {
  stroke: rgba(0,0,0,0.2);
}

.hero-timer .progress {
  stroke: black;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 4s linear;
}

/* TEXT */
.time-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 600;
}


/* STATS BAR */
.stats-bar {
  background: linear-gradient(90deg, #7ab93b, #073569);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  gap: 20px;
}

/* ITEM */
.stat-item {
  text-align: center;
  flex: 1;
}

/* NUMBER */
.stat-number {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

/* DIVIDER */
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
}

/* ---------------- */
/* TABLET */
/* ---------------- */
@media (max-width: 992px) {
  .stats-bar {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 45%;
  }

  .stat-divider {
    display: none;
  }
}

/* ---------------- */
/* MOBILE */
/* ---------------- */
@media (max-width: 576px) {
  .stats-bar {
    flex-direction: column;
    align-items: flex-center;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}

/* --- POPULAR SERVICES SECTION --- */
.popular-services {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  color: var(--primary-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.services-grid-container {
  border-radius: 30px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  /* TOP → BOTTOM GRADIENT matched to design */
  background: linear-gradient(
    to bottom,
    #2c3e75 0%,
    #3a578c 40%,
    #5f8f66 70%,
    #7ab93b 100%
  );
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: #111;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 152px;
  height: auto;
  margin-bottom: 15px;
}

.service-card h5 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.service-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-btn {
  margin-top: auto;
  background: var(--secondary-blue);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 0 var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--accent-green);
  opacity: 1;
}

/* TITLE */
.how-section {
  padding: 80px 0;
  background: #ffffff;
}
.section-title {
  font-family: "Brice", sans-serif;
  font-size: 32px;
  color: #073569;
  font-weight: 700;
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto;
  font-size: 14px;
  color: #6b7280;
}

/* CARD */
.how-card {
  background: #fff;
  /* padding: 30px 20px; */
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
  height: 100%;
}

/* ICON */
.how-card img {
  width: 199px;
  
}

/* TEXT */
.how-card h5 {
  margin-top: -20px;
  margin-bottom: -0px;
  font-size: 14px;
  font-weight: 700;
  color: #073569;
}

.how-card p {
  font-size: 12px;
  color: #6b7280;
}

/* ACTIVE CARD */

/* HOVER */
.how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

/* MAIN BOX */
.why-box {
  background: #FBFBFC;
  border-radius: 55px;
  
  border: 1px solid #e5e7eb;
}

/* IMAGE */
.why-img img {
  width: 100%;
  border-radius: 30px;
}

/* TITLE */
.why-title {
  font-family: "Brice", sans-serif;
  font-size: 28px;
  color: #073569;
  font-weight: 700;
}

/* TEXT */
.why-text {
  font-size: 14px;
  color: #6b7280;
  margin: 15px 0;
}

/* SUBTITLE */
.why-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #073569;
  margin-bottom: 15px;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #374151;
}

/* ICON */
.why-list img {
  width: 71px;
  margin-right: 10px;
}

/* BUTTON */
.why-btn {
  margin-top: 15px;
  background: #324896;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 0 #7ab93b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-content-2 {
    padding: 50px;
  }

  .why-title {
    font-size: 22px;
  }
}

/* =========================
   SECTION CONTAINER
========================= */
.services-grid-container {
  position: relative;
  border-radius: 30px;
  padding: 60px 40px;
  background: linear-gradient(
    to bottom,
    #2c3e75,
    #3a578c,
    #5f8f66,
    #7ab93b
  );
}

/* =========================
   HEADER
========================= */
.services-header {
  text-align: left;
  margin-bottom: 40px;
}

.services-header h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  max-width: 600px;
}

.services-header p {
  color: #e2e8f0;
  font-size: 14px;
}

/* =========================
   SWIPER FIX
========================= */
.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
}

/* =========================
   CARD DESIGN (FIXED)
========================= */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;

  height: 100%;
  min-height: auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  text-align: center;

  transition: 0.3s;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */
.service-card img {
  width: 160px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* =========================
   TITLE
========================= */
.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #073569;
}

/* =========================
   TEXT (FIXED WIDTH)
========================= */
.service-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;

  margin: 10px 0 15px;
  max-width: 220px;
}

/* =========================
   BUTTON (ALWAYS BOTTOM)
========================= */
.service-btn {
  background: #324896;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 0 #7ab93b;
  font-size: 13px;
  text-decoration: none;

  margin-top: auto;
}

/* =========================
   NAVIGATION ARROWS
========================= */
.slider-nav {
  display: flex;
  gap: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 991px) {
  .services-grid-container {
    padding: 40px 20px;
  }

  .services-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .slider-nav {
    justify-content: center;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 576px) {
  .services-grid-container {
    padding: 30px 15px;
    border-radius: 20px;
  }

  .services-header {
    flex-direction: column;
    gap: 15px;
  }

  .services-header h2 {
    font-size: 22px;
  }

  .slider-nav {
    justify-content: center;
  }

  .service-card {
    padding: 15px;
  }

  .service-card img {
    width: 140px;
    height: 90px;
  }

  .service-card h5 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 12px;
    max-width: 100%;
  }
}


/* SECTION */
.promise-section {
  padding: 0px 0;
  background: #ffffff;
}

/* TITLE */
.promise-title {
  font-family: "Brice", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #073569;
}

/* SUBTITLE */
.promise-subtitle {
  max-width: 700px;
  margin: 10px auto;
  font-size: 13px;
  color: #6b7280;
}

/* CARD */
.promise-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: 0.3s;
}

/* ICON */
.promise-card img {
  width: 148px;
  margin-bottom: 15px;
}

/* TITLE */
.promise-card h5 {
  font-weight: 700;
  color: #073569;
  margin-bottom: 10px;
}

/* TEXT */
.promise-card p {
  font-family: DM Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: lowercase;
  color: #000000;
}

/* HOVER EFFECT */
.promise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .promise-title {
    font-size: 22px;
  }
}

/* safety section */
/* SECTION */
.safety-section {
  padding: 70px 0;
  background: #ffffff;
}

/* MAIN BOX */
.safety-box {
  background: #cfe3e6; /* light blue like design */
  border-radius: 25px;
  padding: 40px;
}

/* IMAGE */
.safety-img img {
  width: 100%;
  max-width: 500px;
}

/* TITLE */
.safety-content h2 {
  font-family: "Brice", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #073569;
  line-height: 1.3;
}

/* TEXT */
.safety-content p {
  font-size: 14px;
  color: #4b5563;
}

/* FEATURE */
.safety-content h6 {
  font-weight: 700;
  font-size: 14px;
  color: #073569;
  margin-bottom: 5px;
}

/* DOT ICON */
.dot {
  width: 40px;
  height: 20px;
  background: #7ab93b;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .safety-box {
    padding: 25px;
  }

  .safety-content h2 {
    font-size: 22px;
  }

  .safety-img {
    margin-bottom: 20px;
    text-align: center;
  }
}
/* CARD */
.testimonial-section {
  margin-bottom: 20px;
}
.test-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  border-style: solid;
  border-color: #7ab93b;
  /*  EXACT BORDER */
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 5px;
  border-left-width: 2px;

  /*  BOTTOM GREEN LINE EFFECT (REAL MATCH) */

  text-align: left;
  height: 100%;
}

/* HOVER (VERY LIGHT LIKE DESIGN) */

/* TEXT */
.test-card p {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 15px;
}
/* Pagination container center */
.swiper-pagination {
  position: relative;
  margin-top: 25px;
}

/* Default dots */
.swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 10px;
  background: #dcdcdc;
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

/* Active dot (blue like your design) */
.swiper-pagination-bullet-active {
  width: 40px;
  background: #2f3e9e; /* 🔵 blue */
}
/* STARS (EXACT RED) */
.stars {
  color: #ff2d2d;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* NAME */
.user h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

/* ROLE */
.user span {
  font-size: 12px;
  color: #6b7280;
}
/* Download App Section */
.mobile-container.text-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Main Title */
.mobile-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f3c88; 
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Subtitle */
.mobile-sub {
  font-size: 15px;
  color: #6c757d; /* soft gray */
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-title {
    font-size: 24px;
  }

  .mobile-sub {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .mobile-title {
    font-size: 20px;
  }

  .mobile-sub {
    font-size: 13px;
  }
}
.download-app-section {
  
  background-color: #ffffff;
}

.download-container {
  background-color: var(--primary-blue);
  border-radius: 40px;
  padding: 60px;
  color: white;
  position: relative;
  overflow: visible;
}

.download-tag {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 1px;
}

.download-heading {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 650px;
}
.store-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn img {
  height: 50px;
  transition: transform 0.2s;
}

.store-btn:hover img {
  transform: scale(1.05);
}

.mobile-mockup-container {
  position: absolute;
  right: 130px;
  bottom: -120px;
  width: 320px;
  height: 650px;
  z-index: 5;
  overflow: visible;
}

.mobile-mockup-container img {
  width: 120%;
  height: 120%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  display: block;
}

/* Footer Section */
.main-footer {
  background-color: #ffffff;
  padding: 80px 0 40px;
  
  border-top: 1px solid #f0f0f0;
}

.footer-logo {
  margin-right: 0; /* remove extra right margin */
  margin-bottom: 20px; /* optional spacing below logo */
  display: flex;
  align-items: center; /* vertically center if needed */
  justify-content: flex-start; /* align left */
}

.footer-logo .logo-wrapper img {
  height: 50px; /* adjust logo size */
  width: auto; /* maintain aspect ratio */
  display: block;
}

.footer-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-hindi {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: block;
}

.footer-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "•";
  color: #000;
  position: absolute;
  left: 0;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.contact-item {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.contact-item a {
  color: #555;
  text-decoration: underline;
}

.newsletter-input {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 12px 25px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.btn-subscribe {
   background-color: var(--primary-blue);
  color: #ffffff !important;
  margin-bottom: 10px;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 33, 91, 0.15);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  white-space: nowrap;
  border-bottom: #7ab93b 4px solid;
}
.btn-subscribe:hover {
  background-color: #001a4a;
  transform: translateY(-1px);
}

.newsletter-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
}

.bottom-bar {
  background-color: #000A15;
  padding: 15px 0;
}

.copyright-text {
  color: #FFFFFF;
  font-size: 0.85rem;
  margin: 0;
}

.copyright-text a {
  color: #FFFFFF;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .main-footer{
    margin-top: -100px;
  }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }
  .btn-add-biz {
    width: 100%;
    margin-top: 15px;
  }
  .about-text-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-details {
    padding: 50px 0 20px;
  }
  .video-container {
    height: auto;
  }
  .story-title {
    font-size: 1.8rem;
  }

  .stat-divider {
    display: none;
  }
  .stat-item {
    margin-bottom: 25px;
  }
  .stat-item:last-child {
    margin-bottom: 0;
  }
  .stat-number {
    font-size: 1.8rem;
  }

  .community-title {
    font-size: 1.8rem;
  }

  /* Download Section Responsive */
  .download-container {
    padding: 40px;
    margin-bottom: 100px;
  }
  .mobile-mockup-container {
    position: relative;
    right: auto;
    bottom: -80px;
    margin: 0 auto;
    width: 250px;
  }
  .download-heading {
    text-align: center;
  }
  .download-tag {
    text-align: center;
  }
  .store-buttons {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
    margin-top: 15px;
  }
  .copyright-text {
    text-align: center;
  }
}

.btn-add-biz {
  width: 100%;
  margin-top: 15px;
}
.hill-divider svg {
  min-height: 50px;
}

.nav-link {
  margin: 5px 0;
}

.btn-add-biz {
  width: 100%;
  margin-top: 15px;
}

.hill-divider svg {
  height: 50px;
}

.hill-divider {
  top: -35px;
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.2rem;
  }
  .hero-banner {
    padding-top: 20px;
  }
  .hill-background {
    min-height: 140px;
  }
}
