html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #0a2f56, #2d7fba);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #c0e5f3;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container-hero {
    background-image: url('../header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2d7fba;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto;
    color: #c0e5f3;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

.custom-navbar {
    backdrop-filter: blur(6px);
    background-color: rgba(10, 47, 86, 0.85);
    background: linear-gradient(135deg, #0a2f56, #154a7f);
    border-bottom: 1px solid #c0e5f3;
}

.custom-navbar a {
    color: white !important;
    font-weight: bold;
}

.custom-navbar a:hover {
    color: #c0e5f3 !important;
}

.nav-link {
    color: #c0e5f3;
}

.nav-link:hover {
    color: #c0e5f3;
}

.btn-primary:hover {
    background-color: #0069d9;
    transform: scale(1.05);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-btn {
    background-color: #2d7fba !important;
    color: #c0e5f3 !important;
}

.custom-btn:hover {
    background-color: #0a1d2f !important;
}

/* ✅ Global input + textarea style (used for ALL forms sitewide) */
input.form-control,
textarea.form-control {
    background-color: #c0e5f3;
    color: #0a2f56;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #0a2f56;
    opacity: 0.6;
}

input.form-control:focus,
textarea.form-control:focus {
    background-color: #c0e5f3;
    color: #0a2f56;
    outline: none;
    border: 2px solid #0a2f56;
    box-shadow: 0 0 0 0.2rem rgba(10, 47, 86, 0.25);
}

.hero {
    height: 50vh;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    color: #0a1d2f;
}

.heroabout {
    background: linear-gradient(135deg, #0a2f56, #2d7fba);
    padding: 60px 20px;
}

.blockquote {
    border-left: 4px solid #79c4e6;
    padding-left: 20px;
    font-size: 1.1rem;
}

.section {
    padding: 40px 20px;
}

.section h2 {
    color: white;
    margin-bottom: 20px;
}

.section p {
    color: #0dcaf0;
}

.about-us, .services {
    padding: 70px 20px;
}

.about-us h2, .services h2 {
    color: #f0f0f0;
}

.about-us p, .services p {
    color: #c0e5f3;
}

.services h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    color: white;
}

.cta {
    color: white;
    padding: 30px 10px;
}

.cta h2 {
    font-size: 2rem;
}

.cta p {
    font-size: 1.2rem;
}

.card {
    background: linear-gradient(135deg, #0a1d2f, #0b2e56);
    color: #c0e5f3;
    border: none;
    border-radius: 12px;
}

/*
 * .card:hover {
 *    transform: translateY(-5px);
 *    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
 * }
 */

.card h3 {
    color: white;
}

.card-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        height: 65vh;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-text a.btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .card {
        margin-bottom: 20px;
    }

    .row {
        flex-direction: column;
    }
}
