@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap");

:root {
  --primary-color: #663130;

  --secondary-color: #b76f79;

  --light-pink: #f9f1ee;

  --white: #ffffff;

  --gray: #666666;
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;

  line-height: 1.6;

  color: #494949;

  overflow-x: hidden;
}

/* Custom Scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);

  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a05d6a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Literata", serif; */

  color: #494949;

  font-weight: bold;
}

/* Navigation */
.topbar {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 500;
}

.navbar-brand {
  font-size: 1.8rem;

  font-weight: 700;

  color: var(--primary-color) !important;
}

.navbar {
  background: #fff;

  transition: all 0.3s ease;

  padding: 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;

  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.nav-link {
  color: #494949 !important;

  font-weight: 500;

  margin: 0 10px;

  position: relative;

  transition: all 0.3s ease;

  font-size: 18px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: "";

  position: absolute;

  width: 0;

  height: 2px;

  bottom: -5px;

  left: 50%;

  background-color: var(--primary-color);

  transition: all 0.3s ease;

  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}
.bg-theme {
  background: var(--primary-color);
}
.book-now {
  background: white;
  color: #494949;
  padding: 12px 20px;
  border-radius: 0px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 18px;
  border: 1px solid #494949;
}
.book-now:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.drop-menu {
  position: absolute;
  top: 85px;
  background: #fff;
  box-shadow: 0 4px 10px 6px #00000008;
  padding: 10px;
  transition: 0.3s ease all;
  opacity: 0;
  visibility: hidden;
  width: 150px;
  z-index: 9;
  font-weight: 500;
}
.drop-menu li a {
  display: block;
  color: #494949;
  font-size: 16px;
  padding: 10px;
}
.drop-menu li a:hover {
  color: var(--primary-color);
}
.navbar .nav-item:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  top: 75px;
}
/* Hero Section with Video */

.hero-section {
  position: relative;

  height: 100vh;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-video {
  position: absolute;

  top: 50%;

  left: 50%;

  min-width: 100%;

  min-height: 100%;

  width: auto;

  height: auto;

  transform: translateX(-50%) translateY(-50%);

  z-index: -2;
}

.hero-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    135deg,
    rgba(183, 111, 121, 0.8),
    rgba(63, 63, 63, 0.6)
  );

  z-index: -1;
}

.hero-content {
  text-align: center;

  color: white;

  z-index: 1;

  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 4rem;

  font-weight: 700;

  margin-bottom: 1rem;

  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
  color: #fff;
}

.hero-content p {
  font-size: 1.3rem;

  margin-bottom: 2rem;

  font-weight: 300;

  opacity: 0.9;
}

.btn-primary-custom {
  background: var(--primary-color);

  border: none;

  padding: 15px 40px;

  border-radius: 50px;

  font-weight: 600;

  transition: all 0.3s ease;

  box-shadow: 0 8px 25px rgba(183, 111, 121, 0.3);

  text-decoration: none;

  color: white;

  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--secondary-color);

  transform: translateY(-2px);

  box-shadow: 0 12px 35px rgba(183, 111, 121, 0.4);

  color: white;
}

/* Sections */

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;

  font-weight: 600;

  text-align: center;

  margin-bottom: 3rem;

  color: #494949;
}

.section-subtitle {
  text-align: center;

  color: var(--primary-color);

  font-size: 1.1rem;

  text-transform: uppercase;

  font-weight: 500;

  letter-spacing: 2px;

  margin-bottom: 5px;
}

/* Service Cards */

.service-card {
  position: relative;

  overflow: hidden;

  cursor: pointer;

  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;

  object-fit: cover;

  transition: 0.3s ease all;
}

.service-title {
  position: absolute;

  bottom: 25%;

  left: 20px;

  text-align: center;

  color: #fff;

  padding: 5px 20px;

  font-weight: bold;

  font-size: 22px;

  background: var(--primary-color);
}

.sub-services {
  position: absolute;

  top: 50%;

  left: 0;

  height: 100%;

  width: 100%;

  background: rgba(0, 0, 0, 0.8);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  opacity: 0;

  transition: 0.4s ease all;
}

.service-card:hover img {
  scale: 1.1;
}

.service-card:hover .sub-services {
  opacity: 1;

  top: 0;
}

.service-card:hover .service-title {
  opacity: 0;
}

.sub-services h4 {
  margin-bottom: 40px;

  padding-bottom: 10px;

  font-size: 22px;

  color: #fff;

  text-align: center;

  position: relative;
}

.sub-services h4::after {
  content: "";

  position: absolute;

  width: 50px;

  height: 4px;

  background: #fff;

  left: 50%;

  bottom: -10px;

  transform: translateX(-50%);
}

.sub-services ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.sub-services li {
  margin: 8px 0;

  text-align: center;
}

.sub-services li a {
  color: #fff;

  text-decoration: none;

  font-size: 16px;

  transition: color 0.3s ease;

  font-weight: bold;

  text-transform: uppercase;
}

.service-card2 .sub-services {
  top: 0;

  opacity: 1;

  padding: 15px;

  justify-content: end;

  background: rgb(0 0 0 / 64%);
}

.service-card2 .sub-services img {
  width: auto;

  margin-bottom: 10px;
}

.service-card2 .sub-services h4 {
  margin-bottom: 0;

  font-size: 20px;
}

.service-card2 .sub-services h4::after {
  display: none;
}

.service-card2 .sub-services li a {
  background: var(--primary-color);

  padding: 5px 10px;

  font-size: 13px;

  font-weight: normal;

  letter-spacing: 1px;
}

.service-card2 .sub-services li a:hover {
  background: var(--secondary-color);
}

/* About Section */

