/* ================================================
   AURUM BULLION - Premium Bullion Dealer Website
   Custom CSS Stylesheet
   ================================================ */

/* -------------------- 
   CSS Variables 
   -------------------- */
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --gold: #D4AF37;
    --gold-light: #E6C656;
    --gold-dark: #B8960C;
    --charcoal: #1a1614;
    --charcoal-light: #252120;
    --cream: #F5F0E6;
    --cream-dark: #E8E0D0;

    /* Backgrounds */
    --bg-dark: #141210;
    --bg-card: #1e1b18;
    --bg-secondary: #2a2622;

    /* Text */
    --text-primary: #F5F0E6;
    --text-secondary: #A69F96;
    --text-muted: #7A746C;

    /* Borders */
    --border-color: rgba(212, 175, 55, 0.2);
    --border-hover: rgba(212, 175, 55, 0.5);

    /* Gradients */
    /* --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8960C 50%, #E6C656 100%);linear-gradient(135deg, #f2d956 0%, #cb9a3b 50%, #f2d956 100%) */
    --gradient-gold: linear-gradient(135deg, #f2d956 0%, #cb9a3b 50%, #f2d956 100%);
    --gradient-dark: linear-gradient(180deg, #141210 0%, #1e1b18 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);

    /* Shadows */
    --shadow-gold: 0 4px 30px -5px rgba(212, 175, 55, 0.3);
    --shadow-elegant: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 109, 253, 0);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}
.form-control {
    display: block;
    width: 100%;
    padding:0.775rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #141210;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #7b682a;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


input::placeholder {
    /* Standard */
    color: #7b682a !important;
}
textarea::placeholder {
    /* Standard */
    color: #7b682a !important;
}

.form-control:focus {
    color: #ffffff;
    background-color: #141210;
    border-color: #7b682a;
    outline: 0;
    box-shadow: 0 0 0 .25rem #141210;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}


.logo_final {
    max-width: 420px;
}

img {
    max-width: 100%;
    height: auto;
}

/* -------------------- 
   Utility Classes 
   -------------------- */
.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px 0;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
}

/* -------------------- 
   Buttons 
   -------------------- */
.btn-luxury {
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-luxury:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
    color: var(--charcoal);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

/* -------------------- 
   Navigation 
   -------------------- */
#mainNavbar {
    padding: 15px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

#mainNavbar.scrolled {
    background: #151311;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-elegant);
    border-bottom: 1px solid var(--border-color);
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.logo-circle span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.navbar-brand:hover .brand-name {
    color: var(--gold);
}

.brand-tagline {
    font-size: 0.825rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    position: relative;
}

#navbarNav .navbar-nav {
    display: flex;
    gap: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--gold);
}

.navbar-nav .show1{
    color: var(--gold);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
    color: var(--gold);
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Navbar base */
.navbar {
    background-color: #000;
}

/* Dropdown container */
.luxury-dropdown {
    background-color: #0b0b0b;
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* gold touch */
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(15px);
    visibility: hidden;
    transition: all 0.35s ease;
}

/* Show on hover */
.nav-item.dropdown:hover .luxury-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Dropdown links */
.luxury-dropdown .dropdown-item {
    color: #fff;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect */
.luxury-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    color: #000;
    padding-left: 35px;
}

/* Remove bootstrap arrow */
.navbar .dropdown-toggle::after {
    display: none;
}

/* Products link hover */
.navbar .nav-link:hover {
    color: #d4af37;
}





.luxury-dropdown {
    background-color: #000000bf;
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid #483d1b;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    width: 210px;
}

.luxury-dropdown .dropdown-item {
    color: var(--text-primary);
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.luxury-dropdown .dropdown-item:hover {
    background: var(--gradient-gold);
    color: #000;
}

.dropdown-toggle i{
    transition: 0.4s all;
        padding-left: 3px;
}
.dropdown-toggle.show i {
    display: inline-flex;
    padding-left: 3px;
    transform: rotateX(180deg);
}




/* -------------------- 
   Hero Section 
   -------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    /* background: url('../images/banner1.png') center center / cover no-repeat; */
        background: url('../images/banner11.jpg');
            background-repeat: no-repeat;
            background-position:  center !important;
            background-size: cover;
    
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-section1 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/backbg.jpg') center center / cover no-repeat;
    padding-top: 80px;
}

.hero-section2 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/backbg1.jpg') center center / cover no-repeat;
    padding-top: 80px;
}

.hero-overlay1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(450deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.749) 50%, rgba(0, 0, 0, 0.823) 100%);
}

.hero-gold-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0.6;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 60px;
}

.hero-stats {
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--gold-light);
    transform: translateX(-50%) scale(1.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* -------------------- 
   About Section 
   -------------------- */
.about-section {
    background: var(--bg-card);
}

.about-image-wrapper {
    position: relative;
}

.about-image-glow {
    position: absolute;
    inset: -20px;
    background: var(--gold);
    opacity: 0.1;
    filter: blur(40px);
    border-radius: 20px;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image-glow {
    opacity: 0.2;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(20, 18, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.about-badge h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 0;
}

.about-badge p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text-secondary {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}

.feature-card i {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
    transition: var(--transition-smooth);
}

.feature-card:hover i {
    transform: scale(1.05);
}

.feature-card h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* -------------------- 
   Products Section 
   -------------------- */
.products-section {
    background: var(--bg-dark);
}

.product-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.product-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--bg-card) 100%);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(20, 18, 16, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    z-index: 1;
}

.product-content {
    padding: 25px;
}

.product-content1{
    text-align: center;
}

.product-content1 h3{
    text-align: center;
    color: var(--gold);
    padding: 20px;
    border-bottom: 1px solid #42391e;
        font-size: 24px;
}


.product-content1 h1 {
    text-align: center;
    padding: 20px;
font-size: 60px;
}

.product-content1 h1 b small{
    font-size: 20px;
}


.product-content1:hover h3{
    text-align: center;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.product-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-header h3 {
    color: var(--gold);
}

.purity-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 4px;
}

.product-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
}

