﻿body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* ✅ Prevent horizontal scroll */
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

/*------ FOR TEXT COME FROM IN TO OUT---------*/
.hidden {
    opacity: 0;
    transform: scale(0.4); /* bahut chhota se start hoga */
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show {
    opacity: 1;
    transform: scale(1); /* final normal size */
}




.header-mobile{
    display:none;
}
.header {
    width: 100%;
    position: fixed;
    background-color: black;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    display: block;
}

.header-container {
    display: flex;
    position: relative;
    justify-content: space-between;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.header-logo {
    width: 10%;
    padding: 10px;
}

.header-navbar {
    width: 47%;
}

.header-navbar-container {
    display: flex;
    margin: 50px 0 50px 0;
}

.nav-link a {
    font-size: 17px;
    color: white;
    font-family: 'Roboto';
    font-weight: 400;
    padding: 0 20px 0 25px;
}

    .nav-link a:hover {
        color: #DEB144;
        text-decoration:underline;
    }

.brochure {
    margin-top: 35px;
    width:11%;
}

.brochure-container {
    display: flex;
    padding: 15px 30px;
    background-color: white;
    border-radius: 20px;
}

.brochure span {
    font-size: 15px;
    color: black;
    font-family: 'Roboto';
    font-weight: 500;
}

.img {
    width: 22%;
    padding-right: 8px;
    transition: filter 0.3s ease;
}
/* 🔥 Hover effect: make image white */
.brochure:hover .img {
    filter: brightness(0) invert(1);
}
/* 🔥 Hover effect: make image white */
.brochure:hover span {
    color: white;
}

.brochure:hover .brochure-container {
    background-color: black;
}

.call-section {
    margin-top: 35px;
    width:12%;
    transition: 0.5s ease all;
}

    .call-section:hover {
        transform: scale(1.1);
    }

.call-section-container {
    border: 2px solid white;
    background-color: black;
    display: flex;
    padding: 13px 12px;
    border-radius: 20px;
}

.call-section span {
    font-size: 14px;
    color: white;
    font-family: 'Roboto';
    font-weight: 500;
    letter-spacing: 2px;
}

.call-section-img {
    width: 11%;
    padding-right: 5px;
}

.cilaro {
    width: 10%;
}

.cilaro-img {
    width: 55%;
}

.cilaro-container p {
    font-size: 11px;
    color: white;
    font-family: 'Roboto';
}

.right {
    padding-left: 80px;
}




.swiper-section-desktop {
    margin-top: 120px;
    display:block;
}
.swiper-section-mobile{
    display:none;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.custom-swiper-prev::after,
.custom-button-next::after {
    display: none;
}


/* Custom navigation buttons */
.custom-swiper-next,
.custom-swiper-prev {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0px 10px;
}

    .custom-swiper-prev img,
    .custom-swiper-next img {
        width: 32px;
        z-index: 1;
        object-fit: contain;
    }

/* Button positions */
.custom-swiper-prev {
    left: 0px;
}

.custom-swiper-next {
    right: 0px;
}




.first-section {
    padding: 70px 0 70px 0;
    width: 100%;
    background-image: url('../img/URBAN-GRANDEUR-LEAFLET-3-9-22-SINGLE_pages-to-jpg-0005.jpg');
}

.first-section-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.overview-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.divider {
    height: 3px;
    width: 20%;
    justify-self: center;
    margin-top: -10px;
    background-color: #ffab03;
}

.first-section-txt p {
    font-size: 16px;
    font-family: 'Roboto';
    text-align: center;
    line-height: 30px;
    padding: 20px 0 20px 0;
}



.second-section {
    padding: 70px 0 70px 0;
    width: 100%;
}

.second-section-container {
    width: 100%;
    margin: auto;
    max-width: 1140px;
}

.second-section-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.second-section-contents {
    display: flex;
    width: 100%;
    margin-top: 70px;
}

.second-section-content1 {
    width: 33.3%;
    border: 2px solid white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    margin: 0px 40px 0px 0px;
    border-radius: 50px;
}

.content-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 20px;
    margin-top: 50px;
}

.price-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

    .price-section span {
        font-size: 16px;
        color: white;
        font-family: 'Roboto';
        font-weight: 400;
        padding: 12px 28px;
        letter-spacing: 1px;
        border-radius: 50px;
        background-color: #C5AA2D;
    }

.price-img {
    width: 19%;
    padding-right: 6px;
}




.third-section {
    padding: 70px 0 70px 0;
    width: 100%;
    background-image: url('../img/URBAN-GRANDEUR-LEAFLET-3-9-22-SINGLE_pages-to-jpg-0005.jpg');
}

.third-section-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.third-section-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.third-section-containers {
    margin-top: 40px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.game {
    display: flex;
    width: 100%;
    gap: 20px;
}

.outdoor {
    width: 50%;
    background-color: #B6B33D;
    border: 1px solid #FF8686;
}

    .outdoor:hover, .indoor:hover {
        background-color: #1A618B;
    }

.tablinks.active {
    color: white;
}

.outdoor-section {
    display: flex;
    justify-content: center;
}

    .outdoor-section span {
        font-size: 16px;
        color: white;
        font-family: 'Roboto';
        font-weight: 400;
        padding: 12px 28px;
        letter-spacing: 1px;
    }

.home-img {
    width: 26%;
    padding-right: 12px;
}

.indoor {
    width: 50%;
    background-color: #f1f1f1;
    border: 1px solid #FF8686;
}

.indoor-section {
    display: flex;
    justify-content: center;
}
/* 🔥 Hover effect: make image white */
.indoor:hover .home-img {
    filter: brightness(0) invert(1);
}

.indoor:hover span {
    color: white;
}

.indoor-section span {
    font-size: 16px;
    color: #333;
    font-family: roboto;
    font-weight: 400;
    padding: 12px 28px;
    letter-spacing: 1px;
}

.third-section-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 40px 20px;
}

.third-section-content1 {
    margin-bottom: 40px;
}

    .third-section-content1:hover {
        border: 2px solid #B9B911;
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        transition: 0.2s ease all;
    }

.exc-img {
    width: 75px;
    justify-self: center;
    margin: 10px;
}

.third-section-content1 p {
    font-size: 15px;
    color: #333;
    font-family: roboto;
    font-weight: 400;
    text-align: center;
}

Style the tab
.tab {
    overflow: hidden;
}

Style the buttons inside the tab
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

Change background color of buttons on hover
.tab button:hover {
    background-color: #ddd;
}

Create an active/current tablink class
.tab button.active {
    background-color: #ccc;
}

Style the tab content
.tabcontent {
    max-width: 1140px;
    margin: auto;
    width: 100%;
    display: none;
    padding: 50px 12px;
    border-top: none;
}

.tabcontents {
    max-width: 1140px;
    margin: auto;
    width: 100%;
    display: none;
    padding: 50px 12px;
    border-top: none;
}





.fourth-section {
    padding: 70px 0 100px 0;
    width: 100%;
}

.fourth-section-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.fourth-section-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.fourth-section-containers {
    margin-top: 40px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.games {
    display: flex;
    width: 100%;
    gap: 20px;
}

#elevation {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 40px 20px;
}

.elevation {
    width: 33.3%;
    background-color: #B6B33D;
    border: 2px solid #FF8686;
    cursor: pointer;
}

    .elevation:hover, .amenities:hover, .drone:hover {
        background-color: #1A618B;
    }

.elevation-section {
}

.elevation p {
    font-size: 16px;
    color: white;
    font-family: 'Roboto';
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.amenities p, .drone p {
    font-size: 16px;
    color: #333;
    font-family: 'Roboto';
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.cards {
    border-radius: 20px;
    transition: 0.5s ease all;
}

    .cards:hover {
        transform: scale(0.9);
        border: 4px solid #FF8686;
    }

#amenities {
    padding: 40px 60px;
    position: relative;
}

.elevation:hover p, .amenities:hover p, .drone:hover p {
    color: white;
}

.amenities, .drone {
    width: 33.3%;
    background-color: #f1f1f1;
    border: 1px solid #FF8686;
    cursor: pointer;
}

.for-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.img1 {
    width: 100%;
    transition:0.5s ease all;
}
    .img1:hover{
        transform:scale(0.9);
    }
    Style the tab
    .tabs {
        overflow: hidden;
    }

Style the buttons inside the tab
.tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

Change background color of buttons on hover
.tabs button:hover {
    background-color: #ddd;
}

Create an active/current tablink class
.tabs button.active {
    background-color: #ccc;
}

Style the tab content
.tabscontent {
    max-width: 1140px;
    margin: auto;
    width: 100%;
    display: none;
    padding: 50px 12px;
    border-top: none;
}

.tabscontents {
    max-width: 1140px;
    margin: auto;
    width: 100%;
    display: none;
    padding: 50px 12px;
    border-top: none;
}






.fifth-section {
    padding: 40px 0 70px 0;
    width: 100%;
    background-image: url('../img/URBAN-GRANDEUR-LEAFLET-3-9-22-SINGLE_pages-to-jpg-0005.jpg');
}

.fifth-section-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.fifth-section-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.fifth-section-content {
    display: flex;
    width: 100%;
    margin-top: 40px;
    gap: 40px;
}

.fifth-section-txt {
    width: 50%;
    margin: auto;
    border-style: solid;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 2px 3px 0px 0px rgba(0, 0, 0, 0.5);
    height: fit-content;
    opacity: 0; /* hide initially */
    transition: transform 1s ease, opacity 1s ease;
}

.accordion {
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 700;
    transition: 0.4s;
    position: relative;
    background-color: transparent;
    border-block-end: 1px solid #d5d8dc;
}
    /* the +/- icon */
    .accordion::after {
        /* content: '+';*/
        content: '🔻'; /* default is plus */
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 27px;
        line-height: 1;
        color: #DA3869;
    }

    /* when active, change to minus */
    .accordion.active::after {
        color: #DA3869;
        content: '🔺'; /* Unicode “en‑dash” (looks like a minus) */
    }

    .accordion:hover,
    .accordion.active {
        /*background-color: #1e73be;
        color: white;*/
    }

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: transparent;
}

    .panel p {
        font-size: 16px;
        font-family: 'Roboto';
        line-height: 30px;
        letter-spacing: 0px;
        color: #584D66;
    }

.fifth-section-img {
    width: 50%;
    opacity: 0; /* hide initially */
    transition: transform 1s ease, opacity 1s ease;
}
    .fifth-section-img:hover {
        animation: floatY 1s ease-in-out infinite alternate;
    }

@keyframes floatY {
    from {
        transform: translateY(1);
    }

    to {
        transform: translateY(-15px);
        how much it moves up
    }
}




/* All slide elements hidden by default */
.slide-left,
.slide-right {
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

/* Initial position offsets */
.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

    /* Active state (when in viewport) */
    .slide-left.active,
    .slide-right.active {
        transform: translateX(0);
        opacity: 1;
    }




.sixth-section {
    padding: 40px 0 70px 0;
    width: 100%;
}

.sixth-section-container {
    width: 100%;
    margin: auto;
    max-width: 1400px;
}

.sixth-section-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.sixth-section-txt p{
    font-size: 16px;
    font-family: 'Roboto';
    text-align: center;
    line-height: 30px;
    padding: 20px 0 20px 0;
}

.sixth-section-contents {
    display: flex;
    width: 100%;
    gap: 50px;
}

.sixth-section-img {
    width: 50%;
}

    .sixth-section-img img {
        height: -webkit-fill-available;
    }

.contact-section2-container1 {
    width: 50%;
    border-color: #F4F8FD;
    box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.contact-content-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 35px;
}

.contact-section1-form {
    padding: 25px 40px 40px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section1-container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

.contact-forms {
    width: 100%;
}

.contact-forms1 {
    width: 100%;
    padding: 0;
}

.for-row {
    width: 100%;
    display: flex;
    gap: 30px;
}

.label {
    width: 50%;
    margin: 18px 0;
}

.name {
    padding: 14px 15px;
    font-size: 15px;
    font-family: 'Roboto';
    color: #333;
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.3s ease;
}

.button {
    margin-top: 25px;
    position: relative;
}

/* ---------- SUBMIT BUTTON ---------- */
.submit {
    width: 100%;
    color: white;
    padding: 9px 40px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Roboto';
    border: none;
    background: linear-gradient(135deg, #A08C03, #A08C03);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(10, 55, 103, 0.3);
}

.contact-section1-part2:hover .submit {
    background: white;
    color: #0A3767;
    border: 2px solid #1E73BE;
    box-shadow: 0 8px 20px rgba(10, 55, 103, 0.4);
    transform: scale(1.05);
}

.contact-section2-container2 {
    width: 100%;
}

.site-flex {
    display: flex;
    width: 100%;
    gap: 25px;
}

.site-flex-part {
    width: 50%;
}

.cnt-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Roboto Condensed';
    font-size: 26px;
}

.call-us-on {
    display: flex;
    gap: 15px;
    justify-self: center;
}

.txt {
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 30px;
}

.card-img {
    width: 40%;
    margin-top: 20px;
}

    .card-img img {
        width: 100%;
        transition: all 0.3s ease;
    }

    .card-img:hover img {
        filter: brightness(0) saturate(100%) invert(57%) sepia(89%) saturate(736%) hue-rotate(17deg) brightness(95%) contrast(98%);
    }

.txt-num {
    font-size: 20px;
    font-family: 'Roboto';
    line-height: 30px;
    cursor: pointer;
}

.call-img {
    width: 32px;
    margin-top: 20px;
    cursor: pointer;
}

    .call-img img {
        width: 100%;
        transition: all 0.3s ease;
    }

    .call-img:hover img {
        filter: brightness(0) saturate(100%) invert(57%) sepia(89%) saturate(736%) hue-rotate(17deg) brightness(95%) contrast(98%);
    }





/*----------FOOTER-SECTION----------*/
.footer-section {
    background-color: #BBBBBBA6;
    width: 100%;
}

.footer-section-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding-top: 25px;
}

.maharera {
    display: flex;
    width: 100%;
    gap: 20px;
}

.maharera-txt h4 {
    font-family: 'Roboto Condensed';
    font-size: 30px;
    margin: 0;
    font-weight: 500;
}

.maharera-txt p {
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 30px;
    color: #6C4D66;
    margin-top: 5px;
}

.maharera-para {
    font-size: 16px;
    font-family: arial;
    line-height: 30px;
    letter-spacing: 1px;
}

.copyright {
    font-size: 13px;
    margin-top: 70px;
    font-family: arial;
    padding-bottom: 30px;
}




/*############  BACK TO TOP BUTTON ###########*/
#back-to-top-section {
    display:block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 12px;
    border: none;
    border-radius: 50%;
    background-color: #584D66;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.5s ease-in-out;
}


    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #DEB144;
        color: #584D66;
    }


@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
    }
}





