/* Body */
html {
    scroll-behavior: smooth;
}

body {
    opacity: 0; /* Initially hide the body */
    animation: fadeIn 1.0s ease-in forwards; /* 1.5s fade-in animation */
}

@keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}

/* Navigation Bar */
.navbar .container-fluid {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

.navbar .navbar-brand {
    margin: 0 auto;
}

.navbar .left-side-icons, .navbar .right-side-icons {
    display: flex;
    align-items: center;
    position: absolute;
}

.navbar .left-side-icons {
    left: 10px;
}

.navbar .right-side-icons {
    right: 10px;
}

.navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
}

.navbar .nav-link i {
    color: #E60012;
    font-size: 20px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover i {
    color: #333;
}

.navbar .left-side-icons a, .navbar .right-side-icons a {
    color: #E60012;
    font-size: 20px;
    margin: 0 10px;
}

.nav-link {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

/* Offcanvas */
#languageOffCanvasLabel {
    font-size: 2rem;
}

#languageOffcanvas {
    max-width: 300px;
}

#languageOffcanvas .list-group-item {
    cursor: pointer;
    transition: background-color 0.3s;
}

#languageOffcanvas .list-group-item:hover {
    background-color: #f0f0f0;
}

/* Offcanvas Button Styling */
.btn-close {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: #333;
    opacity: 1;
}

.btn-close:hover {
    color: #e60012;
    transition: color 0.3s ease-in-out;
}

/* Offcanvas Header Styling */
.offcanvas-header {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 1rem 1.5rem;
}

.offcanvas-header h5 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Offcanvas Body Styling */
.offcanvas-body {
    background-color: #ffffff;
    padding: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.offcanvas-body .btn-link {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
}

.offcanvas-body .btn-link:hover {
    color: #e60012;
    text-decoration: underline;
}

/* Overall Offcanvas Styling */
.offcanvas {
    border-right: 1px solid #ddd;
}

/* Form Styling */
.contact-form-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #e60012;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}

p {
    color: #333;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
}

.form {
    margin-bottom: 15px;
}

.form-label {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    color: #333;
}

.form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

.btn-danger {
    background-color: #e60012;
    border: none;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #333;
}

.modal-content {
    border-radius: 8px;
}

.modal-title {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 8px;
    }

    .btn-danger {
        font-size: 1rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: #f9f9f9; 
    padding: 5rem;
    font-family: Arial, sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-col,
.about-col,
.account-col,
.social-col {
    flex: 1;
    min-width: 180px;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #E60012;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: #ccc;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
    font-size: 1.5rem;
    color: #333;
}

.footer .social-icon:hover {
    background-color: #333;
    color: #fff;
}


@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        align-items: center;
    }

    .footer-col,
    .about-col,
    .account-col,
    .social-col {
        width: 100%;
        text-align: center;
    }

    .footer .social-icons {
        justify-content: center;
    }
}