.product-link:hover {
    color: var(--gold-light);
}

.product-link i {
    transition: var(--transition-smooth);
}

.product-link:hover i {
    transform: translateX(5px);
}

/* -------------------- 
   Services Section 
   -------------------- */
.services-section {
    background: var(--bg-card);
}

.service-card {
    display: flex;
    gap: 25px;
    background: var(--bg-secondary);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card:hover {
    border-color: var(--border-hover);
    background: rgba(42, 38, 34, 0.7);
}

.service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}
.service-icon1 {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--bg-dark) ;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.service-icon1 i {
    font-size: 2.75rem;
    color: var(--gold);
}
.service-card:hover .service-icon1 {
    box-shadow: var(--shadow-elegant);
        transform: scale(1.05);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--charcoal);
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-content h3 {
    color: var(--gold);
}

.service-content p {
    font-size: 0.938rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.compliance_one p {
     font-size: 1rem;
     color: var(--text-muted);
     line-height: 1.7;
     margin-bottom: 15px;
 }

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

/* -------------------- 
   Quote Section 
   -------------------- */
.quote-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/i1.jpg') center center / cover no-repeat fixed;
}

.quote-section1 {
    position: relative;
    padding: 120px 0;
    background: url('../images/i3.jpg') center center / cover no-repeat fixed;
}
.quote-section2 {
    position: relative;
    padding: 120px 0;
    background: url('../images/silver.jpg') center center / cover no-repeat fixed;
}
.quote-section3 {
    position: relative;
    padding: 120px 0;
    background: url('../images/i5.jpg') center center / cover no-repeat fixed;
}
.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0.88);
}

.quote-line-top,
.quote-line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.5;
}

.quote-line-top {
    top: 0;
}

.quote-line-bottom {
    bottom: 0;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -60px;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .quote-text {
        font-size: 2.25rem;
    }
}

.quote-author {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.quote-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* -------------------- 
   Why Choose Us Section 
   -------------------- */
.why-section {
    background: var(--bg-dark);
}

.value-card {
    padding: 30px 20px;
    transition: var(--transition-smooth);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    border-color: var(--gold);
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon::after {
    opacity: 0.3;
}

.value-icon i {
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.value-card:hover h4 {
    color: var(--gold);
}

.value-card p {
    font-size: 0.938rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-indicators {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.trust-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* -------------------- 
   Footer 
   -------------------- */
.footer-section {
    background: var(--bg-card);
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.938rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.938rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 3px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.social_icons ul{
    list-style: none;
    display: flex;
    padding: 0px;
    margin: 0px;
    gap: 20px;
}

.social_icons ul li .btn-luxury-outline {
padding: 10px 16px;
}

.social_icons ul li .btn-luxury-outline i {
    font-size: 20px;
}

.footer-contact a,
.footer-contact span {
    font-size: 0.938rem;
    color: var(--text-primary);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.certifications {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-gold-line {
    height: 4px;
    background: var(--gradient-gold);
}
.buy-sell-cover {
    display: inline-block;
    justify-content: center;
    float: left;
    padding: 0 17px;
    margin: 5px 0 0px;
    border-radius: 10px 0;
    width: 50%;
}
.hl-rate-cover {
    margin: 0px;
    float: left;
    width: 100%;
     padding: 0px 0;
}
.cover_bs {
    float: left;
    width: 100%;
    display: inline-block;
    background: #fff0;
    padding: 1px 0 0px 0;
}
.gold-cover-tittle {
    text-align: center;
    display: inline-block;
    width: 100%;
}

/* -------------------- 
   Responsive Adjustments 
   -------------------- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(20, 18, 16, 0.98);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .logo_final {
    max-width: 110px;
}
    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .about-image {
        height: 350px;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .quote-mark {
        font-size: 5rem;
        margin-bottom: -30px;
    }
}

/* -------------------- 
   Animations 
   -------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth hover transitions for all interactive elements */
a,
button,
.btn,
.card,
.feature-card,
.product-card,
.service-card,
.value-card {
    transition: var(--transition-smooth);
}



/* spot rate */

section.spot-rate{padding: 40px 0px;}
.gold-cover-tittle h4{background: var(--gradient-gold); padding:8px; border-radius: 7px; text-align: center;}
.gold-cover-tittle{    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);}
.hl-rate-cover{display: flex; justify-content: space-between;}
.hl-rate-cover p{margin: 0;}
.buy-sell-cover{padding: 10px;font-family: 'Poppins', sans-serif; }
.buy-sell-cover h5{       font-family: 'Poppins', sans-serif; 
    margin: auto;padding: 5px 15px;}
    .buy-sell-cover h6{font-family: 'Poppins', sans-serif; }
 .h {
        border-radius: 3px;
        background: #008000 !important;
        color: #fff !important;
        border-radius: 4px;
            padding: 5px 15px;
  
    margin: 10px 0px;
    }

    .l {
        border-radius: 3px;
        background: #dc0000 !important;
        color: #fff !important;
        border-radius: 4px;
          padding: 5px 15px;
 
    margin: 10px 0px;
    }

    .e {
        background: #0000;
        color: #ffffff;

    margin: 10px 0px;
    }