:root {
    --primary-color: #074c53;
    --secound-color: #e00a18;
    --white: #fff;
    --black: #333;
    --background-color: #f8f5f0;
}

@font-face {
    font-family: 'sen';
    src: url('../Fonts/Sen-Regular.woff2');
}

@font-face {
    font-family: 'Barlow';
    src: url('../Fonts/Barlow-Medium.woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    background-color: var(--background-color);
}

p,
span,
a,
ul,
li,
b,
button {
    font-family: 'Barlow';
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'sen', sans-serif;
}

a {
    text-decoration: none;
    color: var(--white);
}

img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1240px;
    margin: auto 20px;
}

.overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000087;
    z-index: 1;
    display: none;
}

.overlay.active {
    display: block;
}

/* Start Header */

#header {
    width: 100%;
    background-color: var(--primary-color);
    transition: 0.6s ease-in-out;
}

.sticky {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
    transition: top 0.5s ease-out, height 0.3s ease-out;
    animation: fadeIn 0.5s ease-out forwards, slideDown 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        top: -100%;
    }

    to {
        top: 0;
    }
}

.sticky.active {
    height: 100%;
}

.header-part {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow';
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    width: 100%;
}

.sticky .header-part {
    box-shadow: 0px 0px 10px 0px #333;
    color: var(--primary-color);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.logo a {
    flex-shrink: 0;
    width: 100px;
    height: auto;
    display: block;
}

.nevigetion {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    background-color: #fff;
    z-index: 2;
    transition: all 0.3s;
    transform: translateX(150%);
    padding-top: 30px;
}

.active .nevigetion {
    transform: translateX(0%);
}

.nevigetion ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    font-size: 20px;
}

.nevigetion ul li {
    list-style: none;
}

.nevigetion a {
    color: #333;
}

.header-btn {
    display: none;
}

.header-btn a {
    background-color: var(--secound-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.ul-header-btn a {
    background-color: var(--secound-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.menu-btn {
    cursor: pointer;
    background-color: transparent;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--white);
    border: none;
    display: block;
}

.ul-menu-btn {
    cursor: pointer;
    background-color: var(--black);
    font-size: 30px;
    color: var(--white);
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: -44px;
    padding: 3px 7px;
}

/* End Header */

/* Start Banner */
#banner {
    position: relative;
}

.banner {
    height: 0;
    position: relative;
    padding-top: 42%;
    width: 100%;
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rera-project {
    position: relative;
    background-color: var(--white);
    padding: 15px;
    margin: 30px 20px auto 20px;
    margin-top: 30px !important;
    border: 1px solid #dee2e6;
}

.rera-project p {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--black);
}

.rera-project a {
    color: var(--black);
}

.rera-content-text {
    width: 100%;
    margin-top: 20px;
}

.rera-qr {
    border-bottom: 1px solid var(--black);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.rera-qr img {
    width: 100px;
    margin: auto;
}

/* End Banner */
/* Start Section Grid */
.main-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    margin-top: 30px;
}

.scrolling-grid {
    max-width: 100%;
    width: 100%;
}

.sticky-grid {
    max-width: 100%;
    width: 100%;
}

/* Start Sticky Form */
.submit-form-container {
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 20px;
    width: 100%;
}

.submit-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.submit-form input {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    padding: 10px 5px;
    font-size: 18px;
    font-family: 'Barlow';
}

.submit-form button {
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px 5px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Barlow';
}

.submit-form button:hover {
    background-color: var(--secound-color);
}

.submit-form-title h4,
.submit-form-title h1 {
    font-size: 18px;
}

.submit-form-title a {
    color: var(--black);
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

/* End Sticky Form */
/* Start Scrolling section */
.intro-section {
    width: 100%;
    padding: 40px 30px;
    background-color: var(--white);
    border: 1px solid #dee2e6;
}

.intro-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 30px;
}

.intro-title-part-one h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--black);
}

.intro-title-part-one span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.intro-title-btn {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: row;
}

.intro-title-btn-text {
    border: none;
    background-color: var(--primary-color);
    border-radius: 5px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 40px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.intro-title-btn-text:hover {
    background-color: var(--secound-color);
}

.intro-title-btn-icon {
    background-color: var(--primary-color);
    padding: 8px 10px;
    border-radius: 100px;
    border: none;
    font-size: 16px;
    color: var(--white);
    cursor: pointer;
}

.intro-section-content {
    padding-top: 30px;
    color: var(--black);
}

.intro-section-content h4 {
    font-size: 16px;
    letter-spacing: 0.3px;
    line-height: 18px;
    margin-bottom: 1rem;
}

.intro-section-content p {
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 20px;
}

.highlights-section {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
}

.highlights-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 500;
    font-size: 12px;
}

.highlights-section i {
    background-color: var(--background-color);
    padding: 5px;
    border-radius: 100px;
    color: var(--primary-color);
}

.about-bhk {
    background-color: var(--white);
    border: 1px solid #dee2e6;
    padding: 40px 30px;
    margin-top: 30px;
}

.about-bhk-grid {
    display: flex;
    align-items: flex-start;

}

.about-bhk-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-bhk-grid-item {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    width: 100%;
}

.about-bhk-grid-item h4 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-bhk-grid-item p {
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.about-bhk-grid-item button {
    background-color: var(--secound-color);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.about-bhk-grid-item button:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Start Contact */
#contact {
    margin-top: 30px;
}

#contact .submit-form-container {
    padding: 40px 30px;
}

/* Start Amenities */
#amenities {
    margin-top: 30px;
    padding: 40px 30px;
}

.amenities-title {
    font-size: 16px;
    letter-spacing: 0.3px;
    line-height: 16px;
    text-align: center;
}

