@import url("https://fonts.googleapis.com/css?family=Playfair+Display:1,300,400,400italic,500,700,700italic,900");

:root {
  /* --primary-color: #d7c7ae; */
  --primary-color: #ad8858;
  --hover: #fff;
  --black: #2a201c;
  --white: #fff;
  --light-bg: #f3efec;
  --dark-bg: rgba(0, 0, 0, 0.7);
  --border: 0.1rem dashed #aaa;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --primary-font: "Syne", serif;
  --secondary-font: "Handlee", serif;
}

* {
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 0.6rem;
}

html::-webkit-scrollbar-track {
  background-color: var(--white);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

section {
  padding: 5rem 7%;
}

.heading {
  text-align: center;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 3rem;
  font-size: 4rem;
  /* margin-top: 4rem; */
}
.sec-heading {
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 2rem;
  margin-top: 3rem;
}
.subscript {
  text-align: start;
  font-family: var(--secondary-font);
  color: var(--primary-color);
  text-transform: capitalize;
  font-size: 2rem;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: underline;
}
.logo {
  /* width: 5rem; */
  border-radius: 50%;
}
.mobile-logo, .mobile-share{
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.mobile{
  display: none !important;
}
.btn {
  margin-top: 1rem;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem 3rem;
}

.btn:hover {
  background: var(--hover);
}

/* header */

.header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  z-index: 9;
}

.logo-container {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header .navbar #close-navbar {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  color: var(--black);
  display: none;
}

.header .navbar a {
  font-size: 2rem;
  margin-left: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .navbar a:hover {
  padding-bottom: 0.5rem;
  color: var(--hover);
}
.navbar .appointment-btn{
  display: inline;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius:8px ;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .element {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -10%);
  rotate: 45deg;
  background-color: var(--light-bg);
  width: 20px;
  height: 20px;
}
.dropdown .invisible {
  background-color: transparent;
  height: 20px;
  width: 100%;
  /* border: 1px solid var(--black); */
}
.dropdown-wrapper {
  display: none;
  position: absolute;
  top: 20px;
  min-width: 120px;
  z-index: 1;
}
.dropdown-content {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--light-bg);
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  flex-direction: column;
}
.dropdown-content a {
  color: black;
  font-size: medium !important;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
}
.dropdown:hover .dropdown-wrapper {
  display: block;
}

#menu-btn {
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--black);
  display: none;
}

/* header */

/* home */

.home {
  display: flex;
  align-items: center;
  /* background: url(../images/home-bg2.png) no-repeat; */
  background-size: cover;
  background-position: center;
}

.home .content {
  max-width: 60rem;
}

.home .content span {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.home .content h3 {
  color: var(--black);
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 900;
}
.swiper {
  width: 100%;
  height: 100%;
  /* height: 100vh; Full viewport height */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.full-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-slide::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.full-slide .slider-content {
  position: absolute;
  /* border: 1px solid var(--primary-color); */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--white);
}
.full-slide .slider-content .right {
  width: 50%;
  height: 100%;
  position: relative;
  /* border: 1px solid white; */
}
.full-slide .slider-content .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  border-radius: 23% 77% 69% 31% / 26% 39% 61% 74%;
}
.full-slide .slider-content .right::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 23% 77% 69% 31% / 26% 39% 61% 74%;
}
.full-slide .slider-content .left {
  width: 50%;
  height: 100%;
  /* border: 1px solid white; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 2rem;
  color: white;
}
.full-slide .slider-content .left h1,
.full-slide .slider-content .left h2 {
  font-size: 2.3rem;
}
.full-slide .slider-content .left p {
  font-size: 1.6rem;
  padding: 1rem 0;
  line-height: 1.8;
}

.appointment-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4rem;
}
.custom-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;

  display: none;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.custom-prev,
.custom-next {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.custom-next:hover {
  scale: 1.1;
  transform: translateX(10px);
}
.custom-prev:hover {
  scale: 1.1;
  transform: translateX(-10px);
}

/* home */

/* about */

.about {
  /* background-image: url(../images/about-left.png); */
  background-repeat: no-repeat;
  background-position: left bottom;
}

.about-video{
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about .row .image {
  flex: 1 1 39rem;
}

.about .row .image img {
  width: 100%;
}
.about .row .content {
  flex: 1 1 51rem;
  padding: 5rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: var(--primary-color);
}

.about .row .content p {
  font-size: 1.6rem;
  color: #444;
  padding: 1rem 0;
  line-height: 1.8;
}

.about .content .icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.about .content .icons-container .icons {
  flex: 1 1 16rem;
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .content .icons-container .icons img {
  height: 5rem;
}

.about .content .icons-container .icons h3 {
  padding-top: 1rem;
  font-size: 1.6rem;
  color: #444;
  font-weight: normal;
  text-transform: capitalize;
}

/* about */

/* services */
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  position: relative;
  overflow: hidden;
}

.services .box-container .box img {
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
}

.services .box-container .box:hover img {
  transform: scale(1.1);
}

.services .box-container .box .content {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
  opacity: 0.8;
}
.services .box-container .box .content .top,
.services .box-container .box .content .bottom {
  height: 5px;
  position: absolute;
  background-color: white;
}
.services .button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  gap: 1rem;
}
.services .button a {
  border-radius: 1rem;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--secondary-font);
  font-size: 2rem;
}
.services .box-container .box .content .left,
.services .box-container .box .content .right {
  background-color: white;
  position: absolute;
  width: 5px;
}
@keyframes widthFromLeft {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes widthFromRight {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes heightFromTop {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes heightFromBottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.services .box-container .box .content .top {
  top: 10px;
  left: 10px;
  animation: widthFromLeft 0.5s linear forwards;
}
.services .box-container .box .content .bottom {
  bottom: 10px;
  right: 10px;
  animation: widthFromRight 0.5s linear forwards;
}
.services .box-container .box .content .left {
  top: 10px;
  left: 10px;
  animation: heightFromTop 0.5s linear forwards;
}
.services .box-container .box .content .right {
  bottom: 10px;
  right: 10px;
  animation: heightFromBottom 0.5s linear forwards;
}
.services .box-container .box .content h3 {
  text-align: center;
  font-size: 3rem;
  color: var(--white);
  padding-top: 40rem;
  text-transform: capitalize;
}

.services .box-container .box:hover .content {
  display: flex;
}
.subscript{
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 1rem;

}
/* services */

/* services page */
.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.services-container img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  /* object-fit: cover; */
  transition: transform 1000ms;
}

.services-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  width: 100%;
  /* width: 70rem; */
}

.services-container figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.services-container figure::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  transform-origin: center;
  opacity: 0;
  transform: scale(2);
  transition: opacity 300ms;
}

