* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

p,
ul,
li {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'times new roman', sans-serif;
}



/* header */
header {
  position: unset;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

header .header-top {
  background-color: #7A1620;
  padding: 5px 0px;
}

.sticky .headermn {
  padding: 10px 0px;
}

header .header-top .top-info li,
header .header-top .top-info li a {
  color: #fff;
  font-size: 16px;
}

header .header-top .top-info li:last-child a {
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 50px;
  line-height: 28px;
  text-align: center;
  background-color: #fff;
  color: #7A1620;
  border: 1px solid #fff;
  transition: .5s;
}

header .headermn {
  background-color: #fff;
  padding: 10px 0;
}

header .headermn .navbar .navbar-brand {
  width: 15%;
}

header .nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: .5s;
  position: relative;
  padding: 0px 0px !important;
  text-transform: uppercase;
}

header .nav-link::after {
  content: '';
  background-color: #000;
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: .5s;
}

header .nav-link:hover::after {
  width: 100%;
}

header .nav-link:hover,
header .nav-link:focus {
  color: #000;
}

header .navbar-nav {
  gap: 20px;
}

header .navbar-toggler {
  border: none;
  color: #000;
  font-size: 28px;
  border-radius: 0;
}

header .navbar-toggler:focus {
  box-shadow: none;
}

header .offcanvas-title img {
  width: 34%;
}

header .navbar-nav {
  position: relative;
  align-items: center;
}

.sticky {
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed !important;
  top: 0px;
  animation: slideDown .5s ease-out;
  background-color: #fff;
  box-shadow: 0 0 10px #00000021;
}

.sticky .headermn .navbar .navbar-brand {
  width: 15%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(10);
  }
}

/* header .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #fff;
} */


/* Active Link */
header .navbar-nav .nav-link.active {
    color: #7A1620 !important;
}

/* Active Underline */
header .navbar-nav .nav-link.active::after {
    width: 100%;
    background: #7A1620;
}

/* Hover */
header .navbar-nav .nav-link:hover {
    color: #7A1620;
}

header .navbar-nav .nav-link:hover::after {
    width: 100%;
    background: #7A1620;
}

header .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 15px 0;
  box-shadow: 0 0 5px #0000002f;
}

header .dropdown-menu li .dropdown-item {
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 500;
}

header .dropdown-menu li .dropdown-item:hover {
  background-color: #000;
  color: #fff;
}


header .navbar .whatsapp li a {
     display: inline-block;
    padding: 8px 20px;
    color: #fff;
    border-radius: 30px;
    transition: .5s;
    font-weight: 600;
    border: 1px solid #7A1620;
    background-color: #7A1620;
    position: relative;
    transition: .5s;
    z-index: 1;
}

header .navbar .whatsapp li a:hover{
  width: 100%;
  background-color: #000;
   border: 1px solid #000;
}

header .navbar .whatsapp li a:hover {
  color: #fff;
}


/* about-page */

#about {
  overflow: hidden;
  padding: 50px 0px;
}

#about .imgs {
  overflow: hidden;
  border-radius: 15px;
  height: 440px;
}

#about .imgs img {
  transition: .5s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#about .imgs:hover img {
  transform: scale(1.1);
}

#about .content {
  margin-left: 30px;
}

#about .content ul {
  margin-top: 15px;
  margin-left: 20px;
}

#about .content ul li {
  margin-bottom: 5px;
  font-weight: 600;
}

#about .content h2 {
  font-weight: 600;
  color: #000;
  font-size: 45px;
  /* margin-top: 10px; */
}

#about .content h5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
}

#about .content h5::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#about .content h5::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}



#about .content .text-a {
  font-size: 16px;
  line-height: 28px;
  color: #222;
  margin: 0;
  padding-right: 110px;
  margin-top: 13px;
  text-align: justify;
}

.projectFactsWrap {
  gap: 90px;
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}

.projectFactsWrap .item {
  text-align: center;
  position: relative;
}

.projectFactsWrap .item .number::after {
  position: absolute;
  content: "+"
}

.projectFactsWrap .item p.number {
  font-size: 50px;
  color: #000;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p {
  color: #000;
  font-size: 18px;
  margin: 0;
}

/* video-img */

#video-img {
  background-image: url(../images/video-parallax-1-1-.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0px;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}

#video-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #7a162078;
  z-index: -1;
}

#video-img .content {
  text-align: center;
  /* margin-top: 60px; */
}

#video-img .content h2 {
  margin-bottom: 15px;
  font-size: 40px;
  letter-spacing: .6px;
  font-weight: 600;
  color: #fff;
}

#video-img .content p {
  font-size: 16px;
  color: #fff;
  width: 70%;
  text-align: center;
  margin: auto;
}

#video-img .content .enquiry-btn {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 30px;
  transition: .5s;
  border: 1px solid #7A1620;
  background-color: #7A1620;
  position: relative;
  transition: .5s;
  z-index: 1;
  margin-top: 10px;
}

#video-img .content .enquiry-btn:hover {
  background-color: #000000;
  border: 1px solid #000000;
}

.video-one .container {
  position: relative;
  padding-top: 320px;
  padding-bottom: 320px;
}

.video-one__btn {
  width: 110px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  -webkit-transition: 500ms;
  transition: 500ms;
  position: relative;
}

.video-one__btn:hover {
  background-color: #fff;
  color: #222;
}

.video-one__btn:before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: .4;
  top: calc(50% - 70px);
  left: calc(50% - 70px);
  -webkit-animation: videoBtnAnim 3s linear infinite;
  animation: videoBtnAnim 3s linear infinite;

}

