body,
* {
  font-family: 'Poppins', sans-serif !important;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
/* .navbar .btn-book {
	background-color: #2da8ff;
	color: white;
	border-radius: 8px;
	padding: 8px 25px;
	font-weight: 600;
} */

/* .navbar .btn-book:hover {
	background-color: #1a6fcc;
	color: white;
} */

.brand-text {
  line-height: 1.1;
  margin-left: 0.3rem;
}

.brand-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2196f3;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #222;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: -2px;
}

.nav-main-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 2vw;
}

.nav-blue-bg {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #fff 0%, #fff 55%, #4eb0f9 55%, #4eb0f9 100%);
  border-radius: 40px;
  padding: 0.3rem 0.7rem 0.3rem 1.2rem;
  margin-left: 2vw;
  min-width: 0;
  flex: 1 1 auto;
  position: relative;
  height: 64px;
}

.nav-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.07);
  padding: 0.25rem 0.4rem 0.25rem 0.7rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  gap: 0.5rem;
  margin: 0 auto;
}

.custom-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.custom-nav .nav-link {
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.custom-nav .nav-link.active,
.custom-nav .nav-link:hover {
  background: #f2faff;
  color: #2196f3;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
}

.nav-book-btn {
  margin: 0;
  flex-shrink: 0;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
}

.nav-blue-bg .nav-book-btn {
  margin-left: 0;
  margin-right: 0.5rem;
}

.nav-book-btn:hover {
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
}

.nav-links {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  border: 2px solid rgba(248, 248, 248, 0.91);
  padding: 18px 20px;
  gap: 25px;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0077b6;
}

.book-now {
  background-color: white;
  border: 2px solid #0077b6;
  color: #0077b6;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.book-now:hover {
  background-color: #0077b6;
  color: white;
}

/* Main section */
.main-section {
  display: flex;
  background: #fff;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  padding: 0;
  align-items: stretch;
  margin-top: -90px;
}

.dna-watermark {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dna-watermark svg {
  position: absolute;
  left: 2rem;
  top: 2rem;
  width: 60vw;
  max-width: 500px;
  min-width: 300px;
  height: auto;
}

.left-content {
  flex: 1;
  padding-left: 4.5rem;
  background-image: url(images/Banner-logo.png);
  background-size: 500px;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #fff;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-width: 350px;
}

.left-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #555;
  line-height: 1.13;
  margin-bottom: 1.2rem;
}

.left-content p {
  font-size: 1.18rem;
  color: #888;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 400;
}

.hero-book-btn {
  width: 300px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
  transition: background 0.2s, color 0.2s;
}

.hero-book-btn:hover {
  background: linear-gradient(90deg, #0670ca, #3a96de);
  color: #fff;
}

/* Right side with blue background and doctors */
.right-section {
  flex: 1.1;
  position: relative;
  background-image: url(images/Banner.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  /* background: linear-gradient(120deg, #4eb0f9 60%, #4eb0f9 100%); */
  border-top-left-radius: 300px 600px;
  border-bottom-left-radius: 300px 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  min-width: 400px;
  z-index: 2;
  overflow: visible;
}


.badge-container {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  top: 19rem;
  left: 10rem;
  z-index: 2;
}

.right-badge {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 0.5rem 1.3rem 0.5rem 0.7rem;
  font-weight: 500;
  font-size: 1.08rem;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.10);
  gap: 0.7rem;
  min-width: 210px;
  margin-bottom: 0.5rem;
}

.right-badge-one {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 0.5rem 1.3rem 0.5rem 0.7rem;
  font-weight: 500;
  font-size: 1.08rem;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.10);
  gap: 0.7rem;
  min-width: 210px;
  margin-bottom: 0.5rem;
  position: relative;
  left: 200px;
}

.trusted-brand-badge {
  border: 2px solid #4eb0f9;
}

.wide-range-badge {
  border: 2px solid #ffa726;
}

.badge-icon {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: none;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.badge-icon .badge-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(33,150,243,0.08);
}

.doctor-illustration {
  max-width: 340px;
  max-height: 480px;
  position: relative;
  margin-top: 7rem;
  margin-bottom: 2rem;
  z-index: 2;
}

.doctor-illustration img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .main-section {
    flex-direction: column;
    min-height: auto;
    margin-top: 0;
  }

  .left-content {
    /* padding-left: 1.5rem; */
    max-width: 100%;
    text-align: center;
    align-items: center;
    background-size: contain
  }

  .right-section {
    border-radius: 0;
    /*background: #4eb0f9;*/
    padding: 3rem 0 1rem;
    margin-top: 2rem;
    justify-content: center;
    min-width: unset;
  }

  .badge-container {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .doctor-illustration {
    margin-top: 0;
  }

  .nav-main-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1vw;
  }

  .nav-blue-bg {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    padding: 0.3rem 0.5rem 0.3rem 0.7rem;
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-pill {
    padding: 0.25rem 0.2rem 0.25rem 0.4rem;
    gap: 0.3rem;
  }

  .custom-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-blue-bg .nav-book-btn {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .main-section {
    flex-direction: column;
    min-height: auto;
    padding: 1rem 0.5rem;
  }

  .left-content {
    padding-left: 0.5rem;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .left-content h1 {
    font-size: 2.1rem;
  }

  .right-section {
    border-radius: 0;
    background-image: url(images/header-image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 1rem;
    justify-content: center;
    min-width: unset;
    padding-top: 250px;
  }

  .badge-container {
    display: none;
  }

  .doctor-illustration {
    margin-top: 0;
    max-width: 220px;
  }

  .nav-main-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0.5vw;
  }

  .nav-blue-bg {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    padding: 0.3rem 0.2rem 0.3rem 0.2rem;
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-pill {
    padding: 0.2rem 0.05rem 0.2rem 0.05rem;
    gap: 0.2rem;
  }

  .custom-nav {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }

  .nav-blue-bg .nav-book-btn {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
  }
}

.navbar-logo {
  width: 150px;
  height: auto;
  max-width: 100%;
  display: block;
}

.hero-doctor-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #fff;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-doctor-img {
    max-width: 220px;
  }

  .navbar-logo {
    width: 40px;
  }
}

.main-header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 10;
  min-height: 90px;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.07);
}

