@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", serif;
    /* font-size: 1.2rem; */
}

header {
    width: 100%;
    height: 80vh;
    /* Adjust as needed */
    background-image: url(./assets/Banner.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    /* To position the overlay */
}

.header-text .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
}

.header-text {
    width: 60%;
}

.header-text h1 {
    font-size: 3em;
    z-index: 1;
    /* Ensure text is above the overlay */
    text-shadow: #000 1px 0 10px;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 1em;
    z-index: 1;
    /* Ensure text is above the overlay */
    text-shadow: #000 1px 0 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background-color: transparent;
    /* Assuming transparent background */
    color: #fff;
    /* White text */
    position: absolute;
    /* Position over the header */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    /* Ensure navbar is above the header content */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust as needed */
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: #00000096;
    border-radius: 50%;
}

.nav-icons img {
    width: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        margin-top: 10px;
    }

    .header-text {
        width: 90%;
    }

    .nav-icons {
        margin-top: 10px;
        /* margin-right: 40px; */
    }
}




.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    color: white;
    text-decoration: none;
    text-shadow: #000 1px 0 10px;
    font-size: 1rem;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        padding: 20px 20px;
    }

    .hamburger {
        /* if you want responsive nav hamburger menu to see in the mobile view then change the display property none to block  */
        display: none;
        position: absolute;
        right: 20px;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #333;
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }
}

/* highlights css start  */
.highlights {
    background-color: #124A5A;
    /* Teal background */
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 80vh; */
    padding: 60px 0;
    color: white;
}

.highlight-container {
    display: flex;
    width: 60%;
    max-width: 1200px;
    background-color: #124A5A;
    /* Match body background */
    border-radius: 8px;
    overflow: hidden;
}

