html,
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar-custom {
    background-color: #0c4e89;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #fff;
}

.navbar-custom .nav-link:hover {
    color: #ffc107;
}

.contact-section {
    background-color: #f8f9fa;
    padding: 60px 0 60px 0;
    /* increased bottom padding slightly */
    margin-bottom: 20px;
    /* small space between section and footer */
}

.form-control {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-send {
    background-color: #dc0000;
    color: white;
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-send:hover {
    background-color: #b80000;
}

.logo-container {
    text-align: right;
    margin-bottom: 0;
    /* previously 180px */
    margin-top: 0px;
    /* small gap above the logo */
}

.logo-container img {
    max-width: 120px;
    height: auto;
}


.info-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.email-link {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
}

/* Animation styles */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s ease-out forwards;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s ease-out forwards;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideInLeft {
    to {
        opacity: 2;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 2;
        transform: translateX(0);
    }
}

/* Footer spacing fix */
footer {
    margin-top: 0 !important;
    padding-top: 20px;
}

footer {
    background-color: #0c4e89;
    color: #fff;
    margin-top: auto;
}

footer a {
    color: #ffc107;
}

.contactus-brand {
    align-items: center;
    padding: 50px;
}

.contactus-brand-img {
    width: 100px;
    height: auto;
}