.video-one__btn:after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: .15;
  top: calc(50% - 80px);
  left: calc(50% - 80px);
  -webkit-animation: videoBtnAnim 5s linear infinite;
  animation: videoBtnAnim 5s linear infinite;

}


@keyframes videoBtnAnim {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}



/* testimonial */
#testimonial {
  padding: 50px 0px;
  overflow: hidden;
  position: relative
}

#testimonial .container {
  position: relative;
  z-index: 1
}

#testimonial .testi-header {
  text-align: center;
  margin-bottom: 50px
}

#testimonial .testi-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 50px;
  padding: 6px 20px;
  margin-bottom: 18px
}

#testimonial h2 {
  text-align: center;
  font-size: 35px;
  letter-spacing: .6px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 50px;
}

#testimonial h2 span {
  color: #000
}

#testimonial .testi-sub {
  font-size: 15px;
  color: #000;
  font-weight: 300;
  margin: 0
}

#testimonial .iner {
  background: #000;
  border-radius: 12px 0 0 12px;
  padding: 38px 28px 34px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px
}

#testimonial .iner-topimg-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(212, 131, 44, .5);
  flex-shrink: 0
}

#testimonial .iner-topimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

#testimonial .iner .google {
  width: 90px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .85
}

#testimonial .testi-stars-main li {
  font-size: 22px;
  color: #000
}

#testimonial .iner-score {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 4px 0 0
}

#testimonial .iner-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #000;
  margin: 0
}

#testimonial .iner-count {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin: 0
}

#testimonial .iner-count strong {
  color: rgba(255, 255, 255, .80)
}

#testimonial .review-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #37221d;
  background: #ffffff;
  padding: 11px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  transition: background .3s ease, color .3s ease;
  -webkit-transition: background .3s ease, color .3s ease
}

#testimonial .review-btn:hover {
  background: #000;
  color: #fff
}

#testimonial .review-btn i {
  font-size: 13px
}

#testimonial .testi-slider-wrap {
  background: transparent;
  display: flex;
  align-items: center
}

#testimonial .testi-slider-wrap .owl-carousel,
#testimonial .testi-slider-wrap .owl-stage-outer,
#testimonial .testi-slider-wrap .owl-stage {
  height: 100%
}

#testimonial .testi-card {
  background: #ffffff;
  border: 1.5px solid #00056;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  -webkit-transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

#testimonial .testi-card:hover {
  box-shadow: 0 10px 32px rgba(212, 131, 44, .16);
  transform: translateY(-4px);
  border-color: rgba(212, 131, 44, .45)
}

#testimonial .testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

#testimonial .testi-card .star li {
  color: #000;
  font-size: 15px
}

#testimonial .testi-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: #00056;
  font-weight: 700
}

#testimonial .testi-msg {
  font-size: 14px;
  font-weight: 400;
  color: #4a3f30;
  line-height: 1.80;
  margin: 0;
  height: 150px;
  overflow-y: auto;
  padding-right: 6px
}

#testimonial .testi-msg::-webkit-scrollbar {
  width: 3px
}

#testimonial .testi-msg::-webkit-scrollbar-track {
  background: #00056;
  border-radius: 2px
}

#testimonial .testi-msg::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 2px
}

#testimonial .testi-msg::-webkit-scrollbar-thumb:hover {
  background: #000
}

#testimonial .testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #000;
  padding-top: 14px;
  margin-top: auto
}

#testimonial .testi-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

#testimonial .testi-foot-info h5 {
  color: #000;
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 700
}

#testimonial .testi-foot-info span {
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px
}

#testimonial .testi-foot-info span i {
  font-size: 12px
}

#testimonial .owl-theme .owl-dots {
  margin-top: 20px;
  text-align: left;
  padding-left: 28px
}

#testimonial .owl-theme .owl-dots .owl-dot span {
  background: rgba(26, 21, 7, .18);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all .3s ease;
  -webkit-transition: all .3s ease
}

#testimonial .owl-theme .owl-dots .owl-dot.active span,
#testimonial .owl-theme .owl-dots .owl-dot:hover span {
  background: #000;
  width: 24px;
  border-radius: 4px
}


/* why-choose */

#why-choose {
  padding: 50px 0px;
  background-color: #fff;
  overflow: hidden;
}

#why-choose .row {
  row-gap: 25px;
}

#why-choose .imgs {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 450px;
}

#why-choose .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#why-choose ul {
  columns: 2;
  margin-top: 25px;
  list-style: none;
}

#why-choose ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 22px;
  break-inside: avoid;
}

#why-choose ul li::before {
  content: "\f061";
  /* fa-arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #7A1620;
  /* apna color */
}

#why-choose .content {
  margin-left: 25px;
}

#why-choose .content h2 {
  font-weight: 600;
  color: #000;
  font-size: 45px;
  /* margin-top: 10px; */
}


#why-choose .content h5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
}

#why-choose .content h5::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#why-choose .content h5::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}


#why-choose .content p {
  font-size: 16px;
  line-height: 28px;
  color: #222;
  margin: 0;
  margin-top: 13px;
}

/* footer */

footer .footertop {
  background: #000;
  background-size: cover;
  padding: 30px 0;
}

footer .row {
  row-gap: 25px;
}

footer .footertop h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600
}

footer .footertop .about img {
  width: 60%;
}

footer .footertop .about p {
  color: #E2E8F0;
  font-size: 16px;
  /* width: 77%; */
  margin-top: 20px;
}

footer .footertop ul {
  list-style: none;
}

