
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter", serif; */
    /* font-family: "popins", sans-serif; */

}


   


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0 !important;
    padding: 0;
}

/* p {
    font-family: var(--popins);
} */

li {
    list-style: none;
}

a {
    text-decoration: none;
}


html {
    font-size: 20px;
}

body {
    font-size: 100%;
    background-image: url(../img/Dialysis-BGDialysis-BG.png) ;

}

:root {
    --prmary-col:#d95120;
    --second-col:#007336;
    --para-col:#81848a;
    --black: #222222;
    --lightcolor: #f1f8fa;
    --btncolor: #7db0b1;
    --headline-font: 45px;
    --grant: linear-gradient(0deg, rgb(243, 180, 44, 1) 0%, rgb(227, 60, 52, 1) 100%);
    --grd:linear-gradient(0deg, rgb(243, 180, 44, 1) 0%, rgb(227, 60, 52, 1) 100%);
    --white-col:#fff;
}

header{
    width: 100%;
    height: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.18);
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 999;
    /* border-bottom: 1px solid #b90a0a1a; */
}

    


header.sticky {
    /*background-color: rgba(0, 0, 0, 0.9);*/
    background-color: rgb(35 34 34 / 60%);
    padding: 0;
    color: var(--white-col);
  }
header.sticky .navbar-light .navbar-nav .nav-link{
    color: var(--white-col) !important;
  }
header.sticky .numb{
    color: var(--white-col) !important;
  }
header.sticky #primary li a:before{
    color: var(--white-col) !important;
  }
.navbar-expand-lg .navbar-collapse{
    justify-content: center !important;
}
.logo img {
    width: 100px;
    height: auto;
}
.navbar{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.navbar-light .navbar-nav .nav-link{
    /* font-family: "Khand", Sans-serif !important; */
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: var(--black) !important;
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    margin-right: 1rem !important;
    margin-left: 1rem !important;
    font-weight: 500 !important;
    /* font-family: "Cinzel", serif !important; */
    font-family: "Inter", serif !important;
}
.rg-no p{
    /* font-family: "Khand", Sans-serif ; */
    font-size: 75% ;
    font-weight: 500 ;
    text-transform: uppercase ;
    color: var(--text-color);
}



#primary li {
    position: relative;
  }
  #primary li a {
    /* text-decoration: none; */
    /* padding: 5px 0; */
    /* font-family: "Khand", Sans-serif ; */
    /* font-size: 80%; */
    position: relative;
    z-index: 1;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(   #204a63 100%); */
    /* background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out; */
  }
  #primary li a:before {
    content: "";
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -0px;
    z-index: 0;
    position: absolute;
    background: var(--black);
    transition: all 0.3s ease-in-out;
  }
  #primary li a:hover {
    background-position: 0%;
  }
  #primary li a:hover:before {
    width: 100%;
  }

  .numb{
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    font-family: "Cinzel", serif;
    text-decoration: none;
  }
  .numb:hover{
    color: var(--prmary-col);
  }

  .btn-don {
    background: transparent;
    color: var(--prmary-col);
    border: 2px solid var(--prmary-col);
    font-size: 16px;
    font-weight: 500;
    font-family: "Cinzel", serif;
    padding: 0.85em 0.75em;
    /* margin: 1rem; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer; /* Add pointer cursor for button hover */
  }
  
  .btn-don:hover {
    color: var(--prmary-col);
  }
  
  .btn-don::after {
    content: "";
    background: #ecf0f1; /* Light background color */
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0, 0);
    transition: all 0.6s ease; /* Initial transition for scale */
  }
  
  .btn-don:hover::after {
    transform: scale(1, 1); /* Expand the background on hover */
    transition: all 0.6s ease-out; /* Smooth scale on hover */
  }
  .btn-don:hover{
    background: var(--second-col);
    color: var(--prmary-col);
  }

/* Show dropdown menu on hover */
/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;

} */
.dropdown-menu{
    background-color: var(--second-col) !important;
}
.dropdown-item {
    font-family: "Montserrat", sans-serif !important;
    font-size: 80% !important;
    color: var(--white-col) !important;
}

/* .dropdown-hover:hover>.dropdown-menu-hover {
  display: block;
}

.dropdown-hover>.dropdown-toggle:active {
  pointer-events: none;
} */

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}