.amenities-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.amenities-item {
    width: 45%;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.amenities-item img {
    width: 50px;
}

.amenities-item p {
    font-size: 12px;
    color: var(--black);
}

/* Start Gallery */
#gallery {
    margin-top: 30px;
    padding: 40px 30px;
    background-color: var(--white);
    border: 1px solid #dee2e6;
}

.gallery-title h4 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.gallery-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 30px;
    justify-content: unset;
    overflow-x: scroll;
}

.gallery-item {
    height: 0;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Start Near By */
#near-by {
    margin-top: 30px;
    padding: 40px 30px;
    border: 1px solid #dee2e6;
    background-color: var(--white);
}

.near-by-title h4 {
    font-size: 16px;
}

#near-by ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
    list-style: none;
    font-size: 12px;
}

#near-by i {
    background-color: var(--background-color);
    padding: 5px;
    border-radius: 100px;
    color: var(--primary-color);
}

/* End Scrolling section */

/* End Section Grid */

/* Start Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 30px;
    text-align: justify;
    padding-top: 50px;
    padding-bottom: 30px;
    font-weight: 100;
    line-height: 25px;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.rara-details {
    text-align: center;
    margin-top: 20px;
    font-family: 'Sen';
}

.policy {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    font-size: 12px;
    font-family: 'Sen';
}

/* End Footer */

/* Strat Policy */
.policy-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-box {
    color: var(--black);
    padding: 40px 30px;
    background-color: var(--white);
    border: 1px solid #dee2e6;
}

.policy-box h1,
.policy-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-box p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
}

/* End Policy */
/* Start FAQ Section */
#faq {
    margin-top: 30px;
}

.faq-title h4 {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #f4f4f4;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #ddd;
}

.accordion-content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: var(--black);
}

.accordion-content p {
    padding: 18px 0;
    font-size: 12px;
}

.about-developer-section {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-developer-title h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.about-developer-content p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}

/* End FAQ Section */
/* Strat Location Section */
#location {
    padding: 40px 30px;
    background-color: var(--white);
    border: 1px solid #dee2e6;
    margin-top: 30px;
}

.location-title h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.location-info p {
    font-size: 12px;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #555;
}

.location-info i {
    color: #e74c3c;
    font-size: 20px;
}

.location-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nearby-places,
.investment-reasons {
    padding: 15px;
}

.nearby-places h5,
.investment-reasons h5 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.nearby-places ul,
.investment-reasons ul {
    list-style-type: none;
    padding-left: 0;
}

.nearby-places li,
.investment-reasons li {
    margin-bottom: 8px;
    font-size: 10px;
    color: #555;
}

.investment-reasons li {
    position: relative;
    padding-left: 20px;
}

.investment-reasons li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secound-color);
}

@media (min-width: 768px) {
    .location-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .location-info,
    .location-map {
        flex-basis: 100%;
    }

    .nearby-places,
    .investment-reasons {
        flex-basis: calc(50% - 10px);
    }
}

/* End Location section */
/* Start Floor Plan */
#floor-plan {
    padding: 40px 30px;
    background-color: var(--white);
    border: 1px solid #dee2e6;
    margin-top: 30px;
}

.floor-plan-title h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.floor-plan-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

.floor-plan-item {
    flex-basis: calc(33.333% - 10px);
    text-align: center;
    border-radius: 8px;
}

.floor-plan-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.floor-plan-item img:hover {
    transform: scale(1.05);
}

.floor-plan-item h5 {
    font-size: 14px;
    color: #333;
    text-align: left;
    margin-bottom: 10px;
}

.floor-plan-item ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.floor-plan-item li {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.get-price-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.get-price-btn:hover {
    background-color: var(--secound-color);
}

@media (max-width: 768px) {
    .floor-plan-item {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .floor-plan-item {
        flex-basis: 100%;
    }
}

/* End Floor plan */

/* Start Custom CSS */
.click-to-top {
    background-color: var(--black);
    position: fixed;
    right: -49px;
    bottom: 117px;
    border: none;
    color: var(--white);
    font-size: 20px;
    padding: 5px 7px;
    cursor: pointer;
    transform: rotate(90deg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.click-to-top span {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-right: 5px;
}

.call {
    width: 40px;
    position: fixed;
    bottom: 10px;
    left: 7px;
}

.whatsapp {
    width: 40px;
    position: fixed;
    bottom: 10px;
    right: 7px;
}

.whatsapp img,
.call img {
    width: 100%;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 450px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    padding: 40px 30px;
    width: 85%;
    z-index: 2;
    display: none;
}

.closepopup {
    background-color: var(--black);
    color: var(--white);
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 20px;
    padding: 5px 6px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
}

.popup-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.popup-container h4 {
    font-size: 24px;
    text-align: center;
}

.popup-container input {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    padding: 10px 5px;
    font-size: 18px;
    font-family: 'Barlow';
}

.popup-container button {
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px 5px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Barlow';
}

.main-thank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 53vh;
    text-align: center;
    padding: 10px 30px;
}

.newCheck {
    border: 3px solid rgb(0, 255, 0);
    border-radius: 1000px;
    padding: 5px 7px;
    color: rgb(0, 255, 0);
    font-size: 30px;
    font-weight: 800;
}

.main-thank h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.main-thank p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* End Custom CSS */
/* Start Slider CSS */
.rera-slider-container {
    width: 100%;
    overflow: hidden;
}

.rera-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.rera-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

/* End Slider CSS */
.check-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.check-box h5 {
    width: 100%;
    text-align: left;
}

.check-box-grid {
    font-family: 'sen', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}