/* ==================================
   GLOBAL SETTINGS
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:'Inter',sans-serif;

    background:#08111f;

    color:#ffffff;

    overflow-x:hidden;

}


html{

    scroll-behavior:smooth;

}


a{

    text-decoration:none;

}


.text-secondary{

    color:#94a3b8!important;

}


/* ==================================
   NAVBAR
================================== */


.custom-navbar{

    background:rgba(8,17,31,.92);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:15px 0;

    transition:.35s;

    z-index:9999;

}
.navbar-brand{

    font-size:30px;

    font-weight:700;

    color:#fff !important;

}

.navbar-brand span{

    color:#2563eb;

}

.nav-link{

    color:#d7dce7 !important;

    font-weight:500;

    padding:12px 18px !important;

    transition:.3s;

}

.nav-link:hover{

    color:#3b82f6 !important;

}

.nav-link.active{

    color:#3b82f6 !important;

}


.nav-link:hover,
.nav-link.active{

    color:#3b82f6!important;

}


.btn-primary{

    background:#2563eb;

    border-color:#2563eb;

    border-radius:10px;

    transition:.3s;

}


.btn-primary:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

}


.btn-outline-light{

    border-radius:10px;

}


/* ==================================
   HERO SECTION
================================== */


.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

    background:

    radial-gradient(circle at top right,
    rgba(37,99,235,.25),
    transparent 40%);

}



.hero h1{

    font-weight:800;

    line-height:1.15;

    letter-spacing:-2px;

}



.hero p{

    max-width:550px;

}

.hero-image{
    width:100%;
    max-width:650px;
    height:auto;
    display:block;
    margin:0 auto;
    object-fit:contain;
    animation:float 5s infinite ease-in-out;
}
/* 
.hero-image{

    max-width:650px;

    animation:float 5s infinite ease-in-out;

} */



@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}




.hero-stats{

    display:flex;

    gap:40px;

}



.hero-stats h3{

    font-weight:700;

}



.hero-stats small{

    color:#94a3b8;

}



/* ==================================
   COMPANIES
================================== */


.companies{

    padding:70px 0;

}


.companies h4{

    color:#64748b;

    font-weight:700;

}



/* ==================================
   INVESTMENT CARDS
================================== */


.investment-card,
.market-card,
.property-card,
.feature-card,
.testimonial-card{

    background:

    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.4s;

    backdrop-filter:blur(10px);

}



.investment-card:hover,
.market-card:hover,
.property-card:hover,
.feature-card:hover,
.testimonial-card:hover{


    transform:translateY(-10px);

    border-color:#2563eb;

}



.investment-card .icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#2563eb;

    border-radius:18px;

    font-size:30px;

    margin-bottom:25px;

}



.investment-card h3{

    margin-bottom:15px;

}



.investment-card a{

    color:#3b82f6;

    font-weight:600;

}



/* ==================================
   MARKET
================================== */


.live-market{

    background:#0b1628;

}



.market-card h3{

    font-size:28px;

    margin-top:15px;

}



/* ==================================
   PROPERTY
================================== */


.property-card{

    padding:0;

    overflow:hidden;

}



.property-card img{

    height:250px;

    width:100%;

    object-fit:cover;

}



.property-card .p-4{

    padding:30px!important;

}



/* ==================================
   FEATURES
================================== */


.feature-card{

    text-align:center;

}


.feature-card i{

    font-size:45px;

    color:#3b82f6;

    margin-bottom:20px;

    display:block;

}



/* ==================================
   STATISTICS
================================== */


.statistics{

    background:

    linear-gradient(
    90deg,
    #2563eb,
    #1e40af
    );

}


.statistics h2{

    font-size:45px;

    font-weight:800;

}


.statistics p{

    opacity:.8;

}



/* ==================================
   TESTIMONIAL
================================== */


.testimonial-card{

    padding:35px;

}



.testimonial-card p{

    color:#cbd5e1;

    line-height:1.8;

}



/* ==================================
   FAQ
================================== */


.accordion-item{

    background:#111c2e;

    border:1px solid rgba(255,255,255,.08);

    color:white;

}


.accordion-button{

    background:#111c2e;

    color:white;

    font-weight:600;

}


.accordion-button:not(.collapsed){

    background:#2563eb;

    color:white;

}


.accordion-button:focus{

    box-shadow:none;

}



/* ==================================
   NEWSLETTER
================================== */


.newsletter-box{

    background:

    linear-gradient(
    135deg,
    rgba(37,99,235,.3),
    rgba(15,23,42,.8)
    );

    padding:60px 30px;

    border-radius:25px;

}



/* ==================================
   FOOTER
================================== */


.footer{

    background:#050b16;

}



.footer h3{

    font-size:32px;

}



.footer h5{

    margin-bottom:20px;

}



.footer a{

    color:#94a3b8;

    display:block;

    margin-bottom:12px;

}



.footer a:hover{

    color:white;

}



/* ==================================
   SCROLL ANIMATION
================================== */


section{

    position:relative;

}


/* ==================================
   CUSTOM SCROLLBAR
================================== */


::-webkit-scrollbar{

    width:8px;

}


::-webkit-scrollbar-track{

    background:#08111f;

}


::-webkit-scrollbar-thumb{

    background:#2563eb;

    border-radius:20px;

}

.custom-navbar.scrolled{

    background:#08111f;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}









