/* ================= GLOBAL ================= */

html{
    font-size:20px;
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.7;
    font-size:1rem;
}

img{
    max-width:100%;
    height:auto;
}

a{
    transition:0.3s;
}

.strike{
    text-decoration:line-through;
    opacity:0.6;
}


/* ================= HEADER ================= */

.main-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.top-bar{
    background:#000;
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:14px;
}

.top-bar a{
    color:#ffd700;
    text-decoration:none;
    font-weight:bold;
    margin-left:10px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
}

.logo img{
    height:50px;
}

.nav-links{
    display:flex;
    gap:30px;
    transition:0.3s ease;
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-weight:500;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* ================= HERO ================= */

.hero-slider{
    position:relative;
    overflow:hidden;
}

.slides{
    display:flex;
    transition:0.5s ease-in-out;
}

.slide{
    min-width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px 8%;
}

.slide-content{
    max-width:50%;
}

.slide-content h2{
    font-size:40px;
    margin:15px 0;
}

.highlight{
    color:#50B95F;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

.hero-image img{
    max-width:400px;
}

/* .arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#000;
    color:#fff;
    padding:10px 15px;
    cursor:pointer;
    border-radius:50%;
} */

/* .prev{ left:20px; }
.next{ right:20px; } */


/* ================= VIDEO ================= */

.video-section{
    padding:60px 8%;
    background:#f9f9f9;
    display:flex;
    justify-content:center;
}

.video-container{
    width:100%;
    max-width:1100px;
    aspect-ratio:16/9;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe{
    width:100%;
    height:100%;
}


/* ================= TRUST INFO ================= */

/* SECTION BACKGROUND */

.trust-info{
    padding:90px 8%;
    background:#f5f7f6; /* soft gray section */
    text-align:center;
    position:relative;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

/* container */

.trust-info-container{
    max-width:950px;
    margin:auto;
}

/* main title */

.trust-main-title{
    font-size:40px;
    line-height:1.3;
    margin-bottom:12px;
    font-weight:700;
    color:#222;
}

/* subtitle */

.trust-sub-title{
    font-size:22px;
    color:#50B95F;
    margin-bottom:25px;
    font-weight:600;
}

/* divider */

.trust-line{
    width:80px;
    height:3px;
    background:#50B95F;
    margin:20px auto 50px;
    border-radius:2px;
}

/* steps list */

.trust-steps{
    list-style:none;
    margin-bottom:45px;
    padding:0;
}

/* step item */

.trust-steps li{
    margin-bottom:22px;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    background:#ffffff;
    padding:18px 22px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

/* hover effect */

.trust-steps li:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

/* step number */

.step-number{
    width:38px;
    height:38px;
    background:#d8b85d;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:16px;
    flex-shrink:0;
}

/* register button */

.trust-register-btn{
    display:inline-block;
    padding:15px 36px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

/* button hover */

.trust-register-btn:hover{
    background:#50B95F;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(80,185,95,0.35);
}


/* ================= PROJECT ================= */

/* PROJECT SECTION */

.project-section{
    padding:110px 8%;
    background:#f5f7f6; /* soft gray background */
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

/* container */

.project-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    margin-bottom:90px;
}

/* content */

.project-content{
    max-width:600px;
}

/* logo */

.project-logo{
    width:200px;
    margin-bottom:22px;
}

/* description */

.project-description{
    margin-bottom:25px;
    line-height:1.7;
    color:#555;
}

/* highlight */

.project-highlight{
    margin-bottom:25px;
}

.project-highlight ul{
    padding-left:20px;
}

.project-highlight li{
    margin-bottom:8px;
}

/* button */

.project-btn{
    display:inline-block;
    margin-top:18px;
    padding:13px 28px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

/* button hover */

.project-btn:hover{
    background:#50B95F;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(80,185,95,0.35);
}

/* image */

.project-image img{
    max-width:550px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:all 0.35s ease;
}

/* image hover */

.project-image img:hover{
    transform:scale(1.03);
}

/* FEATURES GRID */

.project-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    max-width:1100px;
    margin:auto;
}

/* feature box */

.feature-box{
    background:#ffffff;
    padding:28px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    font-weight:600;
    transition:all 0.3s ease;
    position:relative;
    overflow:hidden;
}

/* top highlight line */

.feature-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#50B95F;
}

/* hover */

.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ================= PRICES ================= */
/* PRICES SECTION */

.prices-section{
    padding:110px 8%;
    background:#ffffff;
}

/* container */

.prices-container{
    display:flex;
    justify-content:space-between;
    gap:70px;
    align-items:center;
}

/* left info */

.prices-info{
    max-width:420px;
}

/* title */

.prices-title{
    font-size:42px;
    line-height:1.3;
    color:#222;
    font-weight:700;
}

.prices-title span{
    color:#50B95F;
}

/* divider */

.prices-divider{
    width:80px;
    height:3px;
    background:#50B95F;
    margin:22px 0 35px;
    border-radius:2px;
}

/* points */

.prices-points{
    list-style:none;
    margin-bottom:35px;
    padding:0;
}

.prices-points li{
    margin-bottom:16px;
    padding-left:26px;
    position:relative;
    font-size:16px;
    color:#555;
}

/* check icon */

.prices-points li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#50B95F;
    font-weight:bold;
}

/* button */

.prices-btn{
    display:inline-block;
    padding:14px 30px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

/* button hover */

.prices-btn:hover{
    background:#50B95F;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(80,185,95,0.35);
}

/* price cards container */

.price-cards{
    display:flex;
    gap:30px;
}

/* card */

.price-card{
    background:#f5f7f6;
    padding:42px 32px;
    border-radius:14px;
    text-align:center;
    min-width:230px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}

/* top highlight bar */

.price-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#50B95F;
}

/* hover */

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* price */

.price{
    font-size:26px;
    font-weight:700;
    margin-bottom:12px;
    color:#222;
}

/* highlight card */

.highlight-card{
    background:#50B95F;
    color:#fff;
    transform:scale(1.05);
    box-shadow:0 15px 35px rgba(80,185,95,0.35);
}

.highlight-card .price{
    color:#fff;
}


/* ================= PROMISES ================= */
/* PROMISES SECTION */

.promises-section{
    padding:110px 8%;
    background:#f5f7f6;
    text-align:center;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

/* header */

.promises-header h2{
    font-size:38px;
    font-weight:700;
    color:#222;
}

.promises-header h3{
    font-size:24px;
    color:#50B95F;
    margin-top:8px;
    font-weight:600;
}

/* divider */

.promises-divider{
    width:80px;
    height:3px;
    background:#50B95F;
    margin:25px auto 60px;
    border-radius:2px;
}

/* grid */

.promises-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    max-width:1100px;
    margin:auto;
}

/* card */

.promise-card{
    background:#ffffff;
    padding:42px 30px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}

/* top highlight */

.promise-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#50B95F;
}

/* hover */

.promise-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* icon */

.promise-card img{
    width:80px;
    margin-bottom:22px;
    transition:0.3s;
}

/* icon hover */

.promise-card:hover img{
    transform:scale(1.08);
}

/* text */

.promise-card p{
    font-size:16px;
    color:#555;
    line-height:1.6;
}

/* highlighted text */

.promise-sub{
    display:block;
    font-weight:700;
    color:#50B95F;
    margin-top:6px;
}

/* ================= REGISTER ================= */
/* REGISTER SECTION */

.register-section{
    padding:110px 8%;
    background:#f5f7f6;
    text-align:center;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

/* container */

.register-container{
    max-width:900px;
    margin:auto;
}

/* header */

.register-header h2{
    font-size:38px;
    color:#50B95F;
    font-weight:700;
}

/* divider */

.register-divider{
    width:80px;
    height:3px;
    background:#50B95F;
    margin:25px auto 45px;
    border-radius:2px;
}

/* benefits grid */

.register-benefits{
    list-style:none;
    margin-bottom:45px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    padding:0;
}

/* benefit item */

.register-benefits li{
    background:#ffffff;
    padding:18px 22px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:all 0.3s ease;
}

/* top highlight line */

.register-benefits li::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#50B95F;
}

/* hover effect */

.register-benefits li:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* register button */

.register-btn-main{
    display:inline-block;
    padding:16px 38px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

/* hover */

.register-btn-main:hover{
    background:#50B95F;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(80,185,95,0.35);
}
/* ================= ABOUT ================= */
/* ABOUT SECTION */

.about-section{
    padding:110px 8%;
    background:#f5f7f6;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

/* container */

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* content */

.about-content{
    max-width:600px;
}

/* logo */

.about-logo{
    width:200px;
    margin-bottom:28px;
}

/* text */

.about-content p{
    line-height:1.7;
    color:#555;
    margin-bottom:25px;
}

/* button */

.about-btn{
    display:inline-block;
    padding:15px 34px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

/* button hover */

.about-btn:hover{
    background:#50B95F;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(80,185,95,0.35);
}

/* image */

.about-image img{
    max-width:600px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:all 0.35s ease;
}

/* image hover */

.about-image img:hover{
    transform:scale(1.04);
}

/* ================= RERA ================= */

/* RERA SECTION */

.rera-section{
    padding:70px 8%;
    background:#ffffff;
    text-align:center;
    border-top:1px solid #eee;
}

/* container */

.rera-container{
    max-width:500px;
    margin:auto;
}

/* rera card */

.rera-container{
    background:#f8faf9;
    padding:35px 30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
}

/* hover */

.rera-container:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* image */

.rera-image{
    max-width:350px;
    width:100%;
    margin:auto;
    transition:all 0.3s ease;
}

/* image hover */

.rera-container:hover .rera-image{
    transform:scale(1.03);
}

/* ================= FOOTER ================= */

/* FOOTER SECTION */

.footer-section{
    background:#111;
    color:#fff;
    padding:70px 8% 45px;
    font-size:14px;
}

/* container */

.footer-container{
    max-width:1200px;
    margin:auto;
}

/* logos row */

.footer-logos{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;
    margin-bottom:45px;
}

/* main logo */

.footer-logo{
    max-width:220px;
    transition:0.3s ease;
}

/* logo hover */

.footer-logo:hover{
    transform:scale(1.05);
}

/* association section */

.footer-association p{
    margin-bottom:12px;
    opacity:0.8;
    font-size:13px;
}

/* association logo */

.footer-association img{
    max-width:300px;
    opacity:0.9;
    transition:0.3s ease;
}

.footer-association img:hover{
    opacity:1;
}

/* legal section */

.footer-legal{
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:22px;
}

/* disclaimer */

.footer-disclaimer{
    font-size:12px;
    opacity:0.6;
    line-height:1.6;
}

/* ================= RESPONSIVE ================= */

/* ================= TABLET ================= */

@media(max-width:992px){

    .project-container,
    .prices-container,
    .about-container{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .project-image img,
    .about-image img{
        max-width:100%;
    }

    .price-cards{
        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    .project-features{
        grid-template-columns:repeat(2,1fr);
    }

    .promises-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* FLOATING CONTACT BUTTONS */

.floating-contact{
    position:fixed;
    right:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:9999;
}

/* common button style */

.contact-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,0.2);
    transition:all 0.3s ease;
}

/* call button */

.call-btn{
    background:#007bff;
}

/* mail button */

.mail-btn{
    background:#ff5e57;
}

/* whatsapp button */

.whatsapp-btn{
    background:#25D366;
}

/* hover effect */

.contact-btn:hover{
    transform:scale(1.1);
}

/* mobile spacing */

@media(max-width:768px){

.floating-contact{
right:15px;
bottom:20px;
}

.contact-btn{
width:50px;
height:50px;
font-size:20px;
}

}


/* ================= MOBILE ================= */

@media(max-width:768px){

    /* NAVIGATION */

    .nav-links{
        position:absolute;
        top:100%;
        right:0;
        background:#fff;
        flex-direction:column;
        width:100%;
        display:none;
        text-align:center;
        padding:20px 0;
        box-shadow:0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
        cursor:pointer;
    }

    /* HERO */

    .slide{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .slide-content{
        max-width:100%;
    }

    .hero-image img{
        max-width:260px;
        margin-top:20px;
    }

    /* SECTIONS */

    .project-features{
        grid-template-columns:1fr;
    }

    .promises-grid{
        grid-template-columns:1fr;
    }

    .register-benefits{
        grid-template-columns:1fr;
    }

    /* FOOTER */

    .footer-logos{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

}