:root {
    --primary-color: #ffb505;
    --secound-color: #fecc00;
    --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); */
    background-color: #e9e9e9;
    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); */
    background-color: #fecc00;
    ;
    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: black!important;
    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: 5px 15px 11px 14px;
    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: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.about-bhk-grid-item button {
    background-color: red;
    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: wrap;
    margin-top: 30px;
    justify-content: center;
}

.gallery-item {
    height: 0;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.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 {
    
    margin-top: -1rem;
    font-family: 'Sen';
    font-size: 14px;
    text-align: left;
}

.policy {
    display: flex;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
    font-size: 10px;
    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: 20px;
    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: -13px;
    right: -18px;
    font-size: 21px;
    padding: 1px 9px 6px 10px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: 'Barlow';
}

.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 */

@media (min-width: 992px) {
    .nevigetion a {
        color: #000000!important;
    }
}





.highlights-section {
            padding: 40px;
            text-align: center;
        }

        h2 {
            font-size: 36px;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            position: relative;
        }

        h2::before,
        h2::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 100px;
            height: 2px;
            background-color: white;
        }

        h2::before {
            left: 0;
            margin-left: -110px;
        }

        h2::after {
            right: 0;
            margin-right: -110px;
        }

        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .highlight-box {
            background-color:#fecc00;
            color: white;
            padding: 20px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            text-align: center;
            font-family: 'Barlow';
        }

        .highlight-box i {
            margin-right: 10px;
        }





        .at-property-img .at-property-overlayer {
    position: absolute;
    bottom: -100%;
    z-index: 111;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    transition: .5s ease-in-out;
}




        section#location {
            padding: 40px;
            text-align: center;
        }

        .location-title h4 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .location-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .location-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .location-info i {
            font-size: 24px;
            margin-right: 10px;
        }

        /* Map Styling */
        .location-map {
            position: relative;
            width: 100%;
            max-width: 623px;
            height: auto;
        }

        .location-map img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .location-map img:hover {
            opacity: 0.8;
            transform: scale(1.05);
        }

        /* Overlay Styling */
        .location-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: 8px;
        }

        .location-map:hover .location-overlay {
            opacity: 1;
        }

        /* Button Styling */
        .location-overlay .btn {
            background-color: #fecc00;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .location-overlay .btn:hover {
            background-color: #fecc00;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .location-title h4 {
                font-size: 24px;
            }

            .location-info {
                font-size: 16px;
            }

            .location-map {
                width: 100%;
                max-width: 100%;
            }

            .location-overlay .btn {
                font-size: 16px;
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            section#location {
                padding: 20px;
            }

            .location-title h4 {
                font-size: 20px;
            }

            .location-info {
                font-size: 14px;
            }

            .location-overlay .btn {
                font-size: 14px;
                padding: 8px 16px;
            }
        }

           .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .title {
            font-size: 24px;
            font-weight: bold;
        }

        .account-details {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .account-section {
            width: 48%;
            margin-bottom: 30px;
        }

        .account-section h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .account-section p {
            margin: 5px 0;
        }

        .rera-info {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .rera-item {
            text-align: center;
            width: 30%;
            margin-top: -50px;
        }

        .rera-item img {
            width: 100%;
            max-width: 150px;
            height: auto;
        }

        .rera-item p {
            font-size: 14px;
            font-weight: 500;
            margin-top: 1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .account-section {
                width: 100%;
            }

            .rera-item {
                width: 45%;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }

            .title {
                font-size: 20px;
            }

            .account-section h3 {
                font-size: 16px;
            }

            .rera-item {
                width: 100%;
            }

            .rera-item img {
                max-width: 120px;
            }

            .rera-item p {
                font-size: 12px;
            }
        }


        @media (min-width: 1400px) {
    .container {
        max-width: 1500px!important;
    }
}


         .blink {
            animation: blinker 5s linear infinite;
            color: white;
            font-size: 20px;
            font-weight: bold;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }


        .blink-button {
            padding: 10px 20px;
            
            color: white;
            border: none;
            font-size: 18px;
            cursor: pointer;
            animation: blink-button-animation 1.5s linear infinite;
        }

        @keyframes blink-button-animation {
            50% {
                opacity: 0;
            }
        
            }



/* Add smooth transition effect to image zoom */
.hover-img-zoom img {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: auto;
  }
  
  /* Zoom effect on hover */
  .hover-img-zoom:hover img {
    transform: scale(1.1);
  }
  
  /* Ensure all images fill their containers */
  .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Customize the gallery responsiveness */
  @media (max-width: 575.98px) {
    .row-cols-2 > .col {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (min-width: 576px) and (max-width: 991.98px) {
    .row-cols-md-2 > .col {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (min-width: 992px) {
    .row-cols-lg-3 > .col {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
    }
  }
  
  /* Additional padding for the gallery images */
  .g-4 > .col {
    padding: 7px;
  }
  
  /* Container adjustments */
  .container {
    padding: 0 15px;
  }
  
  /* Add a subtle shadow for the images */
  .hover-img-zoom img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
  }
  