:root {
  --blue: #073f96;
  --blue-dark: #063277;
  --orange: #ef7400;
  --ink: #10284f;
  --muted: #60708a;
  --line: #dce5f3;
  --soft: #f6faff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
}

.brand img,
.footer-logo {
  width: 160px;
  height: 78px;
  object-fit: cover;
  object-position: left top;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-info {
  color: #0e2a54;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding-right: 24px;
  border-right: 1px solid #cfd9ea;
  font-size: 14px;
  line-height: 1.35;
}

.info-item i {
  color: var(--orange);
  font-size: 24px;
}

.info-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.main-nav {
  background: var(--blue);
  min-height: 50px;
}

.main-nav .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 8px;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: #ffb15c;
}

.main-nav .nav-link.active {
  border-bottom: 3px solid var(--orange);
}

.btn {
  border-radius: 6px;
  font-weight: 700;
  padding: 11px 22px;
}

.btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(239, 116, 0, .22);
}

.btn-orange:hover {
  background: #d76500;
  border-color: #d76500;
  color: #fff;
}

.btn-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: #fff;
}

.btn-outline-blue {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.hero-slider {
  background: #eaf4ff;
}

.hero-slide {
  min-height: 390px;
  background-position: center right;
  background-size: cover;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 43%, rgba(255,255,255,.12) 75%);
}

.hero-lab {
  background-image: url("../assets/images/lab-hero-photo.png");
}

.hero-care {
  background-image: url("../assets/images/home-care.svg");
}

.hero-packages {
  background-image: url("../assets/images/packages-hero.svg");
}

.min-vh-hero {
  min-height: 390px;
  position: relative;
  z-index: 1;
}

.hero-slide h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: .98;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-slide h1 span {
  display: block;
  color: var(--orange);
}

.hero-slide h2 {
  color: #14213d;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
}

.hero-slide p {
  font-size: 19px;
  color: #24364f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 24px 0;
  font-size: 13px;
  font-weight: 700;
}

.feature-grid span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-grid i {
  color: var(--blue);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.priority-badge,
.family-badge {
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 35px rgba(3, 39, 85, .18);
  font-weight: 700;
}

.priority-badge strong {
  color: var(--orange);
  margin: 7px 0;
}

.priority-badge i {
  font-size: 34px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--blue);
}

.carousel-indicators .active {
  background-color: var(--orange);
}

.service-card,
.panel,
.package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(13, 59, 125, .06);
}

.service-card {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 12px;
  padding: 18px 16px;
}

.service-item {
  min-width: 0;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  color: #071e45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
}

.service-item i {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 1px solid #cad7ea;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 0;
}

.service-item span {
  display: block;
  width: 100%;
  min-height: 38px;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

@keyframes serviceAutoScroll {
  from {
    transform: translateX(0);
  }

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

.service-item:nth-child(2) i,
.service-item:nth-child(5) i,
.service-item:nth-child(9) i {
  color: var(--orange);
}

.panel {
  padding: 26px;
}

.panel h3,
.section-heading h3 {
  font-size: 25px;
  color: var(--blue);
  font-weight: 900;
  margin: 0 0 14px;
}

.panel h3 span,
.section-heading span,
.orange-text {
  color: var(--orange);
}

.title-line {
  width: 38px;
  height: 4px;
  background: var(--orange);
  border-radius: 8px;
  margin-bottom: 22px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 18px;
}

.choose-grid .facility-item {
  min-width: 0;
}

.choose-grid span {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.choose-grid i {
  color: var(--blue);
  font-size: 29px;
  line-height: 1;
}

.home-collection {
  background: linear-gradient(90deg, #fff 0%, #f8fbff 38%, #e6f4ff 100%);
  overflow: hidden;
  min-height: 245px;
  position: relative;
}

.home-collection::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 520px);
  height: 100%;
  background: url("../assets/images/sample-collection-photo.png") center right / cover no-repeat;
  z-index: 0;
}

.home-collection .row {
  position: relative;
  z-index: 1;
}

.home-collection .family-badge {
  display: none;
}

.home-collection ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  font-weight: 700;
  color: #22344d;
}

.home-collection li {
  margin-bottom: 9px;
}

.home-collection li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  color: var(--blue);
  margin-right: 9px;
}

.family-badge {
  background: var(--blue);
  color: #fff;
  border: 5px solid #e9770a;
  width: 142px;
  height: 142px;
  font-size: 18px;
}

.section-heading {
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  padding: 14px 18px;
}

.package-card {
  padding: 18px 14px;
  min-height: 170px;
  text-align: center;
}

.package-card i {
  color: var(--orange);
  font-size: 42px;
}

.package-card h4 {
  font-size: 16px;
  color: var(--blue);
  font-weight: 900;
  min-height: 40px;
  margin: 8px 0 10px;
}

.package-card p {
  color: var(--orange);
  font-size: 21px;
  font-weight: 900;
  margin: 0;
}

.package-card .mrp-price {
  display: inline-block;
  position: relative;
  color: #7c8798;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.package-card .mrp-price::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  background: #d71920;
  transform: rotate(-6deg);
}

.package-card em {
  display: block;
  color: #178245;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin: 3px 0 6px;
}

.stats-bar {
  background: var(--blue);
  color: #fff;
}

.stats-bar .col-6 {
  border-right: 1px solid rgba(255,255,255,.18);
}

.stats-bar i {
  color: #ff9a35;
  font-size: 34px;
  display: block;
}

.stats-bar strong {
  display: block;
  font-size: 18px;
}

