/* General Styles */
body {
    margin: 0;
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
    color: #1E4D84;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #3895FF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav .nav-links li {
    margin-left: 20px;
}

nav .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: #1E4D84;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0 20px;
    background-color: #3895FF;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}


.cta-button {
    background-color: #1E4D84;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #103963;
}

/* Business Section */
.business-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    color: #1E4D84;
}

.business-section:nth-child(even) {
    background-color: #ebebeb;
}

.business-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business-logo {
    height: 80px;
    margin-bottom: 20px;
}

.business-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.business-text p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.business-button {
    background-color: #3895FF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.business-button:hover {
    background-color: #1E4D84;
}

.blue-button {
    background-color: #1E4D84;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.blue-button:hover {
    background-color: #0b2442;
}
/* Contact Section */
.contact-section {
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
    padding: 60px 20px;
    text-align: center;
    background-color: #3895FF;
    color: white;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-section form {
    display: flex;
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

.contact-section button {
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
    background-color: #1E4D84;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section button:hover {
    background-color: #103963;
}

/* Success Message */
.success-message {
    display: none; /* Initially hidden */
    margin-top: 20px;
    font-size: 1rem;
    color: #ffffff; /* Success color */
}

/* Footer */
/* Footer */
footer {
    background-color: #1E4D84;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3895FF;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .business-logo {
        height: 60px;
    }

    .business-text h2 {
        font-size: 1.75rem;
    }

    .business-text p {
        font-size: 0.95rem;
    }

    .cta-button, .business-button, .contact-section button {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    nav .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .business-logo {
        height: 50px;
    }

    .business-text h2 {
        font-size: 1.5rem;
    }

    .business-text p {
        font-size: 0.9rem;
    }

    .cta-button, .business-button, .contact-section button {
        padding: 10px 20px;
    }
}

/* Hero Section */
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cursor {
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}
html {
    scroll-behavior: smooth;
}
/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #103963;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0c2742;
}
/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1E4D84;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #1E4D84;
    font-family: 'Atkinson Hyperlegible Mono', sans-serif;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    background-color: #3895FF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1E4D84;
}

/* Thank You Message */
.thank-you-message {
    margin-top: 20px;
    font-size: 1rem;
    color: #3895FF;
    font-weight: 500;
}

    /* Style for the hamburger menu */
    .menu-toggle {
        display: flex;
        cursor: pointer;
        width: 30px; /* Smaller width */
        height: 24px; /* Smaller height */
        position: relative;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease;
    }

    /* Style for each bar in the hamburger */
    .menu-toggle .bar {
        display: block;
        width: 100%;
        height: 4px; /* Smaller and thicker bars */
        background-color: white;
        transition: transform 0.3s ease; /* Smooth rotation */
        position: absolute;
        left: 0;
    }

    /* Bar positioning */
    .menu-toggle .bar:nth-child(1) {
        top: 0;
    }

    .menu-toggle .bar:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-toggle .bar:nth-child(3) {
        bottom: 0;
    }

    /* When the hamburger menu is active (open), rotate the bars to be vertical */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(90deg);
        top: 0;
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: rotate(90deg);
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(90deg);
        bottom: 0;
    }

    /* Style for the navigation menu */
    nav .nav-links {
        display: flex;
        flex-direction: column;
        background: #3895FF;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px;
        opacity: 0;
        transform: translateY(-20px); /* Start slightly above */
        transition: transform 0.3s ease, opacity 0.3s ease; /* Slide down and fade in */
    }

    /* Active state of the navigation menu */
    nav .nav-links.active {
        opacity: 1;
        transform: translateY(0); /* Slide into view */
    }

    nav .nav-links li {
        margin-bottom: 10px;
    }

    /* Ensure the menu appears on all screen sizes */
    @media (max-width: 768px) {
        .menu-toggle {
            display: flex;
        }

        nav .nav-links {
            display: none;
        }

        nav .nav-links.active {
            display: flex;
        }
    }

    /* For all screen sizes, ensure hamburger icon and sliding menu */
    @media (min-width: 769px) {
        .menu-toggle {
            display: flex;
        }

        nav .nav-links {
            display: none; /* Hide menu by default */
        }

        nav .nav-links.active {
            display: flex; /* Show menu when active */
        }
    }
    .hero-section {
        position: relative;
        background-image: url('/images/home.gif');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        z-index: 1;
    }
    
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Adjust transparency as needed */
        z-index: -1;
    }

