/* ==========================================
   360BRIDGE ADVISORY LIMITED
   MASTER STYLESHEET
========================================== */

/* ==========================================
   GOOGLE FONTS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   ROOT VARIABLES
========================================== */

:root{

    --navy:#071F63;
    --gold:#B8923D;

    --white:#FFFFFF;
    --light:#F8FAFC;

    --dark:#0F172A;
    --text:#64748B;

    --border:#E2E8F0;

    --shadow-sm:0 4px 12px rgba(0,0,0,.05);
    --shadow-md:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.12);

    --radius:16px;

    --transition:.3s ease;

}

/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter', sans-serif;

    font-size:16px;

    color:var(--dark);

    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button,
input,
textarea,
select{

    font-family:'Inter', sans-serif;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:100%;

    max-width:1400px;

    margin:auto;

    padding:0 20px;

}

/* ==========================================
   SECTION SPACING
========================================== */

.section{

    padding:120px 0;

}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1{

    font-size:clamp(3rem,6vw,5.5rem);

    line-height:1.1;

    font-weight:800;

}

h2{

    font-size:clamp(2rem,4vw,3.5rem);

    line-height:1.2;

    font-weight:700;

}

h3{

    font-size:1.5rem;

    font-weight:600;

}

p{

    color:var(--text);

    line-height:1.9;

}

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

.section-header{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(184,146,61,.10);

    color:var(--gold);

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:20px;

}

.section-header h2{

    color:var(--navy);

    margin-bottom:20px;

}

.section-header p{

    font-size:18px;

}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    background:var(--gold);

    color:var(--white);

    border:none;

    border-radius:8px;

    font-weight:600;

    cursor:pointer;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border:1px solid var(--navy);

    color:var(--navy);

    border-radius:8px;

    font-weight:600;

}

.btn-secondary:hover{

    background:var(--navy);

    color:var(--white);

}

/* ==========================================
   CARD SYSTEM
========================================== */

.card{

    background:var(--white);

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

/* ==========================================
   GRID SYSTEM
========================================== */

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

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

.page-hero{

    background:
    linear-gradient(
        135deg,
        var(--navy),
        #0B2A84
    );

    padding:180px 0 100px;

    text-align:center;

    color:var(--white);

}

.page-hero h1{

    color:var(--white);

    margin-bottom:20px;

}

.page-hero p{

    max-width:800px;

    margin:auto;

    color:rgba(255,255,255,.85);

    font-size:18px;

}

.page-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:var(--gold);

    margin-bottom:20px;

}

/* ==========================================
   FORMS
========================================== */

.form-group{

    margin-bottom:20px;

}

input,
select,
textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid var(--border);

    border-radius:8px;

    outline:none;

    font-size:15px;

}

input:focus,
select:focus,
textarea:focus{

    border-color:var(--gold);

}

textarea{

    resize:none;

}

/* ==========================================
   UTILITIES
========================================== */

.text-center{

    text-align:center;

}

.bg-light{

    background:var(--light);

}

.bg-white{

    background:var(--white);

}

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

@media(max-width:992px){

    .section{

        padding:90px 0;

    }

    .grid-4{

        grid-template-columns:repeat(2,1fr);

    }

    .grid-3{

        grid-template-columns:repeat(2,1fr);

    }

    .grid-2{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .section{

        padding:70px 0;

    }

    .grid-4,
    .grid-3{

        grid-template-columns:1fr;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header p{

        font-size:16px;

    }

}

/* ==========================================
   NAVBAR
========================================== */

#navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(0,0,0,.05);

    z-index:9999;

    transition:all .3s ease;

}

#navbar.scrolled{

    height:80px;

    box-shadow:var(--shadow-sm);

}

.navbar-container{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:60px;

    width:auto;

}

.desktop-menu ul{

    display:flex;

    align-items:center;

    gap:28px;

}

.desktop-menu ul li a{

    color:var(--navy);

    font-weight:500;

    font-size:15px;

    position:relative;

}

