:root {
    --primary-color: #ff9900;
    --secondary-color: #333;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --font-family: 'Roboto Condensed', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.navbar-custom {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff;
}

.navbar-custom .navbar-nav.me-auto {
    margin-right: auto;
}

.navbar-custom .navbar-nav.ms-auto {
    margin-left: auto;
}

.navbar-custom .nav-link:hover {
    color: #000;
}

.hero-section {
    background: #ff9900;
    background-size: cover;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-section a.btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin: 0.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.features-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.features-section .card-custom {
    border: none;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-section .card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.features-section .card-custom .card-body {
    padding: 2rem;
    text-align: center;
}

.features-section .card-custom .card-body i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgb(14, 59, 99);
}

.features-section .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.features-section .card-text {
    font-size: 1rem;
    color: var(--text-color);
}

.cta-section {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
}

.cta-section h2,
.cta-section p {
    color: #fff;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e68a00;
    border-color: #e68a00;
}

.btn-outline-light {
    border-color: #fff;
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

@media (min-width: 992px) {
    .navbar-custom {
        position: fixed;
        width: 100%;
        z-index: 1000;
        top: 0;
        left: 0;
    }

    body {
        padding-top: 70px; /* Adjust this value based on the navbar height */
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item.ms-2 {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}