.ban{
    width: 100%;
    height: auto;

}
.ban-sec{
    width: 100%;
    height: 100vh;
    /*background-image: url(../img/Sugandha\ unifroms\ Ui\ Slider.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* .ban-sec::before{
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
} */

.ban-sec-txt{
    padding-top: 200px;
    position: relative;
    z-index: 9;
}
.sub-head{
    color: var(--white-col);
    font-size: 80%;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    font-family: "Inter", serif;
}
.title-haed{
    font-size: 68px;
    /* font-family: "Playfair", serif; */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--white-col);
    
}
.title-head span{
    color: var(--black);
    /* font-family: "Cinzel", serif; */
    font-size: 67px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
   
}
.title{
    font-size: 55px;
    /* font-family: "Playfair", serif; */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--white-col);
    
}
.title span{
    color: var(--white-col);
    /* font-family: "Cinzel", serif; */
    font-size: 50px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
   
}
.org{
  width: fit-content;
  color: var(--white-col);
  background-color: var(--prmary-col);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 70%;
}

.para{
    font-size: 85%;
    color: var(--white-col);
    font-weight: 400;
    font-family: "Inter", serif;
}

/* .btn1{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    background-color: var(--white-col);
    border-radius: 8px;
    padding: 15px 20px;
    overflow: hidden;
    z-index: 1;
    border: none;
    margin-top: 30px;
} */
.btn1 {
  /* background: transparent; */
  color: var(--prmary-col);
  border: 2px solid var(--prmary-col);
  font-size: 16px;
  font-weight: 500;
  font-family: "Cinzel", serif;
  padding: 0.55em 0.95em;
  /* margin: 1rem; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer; /* Add pointer cursor for button hover */
  margin-top: 30px;
  border-radius: 8px;
}

.btn1:hover {
  color: var(--prmary-col);
}

.btn1::after {
  content: "";
  background: #d95120; /* Light background color */
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0, 0);
  transition: all 0.6s ease; /* Initial transition for scale */
}

.btn1:hover::after {
  transform: scale(1, 1); /* Expand the background on hover */
  transition: all 0.6s ease-out; /* Smooth scale on hover */
}
.btn1:hover{
  background: var(--prmary-col);
  color: var(--white-col);
}
.btn1:hover{
    background-color: var(--prmary-col);
    color: var(--white-col);
}

.ban .owl-carousel .owl-nav button.owl-prev {

    position: absolute;
    top: 45%;
    left: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--second-col) !important;
    border-radius: 50%;
    color: var(--white-col) !important;
  }