.about-image {
  background: linear-gradient(45deg, var(--primary-color), #a05d6a);

  border-radius: 15px;

  height: 400px;

  position: relative;

  overflow: hidden;
}

.about-text h2 {
  font-size: 2.5rem;

  color: #494949;

  margin-bottom: 1.5rem;

  font-weight: 600;
}

.about-text p {
  color: var(--gray);

  margin-bottom: 1.5rem;

  font-size: 1.1rem;

  line-height: 1.7;
}
.home-testimonials {
  position: relative;
}
.home-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 75%;
  width: 100%;
  background-color: #fcf5f5;
  z-index: -1;
}
.home-testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 75%;
  width: 100%;
  background-image: url(../img/testimonial-one-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-testimonials .container-xxl {
  position: relative;
  z-index: 1;
}
/* Testimonials */

.testimonial-card {
  background: white;

  padding: 3rem;

  border-radius: 0px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  position: relative;

  height: 100%;

  border: none;
  z-index: 1;
}

.testimonial-card .rating {
  color: var(--secondary-color);

  margin-bottom: 1rem;

  font-size: 30px;
}

.testimonial-text {
  color: #000000;

  margin-bottom: 1.5rem;

  line-height: 1.6;

  font-weight: 500;
}

.testimonial-author {
  display: flex;

  align-items: center;

  gap: 1rem;

  border-top: 1px solid #00000036;

  padding-top: 25px;
}

.author-avatar {
  width: 50px;

  height: 50px;

  background: linear-gradient(135deg, var(--primary-color), #a05d6a);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-weight: 600;
}

.author-info h5 {
  color: #494949;

  font-weight: 600;

  margin-bottom: 0;
}

.author-info small {
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 12px;
}

.testimonial-section {
  position: relative;

  z-index: 1;
}

.testimonial-section .shape {
  z-index: -1;

  position: absolute;

  bottom: -20px;

  left: 0;
}

@media (max-width: 767px) {
  .testimonial-section .shape {
    display: none;
  }
}

.testimonial-section .slider-arrys {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 20px;
}

.testimonial-section .slider-arrys button {
  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  width: 50px;

  height: 50px;

  line-height: 50px;

  text-align: center;

  border-radius: 50%;

  transition: all 0.3s;

  border-radius: 3px;

  background-color: #f6ecec;

  font-size: 18px;
}

.testimonial-section .slider-arrys button:hover {
  color: var(--light-pink);

  background-color: var(--primary-color);
}

.testimonial-block .inner-box {
  position: relative;

  z-index: 1;
}

.testimonial-block .inner-box .image-box {
  position: absolute;

  top: 0;

  left: 0;

  width: 100px;

  height: 100px;

  border-bottom-right-radius: 30px;
}

.testimonial-block .inner-box .image-box .image {
  width: 85px;

  height: 85px;

  -o-object-fit: cover;

  object-fit: cover;

  border-radius: 50%;

  overflow: hidden;
}

.testimonial-block .inner-box .content-box {
  padding: 30px;

  background-color: #fdf6f2;

  border-radius: 30px;

  overflow: hidden;

  /* Mask properties */

  mask-image: url("../img/testimonial-item-mask.png");

  mask-repeat: no-repeat;

  mask-size: cover;

  mask-position: top left;

  -webkit-mask-image: url("../img/testimonial-item-mask.png");

  -webkit-mask-repeat: no-repeat;

  -webkit-mask-size: cover;

  -webkit-mask-position: top left;
}

.testimonial-block .inner-box .content-box .head {
  margin-left: 95px;

  margin-bottom: 40px;
}

.testimonial-block .inner-box .content-box .star {
  margin-top: 20px;
}

.testimonial-block .inner-box .content-box .star i {
  font-size: 18px;

  color: var(--secondary-color);
}

.testimonial-section-two {
  overflow: hidden;

  position: relative;

  z-index: 1;
}

.testimonial-section-two .shape1 {
  position: absolute;

  top: 80px;

  left: 0;

  z-index: -1;
}

@media (max-width: 767px) {
  .testimonial-section-two .shape1 {
    display: none;
  }
}

/* expert cards */

.expert-care .row {
  background: var(--primary-color); /* gray background */

  border-radius: 15px;

  padding: 40px 20px;

  color: #333;

  text-align: center;
}

.expert-care .row i {
  font-size: 30px;

  margin-bottom: 15px;

  color: #fff;
}

.expert-care .row h4 {
  font-weight: 600;

  margin-bottom: 10px;

  color: #fff;
}

.expert-care .row p {
  font-size: 14px;

  color: #fff;
}

/* expert cards end  */

/* doctor profile  */

.doctor-section {
  background: #f9f1ee; /* light beige background */
}

.doctor-info .des {
  color: #555;

  /* font-size: 14px; */

  margin-bottom: 25px;
}

.doctor-info .speciality {
  font-weight: 600;

  margin: 10px 0;

  font-size: 20px;
}

.doctor-info img {
  max-height: 50px;

  margin: 15px 20px 15px 0;
}

.btn-custom {
  background: #5b2d2c;

  color: #fff;

  font-weight: 600;

  padding: 10px 25px;

  border-radius: 4px;
}

.doctor-img {
  position: relative;

  text-align: center;
}

.doctor-img img {
  max-width: 100%;

  /* border-radius: 8px; */
}
.roll-img {
  animation: play-state 10s infinite linear;
  position: absolute;
  left: -50px;
  top: 50%;
  translate: 0 -50%;
  width: 180px;
}
@keyframes play-state {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}

.doctor-section .testimonial-box {
  position: absolute;

  bottom: 20px;

  right: -10px;

  /* transform: translateX(-50%); */

  background: #fff;

  padding: 15px 20px;

  border-radius: 6px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  font-size: 14px;

  max-width: 350px;

  width: 100%;
}

.theme-text {
  color: var(--primary-color);
}

/* doctor profile end */

/* Blog Cards */

.blog-card {
  background: white;

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  border: none;

  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  background: linear-gradient(45deg, var(--primary-color), #a05d6a);

  height: 200px;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card h5 {
  color: #494949;

  font-weight: 600;

  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray);

  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);

  font-weight: 500;

  text-decoration: none;
}

.read-more:hover {
  color: #a05d6a;
}

/* faq  */

.faqs .accordion-item {
  margin-bottom: 15px;

  border: 1px solid var(--primary-color);

  border-radius: 0;
}

.faqs .accordion-item .accordion-header {
  background: var(--primary-color);

  border-radius: 0;
}

.faqs .accordion-item .accordion-button:not(.collapsed) {
  background: var(--primary-color);

  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

.faqs .accordion-item .accordion-button {
  font-size: 20px;

  border-radius: 0 !important;

  line-height: 1.5;
}

.faqs .accordion-item .accordion-body {
  font-size: 18px;

  color: #494949;

  line-height: 1.6;
}

/* faq end */

/* Contact Form */

.contact-section {
  background: #ffff;

  color: #494949;
}

/* .contact-info h2 {

  font-size: 2.5rem;  

  color: #000;

  font-weight: bold;

} */

.contact-item {
  display: flex;

  align-items: center;

  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;

  height: 50px;

  background: var(--primary-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  margin-right: 1rem;
}

.contact-form {
  background: rgb(0 0 0 / 22%);

  padding: 2rem;

  border-radius: 15px;

  backdrop-filter: blur(10px);
}

.form-control {
  height: calc(2.25rem + 27px);

  padding: 14px 30px;

  outline: 0;

  background-color: var(--light-pink) !important;

  border: 1px solid #f4f5f8 !important;

  color: var(--theme-color-dark);

  font-size: 0.9rem;

  width: 100%;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.form-control:focus {
  box-shadow: none;

  outline: none !important;
}

/* instegram widget  */

.instagram-widget .my-slider .item {
  position: relative;

  overflow: hidden;
}

.instagram-widget .my-slider .item img {
  width: 100%;

  height: auto;

  display: block;

  transition: 0.3s ease;
}

/* Hover effect */

.instagram-widget .my-slider .item:hover img {
  transform: scale(1.05);

  filter: brightness(70%);
}

.instagram-widget .my-slider .item .overlay {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 24px;

  opacity: 0;

  transition: 0.3s ease;
}

.instagram-widget .my-slider .item:hover .overlay {
  opacity: 1;
}

/* instegram widget end  */

/* Footer */

.footer {
  background: var(--primary-color);

  color: white;

  padding: 70px 0 25px;
}

.footer h6 {
  font-size: 20px;

  font-weight: bold;

  color: #fff;
}
.footer h5 {
  font-size: 16px;

  font-weight: 500;

  color: #fff;

  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
}

.newsletter-form form {
  display: flex;

  gap: 10px;

  border-bottom: 1px solid #ffffff;

  position: relative;
}

.newsletter-form form input {
  border: 0 !important ;

  background: transparent !important;

  box-shadow: none !important;

  outline: none !important;

  padding: 0;

  color: #fff;
}

.newsletter-form form input::placeholder {
  color: #fff;

  opacity: 0.7;
}

.newsletter-form form input .btn {
  position: absolute;

  right: 0;
}

a {
  text-decoration: none !important;
}

/* about us  */

.about-me {
}

.about-me .team-member {
  /* margin-bottom: 3rem; */
}

.about-me .team-name {
  font-size: 1.8rem;

  font-weight: 600;

  color: #494949;

  margin-bottom: 0.5rem;
}

.about-me .team-bio {
  color: var(--gray);

  line-height: 1.6;
}

.clinic-card {
  overflow: hidden;
}

.brand-section {
  position: relative;
}

.brand-title {
  color: #8b7355;

  font-size: 2.5rem;

  font-weight: 300;

  margin-bottom: 10px;

  letter-spacing: 1px;
}

.brand-subtitle {
  color: #666;

  font-size: 1.8rem;

  font-weight: 300;

  margin-bottom: 30px;

  letter-spacing: 0.5px;
}

.journey-badge {
  color: var(--primary-color);

  border-radius: 20px;

  font-size: 1rem;

  font-weight: 500;

  margin-bottom: 20px;
}

.professional-image {
  width: 250px;

  height: 300px;

  object-fit: cover;
}

.welcome-text {
  background: white;

  padding: 20px;

  border-radius: 10px;

  font-size: 1.1rem;

  line-height: 1.7;

  color: #555;

  font-style: italic;
}

.solutions-section {
  margin-bottom: 0;
}

.solutions-title {
  font-size: 1.2rem;

  font-weight: 600;

  margin: 0;

  background: var(--primary-color);

  color: white;

  text-align: center;

  padding: 11px 25px;

  border-radius: 0px;

  margin-bottom: 20px;

  width: fit-content;
}

.features-section {
}

.feature-item {
  margin-bottom: 5px;

  padding: 20px 0;

  border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
  border-bottom: none;

  margin-bottom: 0;
}

.feature-icon {
  width: 20px;

  height: 20px;

  background: var(--primary-color);

  border-radius: 50%;

  display: inline-block;

  margin-right: 15px;

  position: relative;

  top: 4px;
}

.feature-icon::after {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 8px;

  height: 8px;

  background: white;

  border-radius: 50%;
}

.feature-text {
  width: calc(100% - 35px);
}

.feature-title {
  font-size: 1.3rem;

  font-weight: 600;

  color: #333;

  margin-bottom: 10px;
}

.feature-description {
  color: #666;

  font-size: 1rem;

  line-height: 1.6;

  margin: 0;
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 2rem;
  }

  .brand-subtitle {
    font-size: 1.4rem;
  }

  .professional-image {
    width: 100%;

    height: 250px;

    margin-bottom: 20px;
  }

  .brand-section,
  .features-section {
    padding: 0px;
  }
  .solutions-section {
    margin-top: 40px;
  }
  .feature-item {
    padding-bottom: 0;
  }
}

.how-it-works-section {
  background: white;

  padding: 80px 0;

  position: relative;
}

.step-container {
  position: relative;

  margin-bottom: 40px;
}

.step-image-wrapper {
  position: relative;

  display: inline-block;

  margin-bottom: 30px;
}

.step-image {
  width: 180px;

  height: 180px;

  border-radius: 50%;

  object-fit: cover;

  border: 8px solid white;

  box-shadow: 0 0px 0px 2px var(--primary-color);

  transition: transform 0.3s ease;
}

.step-image:hover {
  transform: scale(1.05);
}

.step-number {
  position: absolute;

  top: -10px;

  right: -10px;

  width: 50px;

  height: 50px;

  background: var(--primary-color);

  color: white;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.2rem;

  font-weight: 600;

  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step-title {
  font-size: 1.5rem;

  font-weight: 500;

  color: #333;

  margin-bottom: 20px;

  text-align: center;
}

.step-description {
  color: #666;

  font-size: 1rem;

  line-height: 1.6;

  text-align: center;

  max-width: 280px;

  margin: 0 auto;
}

.connection-line {
  position: absolute;

  top: 90px;

  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 180px);

  height: 2px;

  background: var(--primary-color);

  z-index: 0;
}

.connection-line:after {
  content: "";

  position: absolute;

  right: -8px;

  top: -4px;

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: var(--primary-color);
}

.connection-line::before {
  content: "";

  position: absolute;

  left: -8px;

  top: -4px;

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: var(--primary-color);
}

.step-col {
  position: relative;

  z-index: 1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .step-image {
    width: 150px;

    height: 150px;
  }

  .step-number {
    width: 40px;

    height: 40px;

    font-size: 1rem;
  }

  .connection-line {
    display: none;
  }

  .how-it-works-section {
    padding: 50px 0;
  }
}

@media (max-width: 992px) {
  .connection-line {
    display: none;
  }
}

/* Responsive */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

/* Smooth scroll */

html {
  scroll-behavior: smooth;
}

/* Background colors for sections */

.bg-light-custom {
  background-color: var(--light-pink);
}

.cta-section {
  background: var(--primary-color);

  position: relative;

  overflow: hidden;

  padding: 80px 0;
}

.cta-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 20px;

  padding: 40px 30px;

  text-align: center;

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}

.cta-card::before {
  content: "";

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: linear-gradient(
    45deg,
    transparent 30%,

    rgba(255, 255, 255, 0.1) 50%,

    transparent 70%
  );

  transform: rotate(45deg);

  transition: all 0.6s ease;

  opacity: 0;
}

.cta-card:hover::before {
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);

    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);

    opacity: 0;
  }
}

