html{
    scroll-behavior: smooth;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px;

    background:#fff;
    border-bottom:3px solid #4d7c59;

    width:100%;
}

/* LOGO */
.logo h2{
    color: olivedrab;
    font-size:1.3rem;
    font-weight:700;
    line-height:1.1;
}

/* HAMBURGER BUTTON */
.menu-btn{
    width:55px;
    height:55px;

    background:#fff;

    border:1px solid #ddd;
    border-radius:8px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:5px;

    cursor:pointer;
}

/* HAMBURGER LINES */
.bar{
    width:24px;
    height:3px;

    color: olivedrab;
    background: olivedrab;

    border-radius:2px;
}

.mobile-menu{
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.mobile-menu.active{
    max-height: 300px;
}

.mobile-menu a{
    display: block;
    padding: 20px;
    color: #666;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:hover{
    background: #f7f7f7;
    color: #1f4b3f;
}

.hero{
    height:100vh;

    background-image:url("./images/siteimg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

.hero::before{
    content:"";
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:white;

    padding:0 20px;
}

.hero-content h1{
    font-size:2.2rem;
    line-height:1.2;
    margin-bottom:1rem;
}

.hero-content p{
    font-size:1rem;
    line-height:1.6;
    margin-bottom:2rem;
}

.hero-btn{
    display:inline-block;

    background:olivedrab;
    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:8px;
}

.investor-journey{
    background-image:url("./images/siteimg2.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;

    padding:80px 20px;
}

.investor-journey::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.55);
}

.journey-overlay{
    position:relative;
    z-index:2;
}

.journey-overlay h2{
    color:white;
    text-align:center;

    margin-bottom:40px;

    font-size:2rem;
}

.journey-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.journey-card{
    background:rgba(255,255,255,.95);

    border-radius:16px;

    padding:30px 20px;

    text-align:center;

    transition:.3s;
}

.journey-card:hover{
    transform:translateY(-5px);
}

.journey-card i{
    font-size:3rem;
    color:olivedrab;

    margin-bottom:20px;
}

.journey-card h3{
    margin-bottom:10px;
}

.journey-card p{
    color:#666;
    line-height:1.5;
}

.featured-properties{
    padding:80px 20px;
    background:#f8f8f8;
}

.featured-properties h2{
    text-align:center;
    font-size:2rem;
    margin-bottom:40px;
    color:#222;
}

.property-grid{
    display:grid;
    gap:30px;
}

.property-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.property-card:hover{
    transform:translateY(-5px);
}

.property-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.property-content{
    padding:25px;
}

.property-content h3{
    font-size:1.5rem;
    margin-bottom:12px;
}

.property-content p{
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

.property-btn{
    display:inline-block;

    background:olivedrab;
    color:white;

    text-decoration:none;

    padding:12px 24px;

    border-radius:8px;

    font-weight:600;
}

.testimonials{
    padding:80px 20px;
    background:#f7f7f7;
}

.testimonials h2{
    text-align:center;
    font-size:2rem;
    color:#222;
    margin-bottom:40px;
}

.testimonial-grid{
    display:grid;
    gap:25px;
}

.testimonial-card{
    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    text-align:center;
}

.stars{
    color:olivedrab;
    font-size:1.2rem;
    margin-bottom:20px;
}

.testimonial-card p{
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.client h4{
    color:#0d2c54;
    margin-bottom:5px;
}

.client span{
    color:#888;
    font-size:.9rem;
}

/* INVESTMENT PLANS */

.investment-plans{
    padding:80px 20px;
    background:#f8f8f8;
}

.investment-plans h2{
    text-align:center;
    font-size:2.2rem;
    color:#111;
    margin-bottom:20px;
    font-weight:700;
}

.plans-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
    line-height:1.8;
    font-size:1rem;
}

.plans-container{
    display:grid;
    gap:30px;
}

.plan-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s ease;
}

.plan-card:hover{
    transform:translateY(-8px);
}

.plan-card h3{
    text-align:center;
    color:olivedrab;
    font-size:1.8rem;
    margin-bottom:15px;
}

.plan-card h4{
    text-align:center;
    color:#222;
    font-size:1.3rem;
    margin-bottom:30px;
}

.plan-card ul{
    list-style:none;
    padding:0;
}

.plan-card ul li{
    margin-bottom:18px;
    color:#555;
    line-height:1.7;
    font-size:1rem;
}

.plan-btn{
    display:block;
    width:max-content;
    margin:35px auto 0;
    padding:14px 30px;
    background:olivedrab;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.plan-btn:hover{
    background:olivedrab;
}

/* FEATURED CARD */

.featured-plan{
    border:2px solid olivedrab;
    position:relative;
}

.featured-plan::before{
    content:"MOST REQUESTED";

    position:absolute;
    top:-14px;
    right:20px;

    background:olivedrab;
    color:#fff;

    padding:6px 15px;
    border-radius:20px;

    font-size:.75rem;
    font-weight:600;
    letter-spacing:1px;
}

/* TABLET */

@media(min-width:768px){

    .plans-container{
        grid-template-columns:repeat(2,1fr);
    }

}

/* DESKTOP */

@media(min-width:1024px){

    .plans-container{
        grid-template-columns:repeat(3,1fr);
    }

    .investment-plans{
        padding:100px 60px;
    }

}

.trust-section{
    padding:80px 20px;
    background:#f8f8f8;
}

.trust-section h2{
    text-align:center;
    font-size:2.2rem;
    color:#111;
    margin-bottom:50px;
}

.trust-grid{
    display:grid;
    gap:25px;
}

.trust-card{
    background:white;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.trust-card:hover{
    transform:translateY(-8px);
}

.trust-card i{
    font-size:2.5rem;
    color:olivedrab;
    margin-bottom:20px;
}

.trust-card h3{
    font-size:2.4rem;
    color:#111;
    margin-bottom:15px;
}

.trust-card p{
    color:#666;
    line-height:1.8;
}

@media(min-width:768px){

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(min-width:1024px){

    .trust-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/* FAQ SECTION */

.faq-section{
    padding:80px 20px;
    background:#f8f8f8;
}

.faq-section h2{
    font-size:2.4rem;
    color:#222;
    margin-bottom:40px;
    text-align:left;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:22px;
    font-size:1.1rem;
    font-weight:600;
    color:#1f3b64;
    position:relative;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    font-size:1.5rem;
    font-weight:700;
    transition:.3s;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 22px 22px;
    color:#666;
    line-height:1.8;
    border-top:1px solid #eee;
    margin-top:10px;
    padding-top:20px;
}

@media(min-width:768px){

    .faq-section{
        max-width:900px;
        margin:auto;
    }

    .faq-section h2{
        text-align:center;
    }

}

.cta-section{
    background:#556b2f;
    color:#fff;
    padding:80px 30px;
    text-align:center;
}

.cta-section h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
}

.cta-btn{
    display:inline-block;
    background:white;
    color:olivedrab;
    text-decoration:none;
    padding:16px 35px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:olivedrab;
}

/* =========================
   ABOUT US SECTION
========================= */

.about-us{
    padding:100px 20px;
    background:#faf8f3;
}

.about-container{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.about-content h2{
    font-size:2.8rem;
    color:olivedrab;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    font-size:1rem;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.investment-process{
    padding:100px 8%;
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #eef4df 20%,
        #c8d79f 60%,
        #6b8e23 100%
    );
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    background:#eef4df;
    color:#6b8e23;
    padding:10px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:52px;
    color:#1c2f4a;
    margin-bottom:20px;
}

.section-header p{
    color:#555;
    font-size:20px;
    line-height:1.8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-bottom:100px;
}

.process-card{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    padding:50px 40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.icon-circle{
    width:100px;
    height:100px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef4df;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-circle i{
    font-size:40px;
    color:#6b8e23;
}

.process-card h3{
    font-size:28px;
    color:white;
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.cta-section{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.cta-section h2{
    font-size:58px;
    color: whitesmoke;
    margin-bottom:25px;
}

.cta-section p{
    color:whitesmoke;
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

.cta-button{
    display:inline-block;
    background:#6b8e23;
    color:white;
    text-decoration:none;
    padding:18px 45px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.cta-button:hover{
    background:#556b1b;
}

@media(max-width:768px){

    .section-header h2{
        font-size:36px;
    }

    .cta-section h2{
        font-size:38px;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .section-header p,
    .cta-section p{
        font-size:17px;
    }

    .process-card{
        padding:40px 25px;
    }
}

/* =========================
   COMPANY STATS
========================= */

.company-stats{
    padding:100px 20px;
    background:#f3f0e8;

    display:grid;
    gap:25px;
}

.stat-card{
    background:#ffffff;
    padding:40px 25px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h3{
    font-size:3rem;
    color:#4d6b50;
    margin-bottom:10px;
    font-weight:700;
}

.stat-card p{
    color:#666;
    font-size:1rem;
    line-height:1.7;
}

/* =========================
   TABLET
========================= */

@media(min-width:768px){

    .company-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================
   DESKTOP
========================= */

@media(min-width:1024px){

    .about-container{
        flex-direction:row;
        align-items:center;
    }

    .about-image,
    .about-content{
        flex:1;
    }

    .about-content{
        padding-left:60px;
    }

    .company-stats{
        grid-template-columns:repeat(4,1fr);
    }

}

.contact-section{
    padding:100px 8%;
    background:#f8f9fa;
}

.contact-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.contact-tag{
    display:inline-block;
    color:#6b8e23;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.contact-header h2{
    font-size:42px;
    color:#1c2f4a;
    margin-bottom:20px;
}

.contact-header p{
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.info-card i{
    font-size:24px;
    color:#6b8e23;
    margin-top:5px;
}

.info-card h3{
    margin-bottom:8px;
    color:#1c2f4a;
}

.info-card p{
    color:#666;
    line-height:1.6;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#6b8e23;
}

.contact-form button{
    width:100%;
    background:#6b8e23;
    color:white;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#556b1b;
}


@media(max-width:768px){

    .contact-section{
        padding:70px 20px;
    }

    .contact-container{
        display:flex;
        flex-direction:column;
        gap:30px;
        width:100%;
    }

    .contact-info{
        width:100%;
    }

    .contact-form{
        width:100%;
        max-width:100%;
        padding:25px;
        margin:0 auto;
        box-sizing:border-box;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea{
        width:100%;
        box-sizing:border-box;
    }

    .contact-header h2{
        font-size:32px;
    }

}
*{
    box-sizing:border-box;
}

/* create acc */

.membership-hero{
    position:relative;
    height:70vh;
    background:url("images/siteimg.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.membership-content{
    position:relative;
    z-index:2;
    max-width:800px;
    color:#fff;
    padding:20px;
}

.membership-tag{
    display:inline-block;
    background:#6b8e23;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:20px;
}

.membership-content h1{
    font-size:52px;
    margin-bottom:20px;
}

.membership-content p{
    font-size:18px;
    line-height:1.8;
}

.requirements-section,
.process-section,
.application-section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title h2{
    font-size:42px;
    color:#1c2f4a;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.requirements-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.requirement-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.requirement-card h3{
    color:#6b8e23;
    margin-bottom:10px;
}

.requirement-card p{
    color:#666;
    line-height:1.7;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.process-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.process-card span{
    display:block;
    font-size:48px;
    font-weight:700;
    color:#6b8e23;
    margin-bottom:15px;
}

.process-card h3{
    color:#1c2f4a;
    margin-bottom:10px;
}

.process-card p{
    color:#666;
    line-height:1.7;
}

.application-container{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.application-header{
    text-align:center;
    margin-bottom:35px;
}

.application-header h2{
    color:#1c2f4a;
    margin-bottom:10px;
}

.application-header p{
    color:#666;
}

.application-form input,
.application-form select,
.application-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus{
    border-color:#6b8e23;
}

.application-form button{
    width:100%;
    background:#6b8e23;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.application-form button:hover{
    background:#556b1b;
}

@media(max-width:768px){

    .membership-content h1{
        font-size:34px;
    }

    .membership-content p{
        font-size:16px;
    }

    .section-title h2{
        font-size:30px;
    }

    .application-container{
        padding:30px 20px;
    }

    .requirements-section,
    .process-section,
    .application-section{
        padding:70px 5%;
    }
}

.journey-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.journey-card{
    cursor:pointer;
    transition:.3s;
}

.journey-card:hover{
    transform:translateY(-8px);
}

/* submission page */

.submission-page{
    min-height:100vh;
    background:#f5f7fa;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.submission-card{
    max-width:700px;
    background:#fff;
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.success-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    background:#6b8e23;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    font-weight:bold;
}

.submission-card h1{
    color:#1c2f4a;
    margin-bottom:25px;
}

.submission-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.review-box{
    background:#eef5e3;
    color:#556b1b;
    padding:18px;
    border-radius:12px;
    margin:30px 0;
    font-size:18px;
}

.back-home{
    display:inline-block;
    background:#6b8e23;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.back-home:hover{
    background:#556b1b;
}

/* id verification */
.verify-section{
    min-height:100vh;

   background: linear-gradient(
    135deg,
    #ffffff 0%,
    #eef4df 20%,
    #c8d79f 60%,
    #6b8e23 100%
);

    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.verify-card{
    width:100%;
    max-width:750px;
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.verify-badge{
    display:inline-block;
    background:#edf4df;
    color:#6b8e23;
    padding:8px 16px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.verify-card h1{
    color:#1c2f4a;
    margin-bottom:20px;
    font-size:38px;
}

.verify-text{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.verify-form{
    display:flex;
    flex-direction:column;
}

.verify-form label{
    margin-bottom:8px;
    color:#1c2f4a;
    font-weight:600;
}

.verify-form input,
.verify-form select{
    padding:16px;
    margin-bottom:22px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

.verify-form button{
    background:#6b8e23;
    color:white;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.verify-form button:hover{
    background:#556b1b;
}

@media(max-width:768px){

    .verify-card{
        padding:30px;
    }

    .verify-card h1{
        font-size:30px;
    }

}

/* id ver submission page */
.verification-success{
    min-height:100vh;

    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #eef4df 20%,
        #c8d79f 60%,
        #6b8e23 100%
    );

    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.verification-card{
    max-width:800px;
    width:100%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    padding:60px 50px;
    border-radius:30px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.success-icon{
    width:100px;
    height:100px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#6b8e23;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:45px;
    font-weight:700;
}

.status-badge{
    display:inline-block;

    background:#eef4df;
    color:#6b8e23;

    padding:10px 20px;
    border-radius:50px;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:20px;
}

.verification-card h1{
    color:#1c2f4a;
    margin-bottom:20px;
    font-size:42px;
}

.verification-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.review-box{
    background:#f4f8eb;

    border-left:5px solid #6b8e23;

    padding:20px;
    margin:30px 0;

    text-align:left;

    border-radius:12px;

    color:#1c2f4a;
}

.timeline{
    margin:35px 0;
}

.timeline-item{
    background:#f8f9fa;

    padding:18px;
    margin-bottom:12px;

    border-radius:12px;

    font-weight:600;
    color:#666;
}

.timeline-item.active{
    background:#eef4df;
    color:#6b8e23;
}

.return-btn{
    display:inline-block;

    margin-top:20px;

    background:#6b8e23;
    color:white;

    text-decoration:none;

    padding:16px 35px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.return-btn:hover{
    background:#556b1b;
}

@media(max-width:768px){

    .verification-card{
        padding:40px 25px;
    }

    .verification-card h1{
        font-size:32px;
    }

}

.investor-login{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #f5f8ee 30%,
        #d9e6c3 100%
    );
}

.login-card{
    width:100%;
    max-width:460px;
    background:#fff;
    padding:50px 40px;
    border-radius:24px;
    border:1px solid rgba(107,142,35,.15);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.security-badge{
    display:flex;
    justify-content:center;
    margin-bottom:25px;
}

.security-badge span{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#6b8e23;
    position:relative;
}

.security-badge span::before{
    content:"🔒";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:34px;
}

.login-card h1{
    text-align:center;
    color:#1c2f4a;
    font-size:36px;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.login-card label{
    display:block;
    font-weight:600;
    color:#1c2f4a;
    margin-bottom:10px;
    margin-top:15px;
}

.login-card input{
    width:100%;
    padding:18px;
    border:1px solid #dfe4d2;
    border-radius:14px;
    font-size:16px;
    outline:none;
    transition:.3s;
    background:#fafcf7;
}

.login-card input:focus{
    border-color:#6b8e23;
    background:#fff;
}

.login-card button{
    width:100%;
    margin-top:25px;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#6b8e23;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.login-card button:hover{
    background:#556f1b;
}

.security-info{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #eee;
    text-align:center;
    color:#777;
    font-size:14px;
    line-height:1.8;
}

@media(max-width:768px){

    .login-card{
        padding:40px 25px;
    }

    .login-card h1{
        font-size:30px;
    }

}