.ban .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 45%;
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--second-col) !important;
    border-radius: 50%;
    color: var(--white-col) !important;
  }

  .ban1{
    width: 100%;
    height: auto;
    margin-top: 80px;
  }
  .ban1-mg{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
  }
  .black{
    /* color: #222222; */
    color: var(--second-col);
  }
  .gray{
    color: #81848a;
  }
  .title1{
    font-size: 55px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--second-col);
    
}
.title1 span{
    color: var(--prmary-col);
    /* font-family: "Cinzel", serif; */
    font-size: 50px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
   
}
.ex{
    background-color: var(--prmary-col);
    color: var(--white-col);
}
button.btn1.ex:hover{
  background-color: var(--second-col);
}
.ban2 {
    position: relative; /* Required for positioning the pseudo-element */
    width: 100%;
    height: auto;
    background-image: url(../img/shutterstock_1966573933-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 80px;
    padding-bottom: 120px;
    margin-top: 80px;
}

.ban2::before {
    content: ''; /* Empty content for the pseudo-element */
    position: absolute; /* Position it absolutely within the parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity (adjust as needed) */
    z-index: 1; /* Ensure overlay is on top of the background image */
}
.ban2-txt{
    z-index: 2;
    position: relative;
}
.ban3{
    width: 100%;
    height: auto;
    margin-top: -3rem;
    margin-bottom: 80px;
}
.ban3-card {
    width: 100%;
    height: auto;
    background-color: var(--white-col);
    border-radius: 12px;
    position: relative;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 4px 8px 0px; 
}
.ban3-card.mhjk:hover{
  background-color: var(--prmary-col);
}
.ban3-card.mhjk:hover .on-e{
  color: var(--white-col);
}
.ban3-card.mhjk:hover .para{
  color: var(--white-col);
}
.ban3-card.mhjk:hover .sub-head{
  color: var(--white-col);
}

.hnh{
    font-size: 75%;
}
.rdr{
    display: block;
    margin: auto;
}

.pri{
  font-size: 80%;
}

.mid{
    width: 100%;
    height: auto;
    padding-top: 80px;
  }
  .img-fluid{
    border-radius: 20px;
  }
  /* counter */

  .counter-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.counter {
    text-align: center;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    /* background-color: #f0f0f0; */
    padding: 5px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    transition: transform 0.3s;
}
.counter-value{
    color: var(--prmary-col);
}

.counter-value:hover {
    transform: scale(1.1);
}

p {
    font-size: 16px;
    color: #555;
}
.dis{
    color: var(--second-col);
    font-size: 90%;
    padding-top: 40px;
}

.mid2{
    width: 100%;
    height: auto;
    background-color: #007336;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 80px;
}
.mid2-grd{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.mid2-grd-card{
    width: 100%;
    height: auto;
    border: 1px solid var(--white-col);
    border-radius: 15px;
}
.bhb{
    font-size: 100%;
}
.mid3{
    width: 100%;
    height: auto;
    margin-top: 80px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: var(--prmary-col) !important;
  color: var(--white-col) !important;
  font-family: "Poppins", sans-serif;
}
.nav-link{
  color: var(--second-col) !important;
  /* font-family: "Inter", serif !important; */
  font-family: "Poppins", sans-serif;
}
.nav{
  justify-content: center !important;
}




.mid4{
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    background-image: url(../img/testimonial-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 80px;
}
.on-e{
    color: var(--prmary-col);
    font-size: 200%;
    text-align: center;
    font-weight: 700;
}

.mid5{
    width: 100%;
    height: auto;
    margin-top: 80px;
    
}
.nam{
  color: var(--second-col);
  font-size: 100%;
  text-align: left;
  font-weight: 600;
}

.mid5 .owl-carousel .owl-nav button.owl-next {

  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--second-col) !important;
  border-radius: 50%;
  color: var(--white-col) !important;
}
.mid5 .owl-carousel .owl-nav button.owl-prev{
  position: absolute;
  top: 120%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--second-col) !important;
  border-radius: 50%;
  color: var(--white-col) !important;
}
.sch-mg{
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 15px;
  object-fit: cover;
}

.mid6{
  width: 100%;
  height: auto;
  padding-top: 80px;
}
.card-cont{
  width: 100%;
  height: auto;
  background-color: var(--white-col);
  border-radius: 12px;
  position: relative;
  z-index: 9;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 4px 8px 0px; 
  
}
.form-label{
  font-size: 75%;
  color: var(--prmary-col);
  font-weight: 500;
  font-family: "Inter", serif;
}
.suhu{
  display: flex;
}
.form-control{
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid var(--second-col);
}
.form-control::placeholder{
  font-size: 70% !important;
}
.cont-ic{
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--prmary-col);
  text-align: center;
  border-radius: 12px;
}
.cont-se {
  display: flex;
  justify-content: start;
}
.cont-ic i{
  color: var(--white-col);
  text-align: center;
  font-size: 100%;
}
.cont-txt{
  padding-left: 30px;
  padding-top: 4px;
}
.cont-txt a{
  color: var(--prmary-col);
  font-size: 85%;
  font-family: "Inter", serif;
  font-weight: 600;
}
.cont-txt p{
  color: var(--prmary-col);
  font-size: 85%;
  font-family: "Inter", serif;
  font-weight: 600;
}





footer{
    width: 100%;
    height: auto;
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--black);
}


