*{
   margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
   font-family: Arial, sans-serif;
   background-color: var(--primary-color);
}
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --tertiary-color: #FEB408;
}


body,
html {
 
  overflow-x: hidden;
}

/* common class */

a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}

/* header section */

.container {
  max-width: 1850px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container2{
   max-width: 1350px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container3{
   max-width: 1920px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}


/* topbar */
 .top-bar {
  background-color: var(--primary-color);
  font-size: 14px;
}
.top-left,
.top-left2{
    color: #cccccc;
}
.top-center,
.ms-3
{
    color: var(--secondary-color);
}
.ms-3:hover{
  color: var(--tertiary-color);
  cursor: pointer;
  
}
 .top-left i {
  color: var(--tertiary-color);
  margin-right: 5px;
} 
/* navbar   */
/* .main-navbar {
  background-image: linear-gradient(to right, #2b2b2b, #4b4b4b);
  padding: 15px 0;
} */
.main-navbar {
   background: rgba(245, 239, 239, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 50px;
  border-top: 1px solid #746d6d;
  border-bottom: 1px solid #746d6d;
  padding: 15px 0;
}
.nav-logo {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 24px;
}

.nav-logo span {
  color: var(--tertiary-color)
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
}
.nav-link{
    position: relative;
}
.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background:var(--tertiary-color);
    transition: 0.5s linear;
    transform: translateY(2px);
}
.nav-link:hover::after{
    width: 100%;
}
.nav-link:hover{
    transition: 0.5s linear;
    transform: translateY(2px);
    
}
.navbar-nav .nav-link.active {
  color: var(--tertiary-color);
}

.navbar-nav .nav-link:hover {
  color:var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}

.nav-icons i {
  color: var(--secondary-color);
  font-size: 18px;
  cursor: pointer;
  margin-right: 10px;
}

.nav-icons i:hover {
  color: var(--tertiary-color);
   transition: 0.5s linear;
  transform: translateY(2px);
}
 
 
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  /* left: 40px; */
  max-width: 200px;
  width: 100%;
  padding: 10px 0;
  display: none;

}
.property-box {
  width: 260px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.property-box ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  cursor: pointer;
}

 .property-box ul li:last-child {
  border-bottom: none;
}

.property-box ul li:hover {
  color: var(--tertiary-color);
  
}
 /* .dropdown-content li a {
  font-size: 18px;
  /* color: var(--primary-color); */
  /* font-family: "Inter", sans-serif;
  padding: 6px 0px;
  max-width: 55px;
  color: var(--tertiary-color);
}  */
  .nav-links{
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 500;
    padding: 6px 0px;
  }


.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.5s;
}
.navbar-toggler{
  display: none;
}


/* banner section  */
.banner-sec{
  background:  linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ), url('../assets/bannerimg4.jpeg')  no-repeat center/cover;

  min-height: 60vh;
   display: flex;
   justify-content: center;
   align-items: center;
   
}

.banner-sec h1{
 font-size: 80px;
 font-weight: 400;
 color:var(--secondary-color);
  text-align: center;
 margin: 0 auto;  
   
}

.text-wrap {
 display: inline-flex;
  align-items: center; 
   gap: 12px; 
  font-size: 18px;
}


.text-link {
  color: var(--secondary-color);
  transition: color 0.3s ease;
  cursor: pointer;
}

.text-link:hover {
  color: #f5c542;
  transition: 0.5s linear;
  transform: translateY(2px);
}

.text-box {
  width: 10px;
  height: 10px;
  background-color: #f5c542;
  display: inline-block;
}
.text-current {
  color: #f5c542;
  cursor: pointer;
}
 .text-current:hover{
 transition: 0.5s linear;
  transform: translateY(2px);
 }
/* blog section  */
.blog-sec{
    background: radial-gradient(circle at center, #1a160e, #0d0c09);
 padding: 60px 0px;
}
.blog-post{
  margin: 50px 0px 0px 0px;
}
.blog-img{
  max-width: 650px;
  
}
.blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
     /* animation: slideEffect 5s ease-in-out infinite; */
  
  
}
/* @keyframes slideEffect {
  0% { transform: translateX(0); }
  50% { transform: translateX(15px); }
  100% { transform: translateX(0); }
} */
.blog-meta {
  font-size: 16px;
  font-weight: 600;
  max-width: 200px;
  color: #f5c542;
  padding: 20px 0px;
}
.blog-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--secondary-color);
}

.blog-text {
color: #cccccc;
font-size:18px ;
max-width: 760px;
}
 