.desktop-menu ul li a:hover{

    color:var(--gold);

}
.desktop-menu ul li a.active{

    color:var(--gold);

    font-weight:600;

}

.mobile-menu a.active{

    color:var(--gold);

    font-weight:600;

}
.desktop-menu ul li a::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.desktop-menu ul li a:hover::after{

    width:100%;

}

.nav-btn{

    padding:14px 24px;

    background:var(--gold);

    color:#fff;

    border-radius:8px;

    font-weight:600;

}

/* HAMBURGER */

.mobile-toggle{

    display:none;

    width:40px;

    height:40px;

    border:none;

    background:none;

    cursor:pointer;

}

.mobile-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:var(--navy);

    margin:5px auto;

    border-radius:5px;

    transition:.3s;

}


.mobile-toggle.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px, 6px);

}

.mobile-toggle.active span:nth-child(2){

    opacity:0;

}

.mobile-toggle.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(6px, -6px);

}
/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu{

    position:fixed;

    top:90px;

    left:-100%;

    width:100%;

    height:calc(100vh - 90px);

    background:#fff;

    z-index:9998;

    transition:.35s ease;

    overflow-y:auto;

}

.mobile-menu.active{

    left:0;

}

.mobile-menu ul{

    padding:30px 20px;

}

.mobile-menu ul li{

    border-bottom:1px solid rgba(0,0,0,.05);

}

.mobile-menu ul li a{

    display:block;

    padding:18px 0;

    color:var(--navy);

    font-weight:500;

}

.mobile-menu .mobile-btn{

    display:block;

    margin-top:20px;

}

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

.footer{

    background:#041645;

    color:#fff;

    padding:90px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

}

.footer-logo{

    height:70px;

    margin-bottom:25px;

}

.footer-about p{

    color:rgba(255,255,255,.75);

    margin-bottom:25px;

}

.footer-column h3{

    margin-bottom:25px;

    color:#fff;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-column ul li a{

    color:rgba(255,255,255,.75);

}

.footer-column ul li a:hover{

    color:var(--gold);

}

.footer-contact li{

    display:flex;

    gap:12px;

    color:rgba(255,255,255,.75);

}

.footer-contact i{

    color:var(--gold);

    margin-top:4px;

}

.footer-socials{

    display:flex;

    gap:12px;

}

.footer-socials a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

}

.footer-socials a:hover{

    background:var(--gold);

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:rgba(255,255,255,.65);

}

/* ==========================================
   BACK TO TOP
========================================== */

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;

}

#backToTop.show{

    display:flex;

    align-items:center;

    justify-content:center;

}


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

@media(max-width:992px){

    .desktop-menu,
    .nav-btn{

        display:none;

    }

    .mobile-toggle{

        display:block;

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:576px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

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

.hero{

    position:relative;

    min-height:100vh;

    background:
    linear-gradient(
        135deg,
        var(--navy),
        #0B2A84
    );

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(184,146,61,.15),
        transparent 35%
    );

}

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;

    align-items:center;

    padding-top:140px;

    padding-bottom:80px;

}

/* LEFT */

.hero-content{

    color:#fff;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:var(--gold);

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    color:#fff;

    margin-bottom:25px;

    max-width:850px;

}

.hero-content p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.hero-btn{

    border-color:rgba(255,255,255,.20);

    color:#fff;

}

.hero-btn:hover{

    background:#fff;

    color:var(--navy);

}

/* TRUST */

.hero-trust{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:50px;

}

.hero-trust div{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:20px;

    border-radius:12px;

}

.hero-trust strong{

    display:block;

    color:#fff;

    font-size:20px;

    margin-bottom:5px;

}

.hero-trust span{

    color:rgba(255,255,255,.75);

    font-size:14px;

}

/* RIGHT CARD */

.hero-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    padding:35px;

    backdrop-filter:blur(15px);

}

