/* General body styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f8fa;
}

/* Header */
header {
    background: linear-gradient(135deg, #2d5988, #dc6c2c);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

/* Hero Title */
header .display-4 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Button styles */
.btn {
    font-size: 1.1rem;
    padding: 15px 30px;
}

.logo-container {
    width: 10%;
    background-color: whitesmoke;
    border-radius: 100%;
    /* Adjust the radius as needed */
    padding: 5px;
    margin: auto;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .logo-container {
        width: 20%;
        /* Adjust the percentage as needed */
    }
}

/* Services Section */
#services {
    background-color: #f9f9f9;
}

.service-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    border-bottom: 2px solid #f0f0f0;
    border-radius: 100%;
}

/* Card content */
.card-body {
    padding: 30px;
}

/* Footer */
footer {
    background-color: #2d5988;
}

/* Custom animations for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Ensure good contrast for text */
.text-muted {
    color: #6c757d !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header .display-4 {
        font-size: 2.5rem;
    }

    .service-card {
        margin-bottom: 20px;
    }
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #2d5988, #dc6c2c);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #ffffff;
}

#cta h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

#cta button {
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: white;
    color: #2d5988;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
}

#cta button:hover {
    background-color: #f4a261;
    /* Lighter Orange */
    color: white;
}

.modal-content {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.modal-header {
    background-color: #2d5988;
    color: white;
}

.modal-body input,
.modal-body textarea {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ddd;
}

.modal-footer button {
    border-radius: 5px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    #cta h2 {
        font-size: 2.5rem;
    }

    #cta p {
        font-size: 1rem;
    }

    #cta button {
        padding: 12px 25px;
    }
}

/* Contact Us Modal Styles */
.modal-content {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.modal-header {
    background-color: #2d5988;
    color: white;
    border-bottom: 1px solid #ddd;
}

.modal-header .modal-title {
    color: white;
}

.modal-body {
    padding: 30px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 12px;
}

.form-control:focus {
    border-color: #2d5988;
    box-shadow: none;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 10px;
}

.btn-close {
    background-color: transparent;
    border: none;
}

.btn-primary {
    background-color: #dc6c2c;
    border-color: #dc6c2c;
    color: white;
}

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

.btn-secondary {
    background-color: #ddd;
    border-color: #ddd;
}

.btn-secondary:hover {
    background-color: #ccc;
    border-color: #ccc;
}