/* =====================================
   Bright Future Ecommerce
   Professional Investment Website
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07111F;
    color: #ffffff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}


/* HEADER */

.header {
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #07111F;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #D4AF37;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #D4AF37;
}


/* HERO */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background:
    linear-gradient(
        135deg,
        #07111F,
        #162B4A
    );
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 700px;
}


/* BUTTON */

.btn {
    display: inline-block;
    padding: 15px 45px;
    background: #D4AF37;
    color: #07111F;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    background: #f2c94c;
}


/* STATISTICS */

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 8%;
    flex-wrap: wrap;
}

.stat-box {
    background: #10233C;
    width: 280px;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-box h2 {
    font-size: 42px;
    color: #D4AF37;
    margin-bottom: 10px;
}


/* ABOUT SECTION */

.about-preview {
    padding: 90px 10%;
    text-align: center;
}

.about-preview h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-preview p {
    max-width: 850px;
    margin: auto;
    color: #cbd5e1;
    font-size: 19px;
}


/* FOOTER */

footer {
    background: #040912;
    padding: 30px;
    text-align: center;
    color: #94a3b8;
}


/* RESPONSIVE DESIGN */

@media(max-width: 900px) {

    .header {
        flex-direction: column;
        gap: 25px;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 17px;
    }

}


@media(max-width: 600px) {

    .logo {
        font-size: 22px;
    }

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 50px 6%;
    }

    .hero h1 {
        font-size: 34px;
    }

    .stats {
        padding: 50px 5%;
    }

    .stat-box {
        width: 100%;
    }

    .about-preview h2 {
        font-size: 30px;
    }

}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    width: 50%;
}

.hero-image {
    width: 45%;
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
}
.hero-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}
.product-card {
    width: 300px;
    background: #10233d;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: 0.4s ease;
}


.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


.product-card h2 {
    margin-top: 20px;
    font-size: 24px;
    color: #d4af37;
}


.product-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.5;
}


.product-card:hover {
    transform: translateY(-10px);
}


.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
/* PERFORMANCE PAGE */

.performance-page {
    padding: 60px 8%;
}


.performance-header {
    text-align: center;
    margin-bottom: 50px;
}


.performance-header h1 {
    font-size: 45px;
    color: #d4af37;
}


.performance-header p {
    font-size: 18px;
    color: white;
}



.performance-cards {

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}



.performance-box {

    width:230px;
    background:#10233d;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;

}



.performance-box:hover {

    transform:translateY(-10px);

}



.performance-box h2 {

    font-size:38px;
    color:#d4af37;

}



.growth-chart {

    margin-top:70px;
    background:#10233d;
    padding:40px;
    border-radius:20px;
    text-align:center;

}



.growth-chart h2 {

    color:#d4af37;
    font-size:32px;

}



.chart {

    height:350px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:40px;
    margin-top:50px;

}



.bar {

    width:60px;
    background:#d4af37;
    border-radius:15px 15px 0 0;
    position:relative;

}



.bar span {

    position:absolute;
    bottom:-55px;
    width:100px;
    left:-20px;
    color:white;
    font-size:14px;

}



.performance-info {

    margin-top:70px;
    background:#0b1728;
    padding:40px;
    border-radius:20px;

}


.performance-info h2 {

    color:#d4af37;

}
/* ABOUT PAGE */

.about-page {
    padding: 70px 8%;
}


.about-header {
    text-align: center;
    margin-bottom: 60px;
}


.about-header h1 {
    font-size: 45px;
    color: #d4af37;
}


.about-header p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}



.about-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}



.about-box {

    width: 350px;
    background: #10233d;
    padding: 35px;
    border-radius: 20px;
    text-align: center;

}



.about-box h2 {
    color: #d4af37;
}



.about-box p {
    line-height: 1.6;
}



.values {

    margin-top: 70px;
    text-align: center;

}



.values h2 {

    color: #d4af37;
    font-size: 35px;

}



.value-grid {

    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;

}



.value-card {

    width: 250px;
    background: #0b1728;
    padding: 30px;
    border-radius: 20px;
    text-align: center;

}



.value-card h3 {

    color: #d4af37;

}



.company-stats {

    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
    flex-wrap: wrap;

}



.company-stats h2 {

    font-size: 40px;
    color: #d4af37;

}



.company-stats p {

    font-size: 18px;

}
/* CONTACT PAGE */


.contact-page {

padding:70px 8%;

}



.contact-header {

text-align:center;
margin-bottom:60px;

}



.contact-header h1 {

font-size:45px;
color:#d4af37;

}



.contact-header p {

font-size:18px;

}



.contact-container {

display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;

}



.contact-info,
.contact-form {

background:#10233d;
padding:40px;
border-radius:20px;
width:350px;

}



.contact-info h2,
.contact-form h2 {

color:#d4af37;
text-align:center;

}



.contact-info p {

margin:20px 0;
font-size:17px;

}