.header-blue-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60vw;
  min-width: 350px;
  background: #4eb0f9;
  border-bottom-left-radius: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.7rem 2vw 0.7rem 2vw;
  z-index: 2;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 200px;
  z-index: 3;
}

.custom-nav {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.07);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
  margin: 0 2vw;
  padding: 0.5rem 1.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.custom-nav .nav-link {
  color: #222;
  font-weight: 500;
  font-size: 1.13rem;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.custom-nav .nav-link.active,
.custom-nav .nav-link:hover {
  background: #f2faff;
  color: #2196f3;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
}

.nav-book-btn {
  background: #fff;
  color: #2196f3;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.6rem 2rem;
  border: none;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
  margin-left: 0;
  transition: background 0.2s, color 0.2s;
  z-index: 3;
}

.nav-book-btn:hover {
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
}

@media (max-width: 1200px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 1vw 0.7rem 1vw;
    gap: 1rem;
  }

  .header-blue-bg {
    width: 100vw;
    min-width: 0;
    border-radius: 0 0 40px 40px;
    height: 180px;
  }

  .custom-nav {
    margin: 0 auto 1rem auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-book-btn {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 0.5vw 0.7rem 0.5vw;
    gap: 0.7rem;
  }

  .header-blue-bg {
    width: 100vw;
    min-width: 0;
    border-radius: 0 0 30px 30px;
    height: 0px;
  }

  .custom-nav {
    margin: 0 auto 0.7rem auto;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0.5rem;
  }

  .nav-book-btn {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
  }
}

.hero-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-height: 520px;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 0 0 0;
}

.hero-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3.5rem 0 3.5rem 6vw;
  position: relative;
  min-width: 320px;
  z-index: 2;
}

.dna-watermark {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 0;
  width: 320px;
  height: 400px;
  pointer-events: none;
  opacity: 0.18;
}

.hero-left h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 1.2rem;
  z-index: 1;
  line-height: 1.13;
}

.hero-desc {
  font-size: 1.13rem;
  color: #888;
  margin-bottom: 2.2rem;
  max-width: 480px;
  font-weight: 400;
  z-index: 1;
}