/*----------CONTACT FORM--------*/

.contact-block-section1 {
    padding: 80px 40px 50px 40px;
    margin-top: 90px;
    background-color: black;
}

.contact-block-section1-container {
    width: 80%;
    background-color: black;
}

.contact-block-section1-container-inner {
    width: 100%;
}

.contact-block-section1-part2 {
    width: 100%;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    margin: 0px 60px 0px 0px;
    border-radius: 5px;
    padding: 20px;
    height: fit-content;
}


    .contact-block-section1-part2:hover .contact-form1 h1 {
        color: white;
    }
    .contact-block-section1-part2:hover .submit {
        background: white;
        color: #0A3767;
        border: 2px solid #0A3767;
        box-shadow: 0 8px 20px rgba(10, 55, 103, 0.4);
        transform: scale(1.05);
    }

.contact-form-img {
    width: 30%;
    justify-self: center;
    padding-top: 30px;
}

.contact-form {
    width: 99%;
}

.contact-form1 {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 40px;
}

    .contact-form1 h1 {
        color: white;
        font-size: 22px;
        font-family: 'Roboto Condensed';
        text-align: center;
    }


.label-form {
    width: 100%;
    padding: 5px 15px 10px 15px;
    margin: 10px;
}

.name-form {
    padding: 15px 2px 15px 10px;
    font-size: 14px;
    font-family: 'Roboto';
    color: black;
    width: 100%;
}

.button-form {
    margin-top: 20px;
    padding: 0px 0px 0px 30px;
}

.submit-form:hover {
    background-color: #95762F;
}

.submit-form {
    color: white;
    padding: 15px 50px 15px;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Roboto';
    border: 1px solid #0A3767;
    border-radius: 25px;
    background-color: #6300E2;
}




/*----------Thank You Page--------------*/
.thank-page-v2 {
    width: 100%;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #131D3B;
    font-family: Poppins;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
    font-family: Poppins;
}