.cta-card:hover {
  transform: translateY(-10px);

  background: rgba(255, 255, 255, 0.15);

  border-color: rgba(255, 255, 255, 0.3);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-icon {
  width: 80px;

  height: 80px;

  background: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  font-size: 2rem;

  color: var(--primary-color);

  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);

  transition: all 0.3s ease;
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);

  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-title {
  color: white;

  font-size: 1.3rem;

  font-weight: 600;

  margin-bottom: 20px;

  line-height: 1.4;
}

.cta-button {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);

  border: none;

  color: white;

  padding: 15px 30px;

  border-radius: 50px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  font-size: 0.9rem;

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

  width: 100%;

  /* max-width: 250px; */
}

.cta-button::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );

  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);

  background: linear-gradient(135deg, #f06292 0%, #e91e63 100%);
}

.cta-button:active {
  transform: translateY(0);
}

.phone-number {
  font-size: 1.8rem;

  font-weight: 700;

  color: var(--light-pink);

  margin-bottom: 20px;

  letter-spacing: 2px;
}

.email-text {
  font-size: 0.95rem;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 25px;
}

/* Floating particles animation */

.particle {
  position: absolute;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 50%;

  animation: floatParticles 15s infinite linear;
}

.particle:nth-child(1) {
  width: 6px;

  height: 6px;

  left: 10%;

  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 8px;

  height: 8px;

  left: 20%;

  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 4px;

  height: 4px;

  left: 40%;

  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 10px;

  height: 10px;

  left: 60%;

  animation-delay: 6s;
}

.particle:nth-child(5) {
  width: 5px;

  height: 5px;

  left: 80%;

  animation-delay: 8s;
}

@keyframes floatParticles {
  0% {
    transform: translateY(100vh) rotate(0deg);

    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);

    opacity: 0;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-card {
    padding: 30px 20px;

    margin-bottom: 30px;
  }

  .cta-icon {
    width: 60px;

    height: 60px;

    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.1rem;
  }

  .phone-number {
    font-size: 1.5rem;
  }
}

.page-title {
  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  padding: 175px 0;

  position: relative;
}

@media (max-width: 1199.98px) {
  .page-title {
    padding: 175px 0;
  }
}

.page-title:before {
  background: #131313;

  content: "";

  height: 100%;

  left: 0;

  opacity: 0.7;

  position: absolute;

  top: 0;

  width: 100%;

  z-index: 0;
}

.page-title .title {
  font-size: 64px;

  color: #ffffff;

  margin-bottom: 17px;
}

.page-title .text {
  position: relative;

  color: #ffffff;

  font-size: 16px;

  line-height: 26px;

  letter-spacing: 0.05em;

  max-width: 520px;
}

.page-title .title-outer {
  position: relative;
}

.page-breadcrumb {
  position: relative;

  margin-top: 5px;
}

.page-breadcrumb li {
  position: relative;

  display: inline-block;

  margin-right: 12px;

  padding-right: 13px;

  color: #ffffff;

  font-size: 14px;

  font-weight: 400;

  text-transform: capitalize;
}

.page-breadcrumb li:after {
  position: absolute;

  content: "/";

  right: -6px;

  top: 1px;

  color: #ffffff;

  font-size: 14px;

  font-weight: 900;

  color: #ffffff;
}

.page-breadcrumb li:last-child {
  margin-right: 0px;

  padding-right: 0px;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li a {
  color: var(--light-pink);

  font-weight: 500;

  text-transform: capitalize;

  transition: all 0.3s ease;

  -moz-transition: all 0.3s ease;

  -webkit-transition: all 0.3s ease;

  -ms-transition: all 0.3s ease;

  -o-transition: all 0.3s ease;
}

.page-breadcrumb li a:hover {
  color: var(--light-pink);
}

.page-title.style-two {
  background-position: center center;
}

.page-title.style-two .page-breadcrumb-outer {
  bottom: 0;

  left: 0;

  padding: 10px 0;

  -webkit-transform: translateY(100%);

  transform: translateY(100%);

  position: absolute;

  width: 100%;

  z-index: 8;
}

.page-title.style-two .page-breadcrumb li {
  color: rgb(7, 7, 16);

  font-weight: 600;
}

.page-title.style-two .page-breadcrumb li:after {
  color: rgb(7, 7, 16);
}

.page-title.style-two .page-breadcrumb li a {
  color: rgba(7, 7, 16, 0.6);
}

.page-title.style-two .page-breadcrumb li a:hover {
  color: rgb(7, 7, 16);
}

.single-service-box {
  position: relative;
}

.single-service-box img {
  transition: 0.3s ease all;
  height: 320px;
  object-fit: cover;
  object-position: top;
  scale: 1.1;
}
.single-service-box.odd img {
  height: 250px;
}

.single-service-box .view-more {
  position: absolute;

  top: 40%;

  left: 50%;

  translate: -50% -40%;

  font-size: 20px;

  color: #fff;

  font-weight: bold;

  opacity: 0;
}
.single-service-box .img-box {
  overflow: hidden;
}

.single-service-box:hover img {
  /* filter: brightness(0.5); */
}

.single-service-box:hover .view-more {
  opacity: 0;
}
.single-service-box:hover img {
  scale: 1;
}

.single-service-box .service-name {
  text-transform: uppercase;

  letter-spacing: 1px;

  font-size: 16px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  font-weight: bold;

  color: #000;
  text-align: left;
}

.single-service-box .service-name .num {
  color: var(--primary-color);

  opacity: 0.6;

  font-size: 50px;

  font-weight: bold;
}

/* Main booking card container */

.booking-card {
  max-width: 500px;

  margin: 0 auto;

  background: white;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  transition: transform 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-5px);
}