footer .footertop ul li {
  color: #E2E8F0;
  font-size: 16px;
  margin-top: 10px;
}

footer .footertop ul li a {
  color: #E2E8F0;
  font-size: 16px;
  transition: .5s;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

footer .footertop ul li a:hover {
  color: #ffffff;
}

footer .footertop .addres li {
  margin-bottom: 10px;
}

footer .footertop .addres li i {
  color: #E2E8F0;
  font-size: 16px;
}

footer .footerboo ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  border-top: 1px solid #ffffff;
  padding-top: 20px;
}

footer .footerboo {
  background-color: #000;
  padding: 20px;
}

footer .footerboo .soical li:first-child {
  color: #000;
  text-align: center;
}

footer .footerboo .soical li:first-child a {
  color: #ffffff;
  font-size: 16px;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #7A1620;
  border-radius: 50%;
  transition: .5s;
}

footer .footerboo .soical li:first-child a:hover {
  background-color: #E2E8F0;
  color: #7A1620;
}

footer .footerboo ul li img {
  width: 195px;
  background-color: #7A1620;
  padding: 0px 10px 8px;
  border-radius: 100px;
}


/* quickcontact */

.quickcontact {
  width: 45px;
  position: fixed;
  top: 77%;
  right: 15px;
  z-index: 102;
}

/* modal */

.modal form.row {
  row-gap: 20px;
}

.modal .btn-theme {
  border-radius: 0px;
  background: #000;
  color: #fff;
}

.modal .btn-theme:hover {
  background-color: #000;
  color: white;
}

.modal .form-control {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  background-color: #f1f1f1;
}

.modal .form-control:focus {
  border-color: #000;
}

.modal .submit {
  background-color: #000;
  color: #fff;
  font-weight: 500px;
  padding: 10px;
  border: 0;
  transition: .5s;
}

.modal .submit:hover {
  background-color: #000;
}

#hero-section {
      background-color: rgb(248 228 221 / 48%);
    background-image: radial-gradient(ellipse at 10% 50%, rgb(250 230 223 / 67%) 0%, #fbe8e4bd 60%), url(../images/banner-new.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#hero-section .row {
  row-gap: 20px;
}


#hero-section h5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
}

#hero-section h5::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#hero-section h5::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

/* === Text === */
#hero-section .hero-section-title {
  font-size: 38px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  /* text-align: left; */
  width: 70%;
}

#hero-section .hero-section-title span {
  color: #7A1620
}

#hero-section .hero-highlight-cursive {
  /* font-style: italic; */
  font-weight: 700;
}

#hero-section .hero-ptag {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
  font-weight: 600;
}

/* === Price === */
#hero-section .hero-price-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 20px;
}

#hero-section .hero-price-container {
  /* border: 2px solid #7A1620;
  border-radius: 8px; */
  overflow: hidden;
  display: flex;
  align-items: center;
}

#hero-section .hero-price-box {
  background: #7A1620;
  padding: 2px 10px;
  font-weight: bold;
  border-radius: 10px;
  font-size: 20px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
}

#hero-section .hero-price-box span {
  display: block;
  text-transform: capitalize;
  font-size: 15px;
}

#hero-section .hero-old-price {
  /* text-decoration: line-through;
  text-decoration-color: #7A1620; */
  font-size: 20px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  color: #7A1620;
  margin-left: 8px;
  margin-right: 8px;
}

#hero-section .hero-old-price span {
  display: block;
  text-transform: capitalize;
  font-size: 15px;
}

#hero-section .hero-discount-text {
    font-size: 15px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 10px;
  background: #fff;
  color: #7A1620;
  margin-left: 8px;
  margin-right: 8px;
}

#hero-section .hero-off-text {
  font-size:22px;
}

/* === Covers === */
#hero-section .hero-covers-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  max-width: 340px;
}

#hero-section .hero-covers-box .hero-img-cover img {
  width: 62px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(44%) saturate(2416%) hue-rotate(334deg) brightness(93%) contrast(95%);
}

/* === Form Wrapper === */
#hero-section .hero-form-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* === Family Image Left Chipki === */
#hero-section .hero-family-left {
  /* width: 110px;
  min-width: 90px; */
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

#hero-section .hero-family-left img {
  height: 340px;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

#hero-section .hero-family-right {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-right: -8px;
}

#hero-section .hero-family-right img {
  height: 340px;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

/* === Form Box === */
#hero-section .hero-form-box {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  color: black;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  text-align: center;
}

#hero-section .hero-form-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  color: #7A1620;
}

#hero-section .hero-form-title::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#hero-section .hero-form-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#hero-section .hero-form-heading {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

#hero-section .hero-form-control {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #A5A5A5;
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  outline: none;
  color: #333;
  background: #fff;
  display: block;
}

#hero-section .hero-form-control:focus {
  border-color: #000;
}

#hero-section .enquiryForm button {
  background-color: #7A1620;
  color: white;
  border: 1px solid #7A1620;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#hero-section .enquiryForm button:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}

@media(max-width:480px) {
  #hero-section .hero-family-left {
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  #hero-section .hero-family-right {
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  #hero-section .hero-form-heading {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
  }

  #hero-section .hero-family-left img {
    height: 160px;
  }

  #hero-section .hero-family-right img {
    height: 160px;
  }

  #hero-section .enquiryForm button {
    padding: 6px 0;
    font-size: 12px;
  }

  #hero-section .hero-section-title {
    font-size: 25px;
    text-align: center;
  }

  #hero-section .hero-ptag {
    font-size: 15px;
    text-align: center;
  }

  #hero-section .hero-off-text {
    font-size: 15px;
  }

  #hero-section .hero-old-price {
    font-size: 15px;
  }

  #hero-section .hero-price-box {
    font-size: 15px;
  }

  #hero-section .hero-price-wrapper {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  #hero-section .hero-section-title {

    width: 100%;
  }

}










