﻿:root {
    --fbr-blue: #005baa;
    --fbr-green: #2e7d32;
    --fbr-orange: #ff9800;
    --text-light: #ffffff;
    --text-dark: #333333;
    --topbar-bg: #003366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* TOP CONTACT BAR */
.top-contact-bar {
    background-color: var(--topbar-bg);
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.contact-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

    .contact-item i {
        margin-right: 0.5rem;
        color: var(--fbr-orange);
    }

    .contact-item a {
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .contact-item a:hover {
            color: var(--fbr-orange);
        }

/* Floating Buttons */
.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 100;
    transition: all 0.3s ease;
}

    .float-btn:hover {
        transform: scale(1.1);
    }

.whatsapp-btn {
    right: 40px;
    background-color: #25D366;
    color: white;
}

.contact-btn {
    left: 40px;
    background-color: var(--fbr-orange);
    color: white;
}

/* Rest of your existing CSS remains the same */
body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f5f5f5;
    /* padding-bottom: 80px; */
}

header {
    /* background: linear-gradient(135deg, var(--fbr-blue), #003366); */
    background: linear-gradient(178deg, rgba(27, 127, 204, .8), #005baa);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.container-small {
    width: 400px;
    max-width: 400px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    height: 70px;
}

ul {
    display: block;
    list-style: disc;
}

    ul li {
        margin-left: 1.5rem;
    }

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: black;
}




.section-content {
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    background-color: var(--fbr-blue);
}


.home-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem;
    color: darkgray;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    color: var(--text-light);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

    .btn:hover {
        background-color: #e68a00;
        transform: translateY(-2px);
    }

section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--fbr-blue);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--text-light);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card h3 {
        
        margin-bottom: 1rem;
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--fbr-green);
    margin-bottom: 1rem;
}
 

.steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: #167ac6;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

    .footer-links a {
        color: var(--text-light);
        margin: 0 1rem;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: var(--fbr-orange);
        }

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }

        nav ul li {
            margin: 0 0.75rem;
        }

    .hero {
        height: 300px;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .compliance-content {
        flex-direction: column;
    }

    .compliance-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    /* Adjust floating buttons for mobile */
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
    }

    .whatsapp-btn {
        right: 20px;
    }

    .contact-btn {
        left: 20px;
    }

    /* Top contact bar mobile */
    .contact-container {
        justify-content: center;
        gap: 1rem;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .client-card {
        border: 1px solid #dee2e6;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        background-color: #fff;
        transition: all 0.3s;
        height: 100%;
    }
}
