/* Site-specific overrides - Finbiz Theme */

/* Reset conflicting Bootstrap styles */
.container {
    max-width: 1320px;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Override any Bootstrap margin/padding that conflicts */
.main-header .navbar {
    padding: 0;
    margin: 0;
}

/* Fix for Bootstrap's default body margin */
body {
    margin: 0;
    padding: 0;
}

/* Additional utility classes */
.text-primary-color {
    color: #DF0A0A !important;
}

.bg-primary-color {
    background-color: #DF0A0A !important;
}

.text-secondary-color {
    color: #1C2539 !important;
}

.bg-secondary-color {
    background-color: #1C2539 !important;
}

/* Value Propositions Section - Below Hero */
.value-propositions-section {
    background: var(--secondaryColor, #1C2539);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}
.value-prop-card {
    text-align: center;
    padding: 25px 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.value-prop-card:last-child {
    border-right: none;
}
.vp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(223, 10, 10, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.vp-icon i {
    font-size: 20px;
    color: var(--primaryColor, #DF0A0A);
}
.value-prop-card h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.value-prop-card p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    gap: 2px;
}
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.lang-btn:first-child {
    border-radius: 3px 0 0 3px;
}
.lang-btn:last-child {
    border-radius: 0 3px 3px 0;
}
.lang-btn.active {
    background: #fff;
    color: var(--primaryColor, #DF0A0A);
    border-color: #fff;
}
.lang-btn:hover:not(.active) {
    background: rgba(255,255,255,0.15);
    color: #fff;
}