/*  import google fonts */
@import url('https://fonts.googleapis.com/css?family=Darker Grotesque');




:root{
    --white: #fff;
    --blue: #2F4097;
    --dark-blue: #121227;
    --yellow: #ff9900;
    --milky-white: #dde7f1;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Darker Grotesque';
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1500px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'lato', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'lato', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: rgb(47, 64, 151);
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: rgb(47, 64, 151);
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    background: #ffffff;
    font-family: 'Darker Grotesque';
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 20px 0;
    background: rgb(255, 255, 255);
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo img{
    color: #fff;
   
    font-weight: 600;
}
.navbar .logo a span{
    color: crimson;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #292929;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s ease;
    font-family: 'Darker Grotesque';
 
}
.navbar .menu li a:hover{
    color: white;
    background-color: #D3AE00;
    padding: 15px;
    transition: 1s;
}
.navbar.sticky .menu li a:hover{
    color: #ffffff;
}





.dropdown {
    display: inline-block;
    position: relative;
    
  }
  .dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
    background-color: white;
    color: #2F4097;
    text-align: center;
    align-items: center;
    min-width: 100px;
    height: 120px;
    padding: 20px;
    line-height: 38px;  left: 30px;
    top: 25px;
    font-size: 12px;
    
  }
  
  .dropdown:hover .dropdown-options {
    display: block;
    padding: 3px;

  }

  .dropdown:hover .dropdown-options a{
    color: #D3AE00;
  }

  .dropdown:hover .dropdown-options a:hover {
   background-color: #D3AE00;
   transition: 3s;
   color: #ffffff;
   width: fit-content;
  padding: 3px;
  }



/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #D3AE00;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 20px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}


