/********** Template CSS **********/
:root {
  --primary: #ffc107;
  --secondary: white;
  --light: #eef9ff;
  --dark: #3e0935;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Space between icon and image */
}

.logo-container img {
  width: 500px;
  height: auto;
  max-width: 23%;
}

/* Responsive - for small screens */
@media (max-width: 768px) {
  .logo-container img {
    width: 120px;
  }
}

/* For even smaller screens like mobile */
@media (max-width: 480px) {
  .logo-container img {
    width: 220px;
  }
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3 {
  font-size: 19px !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 53px;
  height: 100%;
  top: 0;
  left: -26px;
  background: #d59f35;
  transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  color: #2e2a2b;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: bold;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #2196f336;*/
  /* background: rgba(9, 30, 62, 0.85); */
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (min-width: 991.98px) {
  .banner {
    position: relative;
    margin-top: -90px;
    z-index: 1;
  }
}

.section-title h5::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 3px;
  right: -55px;
  bottom: 11px;
  background: var(--primary);
}

.section-title h5::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  right: -75px;
  bottom: 11px;
  background: var(--secondary);
}

.vrl-services-section {
  background: #f8fbff;
  overflow: hidden;
}

.section-tag {
  display: inline-block;
  background: #d59f35;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #d59f35;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: auto;
}

.service-box {
  position: relative;
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  overflow: hidden;
  transition: .5s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      #f2c160,
      #dc9c1d,
      #836a38);
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.service-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, .25);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d59f35, #ebc372);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transition: .5s;
}

.service-box:hover .service-icon {
  transform: rotateY(180deg);
}

.service-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0b2447;
  margin-bottom: 15px;
}

.service-box p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-btn {
  color: #d59f35;
  font-weight: 700;
  letter-spacing: .5px;
}

.service-box:hover .service-btn {
  letter-spacing: 2px;
}

@media(max-width:768px) {

  .section-title {
    font-size: 30px;
  }

  .service-box {
    padding: 25px;
  }
}

/*  */
.vrl-services-section {
  background: #f8fbff;
  overflow: hidden;
}

.section-tag {
  display: inline-block;
  background: #d59f35;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b2447;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: auto;
}

.service-box {
  position: relative;
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  overflow: hidden;
  transition: .5s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      #fdcd6e,
      #d59f35,
      #7b5d21);
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.service-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, .25);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d59f35, #ffd071);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transition: .5s;
}

.service-box:hover .service-icon {
  transform: rotateY(180deg);
}

.service-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0b2447;
  margin-bottom: 15px;
}

.service-box p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-btn {
  color: #d59f35;
  font-weight: 700;
  letter-spacing: .5px;
}

.service-box:hover .service-btn {
  letter-spacing: 2px;
}

@media(max-width:768px) {

  .section-title {
    font-size: 30px;
  }

  .service-box {
    padding: 25px;
  }
}

/*  */

.twentytwenty-wrapper {
  height: 100%;
}

.hero-header {
  background: linear-gradient(rgba(62, 54, 9, 0.85), rgba(237, 192, 115, 0.85)),
    url(../img/about.jpg) center center no-repeat;
  background-size: cover;
}

.bg-appointment {
  background: linear-gradient(rgba(111, 94, 239, 0.85),
      rgba(119, 122, 126, 0.85)),
    url(https://wallpapers.com/images/hd/healthcare-dark-blue-9uf75rphfjhynqnz.jpg) center center no-repeat;
  background-size: cover;
}

.appointment-form {
  background: #d81b60;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
  position: absolute;
  content: "";
  top: 50%;
  bottom: 0;
  left: 15px;
  right: 15px;
  border-radius: 100px / 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
  opacity: 1;
}

.bg-offer {
  background: url("https://i.pinimg.com/736x/c6/7c/c1/c67cc114fc289a3eacc442da873053b2.jpg") center center no-repeat;
  background-size: cover;
}

.offer-text {
  background: #ec1e79;
}

.price-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 45px);
  height: 45px;
  top: calc(50% - 22.5px);
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
}