#lab-highlights {
  background:#f8e4dd;
  padding: 25px 0px;
}

#lab-highlights .feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

#lab-highlights .icon {
  color: #000;
}

#lab-highlights .icon img {
  width: 45px;
  filter: brightness(0) saturate(100%)
            invert(13%) sepia(44%) saturate(2416%)
            hue-rotate(334deg) brightness(93%) contrast(95%);
}

#lab-highlights .content {
  text-align: left;
}

#lab-highlights h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #000;
}

#lab-highlights p {
  margin: 0;
  font-size: 18px;
  color: #222;
}




/*blog-page-css*/
#blog-page {
  padding: 40px;
  background: #fff
}

#blog-page .blog-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
  margin-bottom: 10px;
}

#blog-page .blog-section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620
}

#blog-page .blog-section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620
}

#blog-page .blog-section-heading {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
}

#blog-page .blog-section-heading span {
  color: #000;
}

#blog-page .blog-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e8e4dc;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

#blog-page .blog-card:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.10);
  transform: translateY(-6px);
}

#blog-page .blog-card .card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

#blog-page .blog-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
}

#blog-page .blog-card:hover .card-thumb img {
  transform: scale(1.07);
}

#blog-page .blog-card .card-cat {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
}

#blog-page .blog-card .card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #000;
  transition: width 0.4s ease;
}

#blog-page .blog-card:hover .card-thumb::after {
  width: 100%;
}

#blog-page .blog-card .card-body {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

#blog-page .blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

#blog-page .blog-card .card-meta .meta-item {
  font-size: 12px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
}

#blog-page .blog-card .card-meta .meta-item i {
  color: #7A1620;
  font-size: 12px;
}

#blog-page .blog-card .card-meta .meta-dot {
  width: 3px;
  height: 3px;
  background: #e8e4dc;
  border-radius: 50%;
}

#blog-page .blog-card .card-title {
  font-size: 22px;
  font-weight: 600;
  color: #111917;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  transition: color 0.25s;
  cursor: pointer;
}


#blog-page .blog-card:hover .card-title {
  color: #000;
}

#blog-page .blog-card .card-title:hover {
  color: #7A1620;
}

#blog-page .blog-card .card-desc {
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
  flex: 1;
}

#blog-page .blog-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.25s, gap 0.25s;
}

#blog-page .blog-card .card-link:hover {
  color: #7A1620;
  border-bottom: 1px solid #7A1620;
  gap: 14px;
}

#blog-page .blog-card .card-link i {
  font-size: 11px;
  transition: transform 0.25s;
}

#blog-page .blog-card .card-link:hover i {
  transform: translateX(4px);
}



/* ==========================
   TEST SLIDER SECTION
========================== */

#test-slider-section {
  background: #fff;
  padding: 40px;
}

#test-slider-section .test-slider-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
  margin-bottom: 10px;
}

#test-slider-section .test-slider-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#test-slider-section .test-slider-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#test-slider-section .view-all-link {
  color: #7A1620;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
}

#test-slider-section .test-slider-heading {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
}

#test-slider-section .test-slider-heading span{
  color:#7A1620;}

#test-slider-section .test-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .12);
  transition: .3s;
  margin: 0 12px 10px;
}

#test-slider-section .test-card:hover {
  transform: translateY(-5px);
}

#test-slider-section .test-header {
  background: #7A1620;
  padding: 14px 18px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .3px;
  border-radius: 20px 20px 0px 0px;
  border: 1px solid #7A1620;
}

#test-slider-section .test-body {
  padding: 20px 22px;
}

#test-slider-section .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 10px;
}

#test-slider-section .info-row i {
  font-size: 18px;
  color: #7a1620;
  margin-top: 2px;
  flex-shrink: 0;
}

#test-slider-section .info-row .read-more {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

#test-slider-section .info-row .read-more:hover {
  text-decoration: underline;
  color: #7A1620;
}

#test-slider-section .daily-text,
#test-slider-section .parameter-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#test-slider-section .daily-text i,
#test-slider-section .parameter-text i {
  color: #7A1620;
  font-size: 16px;
}

#test-slider-section .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 22px;
}

#test-slider-section .old-price {
  text-decoration: line-through;
  color: #000;
  font-size: 22px;
  margin-right: 10px;
}

#test-slider-section .new-price {
  color: #7A1620;
  font-size: 32px;
  font-weight: 700;
}

#test-slider-section .discount-badge {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #7a1620;
    background-color: #f8e4dd;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50%;
}

#test-slider-section .discount-badge .blob {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#test-slider-section .discount-badge .badge-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

#test-slider-section .discount-badge .badge-text span {
  font-size: 26px;
  line-height: 1;
}

#test-slider-section .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#test-slider-section .book-btn {
  background: #7A1620;
  color: #fff;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

#test-slider-section .book-btn:hover {
  background:#000;
}

#test-slider-section .book-btn span {
  width: 24px;
  height: 24px;
  background: #ffffff;
  color:#7A1620;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#test-slider-section .know-more {
  color: #7A1620;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

#test-slider-section .know-more:hover {
  text-decoration: underline;
  color: #7A1620;
}

/* Owl Carousel overrides */
#test-slider-section .owl-carousel .owl-stage-outer {
  padding: 10px 0 30px;
}