/* home section styling */
.home {
  position: relative; /* important so .add positions inside this */
  background: url("/images/landinggg.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  min-height: 500px;
  color: #fff;
  font-family: 'lato', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .home {
    background-attachment: scroll;
  }
}

.home-content {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ✅ Contact bar positioned near the bottom */
.home-content .add {
  position: absolute;
  bottom: 0px; /* Adjust this value to move it up/down */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: #D3AE00;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  border-radius: 10px; /* Optional: for a nicer look */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional */
}

/* Medium screens */
@media (max-width: 1200px) {
  .home-content .add {
    font-size: 19px;
    bottom: 30px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .home-content .add {
    grid-template-columns: repeat(2, 1fr);
    font-size: 18px;
    bottom: 25px;
    padding: 18px;
  }
}

/* Mobile / Small tablets */
@media (max-width: 768px) {
  .home-content .add {
    grid-template-columns: 1fr;
    font-size: 17px;
    bottom: 20px;
    padding: 16px;
  }
}

/* Small phones */
@media (max-width: 600px) {
  .home-content .add {
    font-size: 16px;
    padding: 14px;
    bottom: 15px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .home-content .add {
    font-size: 14px;
    padding: 10px;
    bottom: 10px;
  }
}




/* about section styling */
.about .title::after{
    content: "who i am";
}
.about .about-content .left{
    width: 40%;
}
.about .about-content .left .text{
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
  gap: 100px;
  
}

.about .about-content .left a{
  text-align: left;
  display: inline-block;
  background: none;
  color: #D3AE00;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 10px;
  margin-top: 20px;
  border: 1px solid #D3AE00;
  transition: all 0.3s ease;
}
.about .about-content .left a:hover{
  color: #f1f1f1;
  background: #D3AE00;
  transition: 2s;
}
.about .about-content .right{
    width: 50%;
    padding: 0px 0px;
   gap: 100px;
   
}
.about .about-content .right .text{
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
   text-align: left;
    gap: 100px;
    right: 214px;
    
}
.about .about-content .right .text span{
    color: crimson;
}
.about .about-content .right p{
    text-align: left;
    font-size: 20px;
    color: #1E1E1E;
    margin-bottom: 0px;
    margin-left: auto;
  margin-right: auto;
  line-height: 25px;
  
}
.about .about-content .right a{
    display: inline-block;
    background: none;
    color: #D3AE00;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    margin-top: 20px;
    border: 1px solid #D3AE00;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #f1f1f1;
    background: #D3AE00;
    transition: 2s;
}


.homes {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url("/images/landinggg.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  height: 100vh;
  font-family: 'Lato', sans-serif;
  padding: 40px 20px;
  text-align: center;
}

.homes-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
}

.homes-content .adds {
  background: rgba(255, 255, 255, 0.95);
  color: #121227;
  padding: 40px 30px;
  text-align: left;
  flex: 1 1 500px;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* ✅ Add these for a perfect height */
  height: 100%;
  min-height: 400px; /* you can adjust this value to fit your design */
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers content vertically */
}


.homes-content .adds:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.homes-content .adds .add p b {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #121227;
}

.homes-content .adds .add p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 15px;
  color: #333;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .homes {
    height: auto;
    background-attachment: scroll;
    padding: 60px 20px;
  }

  .homes-content .adds .add p b {
    font-size: 36px;
  }

  .homes-content .adds .add p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .homes-content .adds {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .homes-content .adds .add p b {
    font-size: 30px;
  }

  .homes-content .adds .add p {
    font-size: 15px;
  }
}


.feature {
    float: left;
    width: 33.3%;
    padding: 0 10px;
  }
  
  .rows {margin: 0 -5px;}
  
  .rows:after {
    content: "";
    display: table;
    clear: both;
  }
  
  @media screen and (max-width: 600px) {
    .feature {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  
 .feature .card {
    border: 1px solid #EFEFEF;
    padding: 16px;
    padding: 45px;
    text-align: left;
    background-color: #F2F3F5;
  }
  .feature .card h3{
    font-size: 40px;
    line-height: 30px;
    font-weight: 500;
    text-align: left;
  }


  /* Section Container */
.rooms-section {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.rooms-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Section Title */
.section-title {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* Grid Layout for Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Room Card */
.room-card {
  background: rgba(255, 255, 255, 0.95);
  color: #121227;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.room-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #121227;
}

.room-card p {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}

.room-details {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-top: 15px;
}

.room-footer span {
  color: #D3AE00;
}

.book-btn {
  background-color: #D3AE00;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #b69000;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 30px;
  }

  .room-card {
    padding: 20px;
  }
}





/*room page styling*/
.home2{
    display: flex;
    background: url("/images/landing.jpeg") no-repeat center;
    height: 50vh;
    min-height: 500px;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'lato', sans-serif;
}
.home2 .max-width{
  width: 100%;
  
}
.home2 .max-width .row2{
  margin-right: 0;
}

.home-content2 {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 40px;

  }
.home-content2 .add2{
  width: 100%;
  background: #D3AE00;
  font-size: 20px;
  top: 300px;
  gap: 10px;
  text-align: center;
  position: relative;
  color: #ffffff;
  padding: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
}





/* contact section styling */

.contact .contact-content .column{
    width: calc(50% - 40px);
}
.contact .contact-content .text{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact .contact-content .left {
  background: #D3AE00;
 height: 600px;
  padding: 100px;
}

.contact .contact-content .left .book {
    color: #0000;
    background: #fff;
    padding: 30px;
    top: 15%;
    height: 300px;
    position: relative;
}
.contact .contact-content .left .book p{
    text-align: left;
    color: #121227;
}
.contact .contact-content .left .icons{
    margin: auto 0;
    padding: px;
  
}
.contact .contact-content .row{
    margin-top: 1px;
    align-items: center;
    padding: 5px
}
.contact .contact-content .row .text{
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
}

.contact .contact-content .row .info{
    margin-left: 25px;

    
}
.contact .contact-content .row i{
    font-size: 15px;
    color: #ffffff;
    
   padding-top: 18px ; 
}

.contact .right form .fields{
    display: flex;
    line-height: 20px;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 60px;
    width: 100%;
    margin-bottom: 20px;
}
.contact .right form .textarea{
    height: 120px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 0px;
    outline: none;
    padding: 0 15px;
    font-weight: 800;
    font-size: 17px;
    font-family: 'Darker Grotesque';
    transition: all 0.3s ease;
}
.contact .right form .field input:focus input::placeholder,
.contact .right form .textarea textarea:focus textarea::placeholder{
    border-color: #b3b3b3;
    font-weight: 800;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}

.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #D3AE00;
  border: 2px solid #D3AE00;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: rgb(0, 0, 0);
  background: none;
}
/* footer section styling */

h2{
    font-family: 'Darker Grotesque';
}


.foot-content {
    float: left;
    width: 50%;
    padding: 0 10px;
  }
  
  /* Remove extra left and right margins, due to padding */
  .foot {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .foot:after {
    content: "";
    display: table;
    clear: both;
  }
  .foot-content .card {
    padding: 50px;
    text-align: left;
    font-weight: bolder;
    line-height: 50px;
  }
  /* Responsive columns */
  @media screen and (max-width: 600px) {
    .foot-content {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  




/* Parent container to align each servmenu side by side */
.services {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* so it wraps nicely on smaller screens */
  max-width: 1200px;
  margin: auto;
}

/* Each service box */
.servmenu {
  background: #292929;
  color: #fff;
  flex: 1 1 30%;  /* each takes up about 30% width, adjusts on smaller screens */
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
}

.servmenu .first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.servmenu .first h1 {
  font-size: 24px;
  font-weight: 500;
}

.servmenu .first a {
  background: #fff;
  color: #1E1E1E;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
}

.servmenu .second {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;
}

.servmenu .second span {
  font-weight: 600;
}

.servmenu img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: auto;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .servmenu {
    flex: 1 1 100%;
  }
}



/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}



@media (max-width: 1104px) {
      .homes-content .adds{
        font-size: 15px;
        width: 250px;
        height: 300px;
      }

      .homes-content .adding{
        font-size: 15px;
        width: 250px;
        height: 300px;
        left: 25px;
      }
    }




@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
        color: #D3AE00;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: white;
        color: #2F4097;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 15px;
        color: #2F4097;
    }
    .home .home-content .add{
        font-size: 10px;
        display: grid;
    }
    .home2 .home-content2 .add2{
        font-size: 10px;
        display: grid;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }



    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .services .serv-content .card{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 15px;
        text-align: left;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 140px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}


@media screen and (min-width: 1024px) {
.provide{
    width: 1020px;
    margin: auto;
  }

  .provide .provide_container{
    width: 900px;
    margin: auto;
    text-align: center;
  }

  
  
  .provide_number{
    padding-top: auto;
  }

  .provide_content{
     padding: 50px 0px;
     margin-left: auto;
     margin-right: auto;
  }

 


  #process{
    padding: 50px 0px 0px 20px;
   }

   .process{
    display: flex;
    justify-content: start;
    align-items:initial
   }
  
   .process .main_container{
    width: 1000px;
    display: block;
    padding: 20px 0px;
   }
  
   .process .container{
    display: flex;
    justify-content: space-between;
    gap: 9rem; 
    right: 50px;
   }






   .info{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 1000px;
    margin: auto;
    padding-top: 30px;
  }

  .info img{
    width: 350px;
  }





  .footer_container{
    width: 100%;
    height: 450px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    position: relative;
    
   }

   .footer_container h1{
    padding-bottom: 20px;
    padding-top: 40px;
    font-size: 18px;
    
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
   }

   .footer_container p{
    font-size: 14px;
    font-weight: lighter;
    margin-left: auto;
    margin-right: auto;
   }



}