.hero-main-btn {
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.7rem 2.2rem;
  border: none;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.hero-main-btn:hover {
  background: linear-gradient(90deg, #0670ca, #3a96de);
  color: #fff;
}

.hero-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background: linear-gradient(120deg, #4eb0f9 60%, #4eb0f9 100%);
  border-top-left-radius: 300px 600px;
  border-bottom-left-radius: 300px 600px;
  min-width: 400px;
  position: relative;
  padding: 2.5rem 0 2.5rem 0;
  z-index: 1;
  overflow: visible;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
  position: absolute;
  top: 2.5rem;
  left: -120px;
  z-index: 2;
}

.hero-badge {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 0.5rem 1.3rem 0.5rem 0.7rem;
  font-weight: 500;
  font-size: 1.08rem;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.10);
  gap: 0.7rem;
  min-width: 210px;
  border: 2px solid #e6e6e6;
}

.badge-trusted {
  border-color: #4eb0f9;
}

.badge-range {
  border-color: #ffa726;
}

.badge-icon {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: none;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-doctor-img-wrap {
  width: 340px;
  max-width: 100%;
  margin-top: 7rem;
  margin-right: 2.5rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-doctor-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

@media (max-width: 1200px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
    padding: 2rem 0.5rem;
  }

  .hero-left {
    padding: 2.5rem 1rem 1.5rem 1.5rem;
    align-items: center;
    text-align: center;
  }

  .dna-watermark {
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 300px;
  }

  .hero-right {
    border-radius: 0;
    background: #4eb0f9;
    min-width: unset;
    padding: 2rem 0 1rem 0;
    margin-top: 2rem;
    align-items: center;
  }

  .hero-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    left: 0;
    top: 0;
  }

  .hero-doctor-img-wrap {
    margin: 0 auto;
    width: 220px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
    padding: 1rem 0.5rem;
  }

  .hero-left {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    align-items: center;
    text-align: center;
  }

  .dna-watermark {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 180px;
  }

  .hero-right {
    border-radius: 0;
    background: #4eb0f9;
    min-width: unset;
    padding: 1.5rem 0 1rem 0;
    margin-top: 1rem;
    align-items: center;
  }

  .hero-badges {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    left: 0;
    top: 0;
  }

  .hero-doctor-img-wrap {
    margin: 0 auto;
    width: 140px;
  }

  .hero-left h1 {
    font-size: 2.1rem;
  }

  .services-section{
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.appointment-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem 0 3rem 0;
  padding: 0 2vw;
  flex-wrap: wrap;
}

.appointment-illustration img {
  width: 260px;
  max-width: 100%;
  display: block;
}

.appointment-form {
  border: 3px solid #4eb0f9;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(78, 176, 249, 0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 700px;
  width: 100%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appointment-form h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
  text-align: center;
}

.appointment-desc {
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #888;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.appointment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.appointment-fields input {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #e6e6e6;
  font-size: 1rem;
  background: #fafbfc;
  outline: none;
  transition: border 0.2s;
}

.appointment-fields input:focus {
  border: 1.5px solid #4eb0f9;
}

.appointment-btn {
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.6rem 2.2rem;
  border: none;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
  transition: background 0.2s, color 0.2s;
}

.appointment-btn:hover {
  background: linear-gradient(90deg, #0670ca, #3a96de);
  color: #fff;
}

@media (max-width: 900px) {
  .appointment-section {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .appointment-illustration img {
    margin: 0 auto;
  }

  .appointment-form {
    padding: 1.5rem 1rem 1rem 1rem;
  }

  .appointment-fields {
    grid-template-columns: 1fr;
  }
}

.services-section {
  background: linear-gradient(360deg, #54C0E3 0%, #1C86BB 100%);
  padding: 100px 0 100px 0;
  font-family: 'Poppins', sans-serif;
}

.services-header {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.services-header h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.services-header p {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.97;
  margin-bottom: 0;
  line-height: 1.6;
}

.service-card-outer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.service-card-main {
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 4px 24px rgba(78, 176, 249, 0.10);
  display: flex;
  align-items: stretch;
  padding: 3.2rem 3.2rem 2.7rem 3.2rem;
  position: relative;
  z-index: 2;
}

/* .service-card-shadow {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -18px;
  height: 98%;
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 8px 32px rgba(78, 176, 249, 0.10);
  z-index: 1;
  opacity: 0.7;
} */

.service-card-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.service-card-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #353535;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.service-card-content span { 
  font-size: 15px;
  font-weight: 400;
  color: #353535;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

/* .service-card-content p {
  color: #666;
  font-size: 10px;
  margin-bottom: 2.1rem;
  font-weight: 300;
  line-height: 1.6;
} */

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem 1.5rem;
  font-size: 1.18rem;
  font-weight: 400;
}

.service-features div {
  display: flex;
  align-items: center;
  color: #444;
  gap: 0.5em;
}

.service-check {
  display: flex;
  align-items: center;
  margin-right: 0.2em;
}

.service-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 180px;
}

.service-card-img img {
  width: 270px;
  max-width: 100%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.10);
}

@media (max-width: 1100px) {
  .service-card-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    align-items: center;
  }

  .service-card-content {
    padding-right: 0;
    margin-bottom: 1.5rem;
    /* text-align: center; */
  }

  .service-card-img {
    justify-content: center;
    margin-top: 1.2rem;
  }

  .service-card-img img {
    width: 160px;
  }

  .service-features {
    grid-template-columns: 1fr 1fr;
    font-size: 1.05rem;
  }
}

@media (max-width: 700px) {
  .service-card-main {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    /* align-items: center; */
  }

  .service-card-outer {
    max-width: 99vw;
  }

  .service-card-shadow {
    left: 6px;
    right: 6px;
    bottom: -8px;
    border-radius: 20px;
  }

  .service-card-main {
    border-radius: 20px;
  }

  .service-card-img img {
    width: 200px;
  }

  .service-features {
    grid-template-columns: 1fr;
    font-size: 1rem;
  }

  .service-card-content h3 {
    font-size: 1.3rem;
  }
  .services-header h2 {
    font-size: 30px;
  }
  .services-header h3 {
    font-size: 20px;
  }
  .services-header p {  
    font-size: 14px;
  }
}


.why-choose-section {
  border: 3px solid #4eb0f9;
  border-radius: 32px;
  margin: 3.5rem auto 0 auto;
  max-width: 1500px;
  background: #fff;
  padding: 2.5rem 2vw 2.5rem 2vw;
  position: relative;
}

.why-choose-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.why-choose-left {
  flex: 1.1;
  min-width: 320px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.why-choose-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2.2rem;
  line-height: 1.1;
  z-index: 2;
}

.why-choose-btn {
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.8rem 2.5rem;
  border: none;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
  z-index: 2;
}

.why-choose-btn:hover {
  background: linear-gradient(90deg, #0670ca, #3a96de);
  color: #fff;
}

.why-choose-watermark {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 220px;
  height: 220px;
  pointer-events: none;
}

.why-choose-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1.5rem 2rem;
  width: 100%;
}

.why-choose-card {
  background: #f7f7f7;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  min-width: 260px;
  min-height: 120px;
  border: 2.5px solid #e6f3fc;
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 2.5px solid #4eb0f9;
  background: #fff;
  margin-right: 0.7rem;
  flex-shrink: 0;
}

.why-choose-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.3rem;
}

.why-choose-desc {
  color: #666;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .why-choose-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }

  .why-choose-right {
    align-items: stretch;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 700px) {
  .why-choose-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 18px;
  }

  .why-choose-left h2 {
    font-size: 1.5rem;
  }

  .why-choose-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .why-choose-card {
    border-radius: 14px;
    padding: 1rem 1rem 1rem 1rem;
    min-width: 0;
  }

  .why-choose-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .why-choose-title {
    font-size: 1.05rem;
  }

  .why-choose-desc {
    font-size: 0.95rem;
  }
}

.criteria-section {
  background: #f3f8fa;
  padding: 3.5rem 0 3rem 0;
}

.criteria-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1700px;
  margin: 0 auto;
  gap: 2.5rem;
  position: relative;
}