#test-slider-section .owl-dots {
  text-align: center;
  margin-top: 10px;
}

#test-slider-section .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 5px;
  background: #7A1620;
  opacity: .35;
  border-radius: 50%;
}

#test-slider-section .owl-dots .owl-dot.active span {
  opacity: 1;
}

#test-slider-section .owl-nav button.owl-prev,
#test-slider-section .owl-nav button.owl-next {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  font-size: 20px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#test-slider-section .owl-nav button.owl-prev {
  left: -50px;
}

#test-slider-section .owl-nav button.owl-next {
  right: -50px;
}




/* ==========================
   SEASONAL DISEASES SECTION
========================== */

#seasonal-diseases-section {
  background:#f8e4dd;
  padding: 40px;
}

#seasonal-diseases-section .blog-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
  margin-bottom: 10px;
}

#seasonal-diseases-section .blog-section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#seasonal-diseases-section .blog-section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#seasonal-diseases-section .blog-section-heading {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
}


#seasonal-diseases-section .view-all-link {
  color: #7A1620;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
}

#seasonal-diseases-section .test-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .12);
  transition: .3s;
  margin: 0 12px 10px;
}

#seasonal-diseases-section .test-card:hover {
  transform: translateY(-5px);
}

#seasonal-diseases-section .test-header {
  background: #7A1620;
  padding: 14px 18px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .3px;
  border-radius: 20px 20px 0px 0px;
  border: 1px solid #7A1620;
}

#seasonal-diseases-section .test-body {
  padding: 20px 22px;
}

#seasonal-diseases-section .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  min-height: auto;
  margin-bottom: 14px;
}

#seasonal-diseases-section .info-row i {
  font-size: 18px;
  color: #7A1620;
  margin-top: 2px;
  flex-shrink: 0;
}

#seasonal-diseases-section .daily-text,
#seasonal-diseases-section .parameter-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#seasonal-diseases-section .daily-text i,
#seasonal-diseases-section .parameter-text i {
  color: #7A1620;
  font-size: 16px;
}

#seasonal-diseases-section .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 22px;
}

#seasonal-diseases-section .old-price {
  text-decoration: line-through;
  color: #000;
  font-size: 22px;
  margin-right: 10px;
}

#seasonal-diseases-section .new-price {
  color: #7A1620;
  font-size: 32px;
  font-weight: 700;
}

#seasonal-diseases-section .discount-badge {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #7a1620;
  background-color: #f8e4dd;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50%;
}

#seasonal-diseases-section .discount-badge .badge-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

#seasonal-diseases-section .discount-badge .badge-text span {
  font-size: 20px;
  line-height: 1;
}

#seasonal-diseases-section .info-row .read-more {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

#seasonal-diseases-section .info-row .read-more:hover {
  text-decoration: underline;
  color: #7A1620;
}

#seasonal-diseases-section .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#seasonal-diseases-section .book-btn {
  background: #7A1620;
  color: #fff;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

#seasonal-diseases-section .book-btn span {
  width: 24px;
  height: 24px;
  background: #fff;
  color: #7A1620;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#seasonal-diseases-section .book-btn:hover {
  background:#000
}

#seasonal-diseases-section .know-more {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

#seasonal-diseases-section .know-more:hover {
  text-decoration: underline;
  color: #7A1620
}

/* Owl Carousel overrides */
#seasonal-diseases-section .owl-carousel .owl-stage-outer {
  padding: 10px 0 30px;
}

#seasonal-diseases-section .owl-dots {
  text-align: center;
  margin-top: 10px;
}

#seasonal-diseases-section .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 5px;
  background: #7A1620;
  opacity: .35;
  border-radius: 50%;
}

#seasonal-diseases-section .owl-dots .owl-dot.active span {
  opacity: 1;
}

#seasonal-diseases-section .owl-nav button.owl-prev,
#seasonal-diseases-section .owl-nav button.owl-next {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  font-size: 20px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#seasonal-diseases-section .owl-nav button.owl-prev {
  left: -50px;
}

#seasonal-diseases-section .owl-nav button.owl-next {
  right: -50px;
}


/* ==========================
   HEALTH CONCERN SLIDER SECTION
========================== */

#health-concern-slider-section {
  background: #fff;
  padding: 40px;
}

#health-concern-slider-section .blog-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
  margin-bottom: 10px;
}

#health-concern-slider-section .blog-section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#health-concern-slider-section .blog-section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#health-concern-slider-section .blog-section-heading {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
}



#health-concern-slider-section .head-wrap {
  text-align: center;
}

#health-concern-slider-section .concern-item {
  text-align: center;
  cursor: pointer;
}

#health-concern-slider-section .concern-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid #e9e9e9;
  transition: .3s;
}



#health-concern-slider-section .concern-item:hover .concern-circle {
  background: #fff;
  transform: translateY(-4px);
}

#health-concern-slider-section .concern-circle img {
  width: 90px;
  height: 90px;
}

#health-concern-slider-section .concern-label a {
  font-size: 17px;
  color: #333;
  font-weight: 500;
}

/* Owl Carousel overrides */
#health-concern-slider-section .owl-carousel .owl-stage-outer {
  padding: 10px 0 20px;
}

#health-concern-slider-section .owl-dots {
  text-align: center;
  margin-top: 15px;
}

#health-concern-slider-section .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 5px;
  background: #7A1620;
  opacity: .35;
  border-radius: 50%;
}

#health-concern-slider-section .owl-dots .owl-dot.active span {
  background: #7A1620;
  opacity: 1;
}