/* Hero section with spa image */

.booking-card-section {
  position: relative;

  height: 450px;

  background: url("../img/why-choose-us.jpg") center/cover;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* Overlay for hero section */

.booking-card-overlay {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,

    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Phone icon container */

.phone-icon-container {
  position: absolute;

  z-index: 2;

  background: white;

  width: 80px;

  height: 80px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: all 0.3s ease;

  cursor: pointer;

  bottom: -40px;
}

.phone-icon-container:hover {
  transform: scale(1.1);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Phone icon */

.phone-icon {
  font-size: 1.8rem;

  color: var(--primary-color);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* CTA section */

.booking-card-cta-section {
  background: var(--primary-color);

  padding: 70px 30px 40px;

  text-align: center;

  color: white;

  position: relative;
}

/* CTA title */

.booking-card-cta-title {
  font-size: 1.3rem;

  font-weight: 500;

  margin-bottom: 0;

  letter-spacing: 1px;

  position: relative;

  z-index: 1;

  color: #fff;
}

/* Phone number */

.booking-card-phone-number {
  font-size: 2rem;

  font-weight: 600;

  letter-spacing: 2px;

  position: relative;

  z-index: 1;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  transition: all 0.3s ease;

  cursor: pointer;
}

.booking-card-phone-number:hover {
  transform: scale(1.05);

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Booking button */

.booking-button {
  background: rgba(255, 255, 255, 0.2);

  border: 2px solid white;

  color: white;

  padding: 15px 40px;

  border-radius: 50px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-top: 25px;

  transition: all 0.3s ease;

  position: relative;

  z-index: 1;

  overflow: hidden;

  cursor: pointer;
}

.booking-button::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: white;

  transition: left 0.3s ease;

  z-index: -1;
}

.booking-button:hover {
  color: #e89ba3;

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.booking-button:hover::before {
  left: 0;
}

/* Floating elements */

.floating-element {
  position: absolute;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 50%;

  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(3) {
  width: 20px;

  height: 20px;

  top: 20%;

  left: 10%;

  animation-delay: 0s;
}

.floating-element:nth-child(4) {
  width: 15px;

  height: 15px;

  top: 70%;

  right: 15%;

  animation-delay: 2s;
}

.floating-element:nth-child(5) {
  width: 25px;

  height: 25px;

  top: 40%;

  right: 20%;

  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive design */

@media (max-width: 576px) {
  .booking-card {
    margin: 0 15px;

    max-width: none;
  }

  .booking-card-section {
    height: 350px;
  }

  .phone-icon-container {
    width: 70px;

    height: 70px;
  }

  .phone-icon {
    font-size: 1.5rem;
  }

  .booking-card-cta-section {
    padding: 60px 15px 30px;
  }

  .booking-card-cta-title {
    font-size: 1.2rem;
  }

  .booking-card-phone-number {
    font-size: 1.3rem;
  }

  .booking-button {
    padding: 12px 30px;

    font-size: 0.9rem;
  }
}

.services-list-box {
  background: var(--primary-color);

  border-radius: 10px;

  padding: 50px;

  margin-bottom: 0;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  display: flex;

  align-items: center;

  list-style: none;

  justify-content: space-between;
}

.services-list-box li {
  padding: 0 15px;

  font-size: 16px;

  color: #fff;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 1px;

  text-align: center;
}

.services-list-box li img {
  width: 80px;

  margin: 0 auto 20px;

  display: block;

  height: 80px;

  background: #fff;

  border-radius: 10px;

  padding: 15px;

  transition: 0.3s ease all;
}

.services-list-box li:hover img {
  scale: -1 1;
}

.why-choose .badge-text {
  background-color: #ffd700;

  color: #333;

  padding: 8px 16px;

  border-radius: 20px;

  font-size: 14px;

  font-weight: 600;

  display: inline-block;

  margin-bottom: 1.5rem;

  text-transform: uppercase;
}

.why-choose .feature-list {
  list-style: none;

  padding: 0;

  margin: 2rem 0;
}

.why-choose .feature-list li {
  padding: 0.3rem 0;

  color: #666;

  font-size: 1.1rem;

  position: relative;

  padding-left: 2rem;
}

.why-choose .feature-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--primary-color);

  font-weight: bold;

  font-size: 1.2rem;
}

.why-choose .nail-image {
  width: 100%;

  height: auto;

  border-radius: 15px;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
}

/* after before slider  */

iframe {
  aspect-ratio: 16/9;
}

.video-container {
  margin: 2rem;

  max-height: 300px;
}

img {
  display: block;

  max-width: 100%;
}

main {
  display: grid;

  place-items: center;

  min-height: 100vh;
}

.ab-container {
  display: grid;

  place-content: center;

  position: relative;

  overflow: hidden;

  border-radius: 1rem;

  --position: 50%;
}

.image-container {
  max-width: 800px;

  max-height: 90vh;

  aspect-ratio: 1/1;
}

.slider-image {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: left;
}

.image-before {
  position: absolute;

  inset: 0;

  width: var(--position);

  filter: grayscale(100%);
}

.slider {
  position: absolute;

  inset: 0;

  cursor: pointer;

  opacity: 0;

  /* for Firefox */

  width: 100%;

  height: 100%;
}

.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;

  outline-offset: 3px;
}

.slider-line {
  position: absolute;

  inset: 0;

  width: 0.2rem;

  height: 100%;

  background-color: #fff;

  /* z-index: 10; */

  left: var(--position);

  transform: translateX(-50%);

  pointer-events: none;
}

.slider-button {
  position: absolute;

  background-color: #fff;

  color: black;

  padding: 0.5rem;

  border-radius: 100vw;

  display: grid;

  place-items: center;

  top: 50%;

  left: var(--position);

  transform: translate(-50%, -50%);

  pointer-events: none;

  /* z-index: 100; */

  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, 0.5);
}

/* after before slider end   */

/* blog box  */

.blog-block .inner-box {
}

.blog-block .inner-box .image-box .image {
  overflow: hidden;
  position: relative;
}

.blog-block .inner-box .image-box .image img {
  -webkit-transition: 0.5s;

  transition: 0.5s;
}
.blog-block .inner-box .image-box .image .date {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: bold;
}
.blog-block .inner-box:hover .image .date {
  background: var(--secondary-color);
}

.blog-block .inner-box .content-box {
  padding: 12px 0 30px;
}

.blog-block .inner-box .content-box .info {
  font-weight: 400;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  gap: 30px;
}

.blog-block .inner-box .content-box .info .dot {
  color: var(--primary-color);

  position: relative;
}

.blog-block .inner-box .content-box .info .dot::before {
  position: absolute;

  top: 10px;

  left: -15px;

  width: 3px;

  height: 3px;

  border-radius: 50%;

  background-color: var(--primary-color);

  content: "";
}

.blog-block .inner-box .content-box .title {
  margin: 20px 0;
}

.blog-block .inner-box .content-box .title a {
  color: #000;
}

.blog-block .inner-box .content-box .title a:hover {
  color: var(--primary-color);

  text-decoration: underline;
}

.blog-block .inner-box .content-box .readMore-btn {
  color: #000;
}

.blog-block .inner-box .content-box .readMore-btn:hover {
  letter-spacing: 2px;
}

.blog-block .inner-box:hover .image img {
  filter: brightness(0.9);
}

/* blog box end */

/* blog details  */

.blog-details {
  position: relative;

  display: block;
}

.blog-details__left {
  position: relative;

  display: block;
}

.blog-details__img {
  position: relative;

  display: block;

  border-radius: 10px;
}

.blog-details__img img {
  width: 100%;

  border-radius: 10px;
}

.blog-details__date {
  position: absolute;

  bottom: 0;

  right: 0;

  background-color: var(--primary-color);

  text-align: center;

  padding: 21px 24px 20px;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  border-bottom-right-radius: 10px;

  border-top-left-radius: 10px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;
}

.blog-details__date .day {
  font-size: 16px;

  color: #fff;

  font-weight: var(--body-font-weight-bold);

  line-height: 16px;
}

.blog-details__date .month {
  position: relative;

  display: block;

  font-size: 10px;

  font-weight: var(--body-font-weight-bold);

  color: #fff;

  line-height: 12px;

  text-transform: uppercase;
}

.blog-details__content {
  position: relative;

  display: block;

  margin-top: 22px;
}

.blog-details__meta {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
}

.blog-details__meta li + li {
  margin-left: 18px;
}

.blog-details__meta li a {
  font-size: 15px;

  color: #777;

  font-weight: 500;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.blog-details__meta li a:hover {
  color: var(--primary-color);
}

.blog-details__meta li a i {
  color: var(--primary-color);

  margin-right: 6px;
}

.blog-details__title {
  font-size: 30px;

  line-height: 40px;

  margin-top: 12px;

  margin-bottom: 21px;

  font-weight: var(--body-font-weight-bold);
}

.blog-details__bottom {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  padding: 30px 0 30px;

  margin-top: 49px;

  border-top: 1px solid #ece9e0;
}

@media only screen and (max-width: 767px) {
  .blog-details__bottom {
    gap: 30px;
  }
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: #0e2207;

  font-size: 20px;

  margin-right: 14px;

  font-weight: var(--body-font-weight-bold);
}

.blog-details__tags a {
  position: relative;

  font-size: 12px;

  background-color: #494949;

  color: var(--light-pink);

  display: inline-block;

  padding: 5px 30px 5px;

  font-weight: var(--body-font-weight-bold);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  border-radius: 35px;
}

.blog-details__tags a:hover {
  background-color: var(--primary-color);

  color: var(--light-pink);

  text-decoration: none;
}

.blog-details__tags a + a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
}

.blog-details__social-list a {
  position: relative;

  height: 43px;

  width: 43px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  text-align: center;

  color: var(--theme-light-background-text-color);

  background-color: var(--theme-light-background);

  font-size: 15px;

  border-radius: 50%;

  overflow: hidden;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;
}

.blog-details__social-list a:hover {
  color: var(--light-pink);
}

.blog-details__social-list a:hover:after {
  opacity: 1;

  -webkit-transform: scaleY(1);

  transform: scaleY(1);
}

.blog-details__social-list a:after {
  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: #494949;

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.4s;

  -webkit-transition-property: all;

  transition-property: all;

  opacity: 1;

  -webkit-transform-origin: top;

  transform-origin: top;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;

  -webkit-transform: scaleY(0);

  transform: scaleY(0);

  z-index: -1;
}

.blog-details__social-list a + a {
  margin-left: 10px;
}

.blog-details__pagenation-box {
  position: relative;

  display: block;

  overflow: hidden;

  margin-bottom: 53px;
}

.blog-details__pagenation {
  position: relative;

  display: block;
}

.blog-details__pagenation li {
  position: relative;

  float: left;

  font-size: 20px;

  color: #0e2207;

  font-weight: var(--body-font-weight-bold);

  color: var(--theme-light-background-text-color);

  background-color: var(--theme-light-background);

  line-height: 30px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  max-width: 370px;

  width: 100%;

  padding-left: 60px;

  padding-right: 60px;

  padding-top: 52px;

  padding-bottom: 52px;

  border-radius: 10px;
}

.blog-details__pagenation li:hover {
  background-color: #494949;

  color: var(--text-color-bg-seco--secondary-color);
}

.blog-details__pagenation li + li {
  margin-left: 30px;
}

/* Nav Links */

.nav-links {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  margin-bottom: 53px;
}

@media only screen and (max-width: 767px) {
  .nav-links {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    gap: 20px;
  }
}

.nav-links .prev {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  height: 100%;

  width: calc(50% - 15px);

  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .nav-links .prev {
    width: 100%;
  }
}

.nav-links .prev .thumb {
  margin-right: 20px;
}

.nav-links .next {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  height: 100%;

  -webkit-box-orient: horizontal;

  -webkit-box-direction: reverse;

  -ms-flex-direction: row-reverse;

  flex-direction: row-reverse;

  width: calc(50% - 15px);
}

@media only screen and (max-width: 767px) {
  .nav-links .next {
    width: 100%;
  }
}

.nav-links .next .thumb {
  margin-left: 20px;
}

.nav-links > div {
  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.nav-links > div .thumb {
  display: inline-block;

  min-width: 60px;

  width: 60px;

  height: 60px;

  overflow: hidden;
}

.nav-links > div .thumb a {
  display: inline-block;
}

.nav-links > div > a {
  display: inline-block;

  word-wrap: break-word;

  white-space: -moz-pre-wrap;

  white-space: pre-wrap;

  font-size: 20px;

  line-height: 1.637;

  font-weight: var(--body-font-weight-bold);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  background-color: #f5f5f5;

  color: var(--theme-light-background-text-color);

  padding: 52px 50px;

  border-radius: 10px;

  width: 100%;
}

@media only screen and (max-width: 767px) {
  .nav-links > div > a {
    padding: 30px;
  }
}

.nav-links > div > a:hover {
  background-color: var(--primary-color);

  color: var(--light-pink);
}

/*** 



====================================================================

Sidebar

====================================================================



***/

@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  color: #000;
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.sidebar__search {
  position: relative;

  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;

  border: none;

  outline: none;

  background-color: var(--primary-color);

  color: var(--light-pink);

  font-size: 16px;

  font-weight: 500;

  padding-left: 50px;

  height: 74px;

  width: 100%;

  padding-right: 80px;

  border-radius: 10px;
}

.sidebar__search-form input[type="search"]::-webkit-input-placeholder {
  color: var(--light-pink);

  opacity: 1;
}

.sidebar__search-form input[type="search"]::-webkit-input-placeholder,
.sidebar__search-form input[type="search"]:-ms-input-placeholder,
.sidebar__search-form input[type="search"]::-ms-input-placeholder,
.sidebar__search-form input[type="search"]::placeholder {
  color: var(--light-pink);

  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__search-form input[type="search"] {
    padding-left: 30px;
  }
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;

  color: var(--light-pink);

  font-size: 22px;

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  width: 72px;

  outline: none;

  border: none;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  padding: 0;
}

@media only screen and (max-width: 767px) {
  .sidebar__search-form button[type="submit"] {
    width: 42px;
  }
}
.sidebar {
  background-color: #fff;
  border: 1px solid var(--primary-color);
  padding: 30px;
}
.sidebar__post {
  position: relative;

  display: block;

  color: var(--theme-light-background-text-color);

  border-radius: 10px;

  overflow: hidden;

  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__post {
    padding: 20px;
  }
}

.sidebar__post .sidebar__title {
  /* margin-left: 20px; */
}

@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__title {
    margin-left: 0;
  }
}

.sidebar__post .sidebar__post-list {
  margin: 0;
}

.sidebar__post .sidebar__post-list li {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  padding: 12px 0px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__post-list li {
    padding: 16px 0;
  }
}

.sidebar__post .sidebar__post-list li + li {
  margin-top: 11px;
}

.sidebar__post .sidebar__post-list .sidebar__post-image {
  margin-right: 20px;

  -webkit-box-flex: 70px;

  -ms-flex: 70px 0 0px;

  flex: 70px 0 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-image > img {
  width: 80px;

  border-radius: 10px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content {
  position: relative;

  top: -3px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
  font-size: 18px;

  margin: 0;

  line-height: 26px;

  letter-spacing: 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
  color: #0e2207;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  display: block;

  font-size: 16px;

  font-weight: 700;

  line-height: 24px;
}
.sidebar__post .sidebar__post-list li:hover .sidebar__post-content h3 a {
  color: var(--primary-color);
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
  font-size: 14px;

  font-weight: 500;

  color: #757873 !important;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
  color: var(--primary-color);

  font-size: 14px;

  padding-right: 3px;
}
.sidebar__post-list.nav li {
  padding: 0;
  margin: 0 !important;
}
.sidebar__post-list.nav li a {
  display: block;
  color: #000;
  position: relative;
  font-size: 16px;
  padding: 8px 8px 8px 35px;
  width: 100%;
}
.sidebar__post-list.nav li a:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  translate: 0 -50%;
  width: 15px;
  height: 1px;
  background-color: #494949;
}
.sidebar__post-list.nav li a.active,
.sidebar__post-list.nav li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.sidebar__post-list li.nav a.active:before,
.sidebar__post-list li.nav a:hover:before {
  background: #fff;
}
.sidebar .announce-banner a {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sidebar .announce-banner a span {
  display: block;
  margin-top: 10px;
}
.sidebar .announce-banner a:hover {
  color: var(--primary-color);
}
@media only screen and (max-width: 767px) {
  .sidebar__category {
    padding: 30px 15px 30px;
  }
}

.sidebar__category .sidebar__title {
  padding-left: 20px;

  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li + li {
  margin-top: 4px;
}

.sidebar__category-list li a {
  color: #757873;

  font-size: 16px;

  position: relative;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  display: block;

  background: none;

  padding: 12px 20px;

  font-weight: 500;

  border-radius: 10px;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);

  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  color: #0e2207;

  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}

.sidebar__category-list li a:hover span {
  color: #ffcd1e;

  -webkit-transform: translateY(-50%) scale(1);

  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li a span {
  position: absolute;

  top: 50%;

  right: 20px;

  -webkit-transform: translateY(-50%) scale(0);

  transform: translateY(-50%) scale(0);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  color: #494949;

  text-align: center;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  font-size: 16px;
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);

  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  color: #0e2207;

  border-radius: 10px;

  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);

  transform: translateY(-50%) scale(1);

  color: #ffcd1e;
}

.sidebar__tags {
  background-color: #f5f5f5;

  border-radius: 10px;

  color: var(--theme-light-background-text-color);

  display: block;

  overflow: hidden;

  padding: 46px 45px 50px;

  position: relative;

  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__tags {
    padding: 30px;
  }
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;

  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;

  color: #0e2207;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  background: #ffffff;

  display: inline-block;

  padding: 5px 28px 5px;

  margin-left: 5px;

  border-radius: 30px;
}

.sidebar__tags-list a:hover {
  background: var(--primary-color);

  color: var(--light-pink);
}

.sidebar__tags-list a + a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__comments {
  position: relative;

  display: block;

  color: var(--theme-light-background-text-color);

  overflow: hidden;

  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__comments {
    padding: 30px;
  }
}

.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__comments-list {
  position: relative;

  display: block;
}

.sidebar__comments-list li {
  position: relative;

  display: block;

  padding-left: 65px;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: #494949;

  color: var(--light-pink);
}

.sidebar__comments-list li + li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;

  width: 45px;

  background-color: var(--primary-color);

  border-radius: 50%;

  font-size: 15px;

  color: var(--light-pink);

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  position: absolute;

  top: 0;

  left: 0;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;
}

.sidebar__comments-text-box p {
  font-size: 15px;

  margin: 0;

  line-height: 26px;

  font-weight: 500;
}

.sidebar__comments-text-box p span {
  color: #0e2207;
}

.sidebar__comments-text-box h5 {
  font-size: 15px;

  margin: 0;

  line-height: 26px;

  color: #757873;

  font-weight: 500;

  letter-spacing: 0;
}

/*** 



====================================================================

    Comments

====================================================================



***/

.comment-one .comment-one__title {
  margin-bottom: 30px;
}

.comment-one .comment-one__single {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  border-bottom: 1px solid #ece9e0;

  padding-bottom: 60px;

  margin-bottom: 60px;

  -webkit-box-align: top;

  -ms-flex-align: top;

  align-items: top;
}

@media only screen and (max-width: 767px) {
  .comment-one .comment-one__single {
    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;
  }
}

.comment-one .comment-one__content {
  position: relative;

  margin-left: 45px;
}

@media only screen and (max-width: 767px) {
  .comment-one .comment-one__content {
    margin-top: 20px;

    margin-left: 0;
  }
}

.comment-one .comment-one__content h3 {
  margin: 0;

  font-size: 20px;

  color: #000;

  margin-bottom: 24px;
}

.comment-one .comment-one__content p {
  font-size: 16px;

  font-weight: 500;
}

.comment-one .comment-one__btn {
  padding: 5px 30px;

  position: absolute;

  top: 0;

  right: 0;

  font-size: 14px;
}

.comment-one .comment-one__image {
  position: relative;

  display: block;

  border-radius: 50%;

  -webkit-box-flex: 100px;

  -ms-flex: 100px 0 0px;

  flex: 100px 0 0;
}

.comment-one .comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

.comment-form .form-control::-webkit-input-placeholder {
  color: #000;
}

.comment-form .form-control::-moz-placeholder {
  color: #000;
}

.comment-form .form-control:-ms-input-placeholder {
  color: #000;
}

.comment-form .form-control::-ms-input-placeholder {
  color: #000;
}

.comment-form .form-control::placeholder {
  color: #000;
}

/* blog details end  */

/* contact  */

.contact-details__info {
  position: relative;

  display: block;

  margin-top: 41px;
}

.contact-details__info li {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
}

.contact-details__info li .icon {
  width: 30px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.contact-details__info li .icon span {
  color: var(--primary-color);

  font-size: 25px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
  width: 40px;
}

.contact-details__info li:hover .text a {
  color: var(--notech-base);
}

.contact-details__info li:hover .text a span {
  color: var(--notech-gray);
}

.contact-details__info li .text {
  width: calc(100% - 50px);
  margin-left: 10px;
}

@media (max-width: 575.98px) {
  .contact-details__info li .text {
    margin-left: 0;
  }
}

.contact-details__info li .text p {
  font-size: 14px;

  line-height: 24px;
}

.contact-details__info li .text a {
  font-size: 15px;

  color: var(--notech-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.contact-details__info li .text span {
  font-size: 15px;

  color: var(--notech-black);
}

.contact-details__info li + li {
  margin-top: 15px;
}

.map {
  height: 450px;
}

.book-section {
  position: relative;
  background: url("../img/image-box-bg01.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 70px 30px;
}

.book-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #663130e0;
}

.book-content {
  position: relative;
  z-index: 2;
}

.book-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0px;
}

.calendar-icon {
  font-size: 5rem;
}
.contact-forms {
  border: 1px solid #494949;
  padding: 20px;
  background: #fff;
}

/* contact end  */

/* service details  */

.service-sidebar {
  position: relative;

  display: block;

  max-width: 365px;

  width: 100%;
}

.service-sidebar .service-sidebar-single {
  position: relative;

  display: block;

  margin-bottom: 30px;
}

.service-sidebar .service-sidebar-single-services {
  position: relative;

  display: block;

  background: #f6f4ec;

  border-radius: 10px;

  padding: 35px 30px 25px;
}

.service-sidebar .service-sidebar-single-services .title {
  position: relative;

  display: block;

  margin-bottom: 12px;

  padding-left: 20px;
}

.service-sidebar .service-sidebar-single-services .title h3 {
  color: #000;

  font-size: 20px;

  line-height: 30px;

  letter-spacing: -0.02em;
}

.service-sidebar .service-sidebar-single-services ul {
  position: relative;

  display: block;

  margin-top: 10px;
}

.service-sidebar .service-sidebar-single-services ul li {
  position: relative;

  display: block;

  margin-bottom: 5px;

  margin-top: -10px;
}

.service-sidebar .service-sidebar-single-services ul li:last-child {
  margin-bottom: 0;
}

.service-sidebar .service-sidebar-single-services ul li a {
  position: relative;

  display: block;

  color: var(--agriox-color-1, #687469);

  font-size: 18px;

  padding: 22px 20px 22px;

  border-radius: 10px;

  background: transparent;

  -webkit-transition: all 300ms linear;

  transition: all 300ms linear;

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  z-index: 1;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
}

.service-sidebar .service-sidebar-single-services ul li a:hover {
  color: #000;
}

.service-sidebar .service-sidebar-single-services ul li a:hover::before {
  opacity: 1;

  -webkit-transform: perspective(400px) rotateX(0deg);

  transform: perspective(400px) rotateX(0deg);

  -webkit-transition: all 300ms linear;

  transition: all 300ms linear;

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;
}

.service-sidebar .service-sidebar-single-services ul li a:hover i {
  color: var(--primary-color);
}

.service-sidebar .service-sidebar-single-services ul li a::before {
  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  content: "";

  z-index: -1;

  opacity: 1;

  -webkit-transform: perspective(400px) rotateX(90deg);

  transform: perspective(400px) rotateX(90deg);

  -webkit-transform-origin: bottom;

  transform-origin: bottom;

  -webkit-transition: all 300ms linear;

  transition: all 300ms linear;

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  background: #ffffff;

  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  border-radius: 10px;
}

.service-sidebar .service-sidebar-single-services ul li a i {
  font-size: 16px;
}

.service-sidebar .service-sidebar-single-services ul li.current a::before {
  opacity: 1;

  -webkit-transform: perspective(400px) rotateX(0deg);

  transform: perspective(400px) rotateX(0deg);

  -webkit-transition: all 300ms linear;

  transition: all 300ms linear;

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;
}

.service-sidebar .service-sidebar-single-services ul li.current a i {
  color: var(--primary-color);
}

.service-sidebar .service-sidebar-single-services ul li.current:first-child {
  margin-top: 20px;
}

.service-sidebar .service-sidebar-single-services ul li.current:last-child {
  margin-bottom: 35px;
}

.service-sidebar .service-sidebar-single-contact-box {
  position: relative;

  display: block;

  background-attachment: scroll;

  background-position: center center;

  background-repeat: no-repeat;

  background-size: cover;

  border-radius: 10px;

  padding: 50px 0px 44px;

  z-index: 1;
}

.service-sidebar .service-sidebar-single-contact-box::before {
  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  background: rgba(109, 140, 84, 0.93);

  border-radius: 10px;

  content: "";

  z-index: -1;
}

.service-sidebar .service-sidebar-single-contact-box .icon {
  position: relative;

  display: inline-block;

  width: 60px;

  height: 60px;

  text-align: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  border-radius: 50%;

  background: var(--secondary-color);
}

.service-sidebar .service-sidebar-single-contact-box .icon:hover {
  background-color: #000;
}

.service-sidebar .service-sidebar-single-contact-box .icon:hover span::before {
  color: #fff;
}

.service-sidebar .service-sidebar-single-contact-box .icon span::before {
  position: relative;

  display: inline-block;

  color: #000;

  font-size: 30px;

  line-height: 60px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.service-sidebar .service-sidebar-single-contact-box .title {
  position: relative;

  display: block;

  margin-top: 20px;

  margin-bottom: 42px;
}

.service-sidebar .service-sidebar-single-contact-box .title h2 {
  color: #ffffff;

  font-size: 36px;
}

.service-sidebar .service-sidebar-single-contact-box .phone {
  font-size: 24px;

  line-height: 34px;
}

.service-sidebar .service-sidebar-single-contact-box .phone a {
  color: #ffffff;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.service-sidebar .service-sidebar-single-contact-box .phone a:hover {
  color: var(--primary-color);
}

.service-sidebar .service-sidebar-single-contact-box p {
  color: #ffffff;

  font-size: 14px;

  line-height: 22px;
}

.service-sidebar .service-sidebar-single-btn {
  position: relative;

  display: block;
}

.service-sidebar .service-sidebar-single-btn .thm-btn {
  font-size: 16px;

  padding: 13px 50px 28px;
}

.service-sidebar .service-sidebar-single-btn .thm-btn span::before {
  position: relative;

  display: inline-block;

  top: 13px;

  color: #334b35;

  font-size: 40px;

  padding-right: 25px;

  -webkit-transition: all 600ms ease;

  transition: all 600ms ease;

  font-weight: 500;
}

.service-sidebar .service-sidebar-single-btn .thm-btn:hover span::before {
  color: #ffffff;
}

.service-sidebar .banner-widget {
  position: relative;

  display: block;

  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);

  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.service-sidebar .banner-widget .widget-content {
  position: relative;

  display: block;

  width: 100%;

  padding: 45px 30px 40px 30px;

  background-size: cover;

  background-repeat: no-repeat;
}

.service-sidebar .banner-widget .widget-content .shape {
  position: absolute;

  left: 0px;

  top: 0px;

  height: 100%;

  width: 278px;

  background-repeat: no-repeat;

  background-size: cover;
}

.service-sidebar .banner-widget .content-box {
  position: relative;

  max-width: 200px;

  width: 100%;
}

.service-sidebar .banner-widget .content-box .icon-box {
  position: relative;

  display: inline-block;

  width: 60px;

  height: 60px;

  line-height: 60px;

  font-size: 40px;

  background-color: var(--secondary-color);

  color: var(--text-color-bg-secon--secondary-color);

  text-align: center;

  border-radius: 5px;

  margin-bottom: 23px;
}

.service-sidebar .banner-widget .content-box .icon-box .icon-shape {
  position: absolute;

  top: -15px;

  right: -38px;

  width: 32px;

  height: 32px;

  background-repeat: no-repeat;
}

.service-sidebar .banner-widget .content-box h3 {
  display: block;

  font-size: 24px;

  line-height: 32px;

  color: #ffffff;

  font-weight: 600;

  text-transform: uppercase;

  margin-bottom: 22px;
}

.service-sidebar .banner-widget .content-box .theme-btn-two:hover {
  background: #0a267a;
}

.service-sidebar .service-sidebar-single-btn .theme-btn {
  padding: 20px 50px;
}

.service-sidebar .service-sidebar-single-btn .theme-btn .btn-title {
  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;
}

.service-sidebar .service-sidebar-single-btn .theme-btn span::before {
  position: relative;

  display: inline-block;

  font-size: 36px;

  padding-right: 25px;

  margin-top: 7px;

  -webkit-transition: all 600ms ease;

  transition: all 600ms ease;

  font-weight: 500;
}

.services-details__content .feature-list .single-item {
  position: relative;

  display: block;

  border: 1px solid #e1e8e4;

  padding: 16px 30px 16px 53px;

  margin-bottom: 20px;

  -webkit-transition: all 600ms ease;

  transition: all 600ms ease;
}

.services-details__content .feature-list .single-item .icon-box {
  color: var(--primary-color);

  position: absolute;

  left: 20px;

  top: 16px;

  font-size: 18px;

  -webkit-transition: all 600ms ease;

  transition: all 600ms ease;
}

.services-details__content .feature-list .single-item .title {
  display: block;

  margin: 0;

  font-size: 16px;

  line-height: 32px;

  font-weight: 600;

  text-transform: uppercase;
}

.services-details__content .feature-list .single-item:hover {
  background-color: var(--secondary-color);

  color: var(--text-color-bg-secon--secondary-color);
}

.services-details__content .feature-list .single-item:hover .icon-box {
  color: var(--text-color-bg-secon--secondary-color);
}

.service-list li {
  position: relative;

  display: block;

  margin-bottom: 10px;
}

.service-list li:last-child {
  margin-bottom: 0px;
}

.service-list li a {
  position: relative;

  display: block;

  font-size: 18px;

  color: #000;

  font-weight: 600;

  background-color: #fff;

  padding: 17px 20px 17px 50px;

  -webkit-box-shadow: 20px 5px 20px 0px rgba(0, 0, 0, 0.05);

  box-shadow: 20px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.service-list li a:hover,
.service-list li a.current {
  color: var(--text-color-bg-primary--primary-color);

  background-color: var(--primary-color);

  padding-left: 80px;
}

.service-list li a:hover i,
.service-list li a.current i {
  width: 60px;

  color: var(--text-color-bg-secon--secondary-color);

  background-color: var(--secondary-color);
}

.service-list li i {
  position: absolute;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  left: 0px;

  top: 0px;

  width: 30px;

  height: 100%;

  background-color: #f6f4ec;

  text-align: center;

  font-size: 16px;

  color: #707582;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.sidebar-service-list {
  margin: 0;
}

.sidebar-service-list ul {
  list-style: none;

  padding: 0;
}

.sidebar-service-list li + li {
  margin-top: 10px;
}

.sidebar-service-list li a {
  font-size: 18px;

  font-weight: 700;

  position: relative;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  display: block;

  background-color: var(--light-pink);

  border-radius: 15px;

  padding: 19px 40px;

  color: #191825;

  /* font-family: "Literata", serif; */
}

.sidebar-service-list li a:hover {
  color: var(--secondary-color);
}

.sidebar-service-list li a:hover i {
  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  color: #fff;

  background-color: var(--secondary-color);
}

.sidebar-service-list li a i {
  height: 32px;

  width: 45px;

  position: absolute;

  top: 50%;

  right: 20px;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  color: #191825;

  background-color: #fff;

  text-align: center;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  font-size: 16px;

  border-radius: 15px;
}

.sidebar-service-list li.current a {
  color: var(--primary-color);
}

.sidebar-service-list li.current a i {
  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  color: #fff;

  background-color: var(--primary-color);
}

.service-details-help {
  position: relative;

  display: block;

  padding: 57px 55px 50px;

  margin-top: 30px;

  text-align: center;

  z-index: 1;

  background-color: var(--primary-color);

  border-radius: 15px;

  overflow: hidden;
}

.help-shape-1 {
  position: absolute;

  bottom: -215px;

  left: -95px;

  width: 220px;

  height: 500px;

  background-color: #303030;

  mix-blend-mode: soft-light;

  border-radius: 150px;

  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

  z-index: -1;
}

.help-shape-2 {
  position: absolute;

  top: -118px;

  right: -130px;

  width: 180px;

  height: 350px;

  background-color: #fff;

  mix-blend-mode: soft-light;

  border-radius: 186px;

  -webkit-transform: rotate(48deg);

  transform: rotate(48deg);
}

.help-icon {
  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  background-color: #000;

  border-radius: 50%;

  color: var(--light-pink);

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  font-size: 32px;

  height: 73px;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  margin: 0 auto 0;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  width: 73px;
}

.help-icon:hover {
  background-color: var(--secondary-color);

  color: var(--light-pink);
}

.help-title {
  font-size: 38px;

  color: #fff;

  line-height: 40px;

  margin-bottom: 21px;

  font-weight: 700;
}

.help-contact {
  position: relative;

  display: block;

  margin-top: 21px;
}

.help-contact p {
  font-size: 14px;

  color: #fff;

  margin: 0;

  line-height: 32px;

  font-weight: 600;

  opacity: 0.7;
}

.help-contact a {
  color: #fff;

  font-size: 30px;

  font-weight: 600;

  line-height: normal;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.help-contact a:hover {
  color: #fff;
}

/* service details end */

.masonry {
  column-count: 4;

  column-gap: 1rem;
}

.masonry .item {
  break-inside: avoid;

  margin-bottom: 1rem;

  overflow: hidden;

  border-radius: 0;
  border: 1px solid #0000001f;
}

.masonry .item img {
  transition: 0.3s ease all;
}

.masonry .item img:hover {
  transform: scale(1.1);

  filter: brightness(1.2);
}

.appointment-section {
  background: var(--primary-color);
  color: #fff;
  position: relative;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0;
  color: #fff !important;
  padding-left: 0 !important;
}
.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: #ddd;
}
.appointment-form select {
  color: #ddd;
}
.appointment-form .btn {
  background: #fff;
  color: #000;
}
.appointment-section .opening-hours h4 {
  font-weight: bold;
  margin-top: 20px;
}
.appointment-section .opening-hours p {
  margin: 0;
  /* font-size: 14px; */
}
.appointment-section iframe {
  width: 100%;
  border: 0;
}
.appointment-section .opening-hours .ap-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
}
.all-testimials {
  position: relative;
}
.all-testimials::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  height: 100%;
  width: 1px;
  background: #494949;
}
.single-testimonial {
  text-align: center;
  padding: 0 30px;
}
.single-testimonial .image {
  width: 30%;
  height: 250px;
  border: 1px solid #494949;
  border-radius: 40px;
  margin: 0 auto;
  overflow: hidden;
}
.single-testimonial .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.single-testimonial .content-box {
  border: 1px solid #494949;
  border-radius: 20px;
  padding: 100px 25px 30px;
  margin-bottom: 20px;
  margin-top: -70px;
}
.single-testimonial .content-box p {
  font-weight: 500;
  font-style: italic;
}
.single-testimonial .content-box .rating {
  text-align: center;
  font-size: 22px;
  color: var(--secondary-color);
}
.single-testimonial .author-name {
  font-weight: normal;
  padding: 7px 20px;
  border-radius: 30px;
  border: 1px solid #494949;
  color: var(--primary-color);
  width: 60%;
  margin: 0 auto;
  position: relative;
  font-size: 20px;
}
.single-testimonial .author-name i {
  position: absolute;
  right: 0;
  top: -1px;
  width: 60px;
  height: calc(100% + 2px);
  border-left: 1px solid #494949;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  border-radius: 24px;
  border-top: 1px solid #494949;
  border-bottom: 1px solid #494949;
}
.service-cta {
  background-image: url(https://sirpi.wpengine.com/rtl-demo/wp-content/uploads/sites/3/2023/05/Sirpi-Banner-Image-Box-2-1-1536x1047.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.service-cta .overlay {
  padding: 150px 10px;
  background: #00000059;
  text-align: center;
}
.service-cta .overlay h1 {
  color: #fff;
  font-size: 70px;
}
.service-cta .overlay a {
  padding: 12px 30px;
  border-radius: 0;
}
.book-now-card {
  padding: 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background: #fff;
  border: 1px solid #fff;
  position: relative;
  transition: 0.3s ease all;
}
.book-now-card .img-box {
  position: relative;
}
.book-now-card .img-box .img-outer {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.book-now-card .img-box .img-outer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000071;
  scale: 0;
  transition: 0.5s ease all;
  border-radius: 50%;
}
.book-now-card .img-box .img-outer img {
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease all;
}

.book-now-card .img-box .img-icon {
  position: absolute;
  left: 50%;
  bottom: -40px;
  translate: -50% 0;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--secondary-color);
  color: #fff;
}
.book-now-card .img-box .img-icon i {
  font-size: 28px;
  transition: 0.3s ease all;
}
.book-now-card .books-content {
  padding-top: 70px;
}
.book-now-card .books-content h3 {
  font-weight: 500;
}
.book-now-card .books-content p {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.book-now-card .books-content a {
  text-transform: uppercase;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.book-now-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.book-now-card:hover .img-box .img-outer::after {
  scale: 1;
}
.book-now-card:hover .img-box .img-outer img {
  scale: 1.1;
}
.book-now-card:hover {
  border-color: var(--secondary-color);
}
.book-now-card:hover .bg-img {
  opacity: 1;
}
.book-now-card:hover .img-icon i {
  scale: 0.8;
}
.social-icon a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
}
.social-icon a:hover {
  background: var(--secondary-color);
}

/* Floating Bar */

.quick-access a {
  width: 50px;
  height: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 10px 0 0px 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  position: fixed;

  right: 0px;
  z-index: 9999;
  overflow: hidden;
}

.quick-access a i {
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.quick-access a span {
  display: none;
  transition: 0.3s ease all;
  translate: 20px 0;
  margin-right: 10px;
}

.quick-access a:hover {
  width: 210px;
}
.quick-access a:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.quick-access a:hover span {
  display: inline-block;
  translate: 0 0;
}

/* Custom Colors */
.quick-access a.call {
  color: #fff;
  background: var(--primary-color);
  bottom: 180px;
}
.quick-access a.whatsapp {
  color: #fff;
  background: #25d366;
  bottom: 120px;
}
.quick-access a.book {
  color: #fff;
  background: var(--secondary-color);
  bottom: 60px;
}

/* Mobile only */
/* @media(min-width: 768px){
      .quick-access {
        display: none;
      }
    } */

@media only screen and (max-width: 991px) {
  .all-blogs {
    padding: 50px 15px;
  }
  .sidebar {
    padding: 0;
  }
  .sidebar__comments {
    padding: 20px;
  }
  .sidebar__single + .sidebar__single {
    margin-top: 15px;
  }
  .book-now-card {
    padding: 50px 20px 20px;
  }
  .book-now-card .img-box .img-outer {
    width: 155px;
    height: 155px;
  }
  .book-now-card .img-box .img-icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .navbar .navbar-nav {
    padding-bottom: 30px;
  }
  .book-now {
    display: inline-block;
  }
  .doctor-section .testimonial-box {
    right: 0;
  }
  .roll-img {
    left: 0;
    top: 20px;
    translate: 0 0;
    width: 100px;
  }
  .testimonial-card {
    padding: 2rem;
  }
  .faqs {
    padding-top: 30px;
  }
  .all-testimials::before {
    display: none;
  }
  .single-testimonial {
    padding: 0 15px 30px;
  }
  .why-choose .nail-image {
    margin-top: 40px;
  }
  .service-cta .overlay {
    padding: 100px 10px;
  }
  .service-cta .overlay h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .single-testimonial .image {
    width: 100px;
    height: 120px;
    border-radius: 16px;
  }
  .single-testimonial .author-name {
    width: 100%;
    font-size: 15px;
  }
  .single-testimonial .author-name i {
    width: 45px;
    font-size: 14px;
  }
  .masonry {
    column-count: 2;
  }
}

