/* Table of content  */
/* 1 General
2 Navbar
3 Slider
4 About
5 ROOM
6 Services
7 Gallary */

/* 1  */
/* 1 General  */


@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&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&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    /* // background color  */
    --primary-color:#021832;
    --secondary-color:#caa169;
    --bg-color:#f4f4f4;
    --bg-white:#fff;
    --bg-black:#000;

    /* Text style  */

    --primary-font:'poppins','sans-serif';
    --secondary-font:'oswaid','sans-serif';
    --primary-text:#021832;
    --secondary-text:#caa169;
    --text-white:#fff;
    --bg-black:#151515;
    --text_gray:#e4e4e4;
}

body{
    font-family: var(--primary-font);
    background-color: var(--bg-white);
}

a{
    text-decoration: none;
}

section{
    padding: 3.125rem 0;
}

.main-btn{
    margin-top: .600rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: transparent;
    border: 0.0675rem solid var(--primary-color);
    padding: .375rem 1.875rem;
    border-radius: 3.125rem;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

.main-btn:hover{
   background-color: var( --secondary-color);
   border-color: var(--secondary-color);
   color: var(--text-white);
}

/* common style  */

h1{
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

h3{
    margin-bottom: 1.875rem;
    line-height: 2.875rem;
    font-weight: 700;
     font-size: 2.25rem;
     color: var(--primary-text);
     font-family: var(--secondary-font);
}

h3 span{
    color: var(--secondary-color);
}

h5{
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-text);
    font-family: 500;
    font-family:var(--secondary-font);
}

h6{
    font-size: .875rem;
    color:var(--primary-text);
    margin-bottom: 0.975rem;
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--secondary-font);
}
p{
    font-size: 1rem;
    color:black;
    line-height: 1.625rem;
}

 .section-title:after{
    content:'';
    background-image:();

 }

 /* 2 Navbar start  */
.header_wrapper .navbar{
    padding: 0.9375rem 0;
    background-color: var(--bg-white);
    /* // this is user mozila and firefox  we this to support 2d and 3d anmation for chrom and safri */
    /* -webkit-box-shadow:0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%); */
     /* // this is user mozila and firefox  */ 
    --webkit-transition:background 0s ease-in-out 0s,margin-top 0s ease-in-out 0s,opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s,margin-top 0s ease-in-out 0s,opacity 0s ease-in-out 0s;
}


.header_wrapper .navbar-toggler{
    border: 0;
    color: var(--primary-text);
    line-height: 2;
}

.header_wrapper .navbar-toggler:focus{
    box-shadow: none;
}

.header_wrapper .nav-item{
    margin: 0.625rem;
}

.header_wrapper .nav-item .nav-link{
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text);
    display: inline-block;
}

.header_wrapper .nav-item .nav-link:hover,.header_wrapper .nav-item .nav-link:active{
 color: var(--secondary-text);
}


/* .navbar scroolled by js  */
.navbar.header-scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #b9b7b760;
    /* background-color: rgba(255,255,255 ,.85); */
    /* background-color: transparent; */
    -webkit-animation: 500s ease-in-out 0s normal none 1 running fadeInDown;
    animation:500ms ease-in-out 0s normal none 1 running fadeInDown;
}


