@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --first-color: #3a38b1;
  --second-color: #000000;
  --third-color: #06964c;
  --main-font-family: "Raleway", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  color: var(--second-color);
  font-family: var(--main-font-family);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--first-color) #eef6ff;
}
.pointer-access {
  cursor: pointer;
}

h1 {
  font-size: 45px;
  font-weight: 600;
}
h2 {
  font-size: 37px;
  font-weight: 500;
}
h3 {
  font-size: 25px;
  font-weight: 600;
}
h4 {
  font-size: 23px;
  font-weight: 600;
}
h5 {
  font-size: 21px;
  font-weight: 600;
}
h6 {
  font-size: 19px;
  font-weight: 600;
}

a {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 23.5px;
  }
}

/* --------------------Header------------------------- */
.social-header-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--first-color);
  padding: 5px 10px;
}
.social-main-icons {
  padding: 7px 30px;
  display: flex;
  align-items: center;
  background-color: #d9d9d94a;
  border-radius: 25px;
}
.header-contact-info {
  display: flex;
  padding: 10px 20px;
  align-items: center;
}
.header-line-show {
  border-left: solid 1px #ffffff;
  height: 20px;
}
.contact-header-dtls {
  font-size: 15px;
  font-weight: 400;
  color: #f0f0f0;
}
@media only screen and (max-width: 1023.99px) {
  .social-header-box {
    display: none;
  }
}
/* -----------navbar------------- */
.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  padding: 0 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
}
.nav-logo {
  width: 200px;
  /* padding: 1rem 0; */
}
.nav-logo img {
  width: 100%;
  /* object-fit: cover; */
}

.nav-link-container {
  padding: 16px 0;
  transition: max-height 0.4s ease;
}
.nav-links {
  list-style: none;
  margin-bottom: 0;
}
.nav-links > .nav-link-item {
  display: inline-block;
  margin: 0 24px;
  position: relative;
}

.nav-links > .nav-link-item:hover > a {
  color: var(--first-color);
}

.nav-links > .nav-link-item > a {
  text-decoration: none;
  display: flex;
  padding: 16px 0;
  color: #000000;
  font-weight: 600;
  transition: 0.3s ease;
  align-items: center;
}

.nav-link-item.active > a {
  border-bottom: 2px solid var(--first-color);
  color: var(--first-color);
}
.nav-container .background {
  position: fixed;
  z-index: 998;
  background-color: #00000042;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in;
}
.nav-container .background.active {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease-out;
}
.nav-container .open-menu {
  display: none;
  font-size: 24px;
  color: var(--first-color);
}

.nav-container .close-menu {
  display: none;
  font-size: 24px;
  color: #fff;
}
.nav-apply-btn {
  background-color: var(--third-color);
  padding: 10px 20px;
  border-radius: 25px;
  color: #f0f0f0;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .nav-container {
    padding: 0 0rem;
  }
  .nav-links {
    padding-left: 0px;
  }
  .nav-container .nav-link-container {
    position: absolute;
    right: 0px;
    visibility: hidden;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    top: 0;
    overflow-y: auto;
    background-color: var(--first-color);
    z-index: 999;
    padding: 15px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .nav-container .nav-link-container.open {
    transform: translateX(0);
    visibility: visible;
    transition: all 0.3s ease-out;
    right: 0;
  }
  .nav-link-container > .nav-links > .nav-link-item {
    display: block;
    margin: 0;
  }

  .nav-link-container > .nav-links > .nav-link-item > a {
    color: #fff;
    padding: 14px 16px;
    /* border-bottom: solid 1px #afafaf1f; */
    display: flex;
    justify-content: space-between;
  }

  .nav-logo {
    padding: 0rem 0;
  }
  .nav-container .open-menu {
    cursor: pointer;
    display: block;
    padding-right: 15px;
  }
  .nav-container .close-menu {
    display: block;
    padding: 16px;
    cursor: pointer;
    width: fit-content;
  }
}

