﻿:root {
    --primary-color: #002855;
    --secondary-color: #28a745;
    --dark-blue: #0a192f;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

.navbar-brand img {
    max-height: 45px;
}


#contactForm input,
#contactForm textarea {
    color: #000 !important;
    background-color: #fff !important; 
}

    #contactForm input::placeholder,
    #contactForm textarea::placeholder {
        color: #777 !important; 
    }


.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 85, 0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.card-service {
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 2.5rem;
    border-radius: 10px;
}

    .card-service:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.feature-item img {
    border-radius: 10px;
}

.footer {
    background-color: var(--dark-blue);
    color: white;
}

    .footer a {
        color: #a0a0a0;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer a:hover {
            color: white;
        }

.social-icons a {
    font-size: 1.5rem;
}

.list-group-item,
.list-group-item i {
    color: #333333 !important;

}

.list-group-item {
    color: #333333 !important;

}


    .list-group-item i.fa-check-circle {
        color: var(--secondary-color) !important;

    }