#health-concern-slider-section .owl-nav {
  display: none;
}



#contact-breadcrumb {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#contact-breadcrumb .breadcrumb-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#contact-breadcrumb .breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: #f8e4dd7a;
  z-index: 2;
}

#contact-breadcrumb .container {
  position: relative;
  z-index: 3;
}

#contact-breadcrumb .breadcrumb-content {
  max-width: 700px;
}

#contact-breadcrumb .breadcrumb-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7A1620;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

#contact-breadcrumb .breadcrumb-subtitle span {
  width: 45px;
  height: 3px;
  background: #7A1620;
}

#contact-breadcrumb h2 {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}



@media(max-width:991px) {

  #contact-breadcrumb {
    height: 450px;
  }

  #contact-breadcrumb h2 {
    font-size: 42px;
  }

  #contact-breadcrumb .share-btn {
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media(max-width:767px) {

  #contact-breadcrumb {
    height: 400px;
  }


  #contact-breadcrumb h2 {
    font-size: 30px;
  }

  #contact-breadcrumb .breadcrumb-subtitle {
    font-size: 15px;
  }
}

#laboratory-cta-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: url('../images/lab-cta-bg.jpg') center center/cover no-repeat;
}

/* Overlay */
#laboratory-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7a162078;
  z-index: 1;
}

#laboratory-cta-section .container {
  position: relative;
  z-index: 3;
}

#laboratory-cta-section .laboratory-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

#laboratory-cta-section .laboratory-cta-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

#laboratory-cta-section .laboratory-cta-icon {
  width: 95px;
  height: 95px;
  min-width: 95px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

#laboratory-cta-section .laboratory-cta-icon i {
  font-size: 50px;
  margin-top: 11px;
  object-fit: contain;
  color: #7A1620;
}

#laboratory-cta-section .laboratory-cta-content h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

#laboratory-cta-section .laboratory-cta-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

#laboratory-cta-section .laboratory-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: .3s ease;
  border-radius: 30px
}

#laboratory-cta-section .laboratory-cta-btn:hover {
  background: #7A1620;
  border-color: #7A1620;
  color: #fff;
}

#laboratory-cta-section .laboratory-cta-btn i {
  font-size: 18px;
}

@media (max-width: 991px) {

  #laboratory-cta-section .laboratory-cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  #laboratory-cta-section .laboratory-cta-left {
    flex-direction: column;
  }

  #laboratory-cta-section .laboratory-cta-content h2 {
    font-size: 30px;
  }

  #laboratory-cta-section .laboratory-cta-content p {
    font-size: 16px;
  }
}



/* contact */
#contact {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

#contact .contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

#contact .contact-header .contact-label-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #7A1620;
  border-radius: 2px;
}

#contact .contact-header .contact-label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #7A1620;
}

#contact .contact-heading {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
}

#contact .contact-heading span {
  color: #7A1620;
}

#contact .contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

#contact .contact-form-wrap .contact-form-title {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

#contact .contact-form-wrap .contact-form-sub {
  font-size: 14px;
  font-weight: 300;
  color: #222;
  margin-bottom: 28px;
}

#contact .contact-form-wrap .contact-field {
  position: relative;
}

#contact .contact-form-wrap .contact-field i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #7A1620;
  font-size: 13px;
  z-index: 1;
}

#contact .contact-form-wrap .contact-field.contact-textarea i {
  top: 16px;
  transform: none;
}

#contact .contact-form-wrap .contact-field .form-control {
  padding-left: 38px;
  height: 48px;
  border: 1px solid #f6f6f6;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  background: #f6f6f6;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact .contact-form-wrap .contact-field .form-control:focus {
  border-color: #7A1620;
  box-shadow: 0 0 0 3px 1px solid rgb(0 0 0 / 8%);
  background: #fff;
}

#contact .contact-form-wrap .contact-field textarea.form-control {
  height: 120px;
  padding-top: 14px;
  resize: none;
}

#contact .contact-form-wrap .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  gap: 10px;
  background: #7A1620;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 60px;
  margin-top: 10px;
  font-weight: 600;
  transition: .4s;
}

#contact .contact-form-wrap .contact-btn:hover {
  background: #7A1620;
  color: #fff;
  transform: translateY(-3px);

}

#contact .contact-info-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

#contact .contact-info-wrap .contact-info-title {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(208, 65, 14, 0.1);
}

#contact .contact-info-wrap .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

#contact .contact-info-wrap .contact-info-item:last-child {
  margin-bottom: 0;
}

#contact .contact-info-wrap .contact-info-item .contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #f6f6f6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f6f6f6;
}

#contact .contact-info-wrap .contact-info-item .contact-info-icon i {
  color: #7A1620;
  font-size: 16px;
}

#contact .contact-info-wrap .contact-info-item .contact-info-body h5 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7A1620;
  margin-bottom: 6px;
}

#contact .contact-info-wrap .contact-info-item .contact-info-body p,
#contact .contact-info-wrap .contact-info-item .contact-info-body a {
  font-size: 14.5px;
  font-weight: 300;
  color: #222;
  text-decoration: none;
  line-height: 1.7;
  display: block;
  transition: color 0.3s ease;
}

#contact .contact-info-wrap .contact-info-item .contact-info-body a:hover {
  color: #7A1620;
}

#contact .contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

#contact .contact-map iframe {
  display: block;
  width: 100%;
}




/* Blog Detail Section */
#blog-detail {
  background: #fff;
  padding: 40px 0;
  color: #222;
  line-height: 1.6;
}

