/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
/* .btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
} */
/* Custom Header Container */
/* Custom Logo Text Styling */
h1 span::before,
h1 span::after {
    content: "";
    display: inline-block;
    width: 30px; 
    height: 2px;
    background-color: #A37F75;
    vertical-align: middle;
}

/* Adjust Button Styles */
.btn-warning {
    background-color: #CBA69C; 
    border: none; /* Remove default border */
}

.btn-warning:hover {
    background-color: #654B43; 
}

/* Adjust Button Icon Size */
.btn-warning i {
    font-size: 14px; 
}


/*** Navbar ***/
/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
} */


/*** Header ***/
/* .header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
} */

.video-container {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.position-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
}

.btn-light i {
    font-size: 24px;
}

.text-light {
    color: #fff;
}

/* Custom CSS */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

/* Updated hover and active link color */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: #fff; /* Updated hover color */
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #A37F75;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: #A37F75; /* Updated background color */
        transition: .5s;
    }
    

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}


/* Optional: Add some margin or padding to the top of the content below the navbar */


  /* Image section with overlay */
   /* Slide-up animation */
   @keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start slightly below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}

/* Staggered animation for each character */
.newheading.fancy span {
    display: inline-block;
    opacity: 0; /* Hide initially */
    animation: slideUp 1s ease-out forwards;
}


/* Apply staggered animation delay for each character */
.newheading.fancy span:nth-child(1) { animation-delay: 0s; }
.newheading.fancy span:nth-child(2) { animation-delay: 0.05s; }
.newheading.fancy span:nth-child(3) { animation-delay: 0.1s; }
.newheading.fancy span:nth-child(4) { animation-delay: 0.15s; }
.newheading.fancy span:nth-child(5) { animation-delay: 0.2s; }
.newheading.fancy span:nth-child(6) { animation-delay: 0.25s; }
.newheading.fancy span:nth-child(7) { animation-delay: 0.3s; }
.newheading.fancy span:nth-child(8) { animation-delay: 0.35s; }
.newheading.fancy span:nth-child(9) { animation-delay: 0.4s; }
.newheading.fancy span:nth-child(10) { animation-delay: 0.45s; }
.newheading.fancy span:nth-child(11) { animation-delay: 0.5s; }
.newheading.fancy span:nth-child(12) { animation-delay: 0.55s; }
.newheading.fancy span:nth-child(13) { animation-delay: 0.6s; }
.newheading.fancy span:nth-child(14) { animation-delay: 0.65s; }
.newheading.fancy span:nth-child(15) { animation-delay: 0.7s; }
.newheading.fancy span:nth-child(16) { animation-delay: 0.75s; }
.newheading.fancy span:nth-child(17) { animation-delay: 0.8s; }
.newheading.fancy span:nth-child(18) { animation-delay: 0.85s; }
.newheading.fancy span:nth-child(19) { animation-delay: 0.9s; }
.newheading.fancy span:nth-child(20) { animation-delay: 0.95s; }
.newheading.fancy span:nth-child(21) { animation-delay: 1s; }

.newheading.fancy {
    font-size: 28px; /* Bigger size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #A37F75 !important ;
    text-transform: uppercase; /* All uppercase letters */
}
  .image-section {
    position: relative;
    background-image: url('../img/backmain.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: 480px; 
}
.text-section {
    background-color: transparent; /* Removed background color */
    color: #333;
    padding: 40px;
    max-width: 40%;
    padding-bottom: 10px;
    text-align: left; /* Aligned text to the left */
}

h1 {
    font-weight: bold;
    font-size: 28px;
    color: #A37F75 !important;
    margin-bottom: 10px;
}

.custom-heading {
    font-weight: bold;
    font-size: 26px;
    color: #666;
    margin-bottom: 10px;
}

.custom-heading span {
    color: #A37F75 !important; /* Golden color for the heading */
    font-size: 22px;
    font-style: italic;
    padding-left: 15px;
}

.custom-heading::before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: #F4D9CD !important; /* Golden color for the line */
    vertical-align: middle;
    margin-right: 10px;
}

.aboutpara{
    max-width: 50%;
    margin-left: 40px;
}

/*** iconsec ***/
.container-highlight {
    /* border: 7px solid #A37F75 !important; */
    padding: 20px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;

}

.text-section1 {
    background-color: transparent; /* Removed background color */
    color: #333;
    /* max-width: 50%; */
    /* padding-bottom: 40px; */
    text-align: left; /* Aligned text to the left */
    /* margin-left: 400px; */
}

h1 {
    font-weight: bold;
    font-size: 28px;
    color: #d4af37;
   
}