.services-container figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 2rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms, transform 600ms;
}

@media (prefers-reduced-motion: no-preference) {
  .services-container figcaption {
    transform: translate3d(0, 2rem, 0);
  }

  .services-container figure::after {
    border-radius: 50%;
    opacity: 1;
    transform: scale(0);
    transition: transform 900ms;
  }

  .services-container figure:is(:hover, :focus) figure::after {
    transform: scale(2.5);
  }

  .services-container figure:is(:hover, :focus) figcaption {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 600ms 400ms, transform 600ms 400ms;
  }

  .services-container figure:is(:hover, :focus) img {
    transform: scale(1.2);
  }
}

.servicesContent-Container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2rem;
  padding: 2rem;
}
.servicesContent-Container h1 {
  font-size: 2rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 2rem;
}
.servicesContent-Container h1:hover {
  color: var(--black);
}

.serviceWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.serviceWrapper .serviceContent {
  width: 100%;
  border: 1px solid var(--primary-color);
}
.serviceWrapper .serviceContent h1 {
  font-size: 2rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem;
}
.serviceWrapper .serviceImg {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  grid-template-rows: repeat(2, 1fr); /* Two rows */
  gap: 1rem; /* Space between images */
  width: 100%;
}
.serviceWrapper .serviceImg img {
  width: 100%;
  height: 100%;
}

/* services page */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  width: 400px;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

/* Close Button */
.close {
  position: absolute;
  top: -5px;
  right: 15px;
  font-size: 4rem;
  cursor: pointer;
}

/* Form Styling */
.modal-content select {
  height: 40px; /* Set the desired height */
}
.modal-content input, .modal-content select {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.book-btn{
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* styles */

.styles {
  background: var(--light-bg);
}

.styles .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.styles .box-container .box .image {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.styles .box-container .box .image img {
  object-fit: cover;
}

.styles .box-container .box .content {
  text-align: center;
}

.styles .box-container .box .content .title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-transform: capitalize;
}

.styles .box-container .box .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #444;
  padding: 1rem 0;
}

/* styles */

/* pricing */

.pricing {
  background: url("../images/pricing.jpg");
  background-attachment: fixed;
}

.pricing .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing .box-container .box {
  height: 500px;
  width: 300px;
  margin: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.9);
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--primary-color);
}

.pricing .box-container .box::before,
.pricing .box-container .box:after {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  opacity: 0.5;
}

.pricing .box-container .box::before {
  background: var(--light-bg);
  top: -10%;
  left: 80%;
}

.pricing .box-container .box::after {
  background: var(--primary-color);
  bottom: -10%;
  right: 80%;
}

.pricing .box-container .box .title {
  margin: 30px 0;
  font-size: 26px;
  color: var(--primary-color);
  text-transform: capitalize;
}

.pricing .box-container .box .price {
  height: 160px;
  width: 160px;
  color: var(--white);
  background: var(--primary-color);
  padding: 57px 0 0;
  margin: 0 auto 25px;
  border-radius: 50%;
}

.pricing .box-container .box .price .currency {
  font-size: 35px;
  line-height: 35px;
  font-weight: 300;
}

.pricing .box-container .box .price .amount {
  font-size: 58px;
  line-height: 45px;
  font-weight: 700;
}

