* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}
/* 
body{
  background-color:rgba(47, 255, 75, 0.233);
} */

body {
  background-color: #dfe4d4;
}

a {
  text-decoration: none;
  color: inherit;
}

#carouselExampleDark {
  position: relative;
  top: 83px;
}

.carousel-inner img {
  width: 100%;
}

#banner-carousel .image {
  width: 100vw;
  height: 87vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

#banner-carousel .image.image1 {
  background-image: url(../img/banner1.webp);
}

#banner-carousel .image.image2 {
  background-image: url(../img/banner2.webp);
}

#banner-carousel .image.image3 {
  background-image: url(../img/banner3.webp);
}
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.carousel-control-prev {
  left: 50px;
}

.carousel-control-next {
  right: 50px;
}

.carousel-control-prev i,
.carousel-control-next i {
  color: #fff;
  font-size: 2rem;
}

.carousel-indicators button {
  background-color: #ccc;
}

.carousel-indicators .active {
  background-color: #3cff00;
}

#banner-carousel .carousel-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#banner-carousel .carousel-content .content {
  color: #fff;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  /*margin-top: 11rem;*/
}

#banner-carousel .carousel-content h2 {
  font-size: 4rem;
  font-weight: 700;
  opacity: 0;
  animation: animate 1s ease 0.3s 1 forwards;
  margin-bottom: 1.5rem;
}

@media and (max-width: 768px){
    #banner-carousel .carousel-content h2{
        font-size: 2.5rem;
    }
}

#banner-carousel .carousel-content p {
  opacity: 0;
  animation: animate 1s ease 0.6s 1 forwards;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    /* filter: blur(33px); */
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

/* Second-part starts here  */

.second-part {
  width: 100%;
  margin-top: 13vh;
  padding: 4rem 0;
  text-align: center;
}

.second-part img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 2rem 0;
}

.second-part .title {
  width: 100%;
}

.second-part .title h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #004672;
}



.caller{
      position:fixed;
       top: 43%;
      right:0;
      background:#004672;
      color:#fff;
      z-index:2000;
      padding:0.5rem 1rem;
      text-decoration:none;
      font-size:1rem;
      transform:translatex(65%);
      transition:0.5s ease;
      border-radius:0.5rem 0;
  }
  
    .caller i{
        font-size:1.2rem;
        margin-right:0.5rem;
    }
  
  .caller:hover{
      color:#fff;
       transform:translatex(0%);
  }
  
  .sender{
      position:fixed;
       top: 50%;
      right:0;
      background-color: #32cc24;
      color:#fff;
      z-index:2000;
      padding:0.5rem 1.2rem;
      text-decoration:none;
      font-size:1rem;
      transform:translatex(75%);
      transition:0.5s ease;
      border-radius:0 0.5rem;
  }
  
    .sender i{
        font-size:1.2rem;
        margin-right:0.5rem;
        position:relative;
        left:-0.3rem;
    }
  
  .sender:hover{
      color:#fff;
       transform:translatex(0%);
  }

/* Third-part starts here  */

.third-part {
  width: 100%;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
}

.third-part .title {
  width: 100%;
  /* padding: 2rem 0; */
  padding-bottom: 0;
}

.third-part .title h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #004672;
}

.third-part .img-content .img {
  display: flex;
  justify-content: center;
}