.criteria-left {
  flex: 1.2;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 1.5rem;
  padding-left: 3.5rem;
}

.criteria-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 2.2rem;
  line-height: 1.1;
}

.criteria-desc {
  color: #666;
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 480px;
}

.criteria-btn {
  background: linear-gradient(90deg, #0b7de1, #4db6f9);
  color: #fff;
  border-radius: 18px;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 0.8rem 2.5rem;
  border: none;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
}

.criteria-btn:hover {
  background: linear-gradient(90deg, #0670ca, #3a96de);
  color: #fff;
}

.criteria-illustration {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 220px;
  margin-top: 1.5rem;
}

.criteria-illustration img {
  width: 220px;
  max-width: 100%;
  border-radius: 24px;
  background: #f6fafd;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.10);
}

img.img-fluid.position-absolute.bottom-0.start-0 {
  max-height: 441px;
  left: 26vw !important;
  bottom: 0;
}

.criteria-cards-outer {
  flex: 1.5;
  min-width: 350px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 1.5rem;
}

.criteria-cards {
  background: #fff;
  border: 3px solid #4eb0f9;
  border-radius: 32px;
  padding: 2.2rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 480px;

}

.criteria-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #f7f7f7;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.07);
  padding: 1.2rem 1.5rem 1.2rem 1.2rem;
  min-width: 220px;
  min-height: 90px;
  margin-bottom: 0;
}

.criteria-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #ffa726;
  margin-right: 0.7rem;
  flex-shrink: 0;
}

.criteria-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.3rem;
}

.criteria-card-desc {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .criteria-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }

  .criteria-cards-outer {
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
  }

  .criteria-illustration {
    justify-content: center;
    margin: 1.5rem 0;
    display: none;
  }
}

@media (max-width: 700px) {
  .criteria-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }

  .criteria-left{
    padding-left: 10px;
    padding-right: 10px;
  }

  .criteria-left h2 {
    font-size: 1.5rem;
  }

  .criteria-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

  .criteria-cards {
    border-radius: 16px;
    padding: 1rem 0.5rem 1rem 0.5rem;
    max-width: 99vw;
  }

  .criteria-card {
    border-radius: 10px;
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    min-width: 0;
  }

  .criteria-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .criteria-card-title {
    font-size: 1.05rem;
  }

  .criteria-card-desc {
    font-size: 0.95rem;
  }

  .benefits-section{
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .benefits-header h2 {
    font-size: 25px;
  }
}


.benefits-section {
  background: #fff;
  padding: 3rem 0 2.5rem 0;
  margin-top: 70px;
  margin-bottom: 100px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.7rem;
}

.benefits-header p {
  color: #666;
  font-size: 1.08rem;
  font-weight: 600;
}

.benefits-carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-arrows-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
  position: absolute;
  top: -95px;
  right: 0;
  z-index: 10;
}