.pricing .box-container .box ul li {
  text-align: left;
  font-size: 16px;
  padding-left: 45px;
  margin: 20px auto;
  color: var(--white);
  list-style: none;
  text-transform: uppercase;
}

.pricing .box-container .box ul li i {
  color: var(--primary-color);
  padding: 0 10px;
}

.pricing .box-container .box button {
  height: 40px;
  width: 140px;
  outline: none;
  border-radius: 50px;
  text-transform: capitalize;
  cursor: pointer;
  background: none;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 17px;
  font-weight: bold;
  transition: 0.2s linear;
}

.pricing .box-container .box button:hover {
  color: var(--white);
  background: var(--primary-color);
}

/* pricing */

/* blog */

.blogs .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.blogs .box-container .box {
  background: var(--primary-color);
}

.blogs .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
}

.blogs .box-container .box .image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blogs .box-container .box:hover .image img {
  transform: scale(1.2);
}

.blogs .box-container .box .content {
  padding: 2rem;
}

.blogs .box-container .box .content .title {
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--white);
}

.blogs .box-container .box .content .title:hover {
  color: var(--primary-color);
}

.blogs .box-container .box .content span {
  color: var(--primary-color);
  display: block;
  padding-top: 1rem;
  font-size: 2rem;
  text-transform: capitalize;
}

.blogs .box-container .box .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--white);
  padding: 1rem 0;
}

/* blog */

/* visit */

.visit {
  background: url("../images/visit.png");
  background-size: cover;
  background-position: center;
}

.visit .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.visit .row .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
}

.visit .row .image img {
  width: 100%;
}

.visit .row form {
  flex: 1 1 40rem;
  border: 0.1rem solid var(--primary-color);
  padding: 2rem;
}

.visit .row form h3 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.visit .row form .inputBox {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--primary-color);
  border: var(--border);
}

.visit .row form .inputBox input {
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: var(--white);
  text-transform: none;
  background: none;
}

/* visit */

/* review  */

.review .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.review .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
}

.review .box-container .box p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--black);
  padding: 2rem 0;
}

.review .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.review .box-container .box .stars i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* review end */

/* footer */
.footer {
  background: var(--primary-color);
  text-align: center;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: var(--primary-color);
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.8rem;
  line-height: 2;
  color: white;
  padding: 1rem 0;
}

.footer .box-container .box .share {
  margin-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: 50%;
  font-size: 1.8rem;
  background-color: var(--primary-color);
  color: var(--white);
  margin-right: 0.3rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background-color: var(--black);
}

.footer .box-container .box .link {
  font-size: 1.7rem;
  line-height: 2;
  color: white;
  padding: 0.5rem 0;
  display: block;
  text-decoration: underline;
}

.footer .box-container .box .link:hover {
  color: var(--black);
  text-decoration: underline;
}

.footer .box-container .box .email {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  border: 0.1rem solid var(--primary-color);
  margin-bottom: 1rem;
}

.footer .credit {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  border-top: 0.1rem solid var(--primary-color);
}

.footer .credit a,
.footer .links a {
  color: white;
}
.footer .credit a:hover,
.footer .links a:hover {
  text-decoration: underline;
}
.footer .links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.7rem;
  line-height: 2;
  padding: 0.5rem 0;
}

/* gallery */

.gallery-container {
  text-align: center;
  width: 100%;
  /* max-width: 1200px; */
}

.gallery-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 10px;
  transition: 0.3s;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gallery img:hover {
  transform: scale(1.03);
  transition: 0.3s;
}
/* @media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1440px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }
} */

/* gallery end */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header .navbar a {
    font-size: 1.7rem;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (min-width: 991px) {
  .slider-content {
    width: 65% !important;
    height: 70% !important;
  }
  .home {
    height: 100vh;
  }
  .custom-navigation {
    display: flex;
  }
  .swiper-slide .slider-content .left h1,
  .swiper-slide .slider-content .left h2 {
    font-size: 4rem;
  }
  .swiper-slide .slider-content .left p {
    font-size: 1.5rem;
  }
  .appointment-btn {
    padding: 1.5rem 3rem;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .mobile{
    display: flex !important;
  }
  #menu-btn {
    display: inline-block;
  }
  .serviceWrapper {
    flex-direction: column;
  }
  .serviceContent {
    order: 1; /* Ensure content appears first */
  }

  .serviceImg {
    order: 2; /* Ensure images appear second */
  }
  .header .navbar {
    position: fixed;
    top: 0;
    right: -105%;
    width: 100%;
    background: var(--white);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9;
  }
  .header .navbar #close-navbar {
    display: block;
  }
  .header .navbar.active {
    right: 0;
  }

  .header .navbar a {
    display: block;
    margin: 1rem 0;
    text-align: center;
    font-size: 3rem;
  }

  .home .content h3 {
    font-size: 5.5rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about {
    background-image: none;
  }
  .home .content h3 {
    font-size: 4.5rem;
  }
}
