/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  transition: all 0.2s;
}
*:hover {
  transition: all 0.2s;
}
body {
  color: #4c4c4c;
  line-height: 1.6;
  background-color: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
p {
    margin-bottom: 20px;
    font-weight: 500;
}
a {
    color: #4c4c4c;
    text-decoration: none;
}
.img-responsive {
  max-width: 100%;
}
.img-100 {
    width: 100%;
}
.mobile {
    display:none;
}
.web {
    display:block;
}
.menu-icon {
    max-width: 40px;
    display: none;
}
.main-title {
    font-weight: 800;
    font-size: 38px;
    line-height: normal;
    color: #000000;
}
.small-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: #C84C09;
}


/* Header */
.header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 0;
}
.nav a {
    text-decoration: none;
    color: #181818;
    font-weight: 600;
    font-size: 15px;
}
.nav .nav-btn-primary a {
    font-weight: 500;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(86.8deg, #95B369 -49.19%, #128C7E 100%);
    /*background: linear-gradient(90deg, rgba(7, 94, 84, 1) 0%, rgba(18, 140, 126, 1) 100%);*/
}

.nav .nav-btn-primary a:hover {
    color: #fff;
    background: linear-gradient(86.8deg, #128C7E -49.19%, #128C7E 100%);
}
.nav .nav-btn-primary a:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/whatsapp.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
.nav .btn-primary {
    position: relative;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}
.nav .btn-primary:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/whatsapp.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
.nav a:hover {
  color: #C84C09;
}
.nav .current-menu-item a {
  color: #C84C09;
}
.nav .current-page-parent a {
  color: #C84C09;
}
.nav .current-page-parent .sub-menu a {
  color: #181818;
}
.nav .current-page-parent .sub-menu .current-menu-item a {
  color: #C84C09;
}
.nav .no-page a {
    pointer-events: none;
}
.nav .menu-item-has-children .sub-menu .no-page a {
    pointer-events: none;
}
.nav .menu-item-has-children .sub-menu a {
    pointer-events: unset;
}
.nav .menu-item-has-children .sub-menu {
    position: absolute;
    display: none;
    background: #fff;
    padding: 20px;
    gap: 15px;
    box-shadow: 0px 6px 9px hsl(0deg 0% 0% / 20%);
}
.nav .menu-item-has-children:hover .sub-menu {
    position: absolute;
    display: grid;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 6px 9px hsl(0deg 0% 0% / 20%);
}
.btn-primary {
    font-weight: 500;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(86.8deg, #95B369 -49.19%, #128C7E 100%);
}
.btn-primary.whatsapp {
    position: relative;
    padding: 10px 20px;
}
.btn-primary.whatsapp:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/whatsapp.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
.btn-primary.view {
    position: relative;
    padding: 10px 20px;
}
.btn-primary.view:hover {
    background: linear-gradient(90deg, rgba(7, 94, 84, 1) 0%, rgba(18, 140, 126, 1) 100%);
}
.btn-primary.view:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/view.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
.btn-primary:hover {
  background: linear-gradient(86.8deg, #128C7E -49.19%, #128C7E 100%);
}
.btn-secondary {
    font-weight: 500;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    background: #C84C09;
    border: 2px solid #C84C09;
}
.btn-secondary:hover {
  background: #fff;
  color: #C84C09;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f4f4f4;
}

/* Hero */
.carousel-control-next, .carousel-control-prev {
    width: 5%;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4f7ff;
  padding: 60px 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2.2rem;
  margin: 10px 0;
}
.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
.hero-image img {
  width: 350px;
  border-radius: 10px;
}
.banner-caption {
    position: absolute;
    top: 200px;
    right: 120px;
    max-width: 550px;
}
.banner-caption .small-title {
    color: #000000;
    text-transform: uppercase;
}
.banner-caption.inverse .small-title {
    color: #ffffff;
}
.banner-caption p {
    font-size: 18px;
    color: #000;
}
.banner-caption.inverse p {
    color: #ffffff;
}
.banner-caption.inverse .main-title {
    color: #ffffff;
}
.btn-secondary.white {
    margin-left: 20px;
    background: #fff;
    color: #C84C09;
}
.btn-secondary.white:hover {
    background: #C84C09;
    color: #fff;
}
/*Counter*/
.counter-section {
    background: #F4F7F8;
    padding: 40px 0;
}
.counter-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
}
.counter-top {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}
.counter-top p, .counter-bottom p {
  margin: 0;
}
.counter-bottom {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
}
.counter-title {
    position: relative;
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    color: #C84C09;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 25px;
    margin-bottom: 15px;
}
.counter-title.years:after {
    content: "Years";
    position: absolute;
    margin-left: 10px;
}
.counter-title.patients:after {
    content: "Patients";
    position: absolute;
    margin-left: 10px;
}
/* Services */
.services {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}
.services h2 {
  margin-bottom: 15px;
}
.service-grid-caption {
    position: absolute;
    text-align: left;
    max-width: 500px;
}
.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}
.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-item:hover {
  transform: translateY(-5px);
}
.services .slick-slide {
  padding: 15px;
}
.services .slick-slide .services-item {
  background: #F9F9F9;
  padding: 15px;
  border: 1px solid #E3EDFA;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.services .slick-slide .services-item:after {
  position: absolute;
  content: "";
    height: 2px;
    width: 0%;
    background: #C84C09;
    left: 0px;
    bottom: 0;
    transition: all 0.5s;
}
.services .slick-slide .services-item:hover:after {
  position: absolute;
  content: "";
    height: 2px;
    width: 100%;
    background: #C84C09;
    left: 0px;
    bottom: 0;
}
.services .slick-slide .services-item .services-title {
    color: #222;
    font-size: 16px;
    margin: 10px 0;
    font-weight: 700;
}
.services .slick-slide .services-item p {
    font-size: 14px;
    margin: 0;
}
.services .slick-list.draggable {
    width: 92vw;
}
.services .slick-prev, .services .slick-next {
    top: -10px;
    right:30px;
    left:auto;
}
.services .slick-prev {
    right:80px;
}
.services .slick-prev:before, .services .slick-next:before {
    font-size: 40px;
    line-height: 0;
    font-family: 'Manrope';
    color:#000;
    opacity: 0.3;
}
/* About */
.about {
    background: #ffffff url(../../assets/images/about-bg.jpg);
    padding: 60px 0;
    background-size: cover;
}
.about-content {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
}
.about-image {
    text-align: right;
}
.about-text .about-list {
    margin: 15px 0 30px;
    list-style: none;
    padding-left: 0;
}
.about-text .about-list li {
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.01em;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.about-text .about-list li:before {
    content: "";
    background: url(../../assets/images/check.svg);
    height: 20px;
    width: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    margin-top: 3px;
}
/* Why Choose Us */
.why-choose {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}
.why-choose .main-title {
    max-width: 400px;
    margin: auto;
}
.why-grid {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-grid .why-item {
    background: #fff;
    padding: 30px;
    text-align: left;
    border-radius: 10px;
    border: 1px solid #E3EDFA;
}
.why-grid .why-item .small-title {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
}
.why-grid .why-item .choose-icon {
    margin-bottom: 15px;
}
.why-grid .why-item p {
    margin-bottom: 0;
}
/* Stories */
.stories {
  background: #f4f7ff;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.story-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.stories-video-slider {
    padding: 50px 0;
    width: 130vw;
    margin-left: -15vw;
}
.story-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.slick-video-slider .video-item {
  padding: 10px;
  cursor: pointer;
}
.slick-video-slider .video-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.slick-video-slider .video-item:hover img {
  transform: scale(1.05);
}
.stories .slick-prev, .stories .slick-next {
    top: auto;
    bottom: -50px;
    right:calc(50% - 40px);
    left:auto;
    width: 50px;
}
.stories .slick-prev {
    left:calc(50% - 60px);
    right:auto;
}
.stories .slick-prev:before, .stories .slick-next:before {
    font-size: 40px;
    line-height: 0;
    font-family: 'Manrope';
    color:#000;
    opacity: 0.3;
}
.stories .slick-initialized .slick-slide {
    padding: 10px;
}
.slider-video {
    width: 100%;
    height: 23vw;
}
/* Testimonials */
.testimonials {
    padding: 60px 0;
    text-align: center;
    background: #fff;
    overflow: hidden;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.testimonials-slider {
    margin: 40px 0;
    width: 130vw;
    margin-left: -15vw;
 }
.testimonial-item {
    padding: 40px;
    text-align: left;
    border-radius: 20px;
    border: 1px solid #E3EDFA;
}
.testimonials .slide-item {
    padding:15px;
}
.testimonials .ratings {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}
.testimonial-title {
    font-size: 24px;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}
.author {
    border-top: 1px solid #E3EDFA;
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-data {
    font-size: 18px;
    font-weight: 500;
    color: #111111;
}
.author-data .age {
    color: #52667A;
    font-weight: 400;
    font-size: 16px;
}
.author-img {
    max-width: 50px;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
}
.stars-outer {
  position: relative;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 24px;
  color: #ccc; /* gray for empty stars */
}
.stars-outer::before {
  content: "★★★★★"; /* 5 empty stars */
}
.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #FF9429; /* yellow for filled stars */
}
.stars-inner::before {
  content: "★★★★★"; /* 5 filled stars */
}
.rating-value {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}
/*Community Section*/
.community-section {
    padding: 100px 0;
    background: url(../../assets/images/community-bg.png);
    background-size: cover;
}
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.community-box {
  position: relative;
    background: #C84C09;
    padding: 30px;
    color: #fff;
    border-radius: 10px;
    text-align: center;
}
.community-box:before {
    position: absolute;
    content: "";
    background: url(../../assets/images/white-frame.svg);
    left: -25px;
    right: -25px;
    top: -25px;
    bottom: -25px;
    background-size: 100% 100%;
}
.community-box .small-title {
    color: #ffffff;
    margin-bottom: 0px;
}
.community-box .main-title {
    font-size: 24px;
    line-height: normal;
    color: #ffffff;
    margin-bottom: 20px;
}
.community-list span {
    position: relative;
    display: inline-flex;
    gap: 5px;
    padding: 10px 20px;
    align-items: center;
    background: rgb(255 255 255 / 10%);
    border-radius: 50px;
    margin: 5px 3px;
    font-size: 14px;
}
.community-list span:before {
    content: "";
    background: url(../../assets/images/check-white.svg);
    height: 20px;
    width: 20px;
    display: inline-block;
}
/*Form*/
.contact-form {
    padding: 60px 0;
    background: #F4F7F8;
}
.form-img {
    max-width: 100%;
}
.form-box {
    font-size: 14px;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    padding: 70px 70px 0;
    gap: 35px;
    isolation: isolate;
    background: #ffffff url(../../assets/images/contact-form.png);
    background-size: cover;
    border-radius: 20px;
}
.two-columns {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.one-column {
    margin-bottom: 20px;
}
.form-box input, .form-box select, .form-box textarea {
  padding: 8px 16px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #C8DAF0;
  border-radius: 6px;
}
.form-box label {
    font-size: 14px;
}
.submit-btn {
  margin-right:10px;
    padding: 10px 20px;
    background: #FFFFFF;
    border-radius: 100px;
    border: 2px solid #C84C09;
    color: #C84C09;
    font-weight: 700;
    margin-top: 10px;
}
/* Contact */
.contact {
  background: #f9f9f9;
  padding: 60px 0;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-info img {
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
}
.appointment-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.appointment-form input,
.appointment-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: #fff;
  color: #333;
  font-family: "Poppins", sans-serif;
  padding: 60px 0 30px;
  border-top: 1px solid #eee;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.footer .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h5 {
    color: #C84C09;
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 16px;
  height: 2px;
  background: #9B9B93;
}
.footer p,
.footer ul li,
.footer a {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  line-height: 1.8;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
    margin: 10px 0;
}
.footer ul li a:hover {
  color: #C84C09;
}
.footer-logo {
  max-width: 200px;
  margin-bottom: 10px;
}
.footer-logo h4 {
  color: #c61e2d;
  margin: 0;
  font-weight: 600;
}
.footer-contact {
  margin: 15px 0;
}
.footer-contact li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i {
  color: #2f2f9e;
  font-size: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-right: 8px;
  font-size: 16px;
  color: #2f2f9e;
  transition: 0.3s;
}
.footer-social a:hover {
    color: #fff;
    border-color: #C84C09;
}
.map {
  position: relative;
  margin-top: 10px;
}
.map img {
  width: 100%;
  border-radius: 8px;
}
.map-btn {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  color: #2f2f9e;
  text-decoration: underline;
}
.footer hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 30px 0 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #e1e1e1;
    padding-top: 30px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.policy-links a {
  font-size: 14px;
  color: #333;
}
.policy-links a:hover {
  color: #e11d48;
}
.poweredby {
    margin-left: 50px;
}
/*ABout Page Css Start*/
.page-header {
    overflow: hidden;
    position: relative;
    padding: 120px 0 80px;
    background: #ffffff url(../../assets/images/about-bg.jpg) no-repeat;
    background-attachment: fixed;
    background-position: right center;
}
.breadcrumb-menu {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: max-content;
    grid-column-gap: 30px;
    padding: 0;
    text-align: left;
    list-style-image: url(../../assets/images/right-arrow-small.svg);
}
.breadcrumb-menu li {
    padding-left: 10px;
}
.breadcrumb-menu li:first-child {
    padding-left: 0;
    list-style-image: none;
    list-style-type: none;
}
.breadcrumb-menu li a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}
.larg-para {
    font-size: 20px;
    margin-bottom: 50px;
}
.page-header .main-title {
    font-size: 87px;
    line-height: normal;
}
.page-header .main-title span {
    color: #C84C09;
}
.about-slider .slick-list.draggable {
    width: 130vw;
    margin-left: -22vw;
}
.about-slider .slick-slide {
    padding: 0 10px;
}
.about.stories {
    background: #fbfbfb;
    padding: 60px 0;
}
.about.stories p {
    max-width: 710px;
    margin: 40px auto 50px;
    font-size: 18px;
}
.vision-mission-section {
    background: #F9FAFB;
    padding: 50px 0;
    text-align: center;
}
.vision-mission-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.vision-mission-box {
    background: #F5F6FB;
    border-radius: 20px;
    padding: 20px;
    display: grid;
    align-items: center;
}
.vision-mission-box .main-title {
    margin-top: 20px;
}
.vision-mission-box p {
    max-width: 400px;
    margin: 0 auto;
}
.about.awards-section {
    background: #ffffff;
    padding: 60px 0;
    background-size: cover;
    text-align: center;
}
.awards-gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.award-title {
    font-weight: 700;
    margin: 10px 0;
}
.page-header.inner {
    text-align: center;
    padding: 120px 0 0;
    background-attachment: unset;
}
.inner-banner-content {
    padding: 40px 0;
}
.page-header.inner .main-title {
    font-size: 38px;
    line-height: normal;
}
.page-header.inner .larg-para {
    max-width: 500px;
    margin: auto;
}


.location-section {
    background: #F9FAFB;
    padding: 50px 0;
}
.location-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.location-box {
    background: #F5F6FB;
    border-radius: 20px;
    padding: 80px;
    display: grid;
    align-items: center;
    text-align: left;
}
.locations {
    max-width: 450px;
    margin: auto;
}
.locations .location-icon {
    margin-bottom: 20px;
}
.locations .main-title {
    font-size: 28px;
}
.btn-secondary.location-btn {
    position: relative;
    padding: 10px 20px;
}
.btn-secondary.location-btn:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/location-btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
.btn-secondary.location-btn:hover:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../../assets/images/location-btn-color.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
.contact-details-section {
    padding: 70px 0;
    background: #fff;
}
.three-contact-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}
.contact-box {
    padding: 50px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}
.contact-box .small-title {
    color: #181818;
    margin-top: 10px;
}
.contact-box .btn-secondary {
    color: #C84C09;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #C84C09;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
.contact-box .btn-secondary:hover {
    color: #ffffff;
    background: #C84C09;
}



.services-details-section {
    padding: 70px 0;
    background: #fff;
}
.services-details-section .main-title {
    font-size: 36px;
    margin: 40px 0 20px;
}
.service-benefits-section {
    background: #fff;
    padding: 70px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.benefits-grid .benefits-left .main-title {
    margin-bottom: 30px;
}
.benefits-grid .benefits-left .btn-secondary {
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    background: #C84C09;
    border-color: #C84C09;
    margin-top: 20px;
}
.benefits-left {
  position: sticky;
  top: 20px;
  align-self: start;
  height: fit-content;
}
.benefits-right {
    display: grid;
    gap: 30px;
}
.benefits-block {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #E3EDFA;
}
.benefits-block .small-title {
    font-size: 28px;
    line-height: normal;
    color: #282828;
    margin: 15px 0;
}
.benefits-block p {
    margin-bottom: 0;
}
.ideal-section {
    background: #F9FAFB;
    padding: 60px 0;
    background-size: cover;
}
.ideal-content {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 60px;
}
.ideal-section .ideal-content:nth-child(2) {
    margin-top: 50px;
}
.ideal-image {
    text-align: right;
}
.ideal-text .ideal-list {
    margin: 15px 0 30px;
    list-style: none;
    padding-left: 0;
}
.ideal-text .ideal-list li {
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.01em;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.ideal-text .ideal-list li:before {
    content: "";
    background: url(../../assets/images/check.svg);
    height: 20px;
    width: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    margin-top: 3px;
}
.ideal-section .short-video {
    width: 100%;
    height: 650px;
}
.procedure-section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}
.procedure-grid {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.procedure-grid .procedure-item {
    padding: 0 30px;
}
.procedure-grid .procedure-item .circle {
    height: 70px;
    width: 70px;
    display: inline-flex;
    background: #FAFAF9;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50px;
    color: #C84C09;
    font-size: 24px;
    font-weight: 900;
}
.procedure-grid .procedure-item .small-title {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
}
.procedure-grid .procedure-item p {
    margin-bottom: 0;
}

.recovery-section {
    background: #F9FAFB;
    padding: 60px 0;
    text-align: center;
}
.recovery-grid {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.recovery-item {
    position: relative;
}
.recovery-item .small-title {
    font-size: 24px;
    line-height: normal;
    color: #ffffff;
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    text-align: left;
}
.text-on-image-section {
    padding: 50px 0;
    background: #F9FAFB;
}
.text-on-image-section .main-title {
    color: #ffffff;
}
.text-on-image {
    border-radius: 40px;
    background: url(../../assets/images/services/choose-us.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    padding: 100px 60px;
    border: 1px solid #e1e1e1;
}
.text-on-image p {
    max-width: 550px;
    color: #ffffff;
}
.consultation-section {   
    position: relative; 
    background: #9B9B93 url(../../assets/images/vector-white.svg) no-repeat;
    background-position: right top;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}
.consultation-section .main-title {
    color: #ffffff;
}
.consultation-section p {
    max-width: 530px;
    margin: 20px auto;
}
.consultation-section .btn-secondary {
    /*color: #fff;*/
    /*background: transparent;*/
    /*border: 1px solid #fff;*/
}
.hand-img-left {
    display: none;
    position: absolute;
    left: 0;
    bottom: 50px;
}
.hand-img-right {
    display: none;
    position: absolute;
    right: 0;
    bottom: 50px;
}
.max-width-750 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}



.blog-section {
    padding: 50px 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.blog-grid.article {
    grid-template-columns: repeat(3, 1fr);
}
.blog-box .main-title {
    font-size: 24px;
    line-height: normal;
    /*max-width: 470px;*/
    margin-bottom: 15px;
}
.blog-box .small-title {
    margin: 20px 0 10px;
}
.article-section {
    margin-top: 100px;
}
.article-section .main-title.article-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-header.inner.blog-details {
    text-align: left;
}
.small-title.blog-author {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}
.blog-detail-section {
    padding: 50px 0;
    background: #fff;
}
.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    margin-top: 50px;
    gap: 50px;
    align-items: flex-start;
}
.blog-detail-left ul {
    list-style: unset;
}
.blog-detail-left a {
    color: #C84C09;
}
.blog-detail-left .sub-heading, .blog-detail-left h2 {
    font-size: 24px;
    color: #010101;
    font-weight: 800;
    margin-bottom: 20px;
}
.blog-detail-left h3 {
    font-size: 18px;
}
.blog-detail-left hr {
    margin: 50px 0;
    color: #EBEAEA;
    opacity: 1;
}

.blog-detail-right {
    border: 1px solid #EBEAEA;
    padding: 20px 30px 30px;
    border-radius: 10px;
    position: sticky;
    top: 80px;
    align-self: start;
}
.recent-post-thumb {
    max-width: 68px;
    max-height: 68px;
    border-radius: 5px;
}
.recent-post-heading {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}
.post-image-text {
    display: grid
;
    grid-template-columns: 68px 1fr;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EBEAEA;
}
.post-date {
    color: #808080;
    font-size: 10px;
    line-height: normal;
    margin-bottom: 5px;
}
.post-title {
    color: #0C2A3C;
    font-size: 12px;
    font-weight: 800;
    line-height: normal;
    margin: 0;
}
.resource-section {
    padding: 70px 0;
    background: #fff;
}
.resource-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.resource-section .nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.resource-section .nav-pills .nav-link {
    width: 100%;
    background: #F0F0F0;
    font-size: 24px;
    color: #4c4c4c;
    padding: 20px;
    font-weight: 600;
}
.resource-section .nav-pills .nav-link.active, 
.resource-section .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #C84C09;
}
.resource-gallery .hover-view-btn {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}
.resource-gallery .hover-view-btn .resource-hover-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: lch(0 0 0 / 0.5);
    transition: all 0.5s;
    border-radius: 10px;
}
.resource-gallery .hover-view-btn:hover .resource-hover-btn {
    opacity: 1;
}
.resource-gallery .resource-caption {
    /*position: absolute;*/
    bottom: 0px;
    padding: 10px 0;
    margin: 0;
    width: 100%;
    font-weight: 600;
    /*font-size: 14px;*/
    /*color: #fff;*/
    /*text-align: center;*/
    /*background: #27262b;*/
}
.resource-video-player {
    width: 100%;
    height: 250px;
}
.whatsapp-fixed {
    max-width: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    border-radius: 5px;
}   
/* Responsive */
@media (max-width: 768px) {
    .header {
        position: sticky;
    }
    .main-navigation {
        background: #f5f5f5;
        position: fixed;
        left: 100vw;
        width: 100%;
        height: 100%;
        top: 70px;
        padding: 20px;
        transition: all 0.5s;
    }
    .main-navigation.active {
        left: 0;
    }
    .nav {
        padding: 0;
    }
    .menu-icon {
        max-width: 40px;
        display: block;
    }
    .nav ul {
        display: block;
        text-align: center;
        padding: 0;
    }
    .nav ul li {
        padding: 5px 10px;
    }
    .img-100 {
        width: 100% !important;
        height: auto;
    }
    /*.nav a {*/
    /*    color: #ffffff;*/
    /*}*/
    /*.nav a:hover {*/
    /*    color: #000000;*/
    /*}*/
    /*.nav .current-menu-item a {*/
    /*    color: #000000;*/
    /*}*/
    .nav .nav-btn-primary a {
        border: 2px solid #fff;
    }
    .nav .menu-item-has-children:hover .sub-menu, 
    .nav .menu-item-has-children .sub-menu {
        position: relative;
        background: transparent;
        box-shadow: none;
        display: block;
        padding: 0;
    }
    .nav .current-page-parent .sub-menu a {
        
    }
    .nav .menu-item-has-children .sub-menu a {
        
    }
    .nav .current-page-parent a {
        color: #000000;
        display: block;
    }
    .nav .current-page-parent .sub-menu .current-menu-item a {
        /*color: #000000;*/
    }
    .nav .no-page a {
        display: none;
    }
    .nav .menu-item-has-children.no-page .sub-menu a {
        display: block;
    }
    
    .main-title br {
        /*display: none;*/
    }
    .banner-caption {
        top: 20px;
        right: 30px;
        left: 30px;
        text-align: center;
    }
    .banner-caption.inverse {
        top: auto;
        bottom: 30px;
    }
    .banner-caption.inverse .small-title, 
    .banner-caption.inverse p, 
    .banner-caption.inverse .main-title {
        /*color: #000000;*/
    }
    .banner-caption p {
        margin-bottom: 10px;
    }
    .banner-caption .small-title {
        line-height: normal;
        letter-spacing: 0;
    }
    .banner-caption .main-title {
        font-size: 20px;
        line-height: 25px;
    }
    /*.banner-caption p {*/
    /*    font-size: 14px;*/
    /*    color: #000;*/
    /*    line-height: normal;*/
    /*    margin: 0;*/
    /*}*/
    .banner-caption .btn-secondary.white{
        display: none;
    }
    .counter-box {
        padding: 20px;
        border-radius: 5px;
    }
    .counter-top {
        display: block;
        margin-bottom: 15px;
    }
    .main-title {
        font-size: 1.5rem;
    }
    .counter-bottom {
        display: block;
    }
    .counter-bottom .counter {
        margin-bottom: 20px;
        background: #f5f5f5;
        padding: 10px;
        border-radius: 5px;
    }
    .counter-bottom .counter:last-child {
        margin-bottom: 0px;
    }
    .counter-title {
        font-size: 1.5rem;
        padding-bottom: 10px;
        margin-bottom: 12px;
        border-bottom: 2px solid #e7e7e7;
    }
    .services .slick-list.draggable {
        width: 100%;
    }
    .about-content {
        display: flex;
        gap: 40px;
        flex-flow: wrap-reverse;
    }
    .why-grid {
        margin: 20px 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .why-grid .why-item {
        padding: 20px;
    }
    .stories-video-slider {
        padding: 20px 0;
        width: 100%;
        margin-left: 0;
    }
    .slider-video {
        width: 100%;
        height: 220px;
    }
    .community-grid {
        display: block;
    }
    .community-box:before {
        display:none;
    }
    .testimonials-slider {
        margin: 20px 0;
        width: 100%;
        margin-left: 0;
    }
    .testimonial-item {
        padding: 15px;
        border-radius: 5px;
    }
    .star-rating {
        display: block;
    }
    .testimonial-title {
        font-size: 1.2rem;
    }
    .form-box {
        display: block;
        padding: 0 15px 20px;
    }
    .right-form .main-title {
        margin-top: 20px;
    }
    .two-columns {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    .right-form .btn-primary {
        margin-top: 20px;
    }
    .footer .row {
        display: grid;
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        display: block;
        text-align: center;
    }
    
    
    .inner-banner-content, .page-header.inner {
        padding: 50px 0;
    }
    .page-header {
        padding: 50px 0 50px;
    }
    .page-header .main-title {
        font-size: 1.8rem;
    }
    .page-header.inner {
        min-height: auto;
    }
    .page-header.inner .main-title {
        font-size: 1.8rem;
    }
    .larg-para {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .about-slider .slick-list.draggable {
        width: 100%;
        margin-left: 0;
    }
    .vision-mission-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .awards-gallery {
        margin-top: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
    .award img {
        width: 100%;
    }
    .services-details-section {
        padding: 40px 0 20px;
        background: #fff;
    }
    .services-details-section .main-title {
        font-size: 1.5rem;
        margin: 20px 0 15px;
    }
    .services-details-section .main-title br {
        display: none;
    }
    .service-benefits-section {
        background: #f5f5f5;
        padding: 20px 0 40px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .benefits-left {
        position: relative;
    }
    .benefits-block .small-title {
        font-size: 1.2rem;
        margin: 15px 0 10px;
    }
    .ideal-section {
        padding: 40px 0;
    }
    .ideal-content {
        grid-auto-flow: row;
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .ideal-section .ideal-content:nth-child(2) {
        margin-top: 20px;
    }
    .procedure-grid {
        margin: 20px 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .procedure-grid .procedure-item {
        padding: 30px;
        border-radius: 10px;
        border: 1px solid #E3EDFA;
    }
    .recovery-section {
        background: #ffffff;
        padding: 40px 0
    }
    .recovery-grid {
        margin: 20px 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .recovery-item {
        border-radius: 10px;
        overflow: hidden;
    }
    .recovery-item .small-title {
        font-size: 1.2rem;
        text-align: center;
    }
    .text-on-image-section {
        /*padding: 0 0 50px;*/
    }
    .text-on-image {
        border-radius: 15px;
        /*background: #f5f5f5;*/
        padding: 30px 20px;
        text-align: center;
    }
    .hand-img-left, .hand-img-right {
        display: none;
    }
    .contact-form {
        padding: 40px 0;;
    }
    .resource-section {
        padding: 40px 0;
    }
    .resource-section .nav {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .resource-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
    }
    .resource-gallery.video {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-details-section {
        padding: 40px 0;
    }
    .three-contact-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .location-section {
        padding: 40px 0;
    }
    .location-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .location-box {
        padding: 20px;
        text-align: center;
    }
    .locations .main-title {
        font-size: 1.5rem;
    }
    .page-header.inner .larg-para br {
        display: none;
    }
    .blog-section {
        text-align: center;
    }
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }
    .blog-grid.article {
        grid-template-columns: repeat(1, 1fr);
    }
    .article-section {
        margin-top: 50px;
    }
    .article-section .main-title.article-title {
        margin-bottom: 20px;
    }
    .blog-detail-grid {
        grid-template-columns: unset;
        margin-top: 20px;
        gap: 20px;
    }
    .blog-detail-left hr {
        margin: 30px 0;
    }
    .mobile {
        display: block;
    }
    .web {
        display: none !important;
    }
}
