/*==================================================
  BARAKA CAPITAL
  Global Styles
==================================================*/

:root{

    --primary:#071A33;
    --secondary:#10284D;
    --gold:#C79A3B;
    --gold-light:#E3BF70;
    --white:#FFFFFF;
    --light:#F8F8F8;
    --border:#E6E6E6;
    --text:#333333;
    --shadow:0 15px 45px rgba(0,0,0,.08);

}

/*==================================================
Root Colors
==================================================*/

:root{

    --navy:#071A33;
    --navy-light:#0C2547;

    --gold:#C79A3B;
    --gold-light:#D8B35A;

    --white:#FFFFFF;

    --text:#444444;

    --border:#E9E9E9;

    --bg:#F8F9FA;

    --transition:all .3s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;
    transition:.3s;

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

section{

    padding:90px 0;

}

/*==================================================
Typography
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    color:var(--primary);

}

.section-title{

    font-size:44px;
    text-align:center;
    margin-bottom:15px;

}

.section-subtitle{

    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;

}

/*==================================================
Navbar
==================================================*/

.navbar{

    background:rgba(6,18,40,.92);
    backdrop-filter:blur(8px);
    padding:18px 0;
    transition:.4s;
    z-index:9999;

}

.navbar-brand img{

    height:30px;

}

.navbar-nav{

    gap:18px;

}

.nav-link{

    color:#fff !important;
    font-size:14px;
    font-weight:500;
    letter-spacing:1px;
    position:relative;

}

.nav-link:hover,
.nav-link.active{

    color:var(--gold)!important;

}

.nav-link::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.3s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

/*==================================================
Buttons
==================================================*/

.btn{

    border-radius:0;
    font-weight:600;
    letter-spacing:.5px;
    padding:13px 28px;
    transition:.35s;

}

.btn-gold{

    background:var(--gold);
    color:#fff;
    border:1px solid var(--gold);

}

.btn-gold:hover{

    background:#b4862c;
    border-color:#b4862c;
    color:#fff;

}

.btn-outline-gold{

    color:var(--gold);
    border:1px solid var(--gold);

}

.btn-outline-gold:hover{

    background:var(--gold);
    color:#fff;

}

/*==================================================
Cards
==================================================*/

.card{

    border:none;
    border-radius:18px;
    box-shadow:var(--shadow);

}

/*==================================================
Footer
==================================================*/

footer{

    background:var(--primary);
    color:#fff;
    padding:80px 0 25px;

}

.footer-logo{

    height:30px;
    margin-bottom:25px;

}

footer h5{

    color:#fff;
    margin-bottom:25px;
    font-size:24px;

}

footer p{

    color:#d7d7d7;
    line-height:1.8;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#d7d7d7;

}

footer ul li a:hover{

    color:var(--gold);

}

.contact-info li{

    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#d7d7d7;

}

.contact-info i{

    color:var(--gold);
    margin-top:5px;
    width:18px;

}

/*==================================================
Social
==================================================*/

.social-icons{

    display:flex;
    gap:12px;
    margin-top:25px;

}

.social-icons a{

    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.15);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;

}

.social-icons a:hover{

    background:var(--gold);
    color:#fff;

}

/*==================================================
Newsletter
==================================================*/

footer .form-control{

    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    border-radius:0;

}

footer .form-control:focus{

    box-shadow:none;
    border-color:var(--gold);

}

footer .form-control::placeholder{

    color:#bcbcbc;

}

/*==================================================
Footer Bottom
==================================================*/

footer hr{

    border-color:rgba(255,255,255,.08);
    margin:45px 0 25px;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#cfcfcf;
    font-size:14px;

}

.footer-bottom a{

    color:#cfcfcf;
    margin-left:12px;

}

.footer-bottom a:hover{

    color:var(--gold);

}

/*==================================================
Scrollbar
==================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

}

::-webkit-scrollbar-track{

    background:#ececec;

}

/*==================================================
Selection
==================================================*/

::selection{

    background:var(--gold);
    color:#fff;

}

/*=========================================
Hero
=========================================*/

.hero{

    position:relative;

    min-height:920px;

    background:url('../img/hero.png') center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(5,18,38,.92) 0%,
        rgba(8,24,48,.78) 45%,
        rgba(5,18,38,.45) 100%
    );

}