.service-item{

    display:flex;

    gap:18px;

    padding:22px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.service-item:last-child{

    border-bottom:none;

}

.service-item i{

    color:var(--gold);

    font-size:24px;

    min-width:30px;

}

.service-item h4{

    color:#fff;

    margin-bottom:5px;

}

.service-item p{

    color:rgba(255,255,255,.75);

    font-size:14px;

}

/* MOBILE */

@media(max-width:992px){

    .hero-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .hero-content{

        text-align:center;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-trust{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .hero{

        min-height:auto;

    }

    .hero-grid{

        padding-top:120px;

        padding-bottom:60px;

    }

    .hero-content p{

        font-size:16px;

    }

}

/* ==========================================
   TRUST BAR
========================================== */

.trust-bar{

    background:#ffffff;

    padding:50px 0;

    border-bottom:1px solid var(--border);

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.trust-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.trust-icon{

    width:60px;

    height:60px;

    min-width:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(184,146,61,.10);

}

.trust-icon i{

    color:var(--gold);

    font-size:24px;

}

.trust-item h3{

    color:var(--navy);

    font-size:18px;

    margin-bottom:6px;

}

.trust-item p{

    font-size:14px;

    margin:0;

}

/* RESPONSIVE */

@media(max-width:992px){

    .trust-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .trust-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   ABOUT PREVIEW
========================================== */

.about-preview{

    background:var(--light);

}

.about-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.about-content h2{

    color:var(--navy);

    margin-bottom:25px;

    max-width:600px;

}

.about-intro{

    font-size:20px;

    color:var(--dark);

    margin-bottom:20px;

}

.about-content p{

    margin-bottom:20px;

}

.about-content .btn-primary{

    margin-top:10px;

}

.about-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.stat-card{

    background:#fff;

    padding:35px 25px;

    border-radius:16px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.stat-card h3{

    color:var(--gold);

    font-size:32px;

    margin-bottom:8px;

}

.stat-card span{

    color:var(--text);

    font-size:15px;

}

/* RESPONSIVE */

@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .about-stats{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   SERVICES OVERVIEW
========================================== */

.services-overview{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    padding:40px 30px;

    text-align:left;

}

.service-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(184,146,61,.10);

    color:var(--gold);

    font-size:28px;

    margin-bottom:25px;

}

.service-card h3{

    color:var(--navy);

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    margin-bottom:0;

}

.services-cta{

    text-align:center;

    margin-top:50px;

}

/* RESPONSIVE */

@media(max-width:992px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   SECTOR FOCUS
========================================== */

.sector-focus{

    background:var(--light);

}

.sector-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.sector-card{

    padding:40px 30px;

    text-align:center;

}

.sector-card i{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(184,146,61,.10);

    color:var(--gold);

    font-size:32px;

}

.sector-card h3{

    color:var(--navy);

    margin-bottom:15px;

}

.sector-card p{

    margin-bottom:0;

}

/* RESPONSIVE */

@media(max-width:992px){

    .sector-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .sector-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   360° ADVISORY FRAMEWORK
========================================== */

.advisory-framework{

    background:#ffffff;

}

.framework-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.framework-step{

    position:relative;

    padding:40px 30px;

    text-align:left;

}

.step-number{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--navy);

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin-bottom:25px;

}

.framework-step h3{

    color:var(--navy);

    margin-bottom:15px;

    font-size:24px;

}

.framework-step p{

    margin-bottom:0;

}

/* RESPONSIVE */

@media(max-width:992px){

    .framework-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .framework-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   FEATURED OPPORTUNITIES
========================================== */

.featured-opportunities{

    background:var(--light);

}

.opportunities-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.opportunity-card{

    padding:35px;

}

.opportunity-sector{

    display:inline-block;

    padding:8px 14px;

    background:rgba(184,146,61,.10);

    color:var(--gold);

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.opportunity-card h3{

    color:var(--navy);

    margin-bottom:15px;

}

.opportunity-card p{

    margin-bottom:25px;

}

.opportunity-card ul{

    margin-bottom:30px;

}

.opportunity-card ul li{

    padding:10px 0;

    border-bottom:1px solid var(--border);

    color:var(--text);

}

.opportunity-card ul li:last-child{

    border-bottom:none;

}

.opportunity-card .btn-primary{

    width:100%;

}

.section-action{

    text-align:center;

    margin-top:50px;

}

/* RESPONSIVE */

@media(max-width:992px){

    .opportunities-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .opportunities-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   INVESTOR & BUSINESS CTA
========================================== */

.cta-split{

    display:grid;

    grid-template-columns:1fr 1fr;

}

.cta-investors{

    background:var(--navy);

    padding:100px 80px;

}

.cta-businesses{

    background:var(--gold);

    padding:100px 80px;

}

.cta-content{

    max-width:600px;

}

.cta-content .section-tag{

    background:rgba(255,255,255,.10);

    color:#ffffff;

}

.cta-content h2{

    color:#ffffff;

    margin:20px 0;

}

.cta-content p{

    color:rgba(255,255,255,.85);

    margin-bottom:35px;

    font-size:18px;

}

.business-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    background:#ffffff;

    color:var(--navy);

    border-radius:8px;

    font-weight:600;

}

.business-btn:hover{

    transform:translateY(-2px);

}

@media(max-width:992px){

    .cta-split{

        grid-template-columns:1fr;

    }

    .cta-investors,
    .cta-businesses{

        padding:70px 30px;

    }

}

/* ==========================================
   INSIGHTS SECTION
========================================== */

.insights-section{

    background:#ffffff;

}

.insights-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.insight-card{

    padding:35px;

}

.insight-category{

    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    background:rgba(184,146,61,.10);

    color:var(--gold);

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.insight-card h3{

    color:var(--navy);

    margin-bottom:15px;

    font-size:24px;

    line-height:1.4;

}

.insight-card p{

    margin-bottom:25px;

}

.insight-card a{

    color:var(--gold);

    font-weight:600;

}

.insight-card a:hover{

    color:var(--navy);

}

/* RESPONSIVE */

@media(max-width:992px){

    .insights-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .insights-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   NEWSLETTER SECTION
========================================== */

.newsletter-section{

    background:var(--light);

    padding:120px 0;

}

.newsletter-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    background:linear-gradient(
        135deg,
        var(--navy),
        #0B2A84
    );

    padding:80px 60px;

    border-radius:24px;

    position:relative;

    overflow:hidden;

}

.newsletter-box::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(184,146,61,.15);

    top:-120px;

    right:-120px;

}

.newsletter-box .section-tag{

    background:rgba(255,255,255,.10);

    color:#ffffff;

}

.newsletter-box h2{

    color:#ffffff;

    margin:20px 0;

}

.newsletter-box p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:0 auto 35px;

}

.newsletter-form{

    position:relative;

    z-index:2;

    display:flex;

    gap:15px;

    justify-content:center;

}

.newsletter-form input{

    flex:1;

    max-width:550px;

    height:60px;

    border:none;

    border-radius:8px;

    padding:0 20px;

    font-size:16px;

}

.newsletter-form button{

    height:60px;

    padding:0 30px;

    border:none;

    border-radius:8px;

    background:var(--gold);

    color:#ffffff;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.newsletter-form button:hover{

    opacity:.9;

}

/* RESPONSIVE */

@media(max-width:768px){

    .newsletter-box{

        padding:50px 25px;

    }

    .newsletter-form{

        flex-direction:column;

    }

    .newsletter-form input{

        max-width:100%;

        width:100%;

    }

}

/* ==========================================
   CONTACT SECTION
========================================== */

.contact-section{

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:60px;

}

.contact-card{

    background:var(--navy);

    color:#ffffff;

    padding:50px;

    border-radius:20px;

}

.contact-card h3{

    color:#ffffff;

    margin-bottom:10px;

}

.contact-card > p{

    color:rgba(255,255,255,.80);

    margin-bottom:40px;

}

.contact-item{

    display:flex;

    gap:18px;

    margin-bottom:30px;

}

.contact-item i{

    width:50px;

    height:50px;

    min-width:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:var(--gold);

}

.contact-item strong{

    display:block;

    margin-bottom:5px;

    color:#ffffff;

}

.contact-item span{

    color:rgba(255,255,255,.80);

}

.contact-form-wrapper{

    background:#ffffff;

    border-radius:20px;

    box-shadow:var(--shadow-md);

    padding:40px;

}

.contact-form .btn-primary{

    width:100%;

}

/* RESPONSIVE */

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .contact-card,
    .contact-form-wrapper{

        padding:30px 20px;

    }

}

/* ==========================================
   ABOUT PAGE
========================================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-grid h2{

    color:var(--navy);

}

@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

}

/* ==========================================
   MISSION • VISION • VALUES
========================================== */

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.value-card{

    padding:40px 30px;

    text-align:center;

}

.value-card i{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(184,146,61,.10);

    color:var(--gold);

    font-size:32px;

}

.value-card h3{

    color:var(--navy);

    margin-bottom:15px;

}

@media(max-width:992px){

    .values-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-card{

    padding:35px;

}

.why-card h3{

    color:var(--navy);

    margin-bottom:15px;

}

/* ==========================================
   FAQ SECTION
========================================== */

.faq-list{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    padding:30px;

    margin-bottom:20px;

}

.faq-item h3{

    color:var(--navy);

    margin-bottom:15px;

}

/* ==========================================
   ADMIN LOGIN
========================================== */

.login-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f5f7fb;

}

.login-card{

    width:100%;

    max-width:450px;

    background:#fff;

    padding:40px;

    border-radius:16px;

    box-shadow:var(--shadow-md);

}

.login-card h2{

    margin-bottom:10px;

    color:var(--navy);

}

.alert-danger{

    background:#ffe5e5;

    color:#b30000;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;

}

/* ==========================================
   ADMIN DASHBOARD
========================================== */

.admin-wrapper{

    padding:40px;

}

.admin-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.dashboard-grid .card{

    text-align:center;

    padding:35px;

}

.dashboard-grid h3{

    font-size:40px;

    color:var(--gold);

    margin-bottom:10px;

}

@media(max-width:992px){

    .dashboard-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .dashboard-grid{

        grid-template-columns:1fr;

    }

}

.opportunity-image{

    height:220px;

    overflow:hidden;

}

.opportunity-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.opportunity-content{

    padding:25px;

}

.featured-badge{

    display:inline-block;

    background:#071d49;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    margin-bottom:12px;

}

.opportunity-meta{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin:15px 0;

    font-size:14px;

}

.opportunity-meta div{

    display:flex;

    flex-direction:column;

}

.empty-state{

    text-align:center;

    padding:80px 30px;

}

.empty-state i{

    font-size:60px;

    margin-bottom:20px;

    color:#ccc;

}


.opportunity-banner{

    width:100%;

    height:450px;

    object-fit:cover;

    border-radius:16px;

}

.opportunity-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.stat-box{

    background:#fff;

    padding:25px;

    border-radius:12px;

    box-shadow:var(--shadow);

    text-align:center;

}

.stat-box h4{

    color:var(--navy);

    margin-bottom:10px;

}

@media(max-width:768px){

    .opportunity-stats{

        grid-template-columns:1fr;

    }

}


.opportunity-details{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin:20px 0;

    padding:15px 0;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

}

.opportunity-details div{

    display:flex;

    flex-direction:column;

}

.opportunity-details strong{

    color:var(--navy);

    font-size:13px;

    margin-bottom:5px;

}

.minimum-investment{

    margin-bottom:20px;

    color:#555;

    font-size:14px;

}

.minimum-investment strong{

    color:var(--navy);

}