.btn-1 {
font-size: 17px;
  font-weight: 400;
  color: var(--secondary-color);
  border-bottom: 1px solid #cccccc;
  cursor: pointer;
}
.btn-1:hover{
transition: 0.5s linear;
transform: translateY(2px);
color: #f5c542;
}
.sidebar-title {
  font-size: 20px;
font-weight: 400;
color: #f5c542;
cursor: pointer;
}
.sidebar-title:hover{
  transition: 0.5s linear;
transform: translateY(2px);
}
.search-wrapper {
position: relative;
  width: 300px;
  margin: 15px 0px 40px 0px;

}
.search-wrapper i {
  position: absolute;
  right: 15px;    
  top: 50%;
  transform: translateY(-50%);
  color: #cccccc;
  cursor: pointer;
}
.search-wrapper input {
  width: 100%;
  background: transparent;
  border: 1px solid #cccccc;
  border-radius: 25px;
  padding: 12px 42px 12px 15px;
  color: var(--secondary-color);
  
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
}
.sidebar-title2{
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
}
.sidebar-title2:hover{
   transition: 0.5s linear;
transform: translateY(2px);
color: #f5c542;
}
 
hr{
  max-width: 424px;
  color: #cccccc;
}
.category-list {
   padding: 0;
  margin: 0; 
 
}
.category-list li {
   display: flex;
   justify-content: space-between; 
   
  padding: 12px 0px 0px 0px;
  font-size: 15px;
  color: #cccccc;
  cursor: pointer;

}
.category-list li:hover{
color: #f5c542;
   transition: 0.5s linear;
  transform: translateY(2px);
}
.number{
  text-align: end;
}
.sidebar-title3{
margin: 50px 0px;
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
}
.sidebar-title3:hover{
   transition: 0.5s linear;
transform: translateY(2px);
color: #f5c542;
}
.sidebar-img {
 max-width: 100px;
}
.sidebar-img img{
   width: 100%;
  height: 100%;
  object-fit: cover;

}
.recent-post{
  margin: 30px 0px 0px 0px;
}
.date {
  font-size: 15px;
  font-weight: 400;
  color: #f5c542;
  margin-left: 20px;
}
 .recent-line{
  margin: 30px 0px 0px 0px;
} 
.recent-title p {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  max-width: 200px;
  margin-left: 20px;
}

 
 .blog-meta2 {
  font-size: 16px;
  font-weight: 600;
  max-width: 350px;
  color: #f5c542;
  padding: 20px 0px;
}
.sidebar-title4{
margin: 50px 0px;
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
}
.sidebar-title4:hover{
 transition: 0.5s linear;
transform: translateY(2px);
color: #f5c542;
}

 .img-fluid{
  margin: 30px 15px 30px 0px;
  box-shadow: 4px 4px 5px #f5c542;
} 

.blog-post3{
  margin-top:-60px;
}
.blog-meta3 {
  font-size: 16px;
  font-weight: 600;
  max-width: 350px;
  color: #f5c542;
  padding: 20px 0px;
}
.facilities{
  margin: 25px 0px 0px 0px;
}
.amenities{
  list-style: none;
  padding-left: 0;
}

.amenities li {
 margin-bottom: 10.5px;
 color: var(--secondary-color);
 
 
}

.amenities label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
 input[type="checkbox"]:hover {
 transition: 0.5s linear;
 transform: translateY(2px);
 
}

 
 


.pages{
  margin: 80px 0px 0px 0px;
}
.page-circle1 {
   border-radius: 50px;
   padding: 8px 16px; 
  background-color: #f4c86f;
  color: var(--primary-color); 
  cursor: pointer;
}
.page-circle1:hover{
  transition: 0.5s linear;
  transform: translateY(2px);
}
.page-circle2 {
 background-color: var(--primary-color);
 color: var(--secondary-color);
    border-radius: 50px; 
   padding: 8px 16px;
  cursor: pointer;
}
.page-circle2:hover{
  transition: 0.5s linear;
  transform: translateY(2px);
}
.next{
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
}
.next:hover{
   transition: 0.5s linear;
  transform: translateY(2px);
}
/* footer section  */
.footer-sec {
  background: radial-gradient(circle at center, #1a160e, #0d0c09);
 padding: 60px 0px;
  
}
.newsletter-tag {
color: #f4c56d;
  font-size: 16px;
  font-weight: 600;
}

.newsletter-title {
   font-size: 35px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 341px;
 color: var(--secondary-color);
 text-align: center;
 margin: 0 auto;

}

.newsletter-form {
  max-width: 653px;
  display: flex;
 border-bottom: 1px solid rgba(255,255,255,0.3);
 text-align: center;
margin: 0 auto;
margin-top: 90px;
 margin-bottom: 90px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  padding: 10px 0;
  outline: none;
 
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover{
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
}
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  max-width: 109px;
  color: var(--secondary-color);
   margin: 50px 0px 0px 0px;
}
.footer-logo span {
  color: #f6c85f;
}

.footer-text {
  font-size: 14px;
  color: #bcbcbc;
  margin: 50px 0;
  max-width: 400px;
}
.footer-phone{
   color: #f6c85f;
    font-weight: 400;
}
.footer-number {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 15px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 50px 0px;
}
/* .footer-title:hover{
   transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
  cursor: pointer;
} */
.footer-list{
  padding: 0;
}
.footer-links {
  font-size: 19px;
  font-weight: 400;
   color: var(--secondary-color);
   margin-bottom: 25px;
   border-bottom: 2px solid #939292;
   cursor: pointer;
}
.footer-links:hover{
  transition: 0.5s linear;
  transform: translateY(2px);
   color: var(--tertiary-color);
  cursor: pointer;
}
.footer-address {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  max-width: 250px;
}
.footer-email{
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--secondary-color);
  margin-right: 8px;
   margin-top: 20px;
}

