/* --- FONTS --- */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy-Bold.ttf') format('truetype'),
        url('../fonts/Gilroy-Bold.svg#Gilroy-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TimesNow-sl';
    src: url('../fonts/TimesNow-SemiLight.eot');
    src: url('../fonts/TimesNow-SemiLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TimesNow-SemiLight.woff2') format('woff2'),
        url('../fonts/TimesNow-SemiLight.woff') format('woff'),
        url('../fonts/TimesNow-SemiLight.ttf') format('truetype'),
        url('../fonts/TimesNow-SemiLight.svg#TimesNow-SemiLight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TimesNow-l';
    src: url('../fonts/TimesNow-Light.eot');
    src: url('../fonts/TimesNow-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TimesNow-Light.woff2') format('woff2'),
        url('../fonts/TimesNow-Light.woff') format('woff'),
        url('../fonts/TimesNow-Light.ttf') format('truetype'),
        url('../fonts/TimesNow-Light.svg#TimesNow-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* --- GLOBAL RESETS --- */
* { padding: 0; margin: 0 auto; }
body, html { max-width: 100%; overflow-x: hidden; font-family: 'TimesNow-sl', sans-serif; }
body.no-scroll { overflow: hidden; }
a:hover, a:focus, a:focus-visible { text-decoration: none; outline: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: 'TimesNow-sl' !important; color: #231F20; margin-bottom: 15px; }
p { font-size: 20px; line-height: 1.6; color: #231F20; }
.h2 { font-size: 60px; margin-bottom: 50px; }
.h2.less { margin-bottom: 15px; }
h4 { font-size: 25px; }
h4 span { color: #23BA97; }
.span { color: #10100f; font-size: 18px; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 25px; display: block; }
.date { font-size: 13px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; color: #000; font-family: 'Gilroy'; display: block; }



@media (min-width: 1200px) {
    .container {
        max-width: 90%;
    }
}
/* --- NAVIGATION --- */
nav {
    position: fixed; left: 0; right: 0; top: 0; z-index: 999;
    border-bottom: solid 1px rgba(255, 255, 255, 0.27);
    transition: all ease-in-out 0.5s;
    background: rgba(35, 34, 34, 0.27);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    display: block !important;
}
nav.dlf_nav { background: #000; }
nav .navbar { padding: 12px 0px; }
nav img { width: 180px; }
nav .navbar-nav { margin-right: 30px; }
nav .navbar-nav .nav-item { margin-left: 40px; }
nav .navbar-nav .nav-link {
    color: #FFFFFF; font-size: 14px; letter-spacing: 5px;
    text-transform: uppercase; opacity: 0.8; transition: all 0.5s ease;
    position: relative; padding: 0 !important;
}
nav .navbar-nav .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0;
    background: #fff; height: 1px; transition: all 0.5s ease;
}
nav .navbar-nav .nav-link:hover { opacity: 1; }
nav .navbar-nav .nav-link:hover::after { width: 100%; }
.navbar-brand svg { margin-top: 5px; }
.navbar-brand svg path { fill: #fff; }

/* --- HAMBURGER MENU & OVERLAY --- */
.hamburger-11 {
    outline: none !important; transition: all 0.3s ease-in-out;
    position: relative; width: 50px; height: 50px; padding-top: 15px;
    cursor: pointer; z-index: 99999; display: none;
}
.hamburger .line { width: 27px; height: 2.3px; background-color: #fff; display: block; margin: 6px auto; transition: all 0.3s ease-in-out; }
.hamburger.is-active .line:nth-child(2) { opacity: 0; }
.hamburger.is-active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menubg {
    background-color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    position: fixed; right: 15px; width: 50%; height: 95vh;
    border-radius: 20px; border-top-right-radius: 0px; z-index: 9999; top: 50%;
    transform: translate(110%, -50%); transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-align: center; padding: 70px 40px 40px; display: flex; align-items: center; justify-content: center;
}
.menubg.open { transform: translate(0px, -50%); }

.close_btn {
    position: absolute; background: #000; top: 15px; right: 15px; z-index: 4;
    width: 50px; height: 50px; border-radius: 10px; border-top-right-radius: 0px;
    display: flex; align-items: center; justify-content: center; padding: 18px; cursor: pointer;
}
.close_btn svg path { fill: #fff; }

.body-overlay {
    content: ''; position: fixed; width: 100%; height: 100%; left: 0;
    background-color: rgba(255, 255, 255, 0.25); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px); transition: all 0.8s ease 0.5s;
    z-index: 9998; filter: blur(20px); opacity: 0; visibility: hidden;
}
.body-overlay.in { opacity: 1; visibility: visible; }

.menu23 a {
    font-size: 35px; text-transform: uppercase; color: #000; position: relative;
    display: inline-block; padding: 10px 0px; letter-spacing: 5px;
}
.menu23 a::after {
    content: ''; position: absolute; bottom: 12px; width: 0; left: 0;
    height: 1px; background: #000; transition: all 0.5s ease;
}
.menu23 a:hover::after { width: 100%; }

/* --- BANNER --- */
.banner { height: 100vh; overflow: hidden; position: relative;  }
.banner::after {
    content: ""; position: absolute; top: 0; right: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom left, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.32) 40%, rgba(255,255,255,0) 100%);
}
.banner-inner-image { position: absolute; bottom: 6px; right: 15px; width: max-content; font-size: 13px; color: #fff; z-index: 2; }
.banner-inner-image-qr { display: flex;
    position: absolute;
    top: 20%;
    right: 5%;
    width: 250px;
    gap: 5px;
    z-index: 2; }
.banner-inner-image-qr p { color: #fff; font-size: 11px; white-space: nowrap; margin: 0; }
.banner-inner-image-qr span { width: 50px; }

/* --- RERA STRIP --- */
.rera-info-strip { background-color: #1c1c1c; padding: 15px 0; border-bottom: 1px solid #8e9351; position: relative; z-index: 2; }
.rera-wrapper { display: flex; justify-content: center; align-items: center; gap: 50px; }
.rera-text .rera-title { color: #fff; font-size: 22px; margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.rera-text .rera-desc { color: #DDDDD0; font-weight: normal; font-size: 14px; line-height: 1.6; margin-bottom: 0; }
.rera-text .rera-desc a { color: #fff; text-decoration: underline; transition: opacity 0.3s ease; }
.rera-qr-box { display: flex; align-items: center; gap: 15px; }
.qr-img-wrap { padding: 5px; width: 141px; height: 139px; border-radius: 4px; display: flex; align-items: center; justify-content: center; }

/* --- GENERAL SECTIONS --- */
.pad80 { padding: 80px 0; }
.black { background: #000; }
.white { background: #fff; }
.grey { background: #F4F4F2; }
.overview-main { background: url(../images/texture-with-color-copy.webp) no-repeat center center / cover; }

/* --- BUTTONS & FORMS --- */
.aarize-btn {
    font-family: 'Gilroy'; background: #000; color: #fff; padding: 15px;
    border: 0px; transition: all 0.5s ease 0s; cursor: pointer; display: flex;
    border-radius: 10px; border-top-right-radius: 0px; margin: 0 auto;
    align-items: center; justify-content: space-between; width: 200px;
    font-size: 12px; letter-spacing: 1px; text-align: center; text-transform: uppercase;border:1px solid #000;
}
.aarize-btn svg { width: 10px; height: 10px; margin: 0;fill: #fff; }
.aarize-btn:hover { color: #000; background: #fff;width: 250px; }
.aarize-btn:hover svg path { fill: #000; }

.mb40{
    padding-bottom: 40px;
}

.contact_form .form-control { background: none; border: 1px solid #00000036; border-radius: 10px; padding: 10px; }
.contact_form .form-control:focus { outline: none; box-shadow: none; }
.contact_form .form-control::placeholder { color: #919191; }
.custom-control-label { color: #595959; }
label.error { color: red; font-size: 12px; margin-top: 5px; }

/* --- FOOTER --- */
footer { background: #000; overflow: hidden; position: relative; z-index: 1; width: 100%; }
footer h4 { color: #fff; text-align: center; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 5px; font-size: 18px; }
footer p { font-size: 15px; color: #DDDDD0; text-align: center; margin-bottom: 0px; }
footer p a { color: #DDDDD0; }
footer p a:hover { color: #fff; }
.ftbox { margin-bottom: 20px; }
.social-links a {
    border-radius: 8px; border-top-right-radius: 0px; background: #fff; color: #000;
    width: 45px; height: 45px; transition: all ease-in-out 0.5s; display: inline-flex;
    align-items: center; justify-content: center; margin: 0 5px;
}
.social-links a:hover { background: #3f3e3e; color: #fff; }
.bottom-footer { background: #212121; color: #ddddd085; font-size: 12px; padding: 10px 30px; text-align: center; }
.newletter { background: #1c1c1c; padding: 40px 0 33px; margin-bottom: 40px; }
.sub_email { width: 90%; position: relative; margin: 0 auto; }
.sub_email input[type="email"] {
    width: 100%; font-size: 30px; border-bottom: 2px solid #ccc;
    border-top: none; border-right: none; border-left: none; box-shadow: none;
    background: transparent; padding: 5px 0; transition: all 0.55s ease; color: #747373;
}
.sub_email input[type="email"]:focus { outline: none; }
.sub_email button { position: absolute; right: 10px; top: 5px; background: transparent; border: none; cursor: pointer; }
.sub_email button svg { width: 90px; height: 50px; }

/* --- ANIMATION --- */
.fadeInUp { animation-name: fadeInUp; }
.animated { animation-duration: 1s; animation-fill-mode: both; }
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.qr-footer{
    widtH: 120px;
    margin: auto;
}

@media (max-width: 1199px){
    nav .navbar-nav .nav-item {
    margin-left: 12px;
}
nav .navbar-nav .nav-link {
    color: #FFFFFF;
    font-size: 12px;
}
}

/* --- MEDIA QUERIES --- */
@media (max-width: 991px) {
    /* ADDED: Background for the dropdown so it isn't transparent */
    .navbar-collapse {
       
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
        padding-bottom: 0px;
    }

    .menubg { width: 100%; right: 0; height: 100vh; transform: translate(100%, 0); }
    .menubg.open { transform: translate(0, 0); }
    .h2 { font-size: 40px; }
    .banner .container .caption .h2 { font-size: 50px; }
    .pad80 { padding: 70px 0; }
    .rera-wrapper { flex-direction: column; text-align: center; gap: 20px; }
    .rera-text { width: 100%;  padding-bottom: 20px; }
    footer h4 { letter-spacing: 2px; font-size: 14px; }
    .sub_email button svg { width: 35px; height: 40px; }
    .navbar-brand { margin: 0; }
    .hamburger { margin:0; }
    nav img { width: 130px; }
    
    nav .navbar-nav {
        margin-right: 0;
        margin-top: 0; /* Adjusted */
        border-top: 1px solid #ffffff2b;
        padding-top: 12px;
                margin-top: 12px;
    }
    nav .navbar-nav .nav-item {
        margin-left: 0;
        padding: 10px 0px; /* Added side padding */
        text-align: center; /* Optional: Center align links */
    }
    
    
    
}

@media (max-width: 767px) {
    .container { padding-left: 30px; padding-right: 30px; }
    nav > .container { padding-left: 15px !important; padding-right: 15px !important; }
    .h2 { font-size: 35px; margin-bottom: 50px; }
    .banner .container .caption .h2 { font-size: 40px; }
    footer { padding-top: 0px; }
    .bottom-footer { font-size: 9px; }
    .ftbox { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #ffffff9e; }
    .sub_email input[type="email"] { font-size: 25px; }
    .sub_email button svg { width: 50px; height: 32px; }
    /*.banner-inner-image, .banner-inner-image-qr { display: none; }*/
    .mobile-ct { display: block; }
    .banner-inner-image-qr {
    display: flex;
    position: absolute;
    top: 15%;
    right: 4%;
    width: 240px;
    gap: 5px;
    z-index: 2;
}
.banner-inner-image-qr p {
    color: #fff;
    font-size: 10px;
   white-space: normal;
    margin: 0;
}
.banner-inner-image-qr span {
    width: 102px;
}
.banner {
    height: auto;
}
br{
    display: none;
}
}

@media (min-width: 992px) {
    .mobile-ct { display: none; }
}