@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Dancing+Script:wght@400..700&family=El+Messiri:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sevillana&family=Sofia&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Tangerine:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

/* .logo-name{
  font-family: 'El Messiri', sans-serif;
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 0;
  color: #a52a2a;
} */

/* Navbar */

.pl-130 {
  padding-left: 145px;
}

.pr-200 {
  padding-right: 130px;
}

.font-h {
  font-family: Helvetica, normal;
}

.text-brown-color {
  color: white !important;
  font-size: 18px !important;
}

.logo {
  height: 70px;
  width: 200px;
}
/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .pl-130,
  .pr-200 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 992px) {
  .pl-200,
  .pr-200 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 5px !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 100%;
    width: 140px;
    height: 50px;
  }

  .pr-200 {
    padding-right: 0;
  }

  .logo {
    padding-left: 20px;
  }

  .pt-h {
    padding-top: 20px;
  }
}

/* hrline */
.hr-line {
  justify-content: center;
  display: flex;
  align-items: center;
}

.lines {
  padding: 10px;
  width: 20%;
  height: 33px;
  position: relative;
}

.lines::after,
.lines::before {
  content: "";
  position: absolute;
  margin: auto;
  height: 1.5px;
  background: rgb(62, 12, 12);
  width: 40%;
  top: 45%;
}

.lines::after {
  left: 0;
}

.lines::before {
  right: 0;
}

.diamond {
  height: 10px;
  width: 10px;
  border: 1px solid rgb(62, 12, 12);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  background-color: rgb(62, 12, 12);
}

/* Home */

.bg-image {
  position: relative;
  height: 100vh;
  background-image: url("Assets/freepik-export-20241128102638DhzY.png"); /* Replace with the actual path to your image */
  background-size: cover;
  background-position: center;
}

@media (max-width: 576px) {
  .bg-image {
    height: 60vh;
  }
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 68%, 15%, 0.65); /* Brown color with 0.7 opacity */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.font-ds {
  font-family: "Dancing Script", cursive;
  font-size: 36px;
  color: rgb(255, 244, 84);
  margin-bottom: 10px;
  /* width: 350px; */
}

.font-el {
  font-family: "El Messiri", sans-serif;
  font-size: 48px;
  margin: 10px 0;
}

.luxury-para {
  font-family: "El Messiri", sans-serif;
  font-size: 72px;
  font-weight: bold;
  line-height: 64px;
  /* margin: 10px 0; */
}

.content {
  font-family: "El Messiri", sans-serif;
  font-size: 20px;
  max-width: 600px;
  margin: -7px auto;
}