/* ======================Banner======================================= */
.banner-main-section {
  background-color: #f6f6f6;
  padding: 50px 10px 0px 10px;
}
.banner-main-section .main-banner-display-show {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-main-section .details {
  width: 100%;
  max-width: 500px;
}
.banner-main-section span {
  color: var(--third-color);
}
.banner-main-section p {
  font-size: 14.5px;
  font-weight: 400;
}
.explore-more-services-button {
  background-color: var(--first-color);
  color: #fff;
  padding: 13px 25px;
  border: solid 1px var(--first-color);
  transition: all 0.5s ease-in;
  font-size: 15px;
  font-weight: 500;
  border-radius: 15px;
  margin-top: 15px;
}
.explore-more-services-button:hover {
  color: var(--first-color);
  background-color: transparent;
  transition: all 0.6s ease-in-out;
}
.banner-main-section img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.about-main-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
.about-us-content-details span {
  font-size: 16px;
  font-weight: 400;
}
.about-us-content-details p {
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
}
.marquee-slider-container {
  background-color: var(--first-color);
  overflow: hidden;
  padding: 7px 10px;
}

.marquee-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-slider-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite; /* Slower speed */
  will-change: transform;
}

.marquee-slider-content-show {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-slider-content-show img {
  width: 25px;
  height: 25px;
}

.marquee-slider-content-show .title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-top: 5px;
}

/* Animation from right to left */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* Adjust if you duplicate only once */
  }
}