.custom-heading1 {
    font-weight: bold;
    font-size: 26px;
    color: #666;
    margin-bottom: 10px;
}

.custom-heading1 span {
    color: #A37F75 !important; /* Golden color for the heading */
    font-size: 20px;
    font-style: italic;
    padding-left: 15px;
}

.custom-heading1::before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: #F4D9CD; /* Golden color for the line */
    vertical-align: middle;
    margin-right: 10px;
}
.container-highlight h2 span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    /* background-color: #ffd700; */
    z-index: -1;
}

.project-icons {
    margin-top: 20px;
}

.icon-box img.icon-image {
    width: 60px; 
    height: auto;
    margin-bottom: 10px; 
}


.project-icons h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: #333;
}

.project-icons p {
    font-size: 1rem;
    color: #555;
}
  /* Ensure the slider takes full width */
  
  .carousel-container {
    position: relative;
    width: 100%;
}

.carousel-item img {
    width: 100%;
    height: 500px; /* Adjust the height as needed */
    object-fit: cover;
}

/* Overlay container for the text section */
.amenities-container {
    position: absolute;
    left: 50px;
    background-color: rgba(249, 243, 229, 0.9); /* Semi-transparent background */
    padding: 30px;
    width: 350px; /* Adjust as needed */
    text-align: left;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.amenities-container h2 {
    font-size: 22px;
    color: #A37F75 !important;
    font-weight: 500;
}

.amenities-container h3 {
    font-size: 18px;
    color: #A37F75  !important;
    margin-top: 5px;
    margin-bottom: 15px;
}

.amenities-container p {
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.6;
    margin-bottom: 20px;
}
.mainname{
    color: #A37F75  !important;
}
.submain{
    color: #A37F75  !important;
}
.btn-view {
    display: inline-block;
    padding: 10px 25px; /* Increase padding to increase height and reduce width */
    background-color: #A37F75 !important;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    width: 105px;
}

.btn-view:hover {
    background-color: #8c703a;
}

/* Pagination Styling */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Position the indicators to the bottom-right corner */
}

.carousel-indicators li {
    background-color: #b18c49; /* Color for the indicators */
}

.carousel-indicators .active {
    background-color: #8c703a; /* Active indicator color */
}
/** map section ***/
.overlay {
   background-image: url(../img/Sectionbg.jpg);
    padding: 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center; /* Centering vertically */
    padding: 20px;
    position: relative;
    max-width: 1200px;
    width: 100%;
}

/* Map Section */
.map-container {
    flex: 2; /* Decreased map width */
    position: relative;
}

.map {
    width: 100%;
    max-width: 700px; /* Adjusted the map size */
    border-radius: 10px;
}

/* Text Section */
.info-container {
    flex: 2.5; /* Increased text section width */
    margin-left: -80px; /* Overlap over the map */
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: black;
    z-index: 1;
    width: 500px; /* Increased width */
    text-align: left; /* Left text alignment */
}

h2 {
    color: #f3c96b;
    font-size: 28px; /* Increased font size */
    margin-bottom: 8px;
}

h3 {
    color: #333;
    font-size: 22px; /* Increased font size */
    margin-bottom: 35px;
}