.benefits-arrow {
  background: linear-gradient(135deg, #4eb0f9 60%, #2196f3 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
  outline: none;
}

.benefits-arrow:focus {
  box-shadow: 0 0 0 3px #90caf9;
}

.benefits-arrow:hover {
  background: linear-gradient(135deg, #2196f3 60%, #4eb0f9 100%);
  transform: scale(1.08);
}

@media (max-width: 700px) {
  .benefits-arrows-top {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0.5rem;
  }
  .benefits-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.benefits-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  width: 100%;
  max-width: 1240px;
  scrollbar-width: none;
  /* Firefox */
}

.benefits-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Hide any scroll indicator or dots under the carousel */
.benefits-scroll-indicator,
.benefits-dots,
.benefits-pagination {
  display: none !important;
}

.benefit-card {
  flex: 0 0 295px;
  width: 295px;
  height: 175px;
  background: #F6F6F6;
  border-radius: 20px;
  opacity: 1;
  border: 1px solid #4eb0f9;
  padding: 15px;
  text-align: start;
  font-size: 1.13rem;
  font-weight: 500;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: box-shadow 0.2s;
}
.benefit-card h2{
  font-size: 27px;
  font-weight: 600;
  color: #444546;
}

.benefit-card p{ 
  font-size: 15px;
  font-weight: 400;
  color: #444546;
}

.benefit-card:not(:last-child) {
  margin-right: 0.5rem;
}

.why-card.h-100.p-4.rounded-4.bg-light.d-flex.flex-column.gap-2.shadow-sm {
  height: 205px !important;
}

@media (max-width: 1300px) {
  .benefits-carousel {
    max-width: 99vw;
    gap: 20px;
  }

  .benefit-card {
    flex: 0 0 240px;
    width: 240px;
    height: 200px;
  }
}

@media (max-width: 900px) {
  .benefit-card {
    flex: 0 0 180px;
    width: 180px;
    height: 140px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .benefit-card {
    flex: 0 0 140px;
    width: 140px;
    height: 100px;
    font-size: 0.95rem;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }

  .benefits-carousel {
    gap: 12px;
  }

  .who-we-are-section{
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

/* Who We Are Section Styles */
.who-we-are-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  background: #fff;
}

.who-we-are-inner {
  display: flex;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  gap: 60px;
}

.who-we-are-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.who-we-are-illustration {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 32px 24px;
  width: 320px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-doctor-img {
  width: 350px;
  height: auto;
  z-index: 1;
  position: relative;
}

.who-we-are-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(78, 176, 249, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.who-we-are-icon img {
  width: 28px;
  height: 28px;
}

.who-we-are-icon.top-left {
  top: 18px;
  left: 18px;
}

.who-we-are-icon.top-right {
  top: 18px;
  right: 18px;
}

.who-we-are-icon.bottom-left {
  bottom: 18px;
  left: 18px;
}

.who-we-are-icon.bottom-right {
  bottom: 18px;
  right: 18px;
}

.who-we-are-right {
  flex: 1.2;
  padding-left: 20px;
}

.who-we-are-right h2 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #000000;
}

.who-we-are-right h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #000000;
}

.who-we-are-right p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

.who-we-are-btn {
  background: #4eb0f9;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  border: none;
  transition: background 0.2s;
}

.who-we-are-btn:hover {
  background: #3498db;
}

@media (max-width: 900px) {
  .who-we-are-inner {
    flex-direction: column;
    gap: 32px;
  }

  .who-we-are-right {
    padding-left: 0;
    /* text-align: center; */
  }

  .who-we-are-illustration {
    width: 260px;
    height: 340px;
    padding: 20px 10px;
  }

  .who-we-are-doctor-img {
    width: 290px;
    height: auto;
    z-index: 1;
    position: relative;
  }
}

/* Join Network CTA Section Styles */
.join-network-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin: 40px 0 70px 0;
}

.join-network-inner {
  width: 100%;
  max-width: 1200px;
  background: #1C86BB;
  background: linear-gradient(179deg, rgba(28, 134, 187, 1) 19%, rgba(62, 169, 211, 1) 54%);
  border-radius: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  padding: 40px 30px 0px 40px;
  box-sizing: border-box;
  overflow: visible;
}

.join-network-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.join-network-content h2 {
  font-size: 45px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
  color: #fff;
  line-height: 1.15;
}

.join-network-content p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #eaf6ff;
  max-width: 600px;
}

.join-network-btn {
  background: #fff;
  width: 200px;
  color: #2196f3;
  font-weight: 500;
  border-radius: 14px;
  padding: 14px 36px ;
  margin-bottom: 30px;
  font-size: 1.1rem;
  border: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
}

.join-network-btn:hover {
  background: #eaf6ff;
  color: #2196f3;
}

.join-network-image-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  min-width: 220px;
}

.join-network-img {
  max-width: 100%;
  position: relative;
  z-index: 3;
  padding-top: 0px;
  padding-bottom: 0px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.10));
  transform: rotate(-3600deg);
  margin-top: -175px;
}

@media (max-width: 900px) {
  .join-network-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px 24px 16px;
    border-radius: 24px;
  }

  .join-network-image-wrap {
    justify-content: center;
    width: 100%;
    margin-top: -20px;
  }

  .join-network-img {
    width: 320px;
    height: 320px;
    top: -40px;
    right: 0;
  }
}

@media (max-width: 600px) {
  .join-network-section{
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin: 40px 0 70px 0;
  }
  .join-network-inner {
    padding: 30px 4vw 12px 4vw;
    border-radius: 14px;
    padding-bottom: 0px;
    height: 64vh;
  }

  .join-network-content h2 {
    font-size: 2rem;
  }

  .join-network-img {
    display: none;
  }
}
/* 
@media (max-width: 600px) {
  .join-network-img {
    width: 100px;
    height: 120px;
    max-width: 100%;
    top: 10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.10));
    transform: none;
    z-index: 2;
    display: block;
  }
} */

/* General section container */
section {
  width: 100%;
  /* max-width: 1400px;
  margin: 0 auto; */
  box-sizing: border-box;
  padding-top: 48px;
  padding-bottom: 48px;
}

/* @media (max-width: 600px) {
  section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
} */

/* Our Process Section Styles - Corrected and Constrained */
.process-section {
  width: 100%;
  background: #fff;
  padding: 56px 0 40px 0;
  display: flex;
  justify-content: center;
}

.process-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #555;
  text-align: center;
  margin-bottom: 16px;
}

.process-subtitle {
  font-size: 1.13rem;
  color: #888;
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
}

.process-steps-row,
.process-dots-row {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.process-steps-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
}

.process-steps-row.bottom {
  margin-top: 36px;
}

.process-step {
  background: #f7faff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(78, 176, 249, 0.10);
  padding: 24px 18px 18px 18px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 0;
  margin: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.process-step.empty {
  background: transparent;
  box-shadow: none;
  padding: 0;
  min-width: 60px;
  max-width: 60px;
  margin: 0;
}

.process-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.10);
  object-fit: contain;
}

.process-step-title {
  font-size: 1.18rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  text-align: center;
}

.process-step-desc {
  font-size: 1rem;
  color: #888;
  text-align: center;
}

.process-dots-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 32px;
  margin-bottom: -12px;
}

.process-dot-number {
  width: 32px;
  height: 32px;
  background: #ffa726;
  color: #fff;
  font-weight: 600;
  font-size: 1.18rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 167, 38, 0.10);
  z-index: 2;
}