.hero .container{

    position:relative;

    z-index:5;

}

.hero-content{

    margin-top:90px;

}

.hero h1{

    font-size:84px;

    line-height:.95;

    color:#fff;

    margin-bottom:25px;

}

.hero h1 span{

    display:block;

    color:var(--gold);

}

.hero h4{

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:28px;

    font-weight:500;

    line-height:1.4;

    margin-bottom:30px;

}

.hero p{

    color:#d7d7d7;

    font-size:18px;

    line-height:1.9;

    max-width:600px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

}

.hero-stats{

    position:absolute;

    bottom:40px;

    left:0;

    width:100%;

    z-index:10;

}

.hero-stats .row{

    background:rgba(8,20,45,.90);

    border:1px solid rgba(199,154,59,.40);

    backdrop-filter:blur(10px);

}

.stat-box{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    padding:30px;

    border-right:1px solid rgba(255,255,255,.10);

}

.stat-box i{

    color:var(--gold);

    font-size:42px;

}

.stat-box h2{

    color:#fff;

    font-size:42px;

    margin:0;

}

.stat-box p{

    color:#ddd;

    margin:0;

    font-size:15px;

}

/*=================================
Investment Opportunities
=================================*/

.opportunities{

    padding:90px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

    font-size:14px;

}

.section-title h2{

    margin-top:12px;

    font-size:42px;

    color:var(--navy);

}

.investment-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.investment-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.investment-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:var(--navy);

    color:var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 30px;

    font-size:36px;

    transition:.3s;

}

.investment-card:hover .investment-icon{

    transform:scale(1.08);

}

.investment-card h3{

    color:var(--navy);

    font-size:24px;

    margin-bottom:20px;

}

.investment-card p{

    color:#666;

    line-height:1.8;

    min-height:110px;

}

.gold-line{

    display:block;

    width:45px;

    height:3px;

    background:var(--gold);

    margin:25px auto 0;

    transition:.3s;

}

.investment-card:hover .gold-line{

    width:90px;

}

/*=================================
Why Choose
=================================*/

.why-section{

    background:var(--navy);

    padding:80px 0;

}

.section-title-light h2{

    color:#fff;

}

.section-title-light span{

    color:var(--gold);

}

.why-box{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:25px;

    height:100%;

    border-right:1px solid rgba(255,255,255,.15);

}

.col-lg-3:last-child .why-box{

    border-right:none;

}

.why-icon{

    width:70px;

    height:70px;

    flex-shrink:0;

    border:2px solid var(--gold);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--gold);

    font-size:28px;

    transition:.3s;

}

.why-box:hover .why-icon{

    background:var(--gold);

    color:var(--navy);

    transform:rotate(360deg);

}

.why-box h4{

    color:#fff;

    font-size:22px;

    margin-bottom:10px;

}

.why-box p{

    color:#d6d6d6;

    margin:0;

    line-height:1.7;

}

/*==================================
Statistics
==================================*/

.statistics-section{

    position:relative;

    padding:120px 0;

    background:url("../img/statistics-bg.png") center center/cover fixed;

    overflow:hidden;

}

.statistics-overlay{

    position:absolute;

    inset:0;

    background:rgba(5,18,38,.82);

}

.statistics-section .container{

    position:relative;

    z-index:2;

}

.stat-item{

    text-align:center;

    padding:40px 25px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(10px);

    transition:.35s;

    height:100%;

}

.stat-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.08);

    border-color:var(--gold);

}

.stat-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(199,154,59,.15);

    border:2px solid var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--gold);

    font-size:34px;

}

.stat-item h2{

    color:#fff;

    font-size:54px;

    margin-bottom:10px;

    font-weight:700;

}

.stat-item p{

    color:#ddd;

    font-size:17px;

    margin:0;

}

/*==================================
Testimonials
==================================*/

.testimonial-section{

    padding:100px 0;

    background:#fff;

}

.testimonial-box{

    max-width:850px;

    margin:auto;

    text-align:center;

    padding:60px;

    border:1px solid var(--border);

    border-radius:12px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.quote{

    font-size:55px;

    color:var(--gold);

    margin-bottom:25px;

}

.testimonial-box p{

    font-size:22px;

    line-height:1.9;

    color:#555;

    margin-bottom:30px;

    font-style:italic;

}

.stars{

    margin-bottom:30px;

}

.stars i{

    color:var(--gold);

    margin:0 3px;

    font-size:20px;

}

.client{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

}

.client img{

    width:75px;

    height:75px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--gold);

}

