* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'sen';
    src: url('../Font/Sen-Regular.woff2');
}

html,
body {
    font-family: 'sen', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f4f4f4;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

/* --- Root Colors & Animations Setup --- */
:root {
    --primary-color: #f37021;
    /* Migsun Orange */
    --secondary-color: #ffcb05;
    /* Migsun Gold */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white: #ffffff;
    --danger-color: #d35400;
    /* Premium Moving Gradient */
    --premium-gradient: linear-gradient(270deg, #f37021, #ffcb05, #f37221ce);
    --light-gradient: linear-gradient(270deg, #e8aa83, #b9a75e, #e8aa83);
}

/* --- New Premium Animations (Fade In/Out & Gradient) --- */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 112, 33, 0.4);
    }

    70% {
        transform: scale(0.97);
        box-shadow: 0 0 0 10px rgba(243, 112, 33, 0);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Applying Animations to Your Classes --- */

/* 1. Buttons (Gradient + Pulse) */
.action-button,

.shop-button,
.details-button,
button[type="submit"] {
    background: var(--premium-gradient) !important;
    background-size: 400% 400% !important;
    color: var(--white) !important;
    border: none !important;
    animation: moveGradient 5s ease infinite, pulse 2.5s infinite !important;
    transition: 0.4s;
    cursor: pointer;
}

/* 2. Sections & Cards (Fade In Effect) */
section,
.shop-part,
.project-part,
.rera-detils {
    animation: fadeInOut 1s ease-out;
}

/* 3. Price Tag (Zoom + Gradient) */
.price-tag {
    background: var(--premium-gradient) !important;
    background-size: 400% 400% !important;
    animation: moveGradient 5s ease infinite, zoomInOut 1.5s infinite alternate !important;
    color: var(--white);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* --- Restoring Your Original Positioning Logic --- */
.rera-detils {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    /* Thoda clear visibility ke liye */
    z-index: 10;
    max-width: 650px;
    width: 100%;
    padding: 10px;
    padding-top: 38px;
}

.shop-part {
    border: 5px solid var(--primary-color) !important;
    transition: transform 0.3s;
}

.shop-part:hover {
    transform: translateY(-10px);
}

.overview-heading::before {
    background: var(--primary-color) !important;
}
footer {
align-items: center;
justify-content: center;


}
footer a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
}


.info-datial h4 {
    color: var(--secondary-color) !important;
}

/* Start Common CSS */
.container {
    max-width: 1370px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}




section {
    width: 100%;
}

.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.action-button {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: var(--light-color);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2s infinite;

    &:hover {
        background-color: var(--secondary-color);
        color: var(--light-color);
    }
}

.with-background {
    background-color: var(--secondary-color);
    color: var(--light-color);

    &:hover {
        background-color: var(--light-color);
        color: var(--secondary-color);
    }
}

.heading {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

.sub-heading {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-color);
    text-align: center;
}

.sub-heading span img {
    width: 150px;
    padding: 10px;
    height: 70px;
    object-fit: contain;
    background-color: #fff;
}


#gallery,
#overview {
    margin-top: 30px;
}

/* End Common CSS */
/* Start Header CSS */
header {
    background-color: var(--light-color);
    color: var(--light-color);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px!important;
}

header {
    background: var(--premium-gradient);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-item {
    color: #111111;
    font-weight: 600px;

}

.logo {
    display: block;
    width: 160px;
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-item {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 14px;
}

/* Unique Styles for Project Key Stats */
.stats-main-container {
    padding-top: 60px;
    background-color: #ffffff;
}

.stats-box-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    max-width: 95%; /* Sides se margin ke liye */
}

.stat-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--secondary-color);
    padding: 30px 15px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive Stats */
@media (max-width: 768px) {
    .stats-box-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}



.header-button {
    background-color: var(--light-color) !important;
    color: black !important;
    padding: 6px 20px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    animation: pulse 2s infinite;

    &:hover {
        background-color: var(--danger-color);
    }
}



.slider-next,
.slider-prev {
    font-size: 20px;
    background-color: var(--secondary-color);
    border: 1px solid var(--light-color);
    color: var(--light-color);
    width: 43px;
    text-align: center;
    padding: 5px 0px;
    font-weight: 100;
    border-radius: 50%;
    cursor: pointer;
}

.slider-pagination {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 97%;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
}

.banner-box {
    position: relative;
}

.rera-detils {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ffffff7a;
    z-index: 1;
    max-width: 650px;
    width: 100%;
    padding: 10px;
    padding-top: 38px;
}

.rera-box {
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.rera-box img {
    width: 120px;
}

.partner-details {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #ccc;
}

.partner-details a {
    text-decoration: none;
    color: var(--primary-color);
}

.max-width-600 {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.partner-details p {
    margin-bottom: 0.5rem;
}

.price-tag {
    background-color: var(--secondary-color);
    padding: 8px 20px;
    font-weight: 600;
    color: var(--light-color);
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}

label {
    width: 100%;
    display: block;
    margin-bottom: 4px;
}

input {
    border: 1px solid #ccc;
    padding: 10px 20px;
    outline: none;
    width: 100%;
    border-radius: 3px;
}

.rera-detils form {
    background-color: var(--light-color);
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.rera-detils .heading {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 20px;
}

.rera-detils h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 15px;
}

.grid-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.grid-box .name-box {
    width: 50%;
}

button[type="submit"] {
    background-color: var(--secondary-color);
    width: 100%;
    border: none;
    color: var(--light-color);
    padding: 10px 20px;
    font-family: 'sen', sans-serif;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

/* End Banner CSS */
/* Start Overview CSS */
.overview-grid {
    display: flex;
    margin-top: 20px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.body-content .heading,
.body-content .sub-heading {
    text-align: left;
}

.grid-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 62%;
    border-radius: 10px;
    overflow: hidden;
}

.grid-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}

.overview-image,
.overview-content {
    width: 48%;
}

.overview-heading {
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    width: 100%;

    &::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: -8px;
        width: 180px;
        height: 2px;
        background: var(--secondary-color);
    }
}

.overview-heading .heading {
    margin-bottom: 0;
    font-size: 20px;
}

.right::before {
    right: 0;
    left: unset;
}

.right .heading {
    text-align: right;
}

.list h4 {
    font-size: 18px;
    color: var(--primary-color);
}

.list ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.overview-content .sub-heading b {
    color: var(--primary-color);
}

.overview-content .sub-heading p {
    margin-bottom: 20px;
}

/* End Overview CSS */
/* Satrt Contact CSS */
#amenities,
#why-choose,
#contact-us {
    margin-top: 40px;
}

.contact-form {
    background-color: #fff;
    padding: 50px;
    margin: 20px auto 0px;
    border-radius: 10px;
}

/* End Contcat CSS */
/* Start Amenities CSS */
.amenities-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-self: stretch;
    justify-content: space-around;
    height: 250px;
}