.stats-bar span {
  display: block;
  font-size: 13px;
}

.report-panel input {
  margin-bottom: 12px;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.testimonial-wrap div {
  border-right: 1px solid var(--line);
  padding: 6px 10px;
}

.testimonial-wrap div:last-child {
  border-right: 0;
}

.testimonial-wrap p {
  font-size: 12px;
  color: #1b2b45;
}

.testimonial-wrap span {
  color: #f7a51d;
  display: block;
  letter-spacing: 2px;
}

.testimonial-wrap strong {
  display: block;
  color: var(--blue);
  font-size: 12px;
  margin-top: 12px;
}

.contact-panel a {
  display: block;
  color: #0e2a54;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.hours-panel {
  text-align: center;
}

.hours-panel strong {
  color: var(--blue);
}

.map-section {
  min-height: 150px;
  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("../assets/images/map-pattern.svg") center / cover;
  padding: 22px 0;
}

.map-card {
  max-width: 360px;
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(13, 59, 125, .18);
}

.map-card h4 {
  color: var(--blue);
  font-weight: 900;
  font-size: 17px;
}

.footer {
  background: var(--blue);
  color: #fff;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

.footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer h4 {
  font-size: 17px;
  font-weight: 900;
}

.footer-logo {
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-links {
  display: flex;
  gap: 14px;
  margin: 16px 0 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 23px;
}

.whatsapp-btn {
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  gap: 8px;
  background: #26b857;
  color: #fff !important;
  border-radius: 28px;
  padding: 12px 20px;
  font-weight: 800;
}

.copyright {
  background: #08347d;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .service-card {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 991px) {
  .info-item {
    border-right: 0;
    padding-right: 0;
  }

  .hero-slide::before {
    background: rgba(255,255,255,.9);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-collection::after {
    opacity: .45;
  }
}

@media (max-width: 767px) {
  .topbar {
    text-align: center;
  }

  .info-item {
    justify-content: center;
    width: 100%;
  }

  .hero-slide,
  .min-vh-hero {
    min-height: 520px;
  }

  .feature-grid,
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip .container {
    overflow: hidden;
  }

  .service-card.is-auto-scroll {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    min-width: max-content;
    gap: 14px;
    animation: serviceAutoScroll 30s linear infinite;
    will-change: transform;
  }

  .service-card.is-auto-scroll:hover {
    animation-play-state: paused;
  }

  .service-card.is-auto-scroll .service-item {
    flex: 0 0 126px;
    width: 126px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* =========================================
PAGINATION STYLE
========================================= */

.pagination{
    gap:10px;
}

.pagination .page-item{
    margin:0;
}

.pagination .page-link{

    background:#fff !important;
    color:var(--blue) !important;

    border:1px solid var(--line) !important;
    border-radius:8px !important;

    min-width:44px;
    height:44px;

    display:flex !important;
    align-items:center;
    justify-content:center;

    padding:0 16px !important;

    font-size:15px;
    font-weight:800;

    box-shadow:0 8px 22px rgba(13,59,125,.06);

    transition:all .25s ease;

}

.pagination .page-link:hover{

    background:var(--orange) !important;
    border-color:var(--orange) !important;
    color:#fff !important;

    transform:translateY(-2px);

}

.pagination .page-item.active .page-link{

    background:var(--blue) !important;
    border-color:var(--blue) !important;
    color:#fff !important;

    box-shadow:0 10px 24px rgba(7,63,150,.22);

}

.pagination .page-item.disabled .page-link{

    background:#eef3fb !important;
    border-color:#d8e2f1 !important;
    color:#9aa9c2 !important;

    opacity:1 !important;

    box-shadow:none;

}

.pagination .page-link:focus{

    box-shadow:0 0 0 0.2rem rgba(239,116,0,.15) !important;

}

@media (max-width:767px){

    .pagination{

        flex-wrap:wrap;
        justify-content:center;

    }

    .pagination .page-link{

        min-width:40px;
        height:40px;

        font-size:14px;

    }

}

/* =========================================
   SUCCESS ALERT STYLE
   ========================================= */
.custom-success-alert {
  position: fixed;
  inset: 0;
  background: rgba(16, 40, 79, 0.65);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease-out;
}
.custom-success-alert-content {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(7, 30, 69, 0.22);
  border: 1px solid var(--line);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-success-alert-content i {
  font-size: 3.8rem;
  color: #26b857;
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}
.custom-success-alert-content h4 {
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 22px;
}
.custom-success-alert-content p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================================
   SUPPORT BOT STYLE
   ========================================= */
.support-bot-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 63, 150, 0.35);
  z-index: 9999;
  transition: transform 0.3s ease, background 0.3s ease;
}
.support-bot-launcher:hover {
  transform: scale(1.08);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(239, 116, 0, 0.35);
}
.support-bot-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #26b857;
  border: 2px solid #fff;
  border-radius: 50%;
}
.support-bot-window {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 350px;
  max-width: calc(100vw - 48px);
  height: 480px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(13, 59, 125, 0.18);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.support-bot-header {
  background: var(--blue);
  color: #fff;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.support-bot-body {
  padding: 18px;
  overflow-y: auto;
  flex: 1;
  background: #fbfdff;
}
.support-bot-msg {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}
.support-bot-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.support-bot-faq-item:last-child {
  border-bottom: 0;
}
.support-bot-faq-question {
  font-weight: 800;
  font-size: 13px;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
.support-bot-faq-question:hover {
  color: var(--orange);
}
.support-bot-faq-answer {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
  display: none;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
