* {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
}

.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #375f93;
    color: white;
}

.navbar-brand .logo-img {
    width: 200px;
}

.navbar .nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    padding: 0.5rem 1rem !important;
    border-radius:  30px;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .navbar .nav-link {
        padding-left: 0 !important;

    }
}

.navbar .nav-link:hover {
    text-decoration: underline;
    background-color: #007ACC;
    transition: background-color 0.3s;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}

.navbar .navbar-toggler {
    border: unset;
}

.navbar .navbar-toggler:focus {
    box-shadow: unset;
}

.navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e ");
}

.btn {
    padding: 12px 22px !important;
    border: 1px solid transparent !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    height: unset !important;
    text-decoration: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    opacity: 1 !important;
    transition: 0.3s !important;
}

.btn:hover {
    text-decoration: unset;
}

.btn-primary {
    background-color: #007ACC !important;
    color: white !important;

    &:hover {
        background-color: #254063 !important;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ehbo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

}

.hero-content {
    padding: 2rem;
    max-width: 800px;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form Styles */
.form-section {
    background: #fff;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.form-title {
    color: #375f93;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #375f93;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-label {
    color: #375f93;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, .form-select, textarea.form-control {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
}

.form-control:focus, .form-select:focus, textarea.form-control:focus {
    background-color: #fff;
    border-color: #375f93;
    box-shadow: 0 0 0 0.2rem rgb(55, 95, 147);
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    color: #333;
    margin-left: 0.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.btn-submit {
    background-color: #007ACC;
    border-color: #375f93;
    color: white;
    padding: 12px 40px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #375f93;
    border-color: #375f93;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {    
    .form-section {
        padding: 2rem 1.5rem;
    }
}

.footer-section {
    background-color: #375f93;
    color: #ecf0f1;
    margin-top: 4rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-text {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #fff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    color: white;
    font-size: 1.2rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #375f93;
    transform: translateX(5px);
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
}