.amenities-box img {
    width: 100px;
}

/* End Amenities CSS */
/* Start Gallery CSS */
.gallery-box {
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 80%;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-box img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
    margin: auto;
}

/* End Gallery CSS */
/* Start Space CSS */
.shop-main {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shop-main .heading {
    font-size: 30px;
}

.shop-grid {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.shop-part {
    width: 240px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 14px;
    border: 5px solid var(--dark-color);
    padding: 10px;
    min-height: 300px;
    height: 100%;
}

.shop-part img {
    width: 120px;
}

.shop-part h5 {
    font-size: 24px;
    text-align: center;
}

.shop-button {
    border: 3px solid var(--dark-color);
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.project-details {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.details-table {
    overflow: hidden;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.details-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.details-cell {
    flex: 1 0 210px;
    align-self: stretch;
    padding: 8px 0;
    border-left: 1px solid #ccc;
}

.details-row:first-child {
    border-top: none;
    background-color: var(--light-color);
}

.details-row:first-child .details-cell {
    color: var(--primary-color);
    font-weight: 600;
}

.details-cell:first-child {
    border-left: none;
}

.details-button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px;
}

.project-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: var(--light-color);
    border-radius: 10px;
    margin: 20px auto;
}

.project-part {
    width: 33.3333%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--secondary-color);
    text-align: center;
}

.project-part h5 {
    font-size: 13px;
    color: var(--dark-color);
}

.project-part p {
    font-size: 16px;
    color: var(--dark-color);
    margin: auto;
    width: 70%;
}

/* End Space CSS */



.menu-button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 2px;
    width: 30px;
    height: 30px;
    padding: 3px;
    border: 1px solid var(--light-color);
    outline: none;
    cursor: pointer;
    display: none;
}

.close-menu {
    position: absolute;
    top: 0;
    left: -30px;
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: none;
}

.popup {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 2;
    max-width: 500px;
    width: 85%;
    margin: auto;
    border-radius: 10px;
}

.popup-container {
    padding: 20px;
}

.close-popup {
    right: -23px;
    cursor: pointer;
    top: -23px;
    position: absolute;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup svg {
    width: 25px;
    height: 25px;
}

.popup-container h4 {
    font-size: 25px;
    margin-bottom: 15px;
    text-align: center;
}

/* End Footer CSS */
/* Strat Responsive CSS */
@media(max-width:1400px) {
    .container {
        max-width: 85%;
    }
}

@media(max-width:1267px) {
    .price-tag {
        font-size: 16px;
        margin-top: 5px;
    }

    .rera-detils form {
        margin-top: 5px;
    }

    .rera-detils h4 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    label {
        font-size: 12px;
    }

    .grid-box {
        margin-top: 5px;
    }

    button[type="submit"] {
        margin-top: 7px;
        font-size: 16px;
    }

    

    .rera-detils {
        padding-top: 20px;
    }
}

@media(max-width:991px) {
    .menu-button {
        display: block;
    }

    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        flex-direction: column;
        background-color: var(--light-color);
        z-index: 2;
        max-width: 400px;
        width: 90%;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: all 0.3s;
    }

    .rera-detils {
        position: relative;
        left: unset;
        bottom: unset;
        width: 90%;
        margin: auto;
        background-color: #fff;
        border-radius: 10px;
        margin-top: 40px;
    }

    .rera-detils form,
    .rera-box {
        background-color: #fff;
    }

    .shop-main {
        flex-direction: column;
    }

    .shop-part {
        width: 48%;
    }

    .details-table {
        overflow: scroll;
    }

    .details-row {
        width: 900px;
    }

    .overview-image,
    .overview-content {
        width: 100%;
    }

    .right .heading {
        text-align: left;
    }

    .right::before {
        right: unset;
        left: 0;
    }

    .contact-form {
        padding: 30px;
        margin: 10px auto 0px;
    }

    .footer-content {
        width: 100%;
    }

    .footer-info,
    .footer-link {
        width: 45%;
    }
}

@media(max-width:767px) {
    .project-part {
        width: 50%;
    }

    .project-part p {
        width: 100%;
    }

    .overview-heading .heading {
        font-size: 16px;
    }

    .list h4 {
        font-size: 14px;
    }

    .list ul {
        padding-left: 15px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sub-heading {
        font-size: 12px;
    }
}

@media(max-width:567px) {
    .container {
        max-width: 100%;
    }

    .shop-main .heading {
        font-size: 20px;
    }

    .shop-grid {
        flex-wrap: wrap;
    }

    .shop-part {
        width: 100%;
    }

    .contact-action {
        margin: 20px 0;
        gap: 5px;
    }

    .contact-form {
        padding: 10px;
    }
}

@media(max-width:426px) {
    .action-button {
        font-size: 12px;
    }

    .project-part {
        width: 100%;
    }

    .footer-info,
    .footer-link {
        width: 100%;
    }

    .rera-detils .heading {
        padding: 5px;
        font-size: 14px;
    }
}

@media(max-width:312px) {
    .action-button {
        padding: 10px 12px;
    }
}

/* End Responsive CSS  */

/* Start Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
    }

    50% {
        transform: scale(0.95);
        /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); */
    }

    100% {
        transform: scale(1);
        /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
    }
}


/* End Animation */