body, html {
  height: 100%;
  margin: 0;
}

/* TOP-SECTION */

.bg-top-full {
  background-image: url('../images/bg_top.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 105vh;
  display: flex;
  flex-direction: column;
}

.hero-badge {
  width: 250px;            /* adjust as needed */
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto 10px;     /* center + spacing below */
  animation: floatUpDown 3s ease-in-out infinite; /* smooth subtle motion */
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.logo-img {
  max-height: 120px; /* smaller than before */
  height: auto;
  width: auto;
}

.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-buttons img {
    height: 55px;
    max-width: 180px;
    transition: transform 0.2s ease-in-out;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

.hero-legs {
    max-height: 400px;   /* control size */
    object-fit: contain; /* keep proportions */
}

/* .partner-btn {
    position: relative;
    display: inline-block;
    text-align: center;
} */

/* Hide the yellow partner button completely (including bg) */
.partner-btn {
  opacity: 0;             /* invisible */
  pointer-events: none;   /* not clickable */
  visibility: hidden;     /* hides it fully from layout */
}

.partner-btn a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}


.partner-bg {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.partner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: #212121;     /* 👈 dark gray text */
    z-index: 2;
    pointer-events: none;
    white-space: nowrap; /* 👈 force single line */
}

/* TOP-SECTION END  */


/* REVIEW-SECTION */

.reviews-section {
  position: relative;
  top: 0;               /* no offset */
  background: transparent; 
  padding: 100px 0;     /* spacing inside the reviews section */
}

.review-card {
  background: #fff url("../images/box1.png") no-repeat center center;
  background-size: cover;
  border-radius: 15px;
  padding: 30px 20px;
  min-height: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-box {
  position: relative;
  width: 300px;     /* was 260px */
  height: 340px;    /* was 300px */
  text-align: center;
  overflow: hidden;
}

.box-bg {
  width: 100%;
  height: 100%;
  display: block;
}

.box-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px 20px; /* give content more breathing room */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  color: #212121;
}

.stars {
  font-size: 1rem;
  color: #FFD700;
  margin-top: 10px; /* 👈 pushes stars 10px down */
}

.review-text {
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 10px 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 70%;
  margin-left: 30px;   /* 👈 20px space from left */
  margin-right: auto;  /* keep it balanced on the right */
}

.reviewer {
  font-weight: bold;
  margin-bottom: 70px; /* 👈 pushes name 50px up */
}

.review-box.box1 {
  margin-top: 20px;   /* moves box 1 down */
}

.review-box.box3 {
  margin-top: -20px;  /* moves box 3 up */
}

.reviews-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #212121;
}

.reviews-title .highlight {
  color: #007bff; /* bootstrap blue */
}

/* REVIEW-SECTION END  */


/* MID-BOTTOM-SECTION */

.mid-bottom-section .container {
  display: flex;
  justify-content: center;   /* centers box + phone horizontally */
  align-items: center;       /* align them vertically */
  gap: 60px;                 /* spacing between them */
}

.mid-bottom-section {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

/* Hide smartphone and center box on small screens */
@media (max-width: 900px) {
  .smartphone {
    display: none !important;
  }

  .mid-bottom-section .container {
    justify-content: center !important;
  }

  .phonebox {
    margin: 0 auto;
    display: block;
  }
}

.smartphone {
  width: 25vw;              /* smaller than box */
  max-width: 600px;
  height: auto;
  position: relative;
  top: 2vw;                 /* move slightly down */
  transform: rotate(-5deg);
}

.phonebox-wrapper {
  position: relative;
  display: inline-block;
}

.phonebox {
  max-height: 400px; /* keep same size */
  width: auto;
}

.phonebox-content {
  position: absolute;
  top: 15%;    /* adjust vertical placement */
  left: 10%;   /* padding from left side */
  width: 80%;  /* text fits neatly inside */
  text-align: left;
  color: #212121;
}

/* Feature row */
.feature-row {
  display: flex;
  align-items: flex-start;
}

/* Remove background circle — keep alignment */
.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  overflow: visible; /* keep glow visible */
  background: none;  /* ❌ no solid circle */
  border: none;      /* remove any border */
  box-shadow: none;  /* remove shadow circle */
}

/* Glow icons 2.5× larger */
.feature-icon {
  width: 250%;
  height: 250%;
  object-fit: contain;
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); /* optional glow boost */
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #212121;
}

.feature-desc {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* MID-BOTTOM-SECTION END*/

/* BOTTOM-SECTION*/

/* .blue-bottom-section {
  height: 500px;
  background-color: rgb(68,152,239);
  width: 100%;
} */

.blue-bottom-section {
  background-color: rgb(68, 152, 239);
  width: 100%;
  height: auto !important;   /* allow dynamic height */
  padding: 60px 0;           /* good internal spacing */
  margin-top: 0 !important;  /* no top gap */
}

.bottom-logo {
  height: 90px;
  width: auto;
}

.footer-links {
  font-size: 1.1rem;   /* bigger text size */
  font-weight: 600;    /* make them bolder */
}

.footer-link {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;      /* spacing between links */
  padding: 5px 10px;   /* bigger clickable area */
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-icon img {
  height: 36px;        /* was 24px → bigger icons */
  width: auto;
  margin: 0 12px;      /* more spacing */
  vertical-align: middle;
  transition: transform 0.2s;
}

.footer-icon img:hover {
  transform: scale(1.15);  /* slightly bigger hover effect */
}

/* BOTTOM-SECTION END*/


/* Slightly darker gray background for opened accordion body */
.accordion-collapse.show .accordion-body {
  background-color: #f1f3f4 !important; /* soft medium-light gray */
  transition: background-color 0.3s ease-in-out;
}

/* Keep padding and rounded edges */
.accordion-body {
  border-radius: 0 0 6px 6px;
  padding: 1rem 1.25rem;
}

/* --- MOBILE FOOTER FIX --- */
@media (max-width: 768px) {
  .blue-bottom-section .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .bottom-logo {
    margin-bottom: 20px;
    height: 70px; /* slightly smaller logo */
  }

  .footer-links {
    font-size: 1rem;
    font-weight: 500;
  }

  .footer-link {
    display: block;           /* stack links vertically */
    margin: 8px 0;
    padding: 4px 0;
  }

  .social-icons {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
  }

  .footer-icon img {
    height: 30px;
    width: 30px;
    margin: 0;
  }

  .footer-icon span {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #fff;
  }

  /* Hide duplicated "Follow Us" and "Contact Us" labels if space is tight */
  .footer-links span[data-i18n="footer.follow_us"],
  .footer-links span[data-i18n="footer.contact_us"] {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
  }
}

/* Footer link color fix */
.footer-link {
  color: #ffffff !important;        /* make footer links pure white */
  text-decoration: none;
  margin: 0 15px;
  padding: 5px 10px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-link:hover {
  color: #e0e0e0 !important;        /* light gray hover */
  text-decoration: underline;
}

/* Make sure small footer text (like “Follow Us”) is also white */
.footer-links,
.footer-links span,
.footer-links a {
  color: #ffffff !important;
}
