* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Grotesk';
    src: url('./fonts/BDOGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Grotesk';
    src: url('./fonts/BDOGrotesk-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --111-black: #111;
    --666-grey: #666;
    --313-black: #313131;
    --golden: #D09B3A;
    --green: #009D53;
    --font-grotesk: "Grotesk", sans-serif;
    --font-demibold-grotesk: "DemiBoldGrotesk", sans-serif;
    --font-old-standard: "Old Standard TT", serif;
}


body {
    font-family: var(--font-grotesk);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--666-grey);
}


/* utilities */
p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    width: fit-content;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

.d-none {
    display: none !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mx-auto {
    margin-inline: auto;
}

.mt-100 {
    margin-top: 100px;
}

.ym-container {
    max-width: 1600px;
    width: 100%;
    margin-inline: auto;
}

.title_96 {
    font-size: 96px;
    line-height: 96px;
    letter-spacing: -0.01em;
    font-family: var(--font-old-standard);
    font-weight: 900;
    color: white;
}

.title_48 {
    font-family: var(--font-old-standard);
    font-size: 48px;
    line-height: 58px;
    font-weight: 900;
    color: var(--111-black);
    text-transform: capitalize;

}

.title_30 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 900;
    font-family: var(--font-old-standard);
    color: var(--111-black);
}

.title_24 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 900;
    font-family: var(--font-old-standard);
    color: var(--111-black);
}

.title_18_bdo {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-demibold-grotesk);
    color: var(--green);
    text-transform: uppercase;
}

.title_30_bdo {
    font-size: 30px;
    margin-bottom: 20px;
    font-family: var(--font-demibold-grotesk);
    color: var(--green);
    text-transform: uppercase;
}

.title_24_bdo {
    font-size: 24px;
    line-height: 24px;
    font-family: var(--font-demibold-grotesk);
}

.title_40_geist {
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    color: var(--golden);
}

/* btn-2 */
/* From Uiverse.io by gharsh11032000 */
/* From Uiverse.io by gharsh11032000 */
.btn_2 {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    background-color: transparent;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 0 1px white;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn_2.btn_1 {
    background-color: white;
    color: var(--111-black);
    box-shadow: 0 0 0 1px white;
}

.btn_2 span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #009D53;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn_2.btn_1 span:last-child {
    background-color: var(--111-black);
}

.btn_2 span:first-child {
    position: relative;
    z-index: 1;
}

.btn_2:hover {
    box-shadow: 0 0 0 1px #009D53;
    color: white;
}

.btn_2.btn_1:hover {
    box-shadow: 0 0 0 1px #009D53;
    color: white;
}

.btn_2:active {
    scale: 0.95;
}

.btn_2:hover span:last-child {
    width: 200px;
    height: 150px;
    opacity: 1;
}

/* btn-2 */
/* btn-3 */
/* From Uiverse.io by Mangesh636 */
.btn_3 {
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0px;
    outline: none;
    overflow: hidden;
    color: rgb(0, 0, 0);
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

.btn_3 span {
    margin: 10px;
}

.btn_3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.btn_3:hover {
    color: #fff;
    border: 1px solid rgb(0, 0, 0);
}

.btn_3:hover .btn_3_img {
    filter: contrast(0);
}

.btn_3:hover::before {
    box-shadow: inset 0 0 0 10em rgb(0, 0, 0);
}

/* btn-3 */
/* utilities */

/* Header */
/* ===== HEADER ===== */

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    padding: 20px 0;
}

header.is-glass {
    background: rgba(43, 43, 43, 0.83);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 43, 43, 0.64);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: calc(100% - 100px);
    margin-inline: auto;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
}

/* ===== LOGO ===== */
.logo img {
    max-height: 66px;
}

/* ===== MENU ===== */
.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: all 0.6s ease;
}

.nav-links a:hover {
    color: var(--green);
    transition: all 0.6s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Active Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    background: #111;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    padding: 20px;
}

.mobile-menu.active {
    top: 100px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 30px;
}

.mobile-menu a {
    color: white;
    font-size: 22px;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    nav {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* .logo {
        order: 1;
    } */

    .hamburger {
        order: 2;
    }
}

/* hero css */
.hero_wrapper {
    position: relative;
}

.hero_content {
    position: absolute;
    max-width: 1600px;
    width: 100%;
    right: 0%;
    /* transform: translateX(-50%); */
    bottom: 0;
}

.hero_title {
    max-width: 654px;
    width: fit-content;
    margin-bottom: 50px;
}

.hero_title p {
    margin: 30px 0;
}

.btn_wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    width: fit-content;
}

/* hero css */