.process-dot {
  width: 16px;
  height: 16px;
  background: #4eb0f9;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.10);
}

.process-dots-row:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0;
  border-top: 2px dashed #bfe3fa;
  z-index: 1;
}

@media (max-width: 1400px) {

  section,
  .process-container,
  .process-steps-row,
  .process-dots-row {
    max-width: 98vw;
  }
}

@media (max-width: 1200px) {
  .process-step {
    min-width: 160px;
    max-width: 200px;
    margin: 0 8px;
  }
}

@media (max-width: 900px) {

  section,
  .process-container,
  .process-steps-row,
  .process-dots-row {
    max-width: 100vw;
  }

  .process-step,
  .process-step.empty {
    min-width: 120px;
    max-width: 140px;
    margin: 0 2px;
  }

  .process-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .process-title {
    font-size: 2rem;
  }

  .process-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .process-steps-row {
    gap: 0;
  }

  .process-steps-row.bottom {
    margin-top: 18px;
  }

  .process-step,
  .process-step.empty {
    min-width: 70px;
    max-width: 90px;
    padding: 8px 2px 8px 2px;
    margin: 0 1px;
  }

  .process-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .process-dot-number,
  .process-dot {
    width: 12px;
    height: 12px;
    font-size: 0.8rem;
  }

  .process-dots-row:before {
    left: 0;
    right: 0;
    border-top-width: 1px;
  }
}

@media (max-width: 700px) {
  .process-steps-row {
    flex-direction: column !important;
    align-items: center;
    gap: 18px;
  }
  .process-step {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
    margin: 0 0 12px 0;
  }
  .process-step.empty {
    display: none;
  }
  .process-dots-row {
    display: none;
    flex-direction: row;
    justify-content: center;
    margin: 18px 0;
  }
  .process-dot-number, .process-dot {
    margin: 0 4px;
  }
  .process-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  background: #ecf7fb;
  padding: 75px 0 75px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 38px;
}

.testimonials-carousel-wrapper {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.testimonials-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0 8px 0;
  scrollbar-width: none;
  /* Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.testimonial-card {
  flex: 0 0 410px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(78, 176, 249, 0.10);
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 410px;
  max-width: 410px;
  position: relative;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: #4eb0f9;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.testimonial-quote.end {
  align-self: flex-end;
  margin-top: 10px;
  margin-bottom: 0;
}

.testimonial-text {
  font-size: 1.13rem;
  color: #555;
  margin-bottom: 28px;
  min-height: 72px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
}

.testimonial-name {
  font-size: 1.13rem;
  font-weight: 500;
  color: #222;
}

@media (max-width: 1200px) {
  .testimonials-carousel-wrapper {
    max-width: 98vw;
  }

  .testimonial-card {
    flex: 0 0 340px;
    min-width: 340px;
    max-width: 340px;
    padding: 28px 18px 20px 18px;
  }
}

@media (max-width: 700px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-card {
    flex: 0 0 260px;
    min-width: 260px;
    max-width: 260px;
    padding: 16px 8px 12px 8px;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .testimonial-text {
    font-size: 0.98rem;
    min-height: 40px;
  }
}

.testimonials-arrows-top {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  margin-right: 50px;
}

.testimonials-arrow {
  background: linear-gradient(135deg, #4eb0f9 60%, #2196f3 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
}

.testimonials-arrow:hover {
  background: linear-gradient(135deg, #2196f3 60%, #4eb0f9 100%);
}

@media (max-width: 700px) {
  .testimonials-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .testimonials-arrows-top {
    display: none;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  width: 100%;
  background: #fff;
  padding: 75px 0 75px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 50px;
}
.faq-list {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #f2fbfe;
  border-radius: 14px;
  padding: 18px 32px;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 12px rgba(78,176,249,0.06);
  outline: none;
  border: none;
  position: relative;
  border: 1px solid #E9E9E9;
}
.faq-item:focus, .faq-item.active {
  box-shadow: 0 4px 18px rgba(78,176,249,0.13);
  background: #e6f6fc;
}
.faq-question-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
}
.faq-arrow {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 18px;
  vertical-align: middle;
  position: relative;
}
.faq-arrow::after {
  content: '\2193'; /* ↓ */
  font-size: 1.6rem;
  color: #2196f3;
  transition: transform 0.3s;
  display: block;
}
.faq-item.active .faq-arrow::after {
  content: '\2191'; /* ↑ */
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s, margin-top 0.3s, padding 0.3s;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  margin-top: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 900px) {
  .faq-list {
    max-width: 98vw;
    gap: 14px;
  }
  .faq-item {
    padding: 14px 12px;
  }
  .faq-title {
    font-size: 1.5rem;
  }
}

/* Global font */
body {
  font-family: 'Poppins', sans-serif;
}

/* --- Footer Section Styles --- */
.footer-section {
  background: #1C86BB;
  background: linear-gradient(179deg, rgba(28, 134, 187, 1) 19%, rgba(62, 169, 211, 1) 54%);
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  color: #fff;
  padding: 48px 0 0 0;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -2px 16px rgba(33, 150, 243, 0.07);
  height: 283px;
  margin-left: 24px;
  margin-right: 24px;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1141px;
  margin: 0 auto;
  padding: 40px 0px 32px 32px;
  gap: 48px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  margin-top: 8px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 8px;
}

.footer-brand-text {
  line-height: 1.1;
}