.client h4{

    margin:0;

    color:var(--navy);

}

.client span{

    color:#777;

}

.carousel-control-next-icon,
.carousel-control-prev-icon{

    filter:invert(1);

}

/*=========================
Insights
=========================*/

.insights-section{

    padding:100px 0;

    background:#f8fafc;

}

.insight-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.insight-card:hover{

    transform:translateY(-8px);

}

.insight-image{

    overflow:hidden;

}

.insight-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.insight-card:hover img{

    transform:scale(1.08);

}

.insight-content{

    padding:28px;

}

.category{

    display:inline-block;

    padding:6px 14px;

    border-radius:50px;

    background:rgba(199,167,61,.12);

    color:var(--gold);

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.insight-content h4{

    margin-bottom:15px;

    font-size:24px;

}

.insight-content h4 a{

    color:var(--navy);

    text-decoration:none;

}

.insight-content h4 a:hover{

    color:var(--gold);

}

.insight-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:28px;

}

.insight-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:14px;

}

.insight-footer span{

    color:#888;

}

.insight-footer a{

    color:var(--gold);

    text-decoration:none;

    font-weight:600;

}

.insight-footer a:hover{

    color:var(--navy);

}

/*==================================
Call To Action
==================================*/

.cta-section{

    position:relative;

    padding:130px 0;

    background:url("../img/cta-bg.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(7,26,51,.92),
        rgba(7,26,51,.82)
    );

}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

}

.cta-small{

    display:inline-block;

    color:var(--gold);

    font-size:14px;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:20px;

}

.cta-content h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.2;

}

.cta-content p{

    color:rgba(255,255,255,.85);

    font-size:20px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-gold{

    background:var(--gold);

    color:#fff;

    padding:15px 38px;

    border-radius:4px;

    font-weight:600;

    transition:.3s;

}

.btn-gold:hover{

    background:#d6ac55;

    color:#fff;

}

.btn-outline-light{

    padding:15px 38px;

    border:2px solid rgba(255,255,255,.5);

    color:#fff;

    border-radius:4px;

    transition:.3s;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--navy);

}

/*==================================
Authentication
==================================*/

.auth-section{

    padding:100px 0;

    background:#f5f7fb;

}

.auth-box{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.auth-left{

    height:100%;

    padding:60px 45px;

    background:linear-gradient(135deg,var(--navy),var(--navy-light));

    color:#fff;

}

.auth-left img{

    margin-bottom:40px;

}

.auth-left h2{

    font-size:38px;

    margin-bottom:20px;

    color: rgba(255, 255, 255, .8);

}

.auth-left span{

    color:var(--gold);

}

.auth-left p{

    color:rgba(255,255,255,.8);

    line-height:1.9;

}

.auth-left ul{

    list-style:none;

    padding:0;

    margin-top:35px;

}

.auth-left li{

    margin-bottom:18px;

}

.auth-right{

    padding:60px;

}

.auth-tabs{

    background:#f1f3f8;

    padding:6px;

    border-radius:50px;

}

.auth-tabs .nav-link{

    border-radius:40px;

    color:var(--navy) !important;

    font-weight:600;

}

.auth-tabs .nav-link.active{

    background:var(--gold);

    color: #fff !important;

}

/*==========================
Registration Form
==========================*/

.form-section{

    margin-bottom:40px;

}

.section-title{

    color:var(--navy);

    font-weight:700;

    margin-bottom:20px;

    padding-bottom:10px;

    border-bottom:2px solid rgba(0,0,0,.06);

}

.auth-right label{

    font-weight:600;

    margin-bottom:8px;

}

.auth-right .form-control,
.auth-right .form-select{

    height:52px;

    border-radius:8px;

    border:1px solid #d8dee8;

}

.auth-right textarea.form-control{

    height:auto;

}

.auth-right .form-control:focus,
.auth-right .form-select:focus{

    border-color:var(--gold);

    box-shadow:0 0 0 .2rem rgba(199,161,74,.15);

}

.form-check-label a{

    color:var(--gold);

    text-decoration:none;

    font-weight:600;

}

.form-check-label a:hover{

    text-decoration:underline;

}