/* =================================Our Services============================ */
.our-services-main-headings{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.our-services-main-container{
  border:solid 1px var(--first-color);
  padding:10px;
  border-radius: 15px;
  height:410px
}
.our-services-main-container img{
  width:100%;
  height:200px;
  object-fit: cover;
  border-radius: 15px;
}
.our-services-main-container h6{
  font-size: 17.5px;
  font-weight: 600;
  color:var(--second-color);
  margin-top: 18px;
}
.our-services-main-container p{
  font-size: 15px;
  font-weight: 500;
  color:var(--second-color);
}
 .swiper-button-prev {
  color:var(--first-color);
  background-color: #D9D9D98C;
  padding:15px 9px;
  border-radius: 0px 13px 13px 0px ;
}
.swiper-button-next{
  color:var(--first-color);
  background-color: #D9D9D98C;
  padding:13px 9px;
  border-radius: 13px 0px 0px 13px ;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 25px;
  text-align: center;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0px;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right:0px;
}
.counter-details-show{
  border:solid 1px #0000001A;
  padding:25px 15px;
  border-radius: 20px;
box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}
.counter-details-show h5{
  font-size: 30px;
  font-weight: 600;
  color:var(--first-color);
  text-align: center;
  margin-bottom: 0px;
}
.counter-details-show p{
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  margin-top: 5px;
  color:#141219;
}
.caring-container-box-show .sub-heading{
  font-size: 14px;
  font-weight: 500;
  color:#141219;
}


.swiper-navigation-horizontal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* Reset Swiper's default positioning */
.video-prev-button,
.video-next-button {
  position: static !important;
  /* Remove default absolute */
  all: unset;
  /* Reset all Swiper styles */
  width: 36px;
  height: 36px;
  background-color: var(--first-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.video-prev-button:hover,
.video-next-button:hover {
  background-color: var(--second-color);
}

/* Add icons back manually */
.video-prev-button::after,
.video-next-button::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

/* Left arrow */
.video-prev-button::after {
  border-width: 6px 8px 6px 0;
  border-color: transparent white transparent transparent;
}

/* Right arrow */
.video-next-button::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent white;
}
.video-container img{
  width: 100%;
  border-radius: 20px;
  height: 400px;
  object-fit: cover;
  position: relative;
}
.video-container .title {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 5px 15px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
.form-label{
  font-size: 17.5px;
  font-weight: 700;
}
.form-control{
  border:solid 1px #DCDCDC;
  border-top:none;
  border-left:none;
  border-right: none;
  border-radius: 10px;
  padding:10px;
  font-size: 15px;
  font-weight: 600;
  color:#00000066;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.contact-submit0btn{
  width:100%;
  border-radius: 25px;
  background-color: var(--third-color);
  color:#fff;
  font-size: 16px;
  font-weight: 500;
  border:solid 1px var(--third-color);
  padding:10px 20px;
  margin-top: 30px;
}
.contact-details{
  font-size: 15px;
  font-weight: 700;
  color:#00000066
}
/* ===========================Footer================================== */
.footer-bg{
  background-color: #C3C2FF;
  padding:40px 20px;
}
.footer-para-content{
  font-size: 13px;
  font-weight: 600;
  color:var(--second-color);
  margin-top: 5px;
}
.footer-title{
  font-size:20px;
  font-weight: 600;
}
.footer-list{
  padding-left: 0px;
  list-style: none;
  margin-top: 15px;
}
.footer-list li{
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.footer-list li a{
  color:#000000;
}
.footer-list li a:hover{
  text-decoration: underline;
}

.footer-input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-input-icon-wrapper .email-icon {
  position: absolute;
  left: 12px;
  color: #000000;
  font-size: 14px;
}
.footer-input-box{
  border-radius: 25px;
  padding:7px 35px;
  border:solid 1px #fff;
  background-color: transparent;
  outline:none;
  font-size: 13px;
  font-weight: 500;
  color:#000000;
  width: 100%;
}
.footer-input-box:focus{
  border:solid 1px var(--first-color);
}
.footer-input-box::placeholder{
  font-size: 13px;
  font-weight: 600;
    color:#000000
}
.footer-submit-btn{
  background-color: var(--third-color);
  padding:7px 17px;
  border-radius: 25px;
  color:#fff;
  font-size: 14px;
  font-weight: 600;
  border:solid 1px var(--third-color)
}
.tagline{
  border-top:solid 1px var(--first-color);
  margin-top: 10px;
}
.footer-copy-text{
  font-size: 12px;
  font-weight: 600;
  color:#000000
}
.dropdown-item{
  font-size: 15px;
  font-weight: 600;
}
/* ================================Service Page========================================= */
.service-banner-image-box img{
  width:100%;
  height:400px;
  object-fit: cover;
}
.service-banner-image-box .banner-info-box{
  background-color: #D9D9D98C;
  border-radius: 20px;
  padding:50px 20px;
  position:absolute;
  top:38%;
  left:50px;

}
.service-banner-image-box .banner-info-box h1{
  font-size: 25px;

}
.service-details-title{
  color:var(--first-color);
  font-size: 27px;
  font-weight: 600;
}
.service-details-container-show p, .service-details-container-show ul li, .service-details-container-show ol li{
     font-size: 15px;
     font-weight: 500;
     text-align: justify;
}
.service-details-container-show ul li, .service-details-container-show ol li{
  margin-top: 8px;
}
.counter-details-show h6{
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
}
.doctor-panel-box .doctor-image{
  border-radius: 25px;
  width:100%;
  height:fit-content
}
.doctor-panel-box .name-box h6{
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.doctor-panel-box .name-box p{
  font-size: 13.3px;
  font-weight: 600;
  margin-bottom: 0px;
  color:#0000009a;
}
.doctor-panel-box .info{
  font-size: 15px;
    font-weight: 600;
  margin-bottom: 0px;
  color:#0000009a;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .banner-main-section .main-banner-display-show {
    display: block;
  }
  .banner-main-section img {
    height: 270px;
  }
  .banner-main-section {
    padding: 10px 5px;
  }
  .banner-main-section p {
    font-size: 12.5px;
    font-weight: 500;
  }
  .about-main-image img {
    height: 320px;
  }
    .marquee-slider-content-show .title {
    font-size: 14px;
  }
  .marquee-slider-content-show {
    padding: 0 10px;
  }
  .marquee-slider-content-show img {
  width: 20px;
  height: 20px;
}
.our-services-main-headings{
  display:block;
   margin-top: 20px;
}
.our-services-main-container{
  height:auto;
}
.counter-details-show{
  padding:25px 10px;
}
.footer-bg{
  padding:20px 0px 70px 0px;
}
.service-banner-image-box img{
  width:100%;
  height:300px;
  object-fit:cover;
}
.service-banner-image-box .banner-info-box{
  padding:20px 10px;
  top:100px;
  left:10px;

}
.mobile-view-menu-drawer-show{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:10px;
  background-color: #fff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  position: fixed;
  bottom:0;
  width:100%;
  z-index: 1;
  overflow-x: hidden;
  border-top: solid 1px #3a38b144;
}
.make-an-appoint-btn{
  font-size: 13px;
  font-weight: 600;
  color:#fff;
  background-color: var(--first-color);
  padding:6px 11px;
  border-radius: 20px;
}
.mobile-call-icon{
  font-size: 15px;
  border-radius: 50%;
  background-color: var(--third-color);
  color:#fff;
  padding:6px 9.5px;
  cursor: pointer;
  text-align: center;
}
.mobile-whatsapp-icon{
    font-size: 17px;
  border-radius: 50%;
  background-color: var(--third-color);
  color:#fff;
  padding:6px 10px;
  cursor: pointer;
  text-align: center;
}
.flex-direction-row{
  flex-direction:column-reverse;
}
.service-details-title{
  font-size: 24px;
}
}

@media (min-width:992.99px){
  .mobile-view-menu-drawer-show{
    display: none;
  }
}