/* Blog Image */
#blog-detail img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog Heading */
#blog-detail h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #000;
  margin-bottom: 0.75rem;
}

/* Post Meta (Author & Date) */
#blog-detail .post-meta {
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

#blog-detail .post-meta i {
  margin-right: 0.35rem;
  color: #7A1620;
}

#blog-detail .post-meta .author,
#blog-detail .post-meta .date {
  display: flex;
  align-items: center;
}

/* Paragraphs */
#blog-detail article p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #222;
  line-height: 1.8;
}

/* Sidebar Styling */
#blog-detail .sidebar {
background: #fff;
    border: 1px solid #7A1620;
    border-radius: 18px;
    box-shadow: 0 4px 15px #7A1620;
    padding: 22px 24px;
    position: sticky;
    top: 100px;
}

/* Sidebar Heading */
#blog-detail .sidebar h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #7A1620;
  padding-left: 1rem;
  color: #7A1620;
}

/* Recent Posts */
#blog-detail .recent-post {
  transition: background-color 0.3s ease;
  padding: 8px 6px;
  border-radius: 6px;
}

#blog-detail .recent-post:hover {
  background-color: #7A162038;
}

/* Recent Post Images */
#blog-detail .recent-post img.post-thumb {
  border-radius: 6px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Recent Post Links */
#blog-detail .recent-post a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
}

#blog-detail .recent-post a:hover {
  color: #7A1620;
  text-decoration: underline;
}

/* Date Text */
#blog-detail .recent-post small {
  font-size: 0.8rem;
  color: #999;
}

/* Responsive */
@media (max-width: 767.98px) {
  #blog-detail .sidebar {
    margin-top: 2rem;
  }
}


#counter {
  padding: 40px 0;
  background: #f8e4dd;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#counter .row {
  row-gap: 25px;
}

#counter .counter-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
}

#counter .counter-box:hover {
  transform: translateY(-5px);
}

#counter .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #f8e4dd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: 0.3s;
}

#counter .icon img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}

#counter .counter-box:hover .icon {
  background: #7A1620;
}

#counter .counter-box:hover .icon img {
  filter: brightness(0) invert(1);
}

#counter h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0;
  color: #000;
}

#counter p {
  color: #7A1620;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

/* Shapes */
#counter .shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

#counter .shape-left {
  left: -260px;
  top: 0;
  animation: FocuS 2s linear infinite;
}

#counter .shape-right {
  right: -260px;
  bottom: 0;
  animation: FocuS 2s linear infinite;
}

@keyframes FocuS {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  #counter {
    padding: 60px 0;
  }

  #counter h2 {
    font-size: 32px;
  }

  #counter p {
    font-size: 16px;
  }
}

#health-package {
  background: #fff;
  padding: 40px 0;
}

#health-package .blog-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A1620;
  margin-bottom: 10px;
}

#health-package .blog-section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#health-package .blog-section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #7A1620;
}

#health-package .blog-section-heading {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}

#health-package .view-all-link {
  color: #7A1620;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
}


/* ===== Filter / Sort box (frontend UI only, no backend logic) ===== */
#health-package .filter-box {
  background: #fff;
  border: 1px solid #7A1620;
  border-radius: 18px;
  box-shadow: 0 4px 15px #7A1620;
  padding: 22px 24px;
  position: sticky;
  top: 100px;
}

#health-package .filter-toggle-checkbox {
  display: none;
}

#health-package .filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

#health-package .filter-head-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  margin: 0;
}

#health-package .filter-head h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

#health-package .filter-arrow {
  display: none;
  font-size: 16px;
  color: #000;
  transition: .3s;
}

#health-package .clear-filter {
  font-size: 14px;
  font-weight: 600;
  color: #7A1620;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

#health-package .clear-filter:hover {
  text-decoration: underline;
}

#health-package .filter-body {
  display: block;
}

#health-package .filter-group {
  border-bottom: 1px solid #ececec;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

#health-package .filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 18px;
}

#health-package .filter-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

#health-package .filter-options {
  /*display: flex;*/
  /*flex-direction: column;*/
  /*gap: 10px;*/
  
      display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

#health-package .radio-row,
#health-package .check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222;
  cursor: pointer;
}

#health-package .radio-row input[type="radio"],
#health-package .check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #7A1620;
  cursor: pointer;
}

#health-package .apply-filter-btn {
  width: 100%;
  background: #7A1620;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

#health-package .apply-filter-btn:hover {
  background: #000;
}

/* ===== Products grid ===== */
#health-package .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#health-package .test-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .12);
  transition: .3s;
  height: 100%;
}

#health-package .test-card:hover {
  transform: translateY(-5px);
}

#health-package .test-header {
     background: #7A1620;
    padding: 14px 18px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: .3px;
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #7A1620;
}

#health-package .test-body {
  padding: 20px 22px;
}

#health-package .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  min-height: auto;
  margin-bottom: 14px;
}

#health-package .info-row i {
  font-size: 18px;
  color: #777;
  margin-top: 2px;
  flex-shrink: 0;
}

#health-package .daily-text,
#health-package .parameter-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#health-package .daily-text i,
#health-package .parameter-text i {
  color: #777;
  font-size: 16px;
}

#health-package .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px 22px;
}

#health-package .old-price {
    text-decoration: line-through;
    color: #000;
    font-size: 22px;
    margin-right: 10px;
}
#health-package .new-price {
    color: #7A1620;
    font-size: 32px;
    font-weight: 700;
}

#health-package .discount-badge {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #7a1620;
    background-color: #f8e4dd;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
}