@keyframes fadeInDown{
    0%{
        top:-30%;
    }50%{
        top:-15%
    }100%{
        top:0
    }
}
 /* 2 Navbar End  */

 /* swiper css  */
 .swiper {
    width: 100%;
    height: 100vh;
  }
  .swiper-slide {
    background-size: cover;
    background-position: center;
  }
  .slide-caption {
    color: white;
    text-align: center;
    padding: 20px;
  }


  .swiper-pagination-bullet {
    width: 16px; /* Adjust size */
    height: 16px; /* Adjust size */
    background-color: yellow; /* Inner color */
    opacity: 1; /* Ensure full visibility */
  }
  
  .swiper-pagination-bullet-active {
    background-color: yellow; /* Active bullet color */
    transform: scale(1.5); /* Optional: Highlight active bullet */
  }
  
  /* 2 banner start   */

    .banner_wrapper .swiper .slide-caption{
        height: 100%;
        position: relative;
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
    }
  
    .banner_wrapper .swiper .slide-caption p{
        max-width: 37.5rem;
        margin: 0 auto;
        color: var(--text-white);
        font-size: 1.rem;
    }
  /* 2 banner end */


  /* rooms start */

  .rooms_wrapper .room-items{
    position: relative;
    overflow: hidden;
  }

  .rooms_wrapper .room-items img{
    width: 100%;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;
  }

  .rooms_wrapper .room-items img:hover{
    -webkit-transform: scale3d(1.05,1.05,1.05);
     transform: scale3d(1.05,1.05,1.05);
  }

  .rooms_wrapper .room-items::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;
  }

  .rooms_wrapper .room-items:hover::before{
    opacity: 0.6;
  }

  .rooms_wrapper .room-item-wrap{
     position: absolute;
     left: 1.875rem;
     right: 1.875rem;
     top: 50%;
     transform: translateY(-50%);
     z-index: 1;
  }
  .rooms_wrapper .room-items .room-content{
    border: .125rem solid var(--bg-white);
    padding: 5rem 1.875rem;
    -webkit-transform: scale3d(1.2,1.2,1.2);
    transform: scale3d(1.2,1.2,1.2);
    transition: all 500ms ease-in 0s;
    opacity: 0;

  }

  .rooms_wrapper .room-items:hover .room-content{
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
    /* rooms end */

    /* services satrt  */
 
    .service-item-wrap{
        background-color: var(--bg-color);
    }

    .service-item-wrap ul li a{
        display: block;
        margin-bottom: 2.8125rem;
        /* margin-top: -2.8125rem; */
    }

    .service-menu-area ul li a .service-icon{
        height: 5.625rem;
        width: 5.625rem;
        background-color: var(--secondary-color);
        line-height: 5.625rem;
        text-align: center;
        border-radius: 100%;
        float:left;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .service-menu-area ul li a .service-icon:hover,
    .service-menu-area ul li a.active .service-icon{
        background-color: var(--primary-color);
        color: var(--text-white);
        box-shadow: 0.125rem rgb(34,30,31/40%);
    } 

      .service-menu-area ul li:nth-child(1){
        margin-left: 0.5625rem;
    } 
    .service-menu-area ul li:nth-child(2){
        margin-left: -2.9375rem;
    }
    .service-menu-area ul li:nth-child(3){
        margin-left: -6.375rem;
    }
    .service-menu-area ul li:nth-child(4){
        margin-left: -8.8125rem;
    }  
    
    .service-menu-area ul li a p,
    .service-menu-area ul li a h5{
       padding-left: 6.875rem;
       text-align: left;
       display: block;
    }

    .service-menu-area ul li a p span{
        color: var(--secondary-color);
    }
    /* services end  */


/* counter start  */
  
.counter{
    background-image: url('/images/counter-bg.webp');
    background-position:center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3.125rem;
    position: relative;
}

.counter::before{
    position: absolute;
    top: 0;
    left:0;
    content: '';
    width:100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0.5;
    z-index: 1;
}

.counter h1,.counter p{
    position: relative;
    z-index: 3;
    color: var(--text-white);
}

.counter h1{
    top: 0;
}

/* counter end  */

/* gallary start  */

.gallary_wrapper .gallery-item{
    box-shadow: 0 0 .1875rem rgba(0, 0,0,0.3);
    overflow: hidden;
    position: relative;
}

.gallary_wrapper .gallery-item:before,
.gallary_wrapper .gallery-item:after,
.gallary_wrapper .gallery-item-content:before,
.gallary_wrapper .gallery-item-content:after{
   content: '';
   width: 50%;
   height: 50%;
   background: rgba(0, 0,0,0.8);
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   -webkit-transition:all 0.5s ease 0s;
   transition: all 0.5s ease 0s;
}

/* .gallary_wrapper .gallery-item:after{
    top:50%;

}
.gallary_wrapper .gallery-item:hover:after{
    top:0;
    opacity:1;
}
.gallary_wrapper .gallery-item:hover:before{
    left:50%;
    opacity:1;
}

.gallary_wrapper .gallery-item-content{
    position:absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.gallary_wrapper .gallery-item:hover .gallery-item-content{
    opacity: 1;
} */


  
  .gallery-item {
    position: relative; /* Make it a positioning context */
    overflow: hidden; /* Ensure the overlay stays within bounds */
  }
  
  .gallery-item img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease; /* Optional: Smooth zoom effect */
  }
  
  .gallery-item:hover img {
    transform: scale(1.05); /* Optional: Slight zoom effect */
  }
  
  .gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Transparent black overlay */
    transition: background-color 0.3s ease; /* Smooth transition */
  }
  
  .gallery-item:hover::after {
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  }
  
  /* end og gallery  */


  /* about us  */

#about{
    /* background-color: rgba(167, 201, 202, 0.489); */
    padding: 50px;
}


/* map css  */

#map{
    width: 100%;
    /* height: 50vh; */
    height: 70vh;
    background-color: rgba(128, 128, 128, 0.374);
}

/* map end  */

footer{
    
}

/* Default navbar style */
.navbar {
    transition: background-color 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.9); /* Dark navbar */
}

/* Transparent navbar when a section is clicked */
.navbar.transparent {
    background-color: rgba(0, 0, 0, 0); /* Fully transparent */
}
