/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #EAFAEA, #CAE0BC);
    overflow-x: hidden;
}

/* HEADER STYLES */

.header {
    position: fixed; /* Keeps it fixed on top */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, #EAFAEA, #CAE0BC);
    height: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; 
}

/* Logo Styling */
.logo img {
    height: 80px; /* Adjust size as needed */
}

/* Add padding to the body to prevent content from hiding behind the header */
body {
    padding-top: 80px; /* Matches header height */
}



/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 4rem 8%;
    overflow: hidden;
}

/* Left Side - Text Content */
.hero-text {
    flex: 1;
    text-align: left;
}

/* Right Side - Larger 3D House */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-house {
    width: 100%;
    max-width: 700px; /* Increased Size */
    animation: float 6s ease-in-out infinite;
}

/* Coming Soon - Clean Cursive Font with Modern Gradient */
.coming-soon {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Pacifico', cursive; /* Cursive Font */
    text-transform: capitalize;
    text-align: left;
    background: linear-gradient(45deg, #FF5733, #FF8D33, #FFBD33);
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeIn 1.5s ease-out;
    margin-bottom: 10px;
}

/* Glow Text (Revolutionizing Real Estate) */
.glow-text {
    font-size: 3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease-out forwards;
}

/* Gradient Text (Same as before) */
.gradient-text {
    background: linear-gradient(45deg, #c80d0d, #7301ff);
    -webkit-background-clip: text;
    color: transparent;
}

/* Emoji */
.emoji {
    font-size: 3rem;
    display: inline-block;
}

/* Call to Action - Stay Tuned Animation */
.cta {
    font-size: 1.5rem;
    font-weight: bold;
    color: #780C28;
    margin-top: 20px;
}

/* Stay Tuned Animation */
.stay-tuned {
    opacity: 0;
    animation: fadeInBlink 3s ease-in-out infinite;
}
/* Notify Me Button */
/* Notify Me Container */
.notify-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-top: 20px; /* Adds spacing below the CTA */
}

/* Email Input */
.notify-input {
    width: 250px;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 20px;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

/* Notify Me Button */
/* Notify Me Button */
.notify-btn {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #c80d0d; /* Solid Color */
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Simple Hover Effect */
.notify-btn:hover {
    background: #a00b0b;
    transform: scale(1.05); /* Slight pop-up effect */
}



/* KEYFRAMES */

/* Fade Up Animation for Glow Text */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Floating Animation for House */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Fade In and Blink Effect for Stay Tuned */
@keyframes fadeInBlink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 5%;
    }

    .hero-text {
        text-align: center;
    }

    .glow-text {
        font-size: 2.5rem;
        flex-direction: column;
    }

    .floating-house {
        max-width: 600px;
    }

    .notify-container {
        flex-direction: column;
        gap: 15px;
    }

    .notify-input {
        width: 100%;
        max-width: 300px;
    }

    .notify-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.8rem;
    }

    .glow-text {
        font-size: 2rem;
    }

    .cta {
        font-size: 1.3rem;
    }

    .floating-house {
        max-width: 450px;
    }

    .notify-input {
        max-width: 250px;
    }

    .notify-btn {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2.3rem;
    }

    .glow-text {
        font-size: 1.8rem;
    }

    .cta {
        font-size: 1.2rem;
    }

    .floating-house {
        max-width: 300px;
    }

    .notify-container {
        width: 100%;
        padding: 10px;
    }

    .notify-input {
        width: 100%;
        max-width: 220px;
        padding: 10px;
    }

    .notify-btn {
        width: 100%;
        max-width: 150px;
        padding: 10px;
    }
}



/* CHARKNEST SECTION */
.charknest-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 8%;
    background: linear-gradient(135deg, #EAFAEA, #CAE0BC);
}

.charknest-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.charknest-container.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Left Side: Image Flip Animation */
.charknest-image {
    perspective: 1000px;
}

.charknest-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transform: rotateY(90deg);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.charknest-image.in-view img {
    transform: rotateY(0deg);
    opacity: 1;
}

/* Right Side: Smooth Text Slide-in */
.charknest-text {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.charknest-text.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Text Styling */
.charknest-text h2 {
    font-size: 2.5rem;
    color: #780C28;
    font-weight: 700;
}

.charknest-text p {
    font-size: 1.1rem; /* Balanced base size */
    line-height: 1.6;
    color: #333;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .charknest-text p {
        font-size: 1rem; /* Adjusted for tablets */
    }
}