#health-package .discount-badge .badge-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
#health-package .discount-badge .badge-text span {
    font-size: 26px;
    line-height: 1;
}

#health-package .info-row .read-more {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

#health-package .info-row .read-more:hover {
    text-decoration: underline;
    color: #7A1620;
}
#health-package .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#health-package .book-btn {
  background: #7A1620;
  color: #fff;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

#health-package .book-btn span {
  width: 24px;
  height: 24px;
  background: #fff;
  color: #7A1620;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#health-package .book-btn:hover {
  background:  #000;
}

#health-package .know-more {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

#health-package .know-more:hover {
  text-decoration: underline;
  color: #7A1620
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  #health-package .row {
    flex-direction: column;
  }

  #health-package .filter-box {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }

  #health-package .filter-head {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  #health-package .filter-head-label {
    cursor: pointer;
    flex: 1;
  }

  #health-package .filter-arrow {
    display: inline-block;
  }

  #health-package .filter-body {
    display: none;
    padding-top: 16px;
    margin-top: 14px;
    border-top: 1px solid #ececec;
  }

  #health-package .filter-toggle-checkbox:checked~.filter-body {
    display: block;
  }

  #health-package .filter-toggle-checkbox:checked~.filter-head .filter-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 575px) {
  #health-package .products-grid {
    grid-template-columns: 1fr;
  }
}


#package-detail {
  background: #fff;
  padding: 40px 0;
  font-family: math;
}


#package-detail .pd-current {
  color: #000;
  font-weight: 600;
}

/* ===== Layout ===== */
#package-detail .row {
  row-gap: 20px;
}


/* ===== Left column ===== */
#package-detail .pd-tag {
     display: inline-block;
       background: #f8e4dd;
    color: #7a1620;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

#package-detail .pd-title {
  font-size: 32px;
  font-weight: 700;
  color: #7a1620;
  margin: 0 0 18px;
  line-height: 1.25;
}

#package-detail .pd-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}

#package-detail .pd-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #222;
}

#package-detail .pd-meta-item i {
  color: #7A1620;
  font-size: 18px;
}

#package-detail .pd-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8e4dd;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 30px;
}

#package-detail .pd-info-card i {
  font-size: 18px;
  color: #7A1620;
  margin-top: 2px;
  flex-shrink: 0;
}

#package-detail .pd-section {
  margin-bottom: 32px;
  padding-left:20px;
}

#package-detail .pd-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #7a1620;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
}

#package-detail .pd-section-text {
  font-size: 15px;
  color: #222;
  line-height: 1.8;
  margin: 0;
}

#package-detail .pd-param-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#package-detail .pd-param-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 30px;
  padding: 9px 16px;
  font-size: 15px;
  color: #000;
  font-weight: 600;
}

#package-detail .pd-param-chip i {
  color: #7A1620;
  font-size: 16px;
}

#package-detail .pd-list {
  margin: 0;
  padding-left: 20px;
  color: #222;
  font-size: 15px;
  line-height: 1.9;
}

#package-detail .pd-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#package-detail .pd-prep-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f7e3dc;
  border-radius: 14px;
  padding: 16px;
}

#package-detail .pd-prep-item i {
  font-size: 22px;
  color: #7A1620;
  margin-top: 2px;
  flex-shrink: 0;
}

#package-detail .pd-prep-item strong {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;
}

#package-detail .pd-prep-item p {
  margin: 0;
  font-size: 14px;
  color: #222;
}

/* ===== Right column : booking card ===== */
#package-detail .pd-book-card {
 background: #fff;
    border: 1px solid #7A1620;
    border-radius: 18px;
    box-shadow: 0 4px 15px #7A1620;
    padding: 22px 24px;
  position: sticky;
  top: 100px;
}

#package-detail .pd-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

#package-detail .pd-new-price {
  color: #7A1620;
  font-size: 30px;
  font-weight: 700;
}

#package-detail .pd-old-price {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
}

#package-detail .pd-discount {
  background: #7A1620;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
}

#package-detail .pd-book-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ececec;
}

#package-detail .pd-book-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #222;
}

#package-detail .pd-book-meta-item i {
  color: #7A1620;
  font-size: 17px;
  flex-shrink: 0;
}

#package-detail .pd-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #7A1620;
  color: #fff;
  padding: 13px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

#package-detail .pd-book-btn span {
  width: 24px;
  height: 24px;
  background: #fff;
  color: #7A1620;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#package-detail .pd-book-btn:hover {
  background: #000;
}

#package-detail .pd-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

#package-detail .pd-call-btn i {
  color: #7A1620;
}

#package-detail .pd-call-btn:hover {
  text-decoration: underline;
  color: #7A1620;
}



/* ===== Responsive ===== */
@media (max-width: 991px) {
  #package-detail .pd-row {
    flex-direction: column;
  }

  #package-detail .pd-col-left,
  #package-detail .pd-col-right {
    width: 100%;
  }

  #package-detail .pd-book-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 575px) {
  #package-detail {
    padding: 24px 0px;
  }

  #package-detail .pd-title {
    font-size: 24px;
  }

  #package-detail .pd-prep-grid {
    grid-template-columns: 1fr;
  }
}

.theme-btn{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #000;
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.theme-btn:hover{
    background:#7A1620;
    transform: translateY(-3px);
}

.theme-btn i{
    font-size:18px;
}

#about .content p{
    font-size: 16px;
    line-height: 28px;
    color: #222;
    margin: 0;
    /*padding-right: 110px;*/
    margin-top: 13px;
    text-align: justify;
}