.social-icons a:hover {
  background: #f6c85f;
  color: var(--primary-color);
    transition: 0.5s linear;
  transform: translateY(2px);
}

.footer-line {
  border: 1px solid #939292;
  max-width: 1320px;
}

.copyright {
  font-size: 16px;
  font-weight: 400;
  color: #bcbcbc;
cursor: pointer;
margin: 30px 0px;
}
.copyright:hover{
   color: var(--tertiary-color);
    transition: 0.5s linear;
  transform: translateY(2px);

}
/* topbar media section  */
@media screen and  (max-width: 993px) {
 .top-bar .container {
    flex-direction: column;
  gap: 8px;
    text-align: center;
  }
  .top-left{
    font-size: 14px;
    margin-top: 10px;
  }
  
.top-center {
    font-size: 14px;
  }
  .top-right {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
  }
 .top-right .ms-3 {
    margin-left: 0;
  }
}

/* navbar media section  */
 @media screen and (max-width: 993px) {
   .navbar-toggler {
     display: block;
    
  } 

   .navbar-toggler-icon {
    filter: invert(1);
    
  } 
  .navbar-collapse {
    background-color: var(--primary-color);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    margin-top: 15px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-content {
    position: static;
    display: none;
    text-align: center;
  }

  .dropdown.show .dropdown-content {
    display: block;
  }
 .dropdown-content ul {
  padding: 0;
  margin: 0; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-links{
  font-size: 16px;
}
  .nav-icon {
     /* justify-content: center;
    margin-top: 15px;  */
    display: none;
  }
}
/* banner media section  */
@media screen and  (max-width: 1200px){
  .banner-sec h1{
    font-size: 60px;
  }
  
}
@media screen and  (max-width: 576px){
  .banner-sec h1{
    font-size: 40px;
  }
 
}
/* blog media section  */
@media screen and (max-width:993px){
  .blog-img{
    text-align: center;
    margin: 0 auto;
  }
  .blog-meta{
     text-align: center;
    margin: 0 auto;
  }
  .blog-title{
     text-align: center;
    margin: 0 auto;
    font-size: 23px;
  }
  .blog-text{
  text-align: center;
    margin: 0 auto;
    margin-top: 15px;
    font-size: 15px;
    max-width: 700px;
  }
  .blog-btn{
      text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 15px;
  }
  .sidebar-title{
      text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
  .search-wrapper{
    width: 100%;
     margin-top: 25px;
  }
   .sidebar-title2{
      text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
    .sidebar-title3{
      text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
   .sidebar-title4{
      text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
  
  .recent-post {
    flex-direction: column;
    text-align: center;
  }

  .sidebar-img {
    margin-bottom: 10px;
  }

  .date,
  .recent-title p {
    margin-left: 0;
  }
  .blog-meta2{
      text-align: center;
    margin: 0 auto;
  }
  .gallery-part{
    flex-direction: column;
  }
  hr{
    display: none;
  }
  .recent-line{
    display: none;
  }
   .gallery-part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .img-fluid {
    margin: 20px 10px;
  }
  .facilities {
    display: flex;
    justify-content: center;
  }

  .amenities {
    text-align: center;
  }
}

/* footer media section  */
 @media screen and (max-width:993px){
  .newsletter-title{
    font-size: 28px;
    margin-top: 10px;
  }
 footer-line{
  display: none;
 }
 
 .footer-logo{
  text-align: center;
  margin: 0 auto;
 }
 .footer-text{
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
 }
 .footer-number{
   text-align: center;
  margin: 0 auto;
  margin-top: 15px;
 }
 .footer-title{
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
 }
 .footer-list{
  text-align: center;
  margin: 0 auto;
   margin-top: 12px;
 }
 .footer-address{
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
 }
 .footer-email{
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
 }
 .social-icons {
  display: flex;
  justify-content: center;
  
 }
 .social-icons a{
  padding: 10px 10px;
margin-top: 10px;
 }
 .footer-bottom{
  margin-top: 20px;
 }
}
@media screen and (max-width:576px){
  .newsletter-form button{
    font-size: 12px;
  }
  .footer-title{
    font-size: 18px;
  }
  .footer-links{
     font-size: 16px;
  }
  .footer-address{
     font-size: 16px;
     margin-top: 10px;
  }
  .footer-email{
     font-size: 16px;
  }
  
}



