
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@100..900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
  .navbar-toggler {
        border: none;
        background: transparent;
        outline: none !important;
        box-shadow: none !important;
        padding: 5px;
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none !important;
        box-shadow: none !important;
    }

    /* White hamburger icon */
   .navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

    /* Mobile menu overlay */
    @media (max-width: 991px) {
        .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 12, 12, 0.85);
        }

        .navbar-nav .nav-link {
            padding: 10px 15px;
        }
    }


.nav-link{
   font-family: "Libre Baskerville", serif;
  font-weight: 200;
  font-style: normal;
}
.para{
   font-family: "Outfit", sans-serif;
}
.new-head{
   font-family: "Libre Baskerville", serif;
  font-weight: 200;
  font-style: normal;
 font-size: 26px;
 color:#802732;
}
.new-head2{
   font-family: "Libre Baskerville", serif;
  font-weight: 200;
  font-style: normal;
 font-size: 26px;
 color:#fff;
}
 .banner{
     /* background-image: url(../images/background/Banner-p.webp); */
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)),url(https://res.cloudinary.com/dpqeqjeze/image/upload/v1755167882/background-fixed_naojhu.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100vh;
        background-attachment: fixed;
  }
  .hero-section-heading h2{
      font-family: "Libre Baskerville", serif;
      font-size: 30px;
       color: #fff;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
  }
