@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');
:root {
    --bg-col: #E53888;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #333;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    /* height: 60px; */
    box-shadow: 0 4px 4px -2px rgb(0, 0, 0);
    background-color: #ffffff;
    position: fixed;
    top: 0%;
    z-index: 99999999999999999999;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    text-align: center;
    --color: #333333;
    /* color: var(--bg-col); */
    font-family: inherit;
    display: inline-block;
    margin: 0 10px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.5s;
    z-index: 1;
    border-radius: 6px;
    /* font-weight: 500; */
    color: var(--color);
}

nav ul li a::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

nav ul li a:hover::before {
    top: -30px;
    left: -30px;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a:active::before {
    background: var(--bg-col);
    transition: background 0s;
}

.phone-number {
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.hero-container {
    display: flex;
    /* border: 2px solid red; */
    width: 100%;
    height: 100vh;
    margin-bottom: 50px;
}

.hero-image {
    background: url(./assets/TLC-Affordable-Housing.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero-section {
    /* border: 2px solid black; */
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 10vw;
    padding-top: 80px;
}

.hero-image {
    /* border: 2px solid rgb(81, 219, 39); */
    flex: 2;
    z-index: -9999;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.green-line {
    height: 3px;
    width: 100px;
    background-color: var(--bg-col);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.hero-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-content li {
    font-size: 1em;
    margin-bottom: 10px;
}

.hero-content li::before {
    content: '✓';
    color: var(--bg-col);
    margin-right: 10px;
}

.schedule-button {
    background-color: var(--bg-col);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}


/* Mobile Menu (Hamburger) - Hidden by default */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;

    }

    .hero-content h2 {
        font-size: 4rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 59px;
        /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: #f9f9f9;
        text-align: center;
        box-shadow: 0 4px 4px -2px rgb(0, 0, 0);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: flex;
    }
}

/* about css start  */
.about {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f9f9f9;
}

.about-section {
    width: 80vw;
    margin: 50px auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    /* padding-right: 30px; */
    text-align: left;
}

.text-content h3 {
    font-size: 1em;
    color: var(--bg-col);
    margin-bottom: 10px;
}

.text-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.text-content a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.image-content {
    flex: 1;
    /* padding-left: 30px; */
    text-align: right;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        width: 90vw;
    }

    .text-content,
    .image-content {
        flex: 1 1 100%;
        padding: 0;
        text-align: center;
    }

    .text-content {
        margin-bottom: 30px;
    }
}

/* about css end  */

/* stats css start  */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    margin: 50px auto;
}

.stat-item {
    text-align: center;
    flex: 1 1 0px;

    padding: 20px;
    margin: 0 20px;

}

.stat-item:hover {
    background-color: #f0f0f0;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.stat-underline {
    width: 50px;
    height: 2px;
    background-color: var(--bg-col);
    /* Green underline */
    margin: 10px auto;
}

.stat-description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        width: 90vw;
    }

    .stat-item {
        margin: 20px 0;
    }
}

/* stats css end */
/* amenities css start  */
.amenities-container {
    display: flex;
    width: 100%;
    /* max-width: 1200px; */
    height: 100%;
    margin: 0px auto;
    background-color: #282c34;
    /* Dark background */
    color: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
}

.image-section {
    flex: 1;
    text-align: left;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.text-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-section h3 {
    font-size: 1em;
    color: var(--bg-col);
    margin-bottom: 10px;
}

.text-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 30px;
}

.text-section ul {
    list-style: none;
    padding: 0;
}

.text-section li {
    font-size: 1em;
    margin-bottom: 10px;
}

.text-section li::before {
    content: '✓';
    color: var(--bg-col);
    /* Green checkmark */
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amenities-container {
        flex-direction: column;
        /* height: 110vh; */
    }

    .text-section {
        padding: 20px;
    }
}
/* amenities css end */
/* floor plan css start  */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text-content {
    flex: 1;
    padding-right: 30px;
    text-align: left;
}

.text-content h3 {
    font-size: 1em;
    color: var(--bg-col);
    margin-bottom: 10px;
}

.text-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* margin-top: 20px; */
}

.image-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    /* border-radius: 8px; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Slightly less transparent */
    color: white;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(100%);
    /* Start hidden */
    transition: transform 0.3s ease;
}

/* .image-item:hover img {
    transform: translateY(-20%); 
} */
/* Move image up a bit on hover */

.image-item:hover .overlay {
    transform: translateY(0);
    /* Show overlay on hover */
}

.image-item .overlay h3 {
    margin: 0;
    font-size: 1.5em;
}

.image-item .overlay p {
    margin: 5px 0;
    font-size: 1em;
}

.view-plan-button {
    background-color: var(--bg-col);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .image-gallery {
        flex-direction: column;
    }

    .image-item {
        width: 100%;
        /* margin-bottom: 20px; */
    }

    .image-item .overlay {
        transform: translateY(0);
        /* Show overlay on hover */
    }
}

/* floor plan css end  */

/* location css start  */
.location {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-container {
    width: 60vw;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.location-container h3 {
    font-size: 1em;
    color: var(--bg-col);
    margin-bottom: 10px;
}

.location-container h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    line-height: 1.2;
}

.map-section {
    width: 100%;
    height: 400px;
    /* Adjust as needed */
    background-color: #f0f0f0;
    /* Placeholder for map */
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nearby-locations {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
}

.location-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-item img {
    height: 50px;
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 10px;
    background-color: var(--bg-col);
}

.location-item span {
    font-size: 0.9em;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-section {
        height: 300px;
    }

    .location-container {
        width: 90vw;
    }
}

/* location css end */
/* footer css start  */
footer {
    width: 100%;
    background-color: #f9f9f9;
    padding: 30px 20px;
    box-sizing: border-box;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.agent-info {
    display: flex;
    align-items: top;
}

.agent-info img {
    /* width: 50px; */
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.agent-details {
    display: flex;
    align-items: flex-start;
}

.agent-details div {
    margin-right: 30px;
    text-align: left;
}

.agent-details div:last-child {
    margin-right: 0;
}

.agent-details h3 {
    font-size: 1.1em;
    margin: 0;
}

.agent-details p {
    font-size: 0.9em;
    color: #555;
    margin: 5px 0;
}

.visit-property {
    text-align: right;
}

.visit-property p {
    margin: 0;
    font-size: 1em;
}

.visit-property a {
    color: var(--bg-col);
    /* Teal color */
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom .logo {
    display: flex;
    align-items: center;
}

.footer-bottom .logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-bottom .social-icons {
    display: flex;
    align-items: center;
}

.footer-bottom .social-icons a {
    margin-left: 15px;
    color: #888;
    font-size: 1.2em;
    text-decoration: none;
}

.copyright {
    font-size: 0.8em;
    color: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .agent-info {
        margin-bottom: 20px;
    }

    .agent-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .agent-details div {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .visit-property {
        text-align: left;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom .logo {
        margin-bottom: 20px;
    }
}

/* From Uiverse.io by wilsondesouza */
ul {
    list-style: none;
}

.example-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.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;
}
/* footer css end  */