p {
    font-size: 16px; /* Increased font size */
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.infrastructure-icons {
    display: flex;
    justify-content: space-between;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    color: #A37F75 !important; /* Gold color #BB9632 for icons */
}

.icon-item i {
    font-size: 30px; /* Reduced icon size */
    margin-bottom: 8px;
}

.icon-item span {
    font-size: 14px; /* Increased text size */
    color: #333;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .map-container, .info-container {
        margin-left: 0;
        margin-bottom: 20px;
        width: 100%;
    }
}
/*** owl slider start  ***/
.gallery_sec {
    /* padding: 20px 0; */
    background-color: #fff;
  }

  .gallery_sec .proj_head_bx h3 {
    color: #888;
    margin-bottom: 5px;
  }

  .gallery_sec .proj_head_bx h2 {
    margin-bottom: 30px;
  }

  .gallery_silder {
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery_silder .owl-carousel img {
    width: 100%;
    height: auto;
  }

  .gallery_silder a {
    display: block;
    margin: 0; /* No margin for the individual images */
  }
  
  /* Styling the divider image */
  .divider {
    margin-bottom: 30px;
    text-align: center;
  }

  .divider img {
    width: 100px;
    height: auto;
  }

  /* Fancybox gallery styling */
  [data-fancybox="group"] {
    display: inline-block;
  }

  /* Gap between slider rows */
  .gallery_silder .owl-carousel {
    margin-bottom: 5px; /* Adjusted gap between slider rows */
  }
/*** owl slider end  ***/
/*** Footer ***/
.footer-custom {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 20px; /* General padding */
    font-size: 14px;
  }
  .footer-custom a {
    color: #fff;
    text-decoration: none;
  }
  .footer-custom a:hover {
    text-decoration: underline;
  }
  .footer-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .footer-divider {
    border-left: 1px solid #fff;
    height: 20px;
    margin: 0 15px;
  }
  .disclaimer-section {
    border-top: 1px solid #fff; /* White divider on top */
    margin-top: 20px;
    padding-top: 10px;
  }
  .disclaimer-section p {
    margin-bottom: 10px;
    text-align: left; /* Align text to the left */
    color: #fff;
    font-size: 12px;
  }

/*** heading  ***/
.container-highlight {
    /* border: 7px solid #d4af37; */
    padding: 20px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.text-area {
    background-color: transparent; /* Removed background color */
    color: #333;
    max-width: 50%;
    padding-top: 30px;
    text-align: left; /* Aligned text to the left */
    margin-left: 500px;
}

.header-title {
    font-weight: bold;
    font-size: 28px;
    color: #d4af37;
}

.sub-header {
    font-weight: bold;
    font-size: 26px;
    color: #666;
    margin-bottom: 10px;
}

.sub-header span {
    color: #A37F75 !important; /* Golden color for the heading */
    font-size: 20px;
    font-style: italic;
    padding-left: 15px;
}

.sub-header::before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: #F4D9CD !important; /* Golden color for the line */
    vertical-align: middle;
    margin-right: 10px;
}

.container-highlight h2 span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    /* background-color: #ffd700; */
    z-index: -1;
}

/*** heading end ***/
.heading {
    color: #BD9234;
    font-weight: bold; /* Make the heading bold */
  }

  .subheading {
    color: #654B43;
  }
 /* Custom Colors */
 .highlight-box-new {
    border-left: 4px solid #A37F75;
    padding-left: 15px;
    margin-bottom: 30px;
  }

  .stats-new {
    color: #333;
  }

  .stats-new span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
  }

  .stats-new p {
    font-size: 1.2rem;
  }

  .image-section-new img {
    max-width: 100%;
    /* height: 500px; Increased height */
    object-fit: cover; /* Ensures the image scales without distorting */
    border-radius: 10px;
    height: 400px;
    width: 700px !important;
  }
  .newsecin{
    padding: 70px;
    padding-top: 0px !important;
  }
  .enquiry-form {
    background-color: #A37F75;
    padding: 15px 10px;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Ensures it's on top of other content */
}
.enquiry-form input {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #fff;
    background-color: transparent;
    color: #fff;
}
.enquiry-form input::placeholder {
    color: #fff;
}
.form-check-label {
    color: #fff;
}
.submit-btn {
    background-color: #fff;
    color: #A57C2B;
    border: none;
}
.form-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.form-row .form-group {
    flex: 1;
    margin-right: 10px;
}
.form-row .form-group:last-child {
    margin-right: 0;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkbox-wrapper .submit-btn {
    margin-left: 10px;
}
h2 {
    color: #fff;
    margin-right: 15px;
    white-space: nowrap;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    
    font-family: Godrej-B, sans-serif !important;
    
}
body {
    font-family: Godrej-r, sans-serif !important;
}

.enquiry-new{
    background-color: #fff !important;
    border-color:#fff;
}
/*** photo grallery ***/
 /* Custom styles for accordion */
 .accordion-button:focus {
    box-shadow: none;
  }
  #key {
    /* padding: 80px 0; */
}
.common-container {
    width: 1280px;
    margin: auto;
    position: relative;
    max-width: 100%;
}
.bigtitle {
    font-size: 48px;
    font-weight: 700;
    position: relative;
    line-height: 90px;
    letter-spacing: -3px;
    
}
.blue-1 {
    color: #233342 !important;
}
.splitting {
    --word-center: calc((var(--word-total) - 1) / 2);
    --char-center: calc((var(--char-total) - 1) / 2);
    --line-center: calc((var(--line-total) - 1) / 2);
}
.text-uppercase {
    text-transform: uppercase!important;
}
.mb-4 {
    margin-bottom: 1.5rem!important;
}
.splitting .word {
    --word-percent: calc(var(--word-index) / var(--word-total));
    --line-percent: calc(var(--line-index) / var(--line-total));
}
.splitting .word, .splitting .char {
    display: inline-block;
}
.word {
    overflow: hidden;
}
.splitting .char {
    --char-percent: calc(var(--char-index) / var(--char-total));
    --char-offset: calc(var(--char-index) - var(--char-center));
    --distance: calc(
     (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );
    --distance-sine: calc(var(--char-offset) / var(--char-center));
    --distance-percent: calc((var(--distance) / var(--char-center)));
}
.splitting .char {
    position: relative;
}
.splitting .word, .splitting .char {
    display: inline-block;
}
.fade-in-bottom {
    -webkit-animation: fade-in-bottom .6s cubic-bezier(.39,.575,.565,1.000) both;
    animation: fade-in-bottom .6s cubic-bezier(.39,.575,.565,1.000) both;
}
#key .keyBenefitsBox.keybenefitpix1 {
    width: 727px;
    height: 467px;
}
#key .keyBenefitsBox {
    overflow: hidden;
    position: relative;
}
#key .keyBenefitsBox img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    /* position: absolute; */
    top: 0px;
    left: 0px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