/* intro section */
.intro {
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    background-image: url(../images/dhaniya.png);
    height: -webkit-fill-available;
    width: 220px;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.intro_grid {
    margin: 80px 0;
    gap: 80px;
    row-gap: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
}

.intro_box {
    padding-bottom: 60px;
    border-bottom: 1px solid #D9D9D9;
}

.intro_box .title_30 {
    color: var(--green);
    margin-bottom: 10px;
}

/* intro section */
/* invest css */
.invest_grid {
    gap: 50px;
    margin-top: 40px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
}

.invest_box {
    background-color: #F7F7F7;
}

.invest_flex h3 {
    margin-bottom: 20px;
}

.invest_flex {
    margin: 45px 40px;
    gap: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

/* invest css */
/* about css */
.abt_grid {
    /* gap: 80px; */
    justify-content: space-between;
    grid-template-columns: 44% 52%;
    display: grid;
}

.abt_grid h2 {
    margin-bottom: 30px;
}

.abt_grid_2 {
    margin-top: 30px;
    justify-content: space-between;
    grid-template-columns: 43% 56%;
    display: grid;
     align-items: center;
}

.abt_info {
    /* gap:20px; */
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    text-align: center;
    align-items: center;
}

.abt_flex {
    padding: 0 22px 0 25px;
    gap: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    /*justify-content: space-evenly;*/
    height:100%;
}

.abt_flex:not(:last-child) {
    border-right: 2px solid #D9D9D9;
    margin-right: 12px;
    padding-right: 37px;
}

/* about css */

/* plot */
.plot_grid {
    gap: 100px;
    grid-template-columns: 1fr 1fr;
    display: grid;
    align-items: center;
}

.plot_left {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 43px;
}

.plot_box {
    gap: 30px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background-color: #F7F7F7;
}
.plot_box p, .ft_btm p{margin-bottom: 0!important;}

.plot_right ul {
    margin: 40px 0 40px 20px;
}

/* plot */
/* contact */
.contact_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    margin-top: 60px;
}

.contact_wrapper .title_24 {
    display: block;
    margin-bottom: 30px;
}

.form_wrapper input,
.form_wrapper textarea {
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 6px;
    padding-left: 0;
    width: 100%;
    font-size: 18px;
    font-family: var(--font-geist);
    background-color: transparent;
}

.form_group {
    margin-bottom: 40px;
}

/* From Uiverse.io by Nawsome */
/*bg*/
/*txt*/
/*success*/
.buttons {
    display: flex;
    justify-content: flex-start;
}

.buttons button {
    width: 150px;
    height: 50px;
    background-color: black;
    color: white;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.buttons button:before,
.buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button:after {
    left: 0;
    bottom: 0;
}

.buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.buttons button span:before,
.buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button span:after {
    left: 0;
    bottom: 0;
}

.buttons button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
}

.buttons button p:before,
.buttons button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
}

.buttons button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
}

.buttons button p:after {
    content: attr(data-text);
    top: 150%;
    color: #44d8a4;
}

.buttons button:hover:before,
.buttons button:hover:after {
    width: 100%;
}

.buttons button:hover span {
    z-index: 1;
}

.buttons button:hover span:before,
.buttons button:hover span:after {
    height: 100%;
}

.buttons button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
}

.buttons button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
}

.buttons button.start {
    background-color: #44d8a4;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.buttons button.start p:before {
    top: -50%;
    transform: rotate(5deg);
}

.buttons button.start p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
}

@keyframes start {
    from {
        top: -50%;
    }
}

.buttons button.start:hover:before,
.buttons button.start:hover:after {
    display: none;
}

.buttons button.start:hover span {
    display: none;
}

.buttons button:active {
    outline: none;
    border: none;
}

.buttons button:focus {
    outline: 0;
}


/* contact */

/* footer */
footer {
    border-top: 1px solid #D9D9D9;
    padding-top: 40px;
}

.ft_wrapper {
    display: grid;
    grid-template-columns: 25% 52%;
    justify-content: space-between;
}

.ft_right {
    display: flex;
    gap: 25%;
}

.ft_left img {
    margin-bottom: 50px;
}

.ft_list {
    list-style: none;
    padding: 0;
}

.ft_list li {
    margin-top: 15px;
    white-space: nowrap;
}

.ft_line {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ft_line a {
    flex: 1;
}

.ft_bottom {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.8) 0%, #111111 50%, rgba(17, 17, 17, 0.8) 100%);
    color: white;
}

.ft_btm {
    margin-top: 70px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}


footer .ft_line a:hover,
.ft_btm a:hover,
.ft_list li a:hover {
    color: var(--green);
    transition: all 0.6s ease;
}

/* footer */
/* ready to move */
.ready_head {
    margin-bottom: 30px;
    text-align: center;
}

.bungalow-section:nth-child(odd) {
    display: grid;
    grid-template-columns: 48% 45%;
    gap: 60px;
    align-items: center;
}
.bungalow-section:nth-child(even) {
    display: grid;
    grid-template-columns: 45% 48%;
    gap: 60px;
    align-items: center;
}
/* Slick Slider Custom Styles */
.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    bottom: -18px !important;
}

.slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    width: 30px;    
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #D9D9D9;
    padding: 0;
    transform: scaleX(0.95);
    transform-origin: center;
    transition: all 0.3s ease-in;
}

.slick-dots li.slick-active button {
    width: 30px;
    background-color: var(--666-grey);
    transform: scaleX(1);
    transition: all 0.3s ease-out;
}

/* Content Styles */


/* Tabs Styles */
.tabs {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.tab-button {
    padding: 10px 20px;
    background-color: var(--111-black);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}


.tab-button.active {
    background-color: var(--111-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.tab-button.active .tab_line{filter:contrast(0);}

.tab-button:not(.active) {
    background-color: #fff;
    color: var(--111-black);
    border: 1px solid #ddd;
}

/* Price Styles */


/* Features Styles */


.features-list {
    margin: 20px 0;
    padding-left: 10px;
}


/* ready to move */