@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
  --primary-color: #e82574;
  --primary-color-dark: #bc1c5c;
  --text-dark: #FFFFFF;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1366px;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section_container{
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem;
}

.section_subheader{
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section_subheader::after{
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section_header{
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: 	#CCFFCC;
}

.section_description{
  max-width: 600px;
  margin-bottom: 1rem;
 
}
.section_description i{
  color: #ff0066;
}

img{
  width: 100%;
  display: flex;
}

a{
  text-decoration: none;
}

.logo{
  max-width: 95px;
}
html,body{
  scroll-behavior: smooth;
}
body{
  font-family: "poppins",sans-serif;
  background-color:  #162c35;
  color: #9dd9d9e8;
} 

.header{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  
}
nav{
  background-color: #162c35;
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  height: 50px;
  margin: auto;
  z-index: 9;
}
.nav_bar{
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color:#162c35;
}

.nav_menu_btn i{
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}
.nav_links{
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: #162c35;
  transform: translateY(-100%);
  transition: .5s;
  z-index: -1;
}
.nav_links.open{
  transform: translateY(0);
}
.nav_links a{
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: 	#FFFFCC;
  transition: 0.3s;
}
.nav_btn{
  display: none;
}
.header_container{
  padding-block: 80px 5px;
}
@media (width > 700px) {
  .header_container{
    padding: 0px 5px;
    
  }
}




.about_container{
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about_image img{
  max-width: 400px;
  max-height: 495px;
  margin: auto;
}

.room_grid{
  margin-top: 20px;
  display: grid;
  gap: 1rem;
}
.room_card{
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  background-color:  #162c35;
}
.room_card_image{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 5px;
}
.room_card_image img:hover{
  border-radius: 5px;
  transform:scale(1.5);
}
.room_card_icons{
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}
.room_card_icons span{
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba( 0, 0, 0, 0.1);
  cursor: pointer;
}
.room_card_icons span:nth-child(1){
  color: #f472b6;
}
.room_card_icons span:nth-child(2){
  color: #c084fc;
}
.room_card_icons span:nth-child(3){
  color: #60a5fa;
}

.room_card_details{
  padding: 1rem;
  
}
.room_card_details i{
  color: #CCFFCC;
}
.room_card h4{
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #99FF9F;
}
.room_card p{
  margin-bottom: 0.5rem;
  /* color: var(--text-light); */
}
.room_card h5{
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}
.room_card h5 span{
  font-size: 1.1rem;
  color: var(--text-dark);
}
@media (width > 576px) {
  .room_grid{
    grid-template-columns: repeat(2,1fr);
  }
}

.service{
  background-image: url("images/happyteeth.png");
  /* filter: blur(3px);
   -webkit-filter: blur(3px); */

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.service_container{
  padding-block: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.service_content{
  grid-column: 1/3;
  padding-left: 5px;
  background-color: #162c35;
}


.service_list{
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.service_list li{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.service_list span{
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}
.service_list li:nth-child(1) span{
  color: #60a5fa;
  background-color: #dbeafe;
}
.service_list li:nth-child(2) span{
  color: #f472b6;
  background-color: #fce7f3;
}
.service_list li:nth-child(3) span{
  color: #c084fc;
  background-color: #f3e8ff;
}
.service_list li:nth-child(4) span{
  color: #8ffb71;
  background-color: #e4fee7;
}
.service_list li:nth-child(5) span{
  color: #60a5fa;
  background-color: #dbeafe;
}
.service_list li:nth-child(6) span{
  color: #f472b6;
  background-color: #fce7f3;
}
.service_list li:nth-child(7) span{
  color: #c084fc;
  background-color: #f3e8ff;
}

.section_container :is(.section_subheader, .section_header){
  text-align: center;
  margin-inline: auto;
}
.banner_content{
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba( 0, 0, 0, 0.1);
}
.banner_card{
  text-align: center;
  flex: 1 1 130px;
}
.banner_card h4{
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.banner_card p{
  color: var(--text-light);
}

.explore :is(.section_subheader, .section_header){
  text-align: center;
  margin-inline: auto;
}
.explore_bg{
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns: 
    minmax(1rem, 1fr)
    minmax(0, var(--max-width))
    minmax(1rem, 1fr);
  background-image: url(images/room-2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.explore_content{
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba( 0, 0, 0, 0.2);
}
.explore_content p{
  margin-bottom: 0.5rem;
}
.explore_content h4{
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}
.explore_content .btn{
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}
.explore_content .btn:hover{
  color: var(--white);
  background-color: var(--primary-color);
}

.footer{
  margin: 0;
  padding: 0;
  background: #262626;
  max-height: 1200px;
  list-style: none;
}
     /* google mapp image and live map */
      iframe{
        max-height: 200px;
        max-width: 300px;
      }
.footer_container{
  display: grid;
  gap: 4rem 2rem;
}
.footer_col .section_description{
  margin-block: 2rem;
}
.footer_col h4{
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.footer_links{
  list-style: none;
  display: grid;
  gap: 1rem;
}
.footer_links a{
  color: var(--text-light);
  transition: 0.3s;
}
.footer_links a:hover{
  color: var(--white);
}
.footer_socials{
  color: #FFFFCC;
  list-style: none;
  line-height: 10px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer_col .footer_address{
  list-style: none;
}
.footer_col .footer_address li a{
color: #FFFFCC;
}
.footer_bar{
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}
@media (width > 576px) {
  .footer_container{
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer_socials_media{
  display: flex;
  transform: translate(0%);
}
.footer_socials_media a{
  position: relative; 
  margin: 5px;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: #333;
  border-radius: 50%;
  font-size: 30px;
  color: #666;
  transition: .5s;
}

.footer_socials_media a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffee10;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}
.footer_socials_media a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ffee10;
}

.footer_socials_media a:hover {
  color: #ffee10;
  box-shadow: 0 0 5px #ffee10;
  text-shadow: 0 0 5px #ffee10;
}



/* -------- social media right side  ---------- */

.social{
  position: fixed;
  top: 200px;
  right: 0;
  border-radius: 5px 2px 5px;
  align-items: center;
  height: 127px;
  width: 50px;
  /* background-color: var(--primary-color); */
}


/* ----------- responsive ------ */
@media (width > 768px){
  .logo{
    height: 1px;
  }
  nav{
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav_bar{
    padding: 0;
    background-color: transparent;
  }
  .nav_menu_btn{
    display: none;
  }
  .nav_links{
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
  }
  .nav_btn{
    display: block;
  }
  .nav_links a::after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
    transform-origin: left;
  }
  .nav_links a:hover::after{
    width: 100%;
  }

  /* ------ about section -------- */
  .about_container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  /* -------  .room_grid -------- */
  .room_grid{
    grid-template-columns: repeat(3,1fr); 
  }
  /* -------  .room_grid -------- */
   .service_content{
    grid-column: 2/3;
   }

   .footer_container{
    grid-template-columns: repeat(4, 1fr);
   }


}
@media (width > 1024px) {
  .room_grid{
    gap: 2rem;
  }
}

/* feedback slider css */
.container{
  
  position: relative;
  width: 100%;
  min-height: 450px;
  background-color: #162c35;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.container .contents-wraper{
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
}

.contents-wraper .header h1{
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}

.contents-wraper .header h1::before{
  content: '';
  width: 200px;
  height: 2px;
  background-color: #50c9c3;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.contents-wraper .testRow{
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}

.testRow .testItem{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testRow .testItem:not(.active){
  top: 0;
  left: -100%;
}

.testRow .testItem img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  outline: 2px solid 	#FF0066;
  outline-offset: 2px;
}

.testRow .testItem h3{
  font-size: 30px;
  font-style: italic;
  padding: 7px;
  color: #66FFFF;
}

.testRow .testItem h4{
  font-style: italic;
}

.testRow .testItem p{
  font-family: Gill Sans ;
  /* font-weight: 400;
  font-style: normal; */
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 10px;
}

.contents-wraper .indicators{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  cursor: pointer;
}

.contents-wraper .indicators .dot{
  width: 15px;
  height: 15px;
  margin: 0px 3px;
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.contents-wraper .indicators .active{
  background-color: #50c9c3;
}
@keyframes next1{
  from{
      left: 0%;
  }
  to{
      left: -100%;
  }
}
@keyframes next2{
  from{
      left: 100%;
  }
  to{
      left: 0%;
  }
}

@keyframes prev1{
  from{
      left: 0%;
  }
  to{
      left: 100%;
  }
}
@keyframes prev2{
  from{
      left: -100%;
  }
  to{
      left: 0%;
  }
}

@media(max-width: 550px){
  .container .contents-wraper{
      width: 90%;
  }
  .contents-wraper .header h1{
      font-size: 32px;
  }
  .testRow .testItem h3{
      font-size: 26px;
  }
  .testRow .testItem p{
      font-size: 16px;
      letter-spacing: initial;
      line-height: initial;
  }

}


/* cirtificate slide css */
.swiper {
  width: 1000px;
  height: 400px;overflow: hidden;
  border-radius: 5px;

}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
}

@media only screen and (min-width: 769px) {
  .swiper-slide:first-child {
    transition: transform 100ms;
  }

  .swiper-slide:first-child img {
    transition: box-shadow 500ms;
  }

  .swiper-slide.swiper-slide-active:first-child {
    transform: translateX(50%);
    z-index: 2;
  }

  .swiper-slide.swiper-slide-active:first-child img {
    box-shadow: 0px 32px 80px rgba(0, 0, 0, 0.35);
  }

  .swiper-slide:nth-child(2) {
    transition: transform 100ms;
  }

  .swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(55%);
    z-index: 1;
  }

  .swiper[dir="rtl"] .swiper-slide.swiper-slide-active:first-child {
    transform: translateX(-50%);
  }

  .swiper[dir="rtl"] .swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(-55%);
  }
}