img, svg {
    vertical-align: middle;
}
.pos-abs {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #fff;
    font-size: 8px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#key p {
    margin: 10px;
    padding: 0;
    margin-top: 10px;
}
.keyBenefitsBox img:hover {
    transform: scale(1.05); /* Scale the image up slightly on hover */
    filter: brightness(0.9); /* Darken the image slightly on hover */
}.keyBenefitsBox {
    overflow: hidden;
    position: relative;
}
.keyBenefitsBox img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    top: 0px;
    left: 0px;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for scaling and filter */
}
 /* Animation Keyframes */
 @keyframes fade-in-bottom {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .enquire-section {
    text-align: center;
    padding: 50px 0;
  }

  .enquire-section h1,
  .enquire-section p,
  .enquire-buttons .btn {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 0.4s;
    animation-name: fade-in-bottom;
    animation-fill-mode: forwards;
  }

  .enquire-section h1 {
    font-size: 3rem;
    font-weight: bold;
    font-size: 28px;
    animation-delay: 0.2s; /* Slight delay for the heading */
  }

  .enquire-section p {
    font-size: 1.2rem;
    /* margin-top: 30px; */
    margin-bottom: 20px;
    line-height: 36px;
    color: #000;
    animation-delay: 0.4s;
    max-width: 600px; /* Set a maximum width */
    margin-left: auto;
    margin-right: auto; /* Ensure the paragraph is centered */
  }

  .enquire-buttons .btn {
    background-color: #A37F75; /* Updated color */
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 0;
    font-weight: bold;
    animation-delay: 0.6s;
  }

  .btn-visit:after,
  .btn-schedule:after {
    content: '';
    display: inline-block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #A37F75; /* Updated color */
    vertical-align: middle;
    margin-left: -5px;
  }
  .rera-section {
    padding: 20px;
    background-color: #f9f9f9; /* Background color */
    /* border-radius: 8px; */ /* Removed border-radius */
  }
  .rera-section img {
    max-width: 100px;
    height: auto;
  }
  .rera-details {
    font-size: 1rem;
    color: #333;
  }
  .rera-details h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000 !important;
  }
  .rera-details a {
    color: #007bff;
    text-decoration: none;
  }
  .badge-img {
   width: 100%;
    height: auto;
  }
  .qrnewone{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 20px;
        position: relative;
        max-width: 1300px;
        width: 100%;
    }
    h1.display-4.heading {
        font-size: 28px;
    }
    .btn-container {
        position: fixed;
        top: 90px;
        right: 0;
        z-index: 1000;
    }

    .e-brochure-btn, .inquiry-btn {
        display: block;
        background-color: #654b43; /* Blue color */
        color: white;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        border-radius: 5px 5px 0 0;
        transform: rotate(-90deg); /* Rotate the button vertically */
        transform-origin: right bottom; /* Set the rotation point */
        transition: background-color 0.3s ease;
        margin-bottom: 100px; /* Adds space between the buttons */
    }

    .e-brochure-btn:hover, .inquiry-btn:hover {
        background-color: #000 ; /* Darker blue on hover */
    }

    .inquiry-btn {
        background-color: #cba69c ; /* Green color for Inquiry button */
    }

    .inquiry-btn:hover {
        background-color: #000; /* Darker green on hover */
    }
    /* Hover effects */
    .btn:hover {
        background-color: #000; /* Darker blue on hover */
        color: #ffffff; /* White text */
    }

    .btnschedu:hover {
        background-color: #000; /* Darker green on hover */
        color: #ffffff; /* White text */
    }
    .ml-5 {
        margin-left: 15px;
    }