.contact-form input,
.contact-form textarea {

width:100%;
padding:15px;
margin:10px 0;
border:none;
border-radius:10px;
background:#0b1728;
color:white;

}



.contact-form textarea {

height:120px;
resize:none;

}



.contact-form button {

width:100%;
padding:15px;
border:none;
border-radius:10px;
background:#d4af37;
color:#08111f;
font-size:18px;
cursor:pointer;

}



.contact-form button:hover {

opacity:0.8;

}
/* MOBILE RESPONSIVE */


@media (max-width: 768px) {


.header {

flex-direction:column;
padding:20px;

}



.logo {

font-size:24px;
text-align:center;

}



.navbar {

display:flex;
flex-direction:column;
align-items:center;
gap:15px;
margin-top:20px;

}



.navbar a {

font-size:16px;

}



/* GENERAL SECTIONS */


.about-preview,
.contact-page,
.stats {

padding:40px 5%;

}



.about-preview h1,
.contact-header h1 {

font-size:32px;

}



.about-preview p,
.contact-header p {

font-size:16px;

}



/* CARDS */


.stats {

display:flex;
flex-direction:column;
align-items:center;

}



.stat-box {

width:90%;
margin-bottom:20px;

}



.contact-container {

flex-direction:column;
align-items:center;

}



.contact-info,
.contact-form {

width:90%;
padding:25px;

}



.contact-form input,
.contact-form textarea {

font-size:16px;

}



.contact-form button {

font-size:16px;

}



footer {

text-align:center;
padding:20px;

}


}
/* HEADER */


.header {

display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
background:#08111f;

}


.logo {

font-size:26px;
font-weight:bold;
color:#d4af37;

}


.navbar {

display:flex;
gap:30px;

}


.navbar a {

color:white;
text-decoration:none;
font-size:16px;

}


.navbar a:hover {

color:#d4af37;

}


.menu-toggle {

display:none;
background:none;
border:none;
color:#d4af37;
font-size:30px;
cursor:pointer;

}



/* MOBILE HEADER */


@media(max-width:768px){


.header {

padding:20px;

}


.menu-toggle {

display:block;

}



.navbar {

display:none;
position:absolute;
top:75px;
left:0;
width:100%;
background:#08111f;
flex-direction:column;
text-align:center;
padding:20px;

}



.navbar a {

padding:15px;

}



.navbar.active {

display:flex;

}


}
@media(max-width:768px){

.navbar {

display:none;

}


.navbar.active {

display:flex;

}

}
/* COMPANY LOGO */


.logo {

display:flex;
align-items:center;
gap:12px;
white-space:nowrap;

}


.logo img {

width:50px;
height:50px;
object-fit:contain;

}


.logo span {

font-size:24px;
font-weight:bold;
color:#D4AF37;

}
@media(max-width:768px){


.logo img {

width:40px;
height:40px;

}


.logo span {

font-size:18px;

}


}
/* WHY US */


.why-us {

padding:80px 8%;
text-align:center;

}


.why-us h2,
.investment h2,
.cta h2 {

font-size:40px;
color:#d4af37;
margin-bottom:40px;

}


.why-container,
.investment-container {

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;

}



.why-box,
.investment-box {

width:300px;
background:#10233d;
padding:35px;
border-radius:20px;

}



.why-box h3,
.investment-box h3 {

color:#d4af37;
margin-bottom:15px;

}



.why-box p,
.investment-box p {

color:#cbd5e1;

}



/* INVESTMENT */


.investment {

padding:80px 8%;
text-align:center;

}



/* CTA */


.cta {

padding:80px 8%;
text-align:center;
background:#10233d;

}


.cta p {

font-size:18px;
margin-bottom:30px;

}
/* FOOTER */


.footer {

background:#040912;
padding:60px 8% 20px;

}



.footer-container {

display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;

}



.footer-column {

width:300px;

}



.footer-column h3 {

color:#d4af37;
font-size:22px;
margin-bottom:20px;

}



.footer-column p {

color:#cbd5e1;
line-height:1.7;

}



.footer-column a {

display:block;
color:white;
text-decoration:none;
margin:10px 0;

}



.footer-column a:hover {

color:#d4af37;

}



.footer-bottom {

border-top:1px solid rgba(255,255,255,0.1);
margin-top:40px;
padding-top:20px;
text-align:center;
color:#94a3b8;

}



@media(max-width:768px){


.footer-container {

flex-direction:column;

}


.footer-column {

width:100%;
text-align:center;

}


}
.market-rates {
padding:70px 8%;
text-align:center;
}


.market-rates h2 {
font-size:40px;
color:#d4af37;
margin-bottom:40px;
}


.rates-container {
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}


.rate-box {
background:#10233d;
width:280px;
padding:35px;
border-radius:20px;
}


.rate-box h3 {
color:#d4af37;
}


.rate-box p {
font-size:30px;
margin-top:20px;
}