@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

.montserrat {
    font-family: "Montserrat", sans-serif;
   
  }

  .figtree {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    
  }

.h1{
    font-family: "Figtree", sans-serif;
    font-size: 50px;
    line-height: 50px;
    color: #18201c;
}
.h2{
    font-family: "Figtree", sans-serif;
    font-size: 35px;
    line-height: 35px;
}
h4{
    font-family: "Figtree", sans-serif;
    font-size: 30px;
    line-height: 45px;
}
 
section{
    padding: 50px 0;
}
header{
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

#popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    /* Form Container */
    #popup-form {
      background: #fff;
      padding: 25px 30px;
      border-radius: 8px;
      width: 400px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    #popup-form h2 {
      margin-top: 0;
      font-size: 20px;
      margin-bottom: 15px;
    }

    #popup-form input,
    #popup-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

    #popup-form button {
      background-color: #007BFF;
      color: #fff;
      padding: 10px 15px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
    }

    #popup-form button:hover {
      background-color: #0056b3;
    }
body.popup-open {
  overflow: hidden;
}

.navbar ul li a{
    color: #fff;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #bfa046;
}
.nav-link:focus, .nav-link:hover{
    color: #bfa046;
}
.navbar ul li{
    padding: 5px 10px;
}
.btn_inquire{
    background-color: #bfa046;
    color: #fff;
    padding: 5px 12px;
}
.btn_inquire:hover{
    color: #fff;
}

.img-responsive{
    width: 100%;
    height: auto;
}

.logo_img{
    width: 150px;
}

.gold {
    color: #bfa046;
}

.gold-bg {
    background-color: #bfa046;
}
.banner_section{
    position: relative;
}

.ovelay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.center_text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;
    width: 60%;
}
.center_text h1{
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: 60px;
    line-height: 60px;
    text-align: center;
}

.green_bg{
    background-color: #18201c;
}
.green_bg h2 .small_text{
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #18201c;
}
.icon_heading{
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
.overlay_box{
    position: relative;
}
.overlay_text{
    position: absolute;
    top: 50px;
    right: 50px;
}
.overlay_text h3{
    font-size: 45px;
    line-height: 45px;
}

.image_section{
    background: url(../img/home-bg-img.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.small_text_h2{
    font-family: "Figtree", sans-serif;
    font-size: 17px;
    line-height: 25px;
}
.image_section h4{
    line-height: 40px;
}

.map_img_box{
    position: relative;
}
.map_img_box img{
    /* width: 200px; */
    height: 200px;
    border-radius: 20px;
}
.map_text_box{
    background-color: #bfa046;
    padding: 10px 5px;
    border-radius: 15px;
    position: absolute;
    bottom: -10px;
    width: 100%;
}
.map_text_box p{
    font-size: 12px;
    line-height: 15px;
    padding: 5px;
    margin-bottom: 0;
}


.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    transition: transform 0.4s ease;
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* full-image dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-container .overlay-text {
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 6px;
}

.image-container.active img {
    transform: scale(1.1);
}

.image-container.active .overlay {
    opacity: 1;
}

.hoverable-text {
    cursor: pointer;
}

footer{
    background: url('../img/footer_bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.submit_button{
    background-color: #18201c;
    padding: 5px 30px;
    border-radius: 50px;
}
.submit_button:hover{
    background-color: #18201c;
}
.form-control:focus{
    border-color: unset;
    box-shadow: none;
    background: transparent;
}
.form-control{
    color: #18201c !important;
    border: none;
    border-bottom: 1px solid #18201c;
    background: transparent;
}
.form_section h5{
    font-weight: 600;
}

.response-msg {
  margin-top: 15px;
  padding: 10px;
  display: none;
}
.success { color: green; }
.error { color: red; }

@media(max-width: 576px){
    .center_text h1{
        font-size: 30px;
        line-height: 35px;
    }
    .center_text{
        width: 100%;
        top: 70%;
    }
    .h1{
        font-size: 30px;
        line-height: 35px;
    }
    .h2{
        font-size: 25px;
        line-height: 30px;
    }
    h4{
        font-size: 20px;
        line-height: 35px;
    }
    .overlay_text h3 {
        font-size: 18px;
        line-height: 20px;
    }
    .overlay_text {
        top: 10px;
        right: 10px;
    }
    .navbar-collapse{
        background-color: #18201c;
        padding: 15px;
    }
}