.footer-brand-title {
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.footer-brand-subtitle {
  font-size: 1rem;
  color: #e3f2fd;
  font-weight: 400;
  letter-spacing: 2px;
}

.footer-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  margin-bottom: 8px;
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  color: #e3f2fd;
  margin-bottom: 24px;
  max-width: 700px;
}

.footer-contact-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}

.footer-contact-pill {
  display: flex;
  align-items: center;
  background: #fff;
  color: #2196f3;
  border-radius: 18px;
  padding: 6px 18px 6px 10px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}

.footer-contact-pill a{
  text-decoration: none;
  color: #000 !important;
}

.footer-contact-pill:hover {
  background: #e3f2fd;
  color: #1565c0;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3f2fd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.footer-contact-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-bottom {
  width: 100%;
  background: rgba(33, 150, 243, 0.13);
  color: #e3f2fd;
  text-align: center;
  font-size: 1rem;
  padding: 12px 0 10px 0;
  margin-top: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 16px 24px 16px;
  }

  .footer-logo-col {
    flex-direction: row;
    align-items: center;
    min-width: 0;
    margin-bottom: 8px;
  }

  .footer-brand-text {
    margin-left: 12px;
  }

  .footer-content-col {
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-section {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    padding-top: 32px;
    height: 58vh;
    margin-left: 0px;
    margin-right: 0px;
  }

  .footer-title {
    font-size: 1.3rem;
  }

  .footer-inner {
    padding: 0 6px 16px 6px;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-pill {
    font-size: 0.98rem;
    padding: 7px 12px 7px 8px;
  }
}

/* --- End Footer Section Styles --- */

.footer-divider {
  width: 95%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 18px auto;
  border: none;
  border-radius: 1px;
}

.footer-bottom {
  padding-bottom: 15px;
}

.testimonial-quote img {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .benefits-carousel {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }

  .benefit-card {
    flex: 0 0 90vw;
    width: 90vw;
    height: 200px;
    scroll-snap-align: start;
    margin-right: 12px;
    margin-left: 0;
  }

  .testimonials-carousel {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }

  .testimonial-card {
    flex: 0 0 90vw;
    width: 90vw;
    scroll-snap-align: start;
    margin-right: 12px;
    margin-left: 0;
  }
}

/* FAQ Mobile Responsive & Animation */
@media (max-width: 600px) {
  .faq-section {
    padding: 32px 0 40px 0;
    margin: 70px 0 70px 0;
  }
  .faq-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .faq-list {
    gap: 14px;
  }
  .faq-item {
    border-radius: 12px;
    padding: 0;
    margin-bottom: 0;
  }
  .faq-question-row {
    padding: 16px 18px 16px 18px;
    font-size: 1.05rem;
    min-height: 48px;
    border-radius: 12px;
  }
  .faq-arrow {
    font-size: 1.5rem;
    margin-left: 10px;
  }
  .faq-answer {
    font-size: 1rem;
    padding: 14px 18px 16px 18px;
    border-radius: 0 0 12px 12px;
  }
}

/* FAQ Dropdown Animation */
.faq-answer {
  transition: max-height 0.3s ease, padding 0.3s, opacity 0.3s;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 14px;
  padding-bottom: 16px;
}

.navbar .btn-book {
	background-color: #2da8ff;
	color: white;
	border-radius: 8px;
	padding: 8px 25px;
	font-weight: 600;
}

.navbar .btn-book:hover {
	background-color: #1a6fcc;
	color: white;
}

@media (max-width: 600px) {
  body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .container,
  .container-fluid,
  section,
  .main-section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (min-width: 992px) {
  .franchise-criteria-bg {
    background: #ECF7FB;
  }
  .franchise-criteria-minheight {
    min-height: 400px;
  }
  .franchise-criteria-img {
    max-height: 450px;
    left: 0;
    bottom: 0;
    position: absolute;
  }
  #franchise-criteria h2 {
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
  }
  #franchise-criteria p {
    max-width: 420px;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: #444;
  }
  #franchise-criteria .btn-primary {
    border-radius: 16px;
    background: linear-gradient(90deg, #2da8ff, #0056b3);
    border: none;
    padding: 0.7rem 2.2rem;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
  }
  .criteria-card-group {
    width: 100%;
    padding: 2.2rem 2.2rem 2.2rem 2.2rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(78,176,249,0.10);
    border: 2.5px solid #2da8ff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .criteria-card-group-custom {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }
  .criteria-card {
    background: #f7f7f7;
    margin-bottom: 0;
    border-radius: 1.1rem;
    padding: 1.3rem 1.7rem 1.3rem 1.7rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(78,176,249,0.07);
  }
  .criteria-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
  }
  .criteria-card .fw-semibold {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #222;
  }
  .criteria-card .text-secondary {
    font-size: 1.02rem;
    color: #666;
  }
  .criteria-card-group-padding {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  #why-choose .why-choose-container {
    border: 3px solid #2da8ff;
    border-radius: 32px;
    background: #fff;
    height: 486px;
    position: relative;
  }
  .why-choose-watermark {
    z-index: 0;
    opacity: 0.08;
    background: url('images/watermark.png') center/contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .why-choose-bg-img h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  .why-choose-bg-img .btn-primary {
    border-radius: 16px;
    background: linear-gradient(90deg, #2da8ff, #0056b3);
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.7rem 2.2rem;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
  }
  .why-card {
    background: #f7f7f7;
    border-radius: 1.1rem;
    padding: 1.3rem 1.7rem;
    box-shadow: 0 2px 8px rgba(78,176,249,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
  }
  .why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
  }
  .why-card .fw-semibold {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
  }
  .why-card .text-secondary {
    font-size: 1.02rem;
    color: #666;
  }
}

/* Franchise Criteria Section Styles */
.franchise-criteria-bg {
  background: #ECF7FB;
}

.franchise-criteria-minheight {
  min-height: 400px;
}

.franchise-criteria-img {
  max-height: 450px;
  left: 0;
  bottom: 0;
}

.criteria-card-group-custom {
  background: #fff;
  border: 2.5px solid #2da8ff;
  border-radius: 28px;
  max-width: 480px;
}

.criteria-card-group-padding {
  padding-right: 0px;
  padding-left: 50px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .criteria-card-group-padding {
    padding-left: 0;
  }
  
  .criteria-card-group-custom {
    width: 404px !important;
  }
}

@media (max-width: 767.98px) {
  .franchise-criteria-img {
    position: static !important;
    display: block;
    margin: 1rem auto 0 auto;
    max-width: 120px;
    max-height: 180px;
  }
  
  .franchise-criteria-minheight {
    min-height: unset !important;
  }
  
  .criteria-card-group-custom {
    width: 100% !important;
    max-width: 404px !important;
  }
}

@media (max-width: 575.98px) {
  .franchise-criteria-img {
    display: none;
    max-width: 80px;
    max-height: 120px;
  }
  
  .criteria-card-group-custom {
    width: 100% !important;
    max-width: 404px !important;
  }
}

/* --- Who We Are List Custom Style --- */
.who-we-are-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.who-we-are-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #222;
  display: flex;
  align-items: flex-start;
  min-height: 28px;
}
.who-we-are-list li:last-child {
  margin-bottom: 0;
}
.who-we-are-list li::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('data:image/svg+xml;utf8,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="11" fill="%232ecc71"/><path d="M6 11.5L10 15L16 8.5" stroke="white" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 5px;
}

.franchise-criteria h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #c95f5f;
}

