@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/* General Body Styling */
body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar Styling */
.navbar {
    background-color: transparent; /* Make navbar background transparent */
    padding: 1rem;
    position: absolute; /* Position it on top of the hero section */
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Add slight shadow for visibility */
    z-index: 1000; /* Ensure navbar is on top */
}

    .navbar a {
        color: white;
        text-decoration: none;
        margin: 0 1rem;
        font-weight: 500;
    }

/* Navbar Toggler */
.navbar-toggler {
    border-color: white; /* Change border color to white */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 30 30"%3E%3Cpath stroke="white" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E'); /* Change icon color to white */
}

/* Hero Section Styling */


    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .hero-section p {
        font-size: 1.5rem; /* Adjusted for better readability */
    }

/* Content Section Styling */
/*.content-section {
    padding: 3rem 1rem;
}*/

/* Footer Styling */
.footer {
    background-color: white;
    color: black;
    /*padding: 1.5rem;*/
    text-align: left;
}

    .footer a {
        color: white;
        text-decoration: none;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 1rem; /* Less padding for smaller screens */
    }

        .hero-section h1 {
            font-size: 2.5rem; /* Smaller font size for mobile */
        }

        .hero-section p {
            font-size: 1.2rem; /* Smaller font size for mobile */
        }

    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* Contact Form Styling */
.contact-form {
    background-color: #f1ebe5;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    .contact-form label {
        display: block;
        font-weight: bold;
        margin-top: 0.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .contact-form button {
        background-color: #002a5b;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        cursor: pointer;
        font-size: 1rem;
        margin-top: 1rem;
    }
