/* 
 * Precious Flux Styles
 * Primary Colors: Gold (#B18A2B), White (#FFFFFF), Dark (#1A1A1A)
 * Font: Montserrat
 */

:root {
    --color-gold: #B18A2B;
    --color-gold-hover: #967423;
    --color-dark: #1A1A1A;
    --color-dark-grey: #333333;
    --color-light-grey: #F9F9F9;
    --color-white: #FFFFFF;
    --font-main: 'Montserrat', sans-serif;
    --shadow-card: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    font-family: var(--font-main);
    color: var(--color-white);

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--color-white);
}

h2 {
    font-size: 2.5rem;
    color: var(--color-white);
}

h3 {
    font-size: 1.5rem;
    color: rgb(230, 145, 56);
}
p{
    color: var(--color-white);
    font-size:18px
}

.text-gold {
    color: var(--color-gold);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.divider-gold {
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 10px auto 30px;
}

.divider-gold.left {
    margin: 10px 0 30px;
}

.divider-white {
    width: 60px;
    height: 4px;
    background-color: var(--color-white);
    margin: 10px auto 30px;
}

.divider-white.left {
    margin: 10px 0 30px;
}

.section-header {
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
}

.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn-gold {
    background-color: var(--color-gold);
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-gold);
}

.btn-dark:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.full-width {
    width: 100%;
}
section#about{
    scroll-margin-top: 200px !important;  /* height of navbar */
}
section {
  scroll-margin-top: 120px; /* height of navbar */
}

/* Header */
#header {
    background-color: #111;
    /* Dark background */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0px 0px 0px;
}

/* .header-container styles removed to allow Bootstrap grid layout */

.centered-logo {
    margin-bottom: 15px;
    text-align: center;
}

.centered-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 5px;
    border: 2px solid var(--color-gold);
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    /* Diamond shape effect */
}

.logo-icon i {
    transform: rotate(-45deg);
    /* Counter-rotate icon */
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
}

.brand-name .text-gold {
    color: #fff;
    /* Flip colors for contrast if needed, or keep gold. Let's make "GENUINE" gold and "BULLION" white based on class usage in HTML */
}

/* Fix for the HTML where I put text-gold on BULLION. 
   In the image, text is Gold. 
   Let's adjust: "PRECIOUS FLUX" is gold. 
   So .brand-name should be gold. 
*/

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: #cdcdcd;
    /* Light grey text */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
    /* border-bottom-color: var(--color-gold); */
}

/* Remove old button style for contact in nav if present, 
   but we removed class="btn-contact" in HTML update 
*/

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-color: #000; /* Fallback */
    overflow: hidden; /* Ensure video doesn't spill out */
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 50%); /* Slightly Darker overlay to make text pop over video */
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 0.6; /* Take up 60% of the space */
    text-align: left;
}

.hero-text h1 {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero-black {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-hero-black:hover {
    background-color: #000;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-hero-black i {
    font-size: 1.2rem;
}

.btn-hero-black .text-gold {
    color: var(--color-gold);
}

.btn-hero-black .text-white {
    color: #fff;
}
.hero-bottom{
    padding: 70px 0px;
}
.hero-bottom h3{
    height:200px; display:flex; align-items:center;
    text-transform: uppercase;
}



/* Market Chart */
#market-chart {
    padding: 70px 0;
}

/* About Section */
#about {
    padding-bottom: 70px;

}

footer h3{
    font-size: 22px;
}
footer b{
    color: var(--color-gold);
	font-size:15px;
}
.about-heading {
    color:  #e69138;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-subheading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content-wrapper {
    position: relative;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.about-c-text {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px 0;
    font-weight: 400;
}
.about-bt{
    border-top: 2px solid #faebd74a;
    width: 40%;
}
.about-bb{
    margin-left: 60%;
    border-bottom: 2px solid #faebd74a;
    width: 40%;
    text-align: right;
}
.line-decoration {
    height: 1px;
    background-color: #faebd74a; /* Subtle line color */
    width: 40%;
    position: absolute;
}

.line-decoration.top-left {
    top: 0;
    left: 0;
}

.line-decoration.bottom-right {
    bottom: 0;
    right: 0;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services */
.services-section {
    position: relative;
    padding: 70px 0;
    /* Use the hero bg or a similar dark gold image if available, else fallback to dark hex */
    background: url('../../assets/images/bg-services.png') no-repeat center center/cover; 
    background-color: #000;
    background-attachment: fixed;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 70%); /* Heavy dark overlay */
    z-index: 1;
}

.section-title {
    color: #e69138;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.service-item {
    padding: 10px;
}
.service-item img{
    width: 30px;
    height: 30px;
}




.service-content {
    padding-left: 10px;
}

.service-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}
.sec-why-choose-us{
    padding: 70px 0;
}

/* Contact */
#contact {
    
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-list {
    margin-top: 30px;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-list i {
    color: var(--color-dark);
    background: var(--color-white);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;  
    border-color: var(--color-gold);
}

/* Footer */
footer {
    
    color: #aaa;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #hero{
        height: 40vh;
        min-height: 400px;
    }
    .hero-text h1{
        font-size: 35px;  
    }
    .hero-subtitle{
        font-size: 20px;
    }
    .btn-hero-black{
        text-align: left;
        padding: 15px 10px;
        font-size:12px;
        width: 150px;
        text-transform: capitalize;
    }
    .hero-bottom h3{
        font-size:20px;
    }
    .header-container {
        flex-wrap: wrap;
    }

    .centered-logo {
        margin-bottom: 0;
        text-align: left;
    }

    /* Override any flex centering on the link inside centered-logo if needed, but flex-direction column on <a> is fine if we align-items start */
    .centered-logo a {
        align-items: flex-start;
    }
    
    .brand-name {
        font-size: 0.9rem; /* Smaller on mobile */
        margin-top: 5px;
        text-align: left;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 8px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
       
        background: #111; /* Dark bg */
        position: absolute;
        top: 100%;
        left: -50%;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        border-top: 1px solid #333;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-container,
    .contact-container,
    .footer-grid {
        grid-template-columns: 0fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Products Section */
/* How It Works Section */
.hiw-section {
    
    padding: 70px 0;
    color: #fff;
    overflow: hidden; /* Prevent floating image overflow */
}

.hiw-title {
    color:  #e69138;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hiw-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}

.step-item {
    position: relative;
    padding-left: 20px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0;
}

.floating-img {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    margin: 60px 0px;
    position: relative; /* Ensure container is relative for absolute children */
    overflow: hidden; /* Prevent overflow */
}

.mission-bg-left {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    max-height: 100%; /* Adjust size as needed */
    width: auto;

}

/* Ensure content sits above bg */
.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-heading {
    color: #e69138; /* Or var(--color-gold) but simplified for orange hue in img */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* .mission-line {
    height: 1px;
    background-color: #333;
    width: 200px;
    position: absolute;
}

.mission-line.top-right {
    top: -20px;
    right: 0;
}

.mission-line.bottom-left {
    bottom: -20px;
    left: 0;
} */

/* Problem & Solution Section */
.ps-section {
   
    padding: 70px 0px;
}

.ps-card {
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #fff;
}

.ps-card:hover {
    transform: translateY(-5px);
    border: 1px solid #e69138;
}



.ps-title {
    color: rgb(230, 145, 56); /* Gold/Orange */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ps-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 400;
}
/* INITIAL STATE */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* FADE IN */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* FADE RIGHT */
.fade-right {
  transform: translateX(-50px);
}

/* FADE LEFT */
.fade-left {
  transform: translateX(50px);
}

/* FADE UP */
.fade-up {
  transform: translateY(50px);
}
