/* =========================
   GLOBAL
========================= */
html,
body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 130px;
    z-index: 999;
    background-color: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .navbar {
        height: 125px;
    }
    .navbar-light .navbar-nav .nav-link {
    color: rgb(255 251 255);
}
.navbar-toggler
{
margin-top: -20px;
}
}

.nav-link {
    font-size: 19px;
}

.nav-link:hover {
    color: #a21c1e !important;
}

/* Logo */
.navbar-brand img {
    height: 115px;
    max-height: 100px;
    transition: all 0.3s ease;
}

/* Scrolled state */
.navbar.scrolled {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
    height: 115px;
}

.navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 600;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    color: #fff;
    background-color: #7fba82;
    border-color: #7fba82;
}

/* =========================
   FIXED ENQUIRY BUTTONS
========================= */
.enq-left {
    position: fixed;
    left: 0;
    top: 42%;
    z-index: 1010;
        width: 100px;
    cursor: pointer;
}

.enq-btm {
    position: fixed;
    bottom: -1px;
    right: 30px;
    z-index: 1010;
    cursor: pointer;
}

/* =========================
   CONTAINERS
========================= */
.container-fluid {
    padding-left: 100px;
    padding-right: 100px;
}

@media (max-width: 767px) {
    .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* =========================
   HERO SECTION
========================= */
.section1 {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url("banner.png") center / cover no-repeat;
    color: #fff;
}

.hero-bottom {
    position: absolute;
    bottom: 170px;
    right: 120px;
    display: flex;
    gap: 40px;
}

.hero-text h1 {
    font-size: 90px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.hero-text span {
    font-weight: 600;
}

.hero-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-block img {
    height: 70%;
    width: auto;
    margin-bottom: 8px;
}

.hero-logo-block p {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .hero-bottom {
        right: 50%;
        transform: translateX(50%);
        bottom: 40px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 24px;
        white-space: normal;
    }

    .hero-logo-block img {
        height: 110px;
    }
}

/* =========================
   SECTION 2 (PARALLAX)
========================= */
.section2 {
   /* height: 100vh;*/
    background: url("img/sec-1-img.jpg") center / cover fixed no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.left,
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 60px 50px;
}

.right {
    background: url("img1.jpg") center / cover no-repeat;
    position: relative;
}

.right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.right > * {
    position: relative;
    z-index: 1;
}

.section2 ul {
    padding-left: 25px;
    margin-top: 12px;
}

.section2 strong {
    font-weight: 600;
}

.Paragraph {
    display: flex;
    gap: 40px;
    margin-top: 25px;
}

.trust {
    width: 45%;
}

@media (max-width: 900px) {
    .section2 {
        flex-direction: column;
    }

    .left,
    .right {
        padding: 40px 30px;
    }

    .Paragraph {
        flex-direction: column;
        gap: 30px;
    }

    .trust {
        width: 100%;
    }
}

/* =========================
   SECTION 4
========================= */
.section4 {
    background-color: #221e1f;
}

.section4 img {
    width: 100%;
    margin: auto;
}

/* =========================
   UTILITIES
========================= */
.red {
    color: #a21c1e;
}

.mt8 {
    margin-top: 8px;
}

.text-nowrap {
    white-space: nowrap !important;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #222;
    color: #bbb;
    padding: 20px 0;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.cr {
    background-color: #000;
    color: rgb(146, 146, 146);
    padding: 20px 0;
}

.cr a {
    color: rgb(146, 146, 146);
    padding: 0 5px;
}
/* =========================
   SECTION 5 – FLOOR PLAN
========================= */
.section5 {
    display: flex;
    background-color: #241e1e;
    gap: 50px;
    align-items: center;
}

.section5-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floorplan-header {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.floorplan-header h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.floorplan-header p {
    font-size: 14px;
    color: #ccc;
}

.floorplan-image img {
    width: 100%;
    height: auto;
}

.unit-labels {
    display: flex;
}

.unit-label {
    flex: 1;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
}

.floorplan-tables {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
}

.rera-table table {
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5);
}

.rera-table th,
.rera-table td {
    padding: 6px 12px;
    border: 1px solid #fff;
    font-size: 11px;
    color: #fff;
}

.section5-right {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    padding-top: 83px;
}

@media (max-width: 767px) {
    .section5-right {
        padding-top: 0;
    }
}

@media (max-width: 1024px) {
    .section5 {
        flex-direction: column;
    }

    .section5-left,
    .section5-right {
        flex: 1 1 100%;
    }
}

/* =========================
   SECTION 6 – SPECIFICATIONS
========================= */
.section6 {
    display: flex;
    gap: 40px;
   /* background: #221e1f;*/
}

.section6-left,
.section6-right {
    flex: 0 0 50%;
}

.section6-left img {
    width: 100%;
    height: auto;
    border: 2px solid #555;
}

.specification {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.spec-box h3 {
    font-size: 15px;
    font-weight: 600;
    color:#212529;
}

.spec-box ul li {
    font-size: 13.5px;
    color: #212529;
}

.amenities {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.amenity-card {
    flex: 1;
    text-align: center;
}

.amenity-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
        padding: 2px;
    border: 1px solid #000;
}

@media (max-width: 900px) {
    .section6 {
        flex-direction: column;
    }

    .specification {
        grid-template-columns: 1fr;
    }

    .amenity-card {
        flex: 1 1 45%;
    }
}

/* =========================
   SECTION 7 – LOCATION & FOOTER
========================= */
.section7 {
    /*color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;*/
}

.section7-top {
    display: flex;
    gap: 10%;
    align-items: center;
}

.map-box {
    flex: 2;
    height: 420px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.key-distance-box {
    flex: 1;
}

.section7-bottom {
    margin-top: 60px;
    text-align: center;
}

.companies-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.company {
    width: 30%;
    text-align: center;
    font-size: 13px;
    color: #ddd;
}

@media (max-width: 1024px) {
    .companies-wrapper {
        flex-direction: column;
    }

    .company {
        width: 100%;
    }
}

/* =========================
   DISCLAIMER
========================= */
.disclaimer-section {
    display: flex;
    gap: 40px;
}

.disclaimer-text {
    flex: 4;
    font-size: 14px;
    color: #cfcfcf;
}

.disclaimer-logos {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .section7-top,
    .disclaimer-section {
        flex-direction: column;
        text-align: center;
    }
}
/* =========================
   PROJECT BLOCK
========================= */
.projects {
   flex: 1;
}

.project-left,
.project-right {
    flex: 1;
}

.projects h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #221e1f;
}

.projects h2 span {
    color: #a21c1e;
}

.projects p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.projects ul {
    margin-top: 15px;
    padding-left: 20px;
}

/*.projects ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}*/

.projects img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* =========================
   PROJECT – RESPONSIVE
========================= */
@media (max-width: 900px) {

    .projects {
        flex-direction: column;
        gap: 25px;
        /*text-align:;*/
    }

    .projects ul {
        padding-left: 0;
        list-style-position: inside;
    }
}
.info
{
    flex: 1;
}
.sec2-img
{
    margin-top: 175px;
}
.disclaimer-logos img {
    max-width: 240px;
}
.key-distance-box {
    flex: 1;
}
.map-box {
    flex: 2;
    position: relative;
    height: 420px;
    background: #ffffff;
}
.container {
    display: flex;
    /* min-height: 100vh; */
    width: 100%;
}
.section7-top {
    display: flex;
    gap: 10%;
    align-items: center;
}
.section7-wrapper {
    max-width: 1300px;
    margin: auto;
}
.title {
    font-size: 20px;
    margin-bottom: 5px;
   /* color: #ffffff;*/
    text-decoration: underline;
}
.image-container {
    width: 100%;
    height: auto;
    border: 3px solid #000;
    position: relative;
    overflow: hidden;
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    padding: 5px;
}
.artist-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 3px;
}
.hero-logo-block img {
    height: 70%;
    width: auto;
    margin-bottom: 8px;
}
.hero-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-container {
    margin-bottom: 5px;
}
#contact
{
    background-color: #1e1a18b0
}
section
{
    padding: 100px 0px;
}
/* =========================
   BACK TO TOP BUTTON
========================= */
#backToTop {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: #a21c1e;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: #7fba82;
    transform: translateY(-4px);
}

/* Mobile adjustment */
@media (max-width: 767px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}
body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}
.navbar,
.enq-left,
.enq-btm {
    right: 0 !important;
}
@media(max-width: 767px)
{
        .sec2-img {
    margin-top: 80px !important;
}
.amenities {
    display: block !important;
    }
    .amenity-card img {
    width: 100%;
    height: 150px !important;
}
.specification {
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px !important;
        padding-top: 25px;
}
#enq-form-left
{
    width:24px !important;
}
.cr .container
{
    display:block;
}
.disclaimer-logos img {
    max-width: 165px;
    margin: auto;
    padding-top: 20px;
}
}