.foot-head {
    font-size: 120%;
    padding-bottom: 20px;
    font-family: "Inter", serif;
    color: var(--white-col);
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
  }
  
  .footer-contact-item:last-child {
    margin-bottom: 0;
  }
  
  .footer-contact-item .icon-box {
    margin-right: 20px;
  }
  
  .footer-contact-item .icon-box i {
    max-width: 30px;
    color: var(--white-col);
  }
  
  .footer-contact-content a {
    color: var(--white-col);
    font-size: 95%;
    font-weight: 400;
    font-family: "Inter", serif;
  }
  
  .footer-contact-content a:hover {
    color: var(--prmary-col);
  }
  
  .footer-contact-content p {
    color: var(--white-col);
    font-size: 85%;
    font-weight: 400;
    font-family: "Inter", serif;
  }
  
  /* .foot ul {
    padding-left: 30px;
  } */
  
  .foot ul li {
    display: flex;
    padding-bottom: 10px;
  
  
  }
  
  .foot ul li a {
    color: var(--white-col);
    font-size: 85%;
    font-family: "Inter", serif;
    font-weight: 400;
  }
  .foot ul li a:hover{
    color: var(--prmary-col);
  }
  
  .ul.icon {
    padding: 0px;
  }
  
  ul.icon li {
    display: inline-block;
  
    margin-right: 10px;
    margin-top: 20px;
  }
  
  ul.icon li a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid #fff;
    background-color: var(--white-col);
    line-height: 37px;
    color: var(--prmary-col);
    text-align: center;
    display: block;
  }
  
  ul.icon li a:hover {
    background-color: var(--second-col);
    color: var(--white-col);
  }

  
  ul.icon li i {
    text-align: center;
  }
  
  /* .foot ul li a:hover {
    color: var(--black);
  } */
  .se-col{
    color: var(--white-col);
  }

  /* contact */

  .ban-sec1 {
    width: 100%;
    height: 70vh; /* Takes 80% of the viewport height */
    /* background-image: url(../img/cont-ban1.jpg);  */
    background-repeat: no-repeat; /* Prevents the background from repeating */
    background-size: cover; /* Ensures the background covers the entire element */
    position: relative; /* For positioning elements within the section */
    background-position: center top; /* Centers the image horizontally and positions it at the top */
}
.map-sec{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.responsive-map{
  overflow: hidden;
  padding-bottom:40.25%;
  position:relative;
  height:0;
  }
  .responsive-map iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
  }

  /* about */

  .about-mid {
    margin-top: -3rem;
}
.about-mid .nav{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}
.about-mid .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  width: 100%;
  padding: 30px 22px;
  border-radius: 12px;
}
.about-mid .nav-link{
  text-align: center;
  display: block;
  margin: auto;
  padding: 30px 22px;
  width: 100%;
  border-bottom: 1px solid #b90a0a1a;
  border-radius: 0px;
}
.about-mid1{
  width: 100%;
  height: auto;
  margin-top: 80px;
}

.about-mid1 .nav{
  display: block !important;
  /* grid-template-columns: repeat(3, 1fr) !important; */
}
.about-mid1 .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  width: 100%;
  padding: 30px 22px;
  border-radius: 12px;
}
.about-mid1 .nav-link{
  /* text-align: center;
  display: block;
  margin: auto; */
  padding: 30px 22px;
  width: 100%;
  border-bottom: 1px solid #b90a0a1a;
  border-radius: 0px;
  font-size: 18px;
}
.beg{
  font-size: 32px;
}

.about-mid2{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}

.accordion-button:not(.collapsed){
  color: var(--second-col);
}
.accordion-button{
  color: var(--second-col);
  font-size: 18px;
  font-weight: 500;
}
.accordion-button:not(.collapsed)::after{
  content: "-";
  background-image: none;
  transform: unset;
}
.accordion-button::after{
  content: "+";
  background-image: none;
}






/* .accordion-button::after {
  width: 11px;
  height: 27px;
  border-radius: 100%;
  background-color: var(--bs-danger);
  background-image: none !important;
}
.accordion-button.collapsed::after {
  background-color: var(--bs-gray-300);
} */




/* product */

.product{
  width: 100%;
  height: auto;
  margin-top: 80px;
}
.product-sec{
  width: 100%;
  height: auto;
}
.product-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-sec {
  padding: 20px;
  background-color: #f8f9fa;
}
.product-grid .items {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.product-grid .items:hover {
  transform: translateY(-5px);
}
.product-img img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.product-details {
  padding: 15px;
  text-align: center;
}
.product-details h5 {
  font-size: 100%;
  color: var(--second-col);
  font-family: "Inter", serif;
  font-weight: 500;
}
.show-more-btn {
  text-align: center;
  margin-top: 20px;
  
}
  




  