.price-carousel:hover .owl-nav {
  opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.bg-testimonial {
  background: url(../img/services/test.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  background: rgba(236, 30, 121, 0.5);
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 46px);
  height: 46px;
  top: calc(50% - 23px);
  left: -23px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.testimonial-carousel .owl-item img {
  width: 120px;
  height: 120px;
}

h1 {
  font-family: sans-serif;
}

.olcards,
.olcards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.olcards {
  list-style: none;
  counter-reset: cardCount;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  --cardsGap: 1rem;
  gap: var(--cardsGap);
  padding-bottom: var(--cardsGap);
}

.olcards li {
  counter-increment: cardCount;
  display: flex;
  color: white;
  --labelOffset: 1rem;
  --arrowClipSize: 1.5rem;
  margin-top: var(--labelOffset);
}

.olcards li::before {
  content: counter(cardCount, decimal-leading-zero);
  background: white;
  color: var(--cardColor);
  font-size: 2em;
  font-weight: 700;
  transform: translateY(calc(-1 * var(--labelOffset)));
  margin-right: calc(-1 * var(--labelOffset));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 0.5em;
}

.olcards li .content {
  background-color: var(--cardColor);
  --inlinePadding: 1em;
  --boxPadding: 0.5em;
  display: grid;
  padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize)) var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 0.25em 1em;
  clip-path: polygon(0 0,
      calc(100% - var(--arrowClipSize)) 0,
      100% 50%,
      calc(100% - var(--arrowClipSize)) 100%,
      calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
      0 calc(100% + var(--cardsGap)));
  position: relative;
}

.olcards li .content::before {
  content: "";
  position: absolute;
  width: var(--labelOffset);
  height: var(--labelOffset);
  background: var(--cardColor);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: brightness(0.75);
}

.olcards li .content::after {
  content: "";
  position: absolute;
  height: var(--cardsGap);
  width: var(--cardsGap);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
  left: 0;
  top: 100%;
}

.olcards li .icon {
  grid-area: icon;
  align-self: center;
  font-size: 2em;
}

.olcards li .content .title {
  grid-area: title;
  font-size: 1.25em;
  /* font-weight: 700; */
}

.olcards li .content .text {
  grid-area: text;
}
.content-103 {
  padding: 90px 0;
  background: #f8fafc;
}

.section-tag {
  display: inline-block;
  color: #cf9e4d;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sercies-title {
  font-size: 34px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 14px;
}

.section-subtitle {
  color: #667085;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 50px;
}

.content-103 .row {
  row-gap: 30px;
}

.service-post {
  background: #fff;
  border-radius: 16px;
  padding: 42px 32px;
  text-align: center;
  height: 100%;
  border: 1px solid #eef1f5;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #cf9e4d, #d2b78c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-post:hover::before {
  transform: scaleX(1);
}

.service-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(16, 24, 40, .08);
  border-color: transparent;
}

.service-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,110,253,.1), rgba(45,212,191,.1));
  font-size: 30px;
  color: #cf9e4d;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}

.service-post:hover .service-icon {
  background: linear-gradient(135deg, #cf9e4d, #e5c89a);
  color: #fff;
  transform: scale(1.08);
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
  min-height: 48px;
}

.service-text {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 66px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cf9e4d;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap .25s ease, color .25s ease;
}

.service-btn i {
  font-size: 12px;
  transition: transform .25s ease;
}

.service-btn:hover {
  color: #cf9e4d;
  gap: 12px;
}

.service-btn:hover i {
  transform: translateX(3px);
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 41px;
  right: 94px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

/* Sticky Enquire Button */
.enquire-btn {
  position: fixed;
  right: -55px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Hover */
.enquire-btn:hover {
  background: #084298;
  color: #fff;
  right: -50px;
}

/* Mobile */
@media (max-width: 768px) {
  .enquire-btn {
    right: -42px;
    padding: 10px 22px;
    font-size: 14px;
  }
}

/*  */
.compliance-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.compliance-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: bold;
}

.compliance-list li:last-child {
  border-bottom: none;
}


.testimonial-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    height:100%;              /* Fill slide height */
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;

    display:flex;
    flex-direction:column;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.swiper-slide{
    height:auto;
    display:flex;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    flex:1;                   /* Makes all cards equal height */
    margin-bottom:20px;
}

.testimonial-card h5{
    margin:0;
    color:#cf9e4d;
}

.testimonial-card small{
    display:block;
    margin-top:5px;
}