.image-section {
    flex: 1;
    position: relative;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.text-section {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.text-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.text-section ul {
    list-style: none;
    padding: 0;
}

.text-section li {
    margin-bottom: 10px;
    font-size: 1em;
    color: white;
}

.text-section li::before {
    content: '•';
    color: #b0e0e6;
    /* Light blue bullet */
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlight-container {
        flex-direction: column;
        width: 90%;
    }

    .text-section {
        padding: 30px;
    }
}

/* highlights css end */
/* floor plan css start  */
.floor-plan {
    background-color: #282c34;
    /* Dark background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    padding: 40px 0;
}

.container {
    width: 60%;
    max-width: 1200px;
    padding: 40px;
    text-align: left;
}

.container h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.container p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.apartment-card {
    background-color: #383e48;
    /* Darker background for cards */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.apartment-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.apartment-card p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.get-floor-plan {
    background-color: #ff4500;
    /* Orange button */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 30px;
        width: 90%;
    }
}

/* floor plan css end */
/* legacy css start */
.legacy-container {
    /* width: 60vw; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
}

.legacy-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 20px 0;
}

.legacy-heading span {
    font-size: 30px;
    color: #333;
}

.legacy-text {
    color: #333;
    text-align: center;
    font-size: 1.2rem;
    width: 60vw;
    display: flex;
    justify-content: center;
}

/* legacy css end */
/* card css start */
.legacy-card {
    width: 60vw;
    display: flex;
    gap: 20px;
    padding: 30px 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    --bg: #f7f7f8;
    --hover-bg: #000000;
    --hover-text: #edeaec;
    min-height: 300px;
    max-height: 300px;
    text-align: center;
    background: var(--bg);
    /* padding: 1.5em;
    padding-block: 1.8em; */
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    flex: 1 1 200px;

    /* max-width: 350px; */
    /* transition:
        0.3s cubic-bezier(0.6, 0.4, 0, 1),
        transform 0.15s ease; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    color: black;
    background-size: cover;
}

.card-img {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    color: #fff;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.card-img-1 {
    background: url(./assets/1.webp) center center no-repeat;
    background-size: cover;
}

.card-img-2 {
    background: url(./assets/2nd.webp) center center no-repeat;
    background-size: cover;
}

.card-img-3 {
    background: url(./assets/3rd.webp) center center no-repeat;
    background-size: cover;
}

.card-img-4 {
    background: url(./assets/4rth.webp) center center no-repeat;
    background-size: cover;
}

.card span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);

}

.card__body {
    color: #464853;
    line-height: 1.5em;
    font-size: 1em;
}

/* .card> :not(span) {
    transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
} */

/* .card>strong {
    display: block;
    font-size: 1.4rem;
    letter-spacing: -0.035em;
} */

/* .card span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hover-text);
    border-radius: 5px;
    font-weight: bold;
    top: 100%;
    transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
} */

/* .card:hover span {
    top: 0;
    font-size: 1.2em;
} */

/* .card:hover {
    background: var(--hover-bg);
} */

/* .card:hover>div,
.card:hover>strong {
    opacity: 0;
} */

@media (max-width: 768px) {
    .legacy-card {
        flex-direction: column;
        width: 90vw;
    }

    .card , .card-img{
        max-height: 400px;
        min-height: 400px;
        min-width: 350px;
    }

    .legacy-text {
        font-size: 17px;
    }
}

/* card css end */
/* legacy btn css start */
.btn {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border: 1px solid #333;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #5b605c;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

/* legacy btn css end */

/* lifestyle css start */
.lifestyle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.lifestyle-card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0;
    gap: 30px;
    width: 60vw;
}

@media (max-width: 768px) {
    .lifestyle-card-container {
        flex-wrap: wrap;
        width: 90vw;
    }

    .lifestyle-card-text {
        font-size: 14px;
    }

    .lifestyle-card-heading {
        font-size: 13px;
    }
}

.lifestyle-card {
    flex: 1 1 180px;
    padding: 20px;
    box-shadow: 1px 4px 13px rgba(0, 0, 0, 0.1);
    border-radius: 25% 25% 10% 25%;
    gap: 20px;
    max-width: 220px;
}

.lifestyle-card-img {
    background-color: orangered;
    padding: 10px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;

}

.lifestyle-card-img img {
    width: 30px;
    /* height: 30px; */
}

.lifestyle-card-text {
    margin: 10px 0;
}

.lifestyle-card-heading {
    font-weight: 600;
}

/* lifestyle css end*/
/* curating css start */


.section {
    background-image: url('./assets/green-bg.webp');
    /* Replace with your image */
    background-size: cover;
    background-position: center 60%;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    display: flex;
    /* align-items: center; */
    justify-content: center;

}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust opacity */
}

.curation-content {
    width: 60vw;
}

.section-content {
    position: relative;
    z-index: 1;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature {
    margin: 0 20px;
    flex: 1 1 160px;
    text-align: center;
}

.feature img {
    height: 60px;
    /* Adjust icon size */
    margin-bottom: 10px;
    background-color: orangered;
    padding: 15px;
    border-radius: 50%;
}

.feature h3 {
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-text {
    font-style: italic;
    font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section h2 {
        font-size: 2.2em;
    }

    .section p {
        font-size: 1.2em;
    }

    .feature {
        margin: 20px;
    }

    .feature h3 {
        font-size: 13px;
    }

    .feature img {
        height: 50px;
    }

    .curation-content {
        width: 90vw;
        /* align-items: center; */
    }
}

/* curating css end*/
/* footer css */
footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    color: #333;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 60vw;
    /* align-items: flex-start; */
    /* align-items: center; */
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-section.address {
    line-height: 1.6;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-right: 10px;
    color: #333;
    font-size: 20px;
    /* Adjust as needed */
}

.disclaimer {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
}

.bottom-bar {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.bottom-bar img {
    height: 40px;
    /* Adjust logo height */
    filter: drop-shadow(0 0 0.2rem #333);
    margin-bottom: 10px;
}

.bottom-bar p {
    margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        width: 90vw;
    }

    .footer-content {
        flex-direction: column;
        /* width: 90vw; */
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section a {
        font-size: 1rem;
    }

    .address {
        font-size: 1rem;
    }

    .disclaimer {
        font-size: 1rem;
    }

    .disclaimer-text {
        font-size: 1.2rem;
    }
}

/* footer css */
/* social media css start */
.social {
    display: flex;
}

ul {
    list-style: none;
}

.example-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"]~.tooltip {
    background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"]~.tooltip {
    background-color: #3b5998;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"]~.tooltip {
    background: linear-gradient(45deg,
            #405de6,
            #5b51db,
            #b33ab4,
            #c135b4,
            #e1306c,
            #fd1f1f);
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"]~.tooltip {
    background-color: #ff0000;
}

/* social media css end */