* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Scrollbar Track */
::-webkit-scrollbar {
  width: 8px; /* vertical scrollbar */
  height: 8px; /* horizontal scrollbar */
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
  background: #e48aa8;
  border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #e47298;
}

/* Scrollbar Track background */
::-webkit-scrollbar-track {
  background: #593233;
  border-radius: 0px;
}

/* Optional: scrollbar corner (between horizontal and vertical) */
::-webkit-scrollbar-corner {
  background: transparent;
}

:root {
  --lightpink-color: rgb(245, 241, 242);
}

.bg-lightpink {
  background-color: var(--lightpink-color);
}
.sectiones {
  margin: 50px 0;
} 
/* header */
header{
    position: sticky !important;
    top: 0 !important;
    
   
    background-color: #e48aa8;
    backdrop-filter: blur(10px);
     box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
     z-index: 999;
}

#navbarNav a {
  font-size: large;
  font-weight: 600;
}
.nav-item {
  margin: 0 10px;
}
#navbarNav a:hover {
  background-color: rgba(220, 53, 69, 0.75);
  color: white;
  border-radius: 5px;
}
/* menu */
.menu {
  padding: 20px;
  height: 100vh;
  width: 300px;
  background-color: rgba(220, 53, 69, 0.75);
  backdrop-filter: blur(10px);
  position: fixed;
  right: -300px;
  top: 0;
  transition: 0.3s;
  line-height: 3;
  z-index: 9999;
  color: #fff;
}
/* fixed icons */
.fa-whatsapp {
  background-color: green;
  padding: 6px 8px;
font-size: 2.5vmax;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: .5rem;
}
.instaicon{
   padding: 6px 8px;
    font-size: 2.5vmax;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: .5rem;
}
.mobilephone{
  background-color: #fff;
  padding: 6px;
font-size: 2.5vmax;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: .5rem;
}
    .icons{
      position: fixed;
      right: 2.5vmax;
      bottom: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      z-index: 99;
    }

    /* banner */
    .carousel{
      background-color: #e48aa8 !important;
      /* margin-top: 3rem; */
    }
    .banner1 {
  height: 600px;
  /* background-image: url(../images/herobannerimg.jpg); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: center; */
}
 .banner2 {
  height: 600px;
  /* background-color: var(--lightpink-color); */
}
.bannerrow {
  height: 600px;
  /* padding: 20px 0;   */
 
}
.bannerrow h1 {
  font-size: 70px;
}
 .hiddentext{
  text-align: center;
  }
.centercontentheading{
    height: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.bookbtn{
    width: fit-content;
}
.servicecard {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 1rem;
}
.servicecard img{
  border-radius:  1rem 1rem 0 0;
}
.categ {
  font-weight: bold;
  display: inline-block;
  border-bottom: 4px solid rgba(220, 53, 69, 0.75);
  border-radius: 0;
  border-width: 4px;
}
#smalltitle,#titleheading  {
  text-align: center;
}
input,select{
  width: 100%;
  padding: 5px 10px ;
  margin: 10px 0;
}
.carddesign {
  box-shadow: rgba(195, 77, 77, 0.24) 0px 3px 8px;
  border-radius: 1rem;
  /* padding: 1rem; */
  text-align: center;
 
}
.carddesignimg{
  position: relative;
  
}
.carddesignimg h3{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
   background-color: #da3b85;
   width: 100%;
   padding: 1rem 0;
   margin-bottom: 0;
   color: #fff;
 
}
.carddesign img {
  /* border-radius: 20px; */
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
/* table */
table {
  width: 100%; /* Ensures the table spans the full width of its container */
  table-layout: fixed; /* Ensures equal column widths */
  border-collapse: collapse;
  font-weight: bold;
}
table tr {
  border-bottom: 2px dotted black;
}
tr td:last-child {
  text-align: end;
}
table td {
  padding: 10px 0;
  font-size: large;
}
/* footer */
a {
  text-decoration: none;
  color: #000;
}
footer li {
  list-style: none;
}
footer li a {
  color: #ffffff;
   text-decoration: none !important;
}

@media (max-width: 992px) {
  #navbarNav {
    display: none;
  }
   .bannerrow h1 {
    font-size: 6vmin;
     margin-bottom: 0.25rem !important;
  }
  .bannerrow p{
    margin-bottom: 0.25rem !important;
  }
  .bannerrow {
     height: 500px;
     padding: 0;
  }
  .banner1,.banner2{
    height: 500px;
  }
  table {
    table-layout: auto;
  }

  
  .bannerimg{
    width: 100% !important;
  }
  
}
@media (max-width: 768px) {

    header img{
   width: 50px; 
  }
  .bannerrow p {
    font-size: small;
  }
   .centercontentheading {
    text-align: center;
  }
   .bookbtn {
    margin: 0 auto;
  }
  
}
@media (max-width:576px) {
   
    .banner1, .banner2 {
    height: 70vw;
    color: #fff;
  }
  .hiddentext a{
    font-size: 0.5rem;
  }
   .bannerrow {
    height: 70vw;
    /* background: rgba(0, 0, 0,0.3); */
  }

  
}