.box{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box p{
    font-size: 14px;
}
.concept-logo{
    width: 60px;
}

.about h1,.resons h2,.about-section h2,.gallery h2,.plan h2{
    /* color: #FCD395; */
    font-size: 26px;
    /* font-family: "Cinzel", serif; */
}

.about p{
    line-height: 30px;
}

body p{
  
       font-family: "Outfit", sans-serif;
    font-style: normal;
    font-size: 16px;
  }
  
  .db-btn{
    width: 240px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 0px;
    background-color: #802732;
  }

  .group_of_companies {
    position: relative;
    width: 100%;
    height: 330px;
    border: 1px solid #525252;
    overflow: hidden;
    perspective: 1000px;
    /* Enables 3D effect */
  }

  .flip-container {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    position: relative;
  }

  .group_of_companies:hover .flip-container {
    transform: rotateY(180deg);
  }

  /* Front and Back Faces */
  .front,
  .view {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Front side */
  .front {
    background: transparent;
    color: white;
    text-align: center;
  }

  /* Back side */
  .view {
    width: 100%;
    color: white;
    background-color: #754306;
    transform: rotateY(180deg);
  }

  @keyframes slide {
    from {
      transform: translateX(0%);
    }

    to {
      transform: translateX(-50%);
    }
  }

 
  .company-slide :before {
    left: 0;
    background: linear-gradient(to left,
        rgba(255, 255, 255, 0), #754306);
  }

  .company-slide :after {
    right: 0;
    background: linear-gradient(to right,
        rgba(117, 109, 109, 0), #754306);
  }

  .company-slide {
    overflow: hidden;
    padding: 30px 0;
    white-space: nowrap;
    position: relative;
    display: flex;
  }

  .company-slide-logo {
    display: flex;
    gap: 15px;
    animation: slide 35s linear infinite;
  }

  .company-slide:hover .company-slide-logo {
    animation-play-state: paused;
  }

  .blog-info {
    color: #8e93a3;
  }

  .company_logo {
    width: 100px;
    margin: 0 auto;
  }

  .plan{
    max-width: 100%; /* Ensure full width */
    padding: 0; /* Remove any extra padding */
}
    .plan-box {
        position: relative; /* Ensure the overlay is positioned relative to this div */
        flex: 1 1 calc(20% - 8px); /* Distribute 5 images in a row with minimal space */
        max-width: calc(20% - 8px);
        height: 50vh;
        overflow: hidden;
        background: url('your-image.jpg') center/cover no-repeat; /* Optional background */
    }
    
    .plan-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Adjust the opacity and color */
        z-index: 1;
    }
    
    
    .plan-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
    
footer{
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(https://res.cloudinary.com/dpqeqjeze/image/upload/v1755167882/background-fixed_naojhu.webp);
            width: 100%;
            padding: 100px;
            background-size: cover;
           
    padding: 80px 0px;
    margin-top: 100px;
  }
  footer ul li{
    color: #fff;
  }
  #honeypot{
    display: none;
  }
  .form-div{
    padding: 50px 0px;
 }
 .about {
    padding: 80px 0px;
  }
  
.gallery,.plan{
    margin-top: 80px;
 }
 .about-section{
    padding-top: 80px;
}
.foot-title{
    color:#FCD8B8 ;
}
.foot-btn{
    width: 200px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FCD8B8;
    text-decoration: none;
    color:#FCD8B8;
}
   .connectivity {
           background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(https://res.cloudinary.com/dpqeqjeze/image/upload/v1755167882/background-fixed_naojhu.webp);
            width: 100%;
            padding: 100px 0px;
            height: 60vh;
            background-attachment: fixed;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .resons {
            margin: 50px 0px;
            padding: 50px 0px;
        }

@media (min-width:768px) {
  .new-comp{
    margin: 100px 0px;
  }
   
    .concept-logo{
        width: 70px;
    }
   .form-div{
    padding: 0px;
       height: 300px;
    }
   .about {
      padding: 100px 0px;
    }
 .about-section{
        padding-top: 100px;
    }
   .about h1,.resons h2,.advantages h2,.gallery h2,.plan h2{
     font-weight: 600;
     font-size: 32px;
     font-family: "Cinzel", serif;
    }

    .amenities {
        width: 100%;
        height: 100vh; 
    }
    
    .col-md-3 {
        height: 100%; 
    }
    
    .vertical-img {
        width: 100%;
        height: 100vh;
    }
    
    .vertical-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
    .horizontal-section{
        width: 100%;
        height: 49vh;
    }
     .horizontal-section{
        width: 100%;
        height: 49vh;
    }
    .horizontal-section img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
    .gallery,.plan{
       margin-top: 100px;
    }
    .resons{
      margin: 100px 0px !important;
        padding: 100px 0px !important;
    }
   
    /* plan======================================================================== */
    .plan-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px; 
    }
    
    .plan-box {
        position: relative;
        flex: 1 1 calc(20% - 8px); 
        max-width: calc(20% - 8px);
        /* height: 50vh; */
        overflow: hidden;
    }
    .floor-overlay{
        height: 50vh;
    }
    .floor-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
    
    .floor-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        z-index: 1;
    }
    
    /* Overlay Text */
    .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        z-index: 2; /* Above the overlay */
        width: 90%;
    }



    .foot-title{
        color:#FCD8B8 ;
    }
    
    .foot-btn{
        width: 200px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #FCD8B8;
        text-decoration: none;
        color:#FCD8B8;
    }
    .amenities{
        
        font-size: 38px;
        font-family: "Cinzel", serif;
    }
    .top-paddingg{
        /* padding: 50px 0px; */
        /* border-top: 1px solid #A5886C; */
        border-bottom: 1px solid #A5886C;
        margin-top:80px ;
    }
    .justify{
       
      font-family: "Quattrocento", serif;
            font-optical-sizing: auto;
            font-style: normal;
            font-size: 18px;
            line-height: 30px;
    }
    .welcome-para{
        font-size: 16px;
        color: white;
        font-weight: 500;

    }
.hero-section-heading h2 {
    font-family: "Libre Baskerville", serif;
    font-size: 50px;
    color: #fff;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
}


}
    @media (min-width:1400px){
       .connectivity {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(https://res.cloudinary.com/dpqeqjeze/image/upload/v1755167882/background-fixed_naojhu.webp);
            width: 100%;
            padding: 100px 0px;
            height: 40vh;
            background-attachment: fixed;
            background-size: cover;
            background-repeat: no-repeat;
        }
    }