.franchise-criteria h3{
  font-size: 25px;
  font-weight: 400;
}

.setup-req-section {
  border: 2px solid #4eb0f9;
  border-radius: 18px;
  background: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  margin-left: 30px;
  margin-right: 30px;
  width: 95%;
  margin-bottom: 100px;
}

@media (max-width: 767.98px) {
  .setup-req-section {
    border-radius: 8px;
    margin-bottom: 1rem;
    margin-left: 8px;
    margin-right: 8px;
  }
}

.setup-req-container {
  position: relative;
  z-index: 1;
  background: transparent;
}

.setup-watermark {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 100%;
  /* background: url('images/banner-logo.png') no-repeat left center; */
  background-size: contain;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  padding-bottom: 100px;
}
.setup-req-section.py-5{
  background: url('images/banner-logo.png') no-repeat left center;
  background-size: contain;
 background-position-x: 150px;
  background-size: 300px;
  background-position-y: auto;
  @media (max-width: 767.98px) {
    background-position-x: center;
    background-position-y: 50px;
    background-size: 200px;
  }

}


.setup-watermark h2{
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: #c95f5f;
}

.setup-criteria-btn {
  background: #4eb0f9;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(78, 176, 249, 0.08);
  transition: background 0.2s;
}
.setup-criteria-btn:hover, .setup-criteria-btn:focus {
  background: #0074c9;
  color: #fff;
}

.setup-card {
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  background: #F5F5F6;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  padding: 40px 20px 20px 20px;
}

@media (max-width: 991.98px) {
  .setup-req-section {
    border-radius: 12px;
    padding: 0 0.5rem;
  }
  .setup-req-container {
    padding: 1rem !important;
  }
  .setup-watermark {
    width: 100%;
    height: 120px;
    background-size: cover;
  }
}

@media (max-width: 767.98px) {
  .setup-req-section {
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  .setup-req-container {
    padding: 0.5rem !important;
  }
  .setup-card {
    min-height: 100px;
    font-size: 0.95rem;
  }
}

.nav-pill-bar {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.08);
  padding: 0.5rem 2.5rem;
  display: flex;
  align-items: center;
  margin-left: 2rem;
  margin-right: auto;
  min-width: 600px;
  max-width: 900px;
}

.nav-pill-bar .navbar-nav {
  flex-direction: row;
  gap: 2rem;
  margin: 0;
}

.nav-pill-bar .nav-link {
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-pill-bar .nav-link:hover,
.nav-pill-bar .nav-link.active {
  background: #f0f7ff;
  color: #2196f3;
}

@media (max-width: 900px) {
  .nav-pill-bar {
    min-width: 0;
    max-width: 100vw;
    padding: 0.5rem 1rem;
  }
  .nav-pill-bar .navbar-nav {
    gap: 1rem;
  }
  .nav-pill-bar .nav-link {
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }
}

@media (max-width: 991.98px) {
  .nav-pill-bar {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
    padding: 0.7rem 0.5rem;
    margin: 0.5rem 0 0 0;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.08);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-pill-bar .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: stretch;
  }
  .nav-pill-bar .nav-link {
    font-size: 1rem;
    padding: 0.7rem 1rem;
    text-align: left;
    border-radius: 12px;
  }
}

.fw-setup-req-title{
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #222;
}