@media (max-width: 900px) {
    .charknest-container {
        flex-direction: column;
        text-align: center;
    }

    .charknest-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .charknest-text {
        transform: translateY(50px);
    }

    .charknest-text p {
        font-size: 0.95rem; /* Adjusted for smaller tablets */
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .charknest-text p {
        font-size: 0.9rem; /* Optimized for mobile screens */
        line-height: 1.4;
    }
}



/* Founder Section */
.founder {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #EAFAEA, #CAE0BC);
}

/* Heading Animation */
.founder h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #780C28;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Founder Content */
.founder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    text-align: center; /* Center-align text */
}

/* Hidden Initially for Scroll Animation */
.fade-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Founder Details Styling */
.founder-details {
    text-align: center;
    max-width: 500px;
    font-size: 1.1rem;
}

/* Founder Name */
.founder-details h3 {
    font-size: 2rem;
    color: #e02c41;
    font-weight: bold;
}

/* Founder Title */
.founder-details .title {
    font-weight: bold;
    color: #6E8E59;
    font-size: 1.2rem;
}

/* Founder Description */
.founder-details p {
    color: #333;
    line-height: 1.5;
}

/* When in View, Make Elements Visible */
.founder.in-view h2,
.founder.in-view .fade-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

/* Social Link Styling */
.social-link {
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.4s ease-in-out, opacity 0.8s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
}

/* Social Media Icon Colors */
.instagram {
    color: #E4405F;
}

.linkedin {
    color: #0077B5;
}

.gmail {
    color: #D14836;
}

/* Hover Effect */
.social-link:hover {
    transform: scale(1.2);
}

/* Fade-in Effect when in View */
.founder.in-view .social-link {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .founder-content {
        width: 90%;
    }

    .founder-details {
        max-width: 450px;
        font-size: 1rem;
    }

    .founder-details h3 {
        font-size: 1.8rem;
    }

    .founder-details .title {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-details {
        max-width: 90%;
        font-size: 1rem;
    }

    .founder-details h3 {
        font-size: 1.6rem;
    }

    .founder-details .title {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .founder {
        padding: 30px;
    }

    .founder h2 {
        font-size: 1.8rem;
    }

    .founder-details {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .founder-details h3 {
        font-size: 1.4rem;
    }

    .founder-details .title {
        font-size: 0.9rem;
    }
}



/* ABOUT US SECTION */
.about-us-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #EAFAEA, #CAE0BC);
}

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
    flex-wrap: wrap;
}

.about-us-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-us-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #780C28;
}

/* Responsive and Balanced Font Size */
.about-us-text p {
    font-size: 1.1rem; /* Base font size */
    line-height: 1.6;
    color: #333;
}

/* Image Styling */
.about-us-image {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-us-text p {
        font-size: 1rem; /* Slightly smaller for tablets */
    }
}

@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-text {
        transform: translateY(50px);
    }

    .about-us-image {
        transform: translateY(50px);
    }

    .about-us-text p {
        font-size: 0.95rem; /* Optimized for smaller tablets */
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-us-text p {
        font-size: 0.9rem; /* Optimized for mobile screens */
        line-height: 1.4;
    }
}



/* FOOTER */
footer {
    background-color: #333; /* Dark Gray */
    color: #EAFAEA; /* Soft White */
    padding: 50px 20px;
    text-align: center;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: auto;
    gap: 50px; /* Increased gap for a clean look */
}

/* Contact & Social Sections */
.footer-contact, .footer-social {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensures left alignment */
}

/* Aligns Follow Us heading properly */
.footer-social {
    align-items: flex-start; /* Match alignment with Contact Us */
}

/* Ensuring heading consistency */
.footer-contact h2, .footer-social h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fafafa; /* Light Green */
}

/* Contact Section */
.footer-contact p {
    font-size: 16px;
    margin: 8px 1 ;
    display: flex;
    align-items: center;
}

/* Spacing fix for email icon */
.footer-contact p i {
    margin-right: 8px; /* Added space between icon and email text */
    color: #fafafa; /* Light Green */
}

.footer-contact a {
    color: #fafafa;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Social Media Section */
.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px; /* Adjusted to align with Contact Us */
}

/* Social Media Icons */
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fafafa; /* Light Green */
    color: #333; /* Dark Gray */
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #6E8E59; /* Olive Green */
    color: #fafafa;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    font-size: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE DESIGN */

/* For Tablets & Smaller Screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections */
        align-items: center; /* Center everything */
        text-align: center;
        gap: 30px;
    }

    .footer-contact, .footer-social {
        text-align: center;
        align-items: center; /* Center elements in smaller screens */
        margin: 10px 0;
    }

    .social-icons {
        justify-content: center;
    }
}

/* For Mobile Devices */
@media (max-width: 480px) {
    footer {
        padding: 40px 15px;
    }

    .footer-container {
        gap: 20px;
    }

    .footer-contact h2, .footer-social h2 {
        font-size: 20px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

/* ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
