:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8860B;
    --light-gold: #F5E8AA;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E8AA 100%);

    /* Light Theme Default */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-primary: #212529;
    --text-secondary: #3E3E3E;
    --text-muted: rgba(35, 39, 43, 0.75) !important;
    --border-color: #E9ECEF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --theme-toggler: #FBD400;
}

/* Dark Theme Variables */
.dark-theme {
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-card: #1A1A1A;
    --text-primary: #F5F5F5;
    --text-secondary: #CCCCCC;
    --text-muted: rgba(199, 199, 199, 0.75) !important;
    --border-color: #333333;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --theme-toggler: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-muted);
}

/* Custom Utility Classes */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-primary-custom {
    background-color: var(--bg-primary) !important;
}

.bg-secondary-custom {
    background-color: var(--bg-secondary) !important;
}

.bg-card-custom {
    background-color: var(--bg-card) !important;
}

.gradient-gold {
    background: var(--gold-gradient) !important;
}

.border-custom {
    border-color: var(--border-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md) !important;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: #000;
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Header & Navigation */
.navbar {
    padding: 20px 0;
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.dark-theme .navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.dark-theme .navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}
.navbar-brand img {
    width: 230px;
}


.navbar-brand span {
    color: var(--primary-gold);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--text-primary) !important;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===============================
           FONT AWESOME NAVBAR TOGGLER
        ================================ */

.custom-fa-toggler {
    border: none;
    padding: 6px 10px;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
}

.custom-fa-toggler i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #000;
}

/* DARK THEME */
.dark-theme .custom-fa-toggler i {
    color: #fff;
}

/* Hover */
.custom-fa-toggler:hover {
    color: var(--theme-toggler);
}

/* Focus fix */
.custom-fa-toggler:focus {
    box-shadow: none;
}

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

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--theme-toggler);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: 15px;
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    transform: rotate(30deg);
    box-shadow: var(--shadow-md);
}

.theme-toggle i {
    font-size: 1.2rem;
}

.dark-theme .theme-toggle .fa-sun {
    display: none;
}

.dark-theme .theme-toggle .fa-moon {
    display: block;
}

.theme-toggle .fa-sun {
    display: block;
}

.theme-toggle .fa-moon {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 0;
}

/* Pulse Animation for Extra Attention */

.hero-badge {
    margin-bottom: 25px;
}

.hero-badge-inner {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

@media screen and (max-width: 480px) {
    .hero-badge-inner{
        padding: 14px 12px;
        font-size: 14px;
    }

    .navbar-brand img{
        width: 200px;
    }
}



.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.hero-content h1 span {
    color: var(--primary-gold);
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 3rem;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 10px;
    border-radius: 10px;
    background: var(--primary-gold);
}

.stat-item {}


.stat-item h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.8s ease;
    border: 1px solid var(--border-color);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Lead Capture Form */
.lead-form-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.lead-form-container p {
    color: var(--text-secondary);
    font-weight: 500;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.form-control {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--bg-card);
    border-color: var(--primary-gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.form-check-label {
    color: var(--text-secondary);
}

/* Services Section */
.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #BDBDBD;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-gold);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.2));
    transform: scale(1.05);
}

/* Digital Marketing Focus Section */
.dm-feature-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border-left: 5px solid var(--primary-gold);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid #BDBDBD;
}

.dm-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dm-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/* Process Section */
.process-step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}




/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    color: var(--text-secondary);
}

.testimonial-text::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-gold);
    font-family: Georgia, serif;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Stats Counter */
.counter-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid #BDBDBD;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.counter-box p {
    font-weight: 600;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(#D4AF37F2, rgba(0, 0, 0, 0.85)), url('../images/business-people-meeting-room-discussing-charts.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 20px;
}



.cta-content {
    max-width: 992px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 5px;
}

.cta-content h2 {
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #212529;
    padding-top: 80px;
    color: #FFFFFF;
}

.dark-theme .footer {
    background-color: #000000;
}

.footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #FFFFFF;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: var(--gold-gradient);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-cta:hover {
    transform: scale(1.1);
    color: #000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .section-padding {
        padding: 80px 0;
    }

    .lead-form-container {
        margin-top: 50px;
    }

    .nav-calltoaction {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .lead-form-container {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .hero-section {
        padding: 150px 0 80px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .counter {
        font-size: 2.5rem;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 12px 28px;
    }



    .theme-toggle {
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }
}