﻿:root {
    --primary-color: #005670;
    --secondary-color: #E1E37C;
    --text-color: #333;
    --background-color: #f8f9fa;
    --white: #fff;
    --grey: #BDBDBD
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.hero-section {
    background-color: var(--grey);
    padding: 4rem 0;
    margin-bottom: 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sub-hero-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.solutions-section {
    background-color: #fff;
    padding: 4rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-content {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 2rem;
    border-radius: 0 0 0.25rem 0.25rem;
}

.nav-tabs .nav-link {
    color: var(--primary-color);
}

    .nav-tabs .nav-link.active {
        color: #fff;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

    .btn-custom:hover {
        background-color: #00405c;
        color: #fff;
    }
@keyframes fadeInOutDelayed {
    0%, 50% {
        opacity: 0;
    }

    55%, 100% {
        opacity: 1;
    }
}

.fade-text {
    position: relative;
    height: 70px; /* Adjust height as needed */
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}

    .fade-text h1 {
        position: absolute;
        width: 100%;
        animation: fadeInOut 20s linear infinite;
    }

        .fade-text h1:nth-child(2) {
            animation: fadeInOutDelayed 20s linear infinite;
        }