.appointment-button {
  background-color: rgb(218 211 115);
  color: black;
  width: 370px;
  font-weight: 500;
  border: 2px solid white;
  border-radius: 19px;
  padding: 12px 20px;
  font-size: 22px;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

.appointment-button:hover {
  background-color: white;
  color: #542415;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .luxury-para {
    font-size: 36px;
  }

  .font-ds {
    font-size: 28px;
  }

  .font-el {
    font-size: 24px;
  }

  .content {
    font-size: 14px;
  }

  .appointment-button{
    width: 270px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .luxury-para {
    font-size: 28px;
  }

  .font-ds {
    font-size: 22px;
  }

  .font-el {
    font-size: 20px;
  }

  .content {
    font-size: 12px;
  }

  .appointment-button {
    font-size: 14px;
    width: 200px;
    border-radius: 12px;
    padding: 8px 16px;
  }
}

/* Services */

.white-bgimg {
  position: relative;
  background-size: cover;
  background-image: url(Assets/white_texture.png);
  background-position: center;
  background-repeat: no-repeat;
}

.services-heading {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
}

.Services-below {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-img {
  width: 150px;
  max-width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.service-card h4 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
  line-height: 1.5;
}

.card-bg {
  background-color: rgb(234 217 213);
}
.price {
  font-size: 16px;
  color: #64352b;
  font-weight: bold;
  margin-top: 10px;
}

.book-now-btn {
  background-color: rgb(62, 12, 12);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.book-now-btn:hover {
  background-color: #64352b;
}

/* Equal height for all service cards */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col-lg-3,
.col-md-4,
.col-sm-6 {
  display: flex;
  justify-content: center;
}

/* Responsiveness for tablet and laptop screens */
@media (max-width: 992px) {
  .service-img {
    max-width: 100px;
    height: 100px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .price {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-heading {
    font-size: 28px;
  }

  .Services-below {
    font-size: 13px;
  }

  .book-now-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .service-card {
    margin-bottom: 20px;
  }

  .Services-below {
    font-size: 16px;
  }

  .service-img {
    max-width: 80px;
    height: 80px;
  }

  .service-card h4 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 16px;
  }

  .price {
    font-size: 18px;
  }

  .book-now-btn {
    font-size: 18px;
    padding: 10px 20px;
  }
}

/* Top Reviews */
.carousel {
  width: 100%;
  max-width: 900px; /* Restrict max width for large screens */
  margin: auto;
}

/* Style the carousel images */
.carousel-item img {
  width: 100%; /* Make images responsive */
  height: auto;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  border-radius: 50%; /* Make the icons circular */
  padding: 10px; /* Add padding for better visibility */
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Narrower button to avoid blocking too much content */
}

/* About Us */

/* Base styles */
.about-area {
  padding: 0 0 30px;
  position: relative;
}

.about-thumb {
  position: relative;
  left: -66px;
}

.about-right {
  border: 1px solid rgba(10, 19, 46, 0.10196078431372549);
  border-left: 0;
  border-right: 0;
  padding: 16px 0 27px;
  margin-top: 31px;
  margin-bottom: 25px;
}

.single-about-box {
  display: inline-block;
  width: 48%;
  margin-right: 6px;
}

.about-box-icon {
  float: left;
  margin-right: 25px;
  margin-top: 12px;
}

.about-content h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}

.about-item p {
  font-size: 18px;
  color: var(--secondary-color);
  margin: 0;
}

.about-item i {
  color: rgb(226 133 108);
}

.about-para {
  color: rgb(97, 95, 95);
  font-family: ui-monospace;
}

/* Make the images responsive */
.about-img-height {
  max-width: 100%;
  height: auto;
}

/* Responsive Design Adjustments */
@media (max-width: 992px) {
  .about-thumb {
    left: 0;
  }

  .single-about-box {
    width: 100%; /* Stacks the boxes on smaller screens */
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .about-right {
    padding: 10px 0;
  }

  .about-content h4 {
    font-size: 18px; /* Adjust title font size */
  }

  .resp-pt-20 {
    padding-top: 20px;
  }
}

@media (max-width: 576px) {
  .section-title h1 {
    font-size: 22px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .about-content {
    padding-top: 25px;
  }

  .about-item p {
    font-size: 16px;
  }

  .about-right {
    margin-top: 20px;
  }
}

/* Achievements */

.achivment-section2 {
  background-image: url("../img/achivment-section-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 123px 0 40px;
}
.achivment-section2::before {
  background-color: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}

.achivment-section {
  background-image: url("Assets/digits.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 123px 0 40px;
}

.achivment-section::before {
  background-color: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}

.achivment-section .counter-box {
  border: 1px dashed #fff;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.achivment-section .counter-box i {
  -webkit-clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  color: #fff;
  font-size: 20px;
  height: 60px;
  left: 0;
  line-height: 60px;
  margin: auto;
  position: absolute;
  right: 0;
  top: -30px;
  width: 60px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.achivment-section .counter-box h3 {
  font-size: 30px;
  margin: 50px 0 5px;
  color: #fff;
}

.achivment-section .counter-box p {
  color: #fff;
  font-weight: 600;
  margin: 0 0 30px;
}

/* Gallery */

/* General Styles */
#gallery {
  padding: 20px;
}

.image-container {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.image-card {
  border: 1px dashed brown;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  width: 100%;
  overflow: hidden; /* Ensures that images are not spilling over their container */
}

.image-card .image-display {
  width: 100%;
  height: 300px !important;  /* Adjust to the preferred height */
  object-fit: cover;  /* Ensures the image covers the area of the card without distortion */
  margin-bottom: 10px;
  cursor: grab;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.image-card .image-title {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: hsl(0, 0%, 20%);
  padding-bottom: 20px;
}

.image-card .image-description {
  font-family: Arial, Helvetica, sans-serif;
  color: hsl(0, 0%, 30%);
}

/* Media Queries for responsiveness */

/* Mobile devices */
@media (max-width: 480px) {
  .services-heading {
    font-size: 1.5rem;
  }

  .image-card {
    max-width: 100%;
    margin: 0 10px;
  }

  .image-card .image-display {
    width: 100%;
    height: 150px;  /* Adjust for smaller mobile screens */
  }
}

/* Tablets */
@media (max-width: 768px) {
  .services-heading {
    font-size: 1.8rem;
  }

  .image-card {
    max-width: 100%;
  }

  .image-card .image-display {
    width: 100%;
    height: 250px;  /* Adjust for tablets */
  }
}

/* Larger Screens (Desktop) */
@media (min-width: 1024px) {
  .image-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }

  .services-heading {
    font-size: 30px;
  }

  .image-card .image-display {
    width: 100%;
    height: 250px; /* Adjust for larger screens */
  }
}

/* Gallery Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 60px;
}

/* Modal image */
.modal-content {
  margin: auto;
  display: block;
  width: 80%; /* Image width inside the modal */
  max-width: 700px;
}

/* Caption (below the image) */
#caption {
  text-align: center;
  color: #ccc;
  font-size: 20px;
  padding: 10px;
  text-transform: capitalize;
}

/* Close button */
.close {
  color: #f1f1f1;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}



/* Contact Us */
/* Contact Section Styling */
.contact-div {
  position: relative;
  background-image: url(Assets/bg2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 0;
}

.bg-color-brown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 4%, 5%, 0.67);
  z-index: 1;
}

.container-div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.maps {
  padding-top: 140px !important;
}

.contact-form,
.contact-info {
  flex: 1 1 48%;
  min-width: 300px;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h1 span {
  color: #a0522d;
}

.contact-form p {
  color: white;
  margin-bottom: 20px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 15px;
}

form textarea {
  resize: none;
  height: 120px;
}

form button {
  background-color: rgb(62, 12, 12);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
}

form button:hover {
  background-color: #8b4513;
}

.contact-info .info p {
  margin: 10px 0;
  color: white;
}

.contact-info iframe {
  width: 100%;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-div {
    flex-direction: column;
    gap: 20px;
  }

  .maps {
    padding-top: 0 !important;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  .contact-form h1 {
    font-size: 20px;
  }

  .contact-form p,
  .contact-info .info p {
    font-size: 14px;
  }

  .git {
    font-size: 28px !important;
  }

  form button {
    font-size: 14px;
  }
}

/* Footer */

.bg-blue {
  background-color: rgb(62, 12, 12);
}

footer h3 {
  font-weight: 600;
  color: white;
}

.mt-35 {
  margin-top: -25px !important;
}

.footer-logo {
  height: 80px;
  width: 200px;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer .img-thumbnail {
  border: none;
  width: 70px;
  height: 70px;
  padding: 0;
}

footer p,
footer li {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  color: white;
}

.footer-icon {
  color: white;
  font-size: 25px;
  padding: 10px;
}

.footer-icon:hover {
  color: rgb(255, 244, 84);
}

.hover-yellow:hover {
  color: rgb(255, 244, 84) !important;
}

.pb-8 {
  padding-bottom: 8px;
  padding-left: 8px;
}

.mr-20 {
  margin-right: 20px;
}

@media (min-width: 992px) {
  .pl-lg-sm {
    padding-left: 70px !important;
  }
}

@media (max-width: 768px) {
  .pl-30 {
    padding-left: 50px;
  }
}

.mt-35 {
  margin-top: 25px !important;
}

/* .pl-lg-sm{
        padding-left: 70px !important;
      } */

.ml-20 {
  padding-left: 30px;
}

@media (max-width: 576px) {
  footer p,
  footer li {
    font-size: 14px;
  }

  .pl-15 {
    padding-left: 15px;
  }

  footer .text-wrap {
    width: 100%;
  }

  .mr-20 {
    margin-right: 10px;
  }

  .mt-35 {
    margin-top: 0px;
  }

  .align-c {
    width: 350px;
    margin-left: -20px;
  }

  .footer-logo {
    height: 50px;
    width: 125px;
  }
}

.line {
  margin: 5px;
  margin-left: 0;
  width: 50px; /* Initial width */
  height: 3px; /* Line height */
  background-color: rgb(255, 244, 84); /* Line color */
  transition: width 0.3s ease; /* Smooth transition effect */
}

.line:hover {
  width: 100px; /* Width when hovered */
}