.third-part .img-content {
  background-color: #fff;
  padding: 2rem 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.5rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.third-part .img-content .content {
  position: relative;
  z-index: 1;
}

.third-part .img-content .image {
  /* background-color: #fff; */
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100%;
  margin-bottom: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.third-part .img-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #004672;
  margin-bottom: 1rem;
}

.third-part .img-content::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #265c16, #2d8641);
  border-radius: 0.5rem;
  position: absolute;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.third-part .img-content:hover::after {
  transform: translateY(0%);
}

.third-part .img-content:hover .image {
  background-color: #fff;
}

.third-part .img-content:hover .content {
  color: #fff;
}

.third-part .img-content:hover h3 {
  color: #fff;
}

/* Scroll-bg starts here  */

.scroll-bg {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-bg .image {
  width: 100%;
  height: 70vh;
  background-image: url(../img/scroll-bg.png);
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.scroll-bg .left {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 90%;
}

.scroll-bg .content {
  color: #fff;
}

.scroll-bg .left h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.scroll-bg .left h5 {
  margin-bottom: 2rem;
}

.scroll-bg .overlap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Treatment starts here  */

.treatment {
  width: 100%;
  padding: 2rem 0 1rem 0;
}

.treatment .text {
  background-color: #fff;
}

.treatment .image {
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.treatment img {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition: 0.4s all ease;
}

.treatment img:hover {
  transform: scale(1.1);
}

.treatment .content {
  position: relative;
}

.treatment .title {
  width: 100%;
  margin-bottom: 3rem;
}

.treatment .title h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #004672;
}

.treatment .text {
  width: 90%;
  margin-left: 10%;
  padding: 1rem 1.5rem;
  position: absolute;
  bottom: -12rem;
  right: 0;
}

.treatment .content.myimage {
  margin-bottom: 14rem;
}

.treatment .text i {
  color: #000;
}

.treatment .text a {
  text-decoration: none;
  color: #000;
}

.treatment .text h4 {
  font-size: 1.2rem;
  border-bottom: 3px solid #2d8641;
  padding-bottom: 0.3rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.treatment .text p {
  font-size: 0.9rem;
  text-align: justify;
  margin-top: 1rem;
}

.treatment .text span {
  color: #858282;
}

/* faq starts here  */

.faq {
  width: 100%;
  padding: 2rem 0;
}

.faq .image img {
  width: 100%;
}

.faq .contents {
  margin-top: 3rem;
}

.faq .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.faq .text {
  padding: 0rem 1rem;
  border-radius: 0.5rem;
  background-color: #ffff;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faq .text .left .para {
  font-size: 1rem;
  position: relative;
  font-weight: 700;
  margin-left: 1rem;
  top: 0.5rem;
}

.faq .text .left {
  display: flex;
}

.faq .icon {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  color: #000;
  transform: rotate(0deg);
  font-family: Arial, Helvetica, sans-serif;
}

.faq .title {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.faq h3 {
  font-size: 2.5rem;
  font-weight: 700;
  width: 100%;
  margin-bottom: 1rem;
  color: #004672;
}

.faq .question {
  cursor: pointer;
  border-radius: 0.5rem;
  padding: 0.8rem 0.5rem;
}

.faq .answer-para {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.5s ease;
  text-align: justify;
  padding-top: 0;
}

.faq .answer-para.active {
  max-height: 180px;
  opacity: 1;
  /* padding-top: 1rem; */
  padding-bottom: 0.5rem;
}

/* testimonial starts here  */

.testimonial {
  width: 100%;
  background-color: #265c1688;
  padding: 3rem 1rem;
  color: #fff;
}

.testimonial .title {
  margin-bottom: 2rem;
}

.testimonial .title i {
  color: rgb(255, 217, 0);
}

.testimonial .title h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

.testimonial p {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.testimonial h4 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.testimonial .man .image {
  width: 35%;
  /* background-color: rgb(161, 127, 255); */
  position: relative;
  left: 3rem;
  top: 1rem;
}

.testimonial img {
  width: 60%;
  border-radius: 100%;
}

.testimonial .man-add {
  /* background-color: aqua; */
  padding: 1rem 0;
}

/* .testimonial .man{*/
/*     justify-content: space-between;*/
/*} */

.testimonial span {
  color: rgb(219, 218, 218);
  position: relative;
  top: -0.2rem;
}

/* blog */

.blog-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blog-wrapper .blog-top {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.blog-wrapper .blog-top h4 {
  color: #004672;
  font-weight: 500;
  border-bottom: 2px solid #004672;
}

.blog-wrapper .blog-top h1 {
  color: #004672;
  font-weight: 700;
}

.blog-wrapper .blog-top p {
  text-align: start;
  text-justify: inter-word;
}

.blog-wrapper .blog-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-wrapper .blog-bottom .blog-card {
  max-width: 350px;
  padding: 10px;
  background-color: white;
  color: gray;
  border-radius: 10px;
}

.blog-card .blog-img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-wrapper .blog-bottom .blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  margin: 10px 0;
  padding: 0 10px;
}

.blog-card .blog-card-content p:first-child {
  color: #004672;
}

.blog-card .blog-card-content h2 {
  font-weight: bold;
  color: black;
}

.slick-prev,
.slick-next {
  background: none;
  border: none;
  color: inherit;
  z-index: 10;
  font-size: 1.5rem;
}

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -40px;
}

.slick-prev:hover,
.slick-next:hover {
  color: #6baa57;
}

.slick-prev::before,
.slick-next::before {
  content: none;
}

@media screen and (max-width: 768px) {
  .scroll-bg .left {
    top: 0;
    left: 0;
    padding: 1rem 1rem;
    width: 400px;
  }

  .scroll-bg .left h3 {
    font-size: 1rem;
    font-weight: 400;
  }

  .scroll-bg .left h5 {
    margin-bottom: 1rem;
  }

  .scroll-bg .left p {
    font-size: 1rem;
  }

  .treatment .text {
    padding: 0.7rem 1.5rem;
    /*bottom: -10rem;*/
  }
}

@media screen and (max-width: 320px) {
  .treatment .content.myimage {
    height: 400px;
  }
  .scroll-bg .left h3 {
    font-size: 1rem;
    font-weight: 400;
  }

  .scroll-bg .left h5 {
    margin-bottom: 1rem;
  }

  .scroll-bg .left {
    top: 0;
    left: 0;
    padding: 0 1rem;
  }

  .scroll-bg .left p {
    font-size: 1rem;
  }

  .treatment .text {
    padding: 0.7rem 1.5rem;
    /*bottom: -10rem;*/
  }
}

/* .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 2rem;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background: #0056b3;
}

.contact-form .form-group span {
  color: red;
  font-size: 12px;
} */
