body {
    background-color: #FFFFFF;
    color: white;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    background-color: #FFFFFF;
    height: 150px;
    border-bottom: 4px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

/* Logo */
.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 15px; /* Adjust to the left */
}

/* Hamburger Menu */
.navbar .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 15px; /* Align to the right */
    z-index: 1000; /* Ensure it appears on top */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #003366;
}

/* Menu (Align right on desktop) */
.navbar .menu {
    display: flex;
    gap: 20px;
    margin-left: auto; /* Align menu items to the right */
}

.navbar .menu a {
    color: #003366;
    text-decoration: none;
    font-size: 18px;
}

/* Mobile Menu */
@media (max-width: 768px) {
    /* Hide menu by default */
    .navbar .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        text-align: center;
        z-index: 999; /* Menu under the hamburger but above other content */
    }

    .navbar .menu a {
        padding: 15px;
        display: block;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex; /* Shows hamburger on mobile */
    }

    /* Show menu when active */
    .menu.active {
        display: flex; /* Displays the menu when it has the 'active' class */
    }
}
@media (min-width: 769px) {
    .navbar .hamburger {
        display: none;
    }
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
    background-color: #FFFFFF;
    min-height: 200px;
    position: relative; /* Ensure this section has normal stacking context */
}

.info-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    border: 2px solid #ff8c00; /* Orange border (#ff8c00) */
}

.info-box.visible {
    opacity: 1;
}

.info-box h3 {
    font-size: 24px;
    color: #003366; /* Darker blue */
    margin-bottom: 10px;
    font-weight: bold; /* Make the text bold */
}


.info-box p {
    font-size: 16px;
    color: #00008b;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4682b4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.read-more:hover {
    background-color: #E07B00;
}

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

    .info-box {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Benefits Container */
.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
}

.benefits-section {
    background-color: #000000;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #5914ef;
    flex: 1;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.benefits-section.visible {
    opacity: 1;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}
/* Fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    background-color: #FFFFFF;
    height: 150px;
    border-bottom: 4px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

/* Logo */
.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 20px; /* Default indent for mobile devices */
}

/* For larger screens (PC), set a 200px indent */
@media (min-width: 769px) {
    .navbar .logo {
        left: 200px; /* Set a larger indent for PC screens */
    }
}


/* Hamburger Menu */
.navbar .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 15px; /* Align to the right */
    z-index: 1000; /* Ensure it appears on top */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #003366;
}

/* Menu (Align right on desktop) */
.navbar .menu {
    display: flex;
    gap: 20px;
    margin-left: auto; /* Align menu items to the right */
}

.navbar .menu a {
    color: #003366;
    text-decoration: none;
    font-size: 18px;
}

/* Mobile Menu */
@media (max-width: 768px) {
    /* Hide menu by default */
    .navbar .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        text-align: center;
        z-index: 999; /* Menu under the hamburger but above other content */
    }

    .navbar .menu a {
        padding: 15px;
        display: block;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex; /* Shows hamburger on mobile */
    }

    /* Show menu when active */
    .menu.active {
        display: flex; /* Displays the menu when it has the 'active' class */
    }
}
@media (min-width: 769px) {
    .navbar .hamburger {
        display: none;
    }
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
    background-color: #FFFFFF;
    min-height: 200px;
    position: relative; /* Ensure this section has normal stacking context */
}

.info-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    border: 2px solid #ff8c00; /* Orange border (#ff8c00) */
}

.info-box.visible {
    opacity: 1;
}

.info-box h3 {
    font-size: 24px;
    color: #003366; /* Darker blue */
    margin-bottom: 10px;
    font-weight: bold; /* Make the text bold */
}


.info-box p {
    font-size: 16px;
    color: #00008b;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4682b4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.read-more:hover {
    background-color: #4682b4;
}


.load-more {
    background-color: #E07B00; /* Background color */
    color: white; /* White text */
    padding: 10px 20px; /* Padding to make the button larger */
    font-size: 16px; /* Font size */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Slightly rounded edges */
    display: inline-block; /* Ensure it behaves like a block but is inline */
    text-align: center; /* Center the text inside */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.load-more:hover {
    background-color: #C06800; /* Slightly darker shade for hover effect */
}



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

    .info-box {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Benefits Container */
.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
}

.benefits-section {
    background-color: #c5ff74;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #5a13f1;
    flex: 1;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.benefits-section.visible {
    opacity: 1;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #5a13f1;
}

.benefit img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

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

    .benefits-section {
        width: 80%;
        margin-bottom: 20px;
    }

    .benefits-section h2 {
        font-size: 20px;
    }

    .benefit {
        font-size: 14px;
        color: #4682b4;
    }
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    height: 150px;
    border-top: 4px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    text-align: center;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #003366;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    margin: 0 5px;
}

.footer-text {
    font-size: 14px;
    color: #003366;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-top: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Title Styling */
.title-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Tagline Styling */
.title-section p {
    font-size: 18px;
    font-style: italic;
    max-width: 80%;
}

.fearless-upfront {
    text-align: center;
    color: #00008b;
    max-width: calc(100% - 300px); /* 150px indent on left & right */
    margin: 40px auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* Ensure it stays centered and responsive */
@media (max-width: 768px) {
    .fearless-upfront {
        max-width: 90%;
    }
}

.fearless-upfront h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.fearless-upfront h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.fearless-upfront p {
    font-size: 16px;
    margin-bottom: 15px;
}


/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    margin: 15% auto;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    color: black;
}

.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#prospectusForm input {
    padding: 10px;
    margin: 10px 0;
    width: 90%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#prospectusForm button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

#prospectusForm button:hover {
    background-color: #0056b3;
}

/* Prospectus Button Styling */
.prospectus-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #4682B4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.prospectus-btn:hover {
    background-color: #004aad;
}

.prospectus-btn:active {
    background-color: #004aad;
}

}

.benefit img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

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

    .benefits-section {
        width: 80%;
        margin-bottom: 20px;
    }

    .benefits-section h2 {
        font-size: 20px;
    }

    .benefit {
        font-size: 14px;
        color: #4682b4;
    }
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    height: 150px;
    border-top: 4px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    text-align: center;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #003366;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    margin: 0 5px;
}

.footer-text {
    font-size: 14px;
    color: #003366;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-top: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Title Styling */
.title-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Tagline Styling */
.title-section p {
    font-size: 18px;
    font-style: italic;
    max-width: 80%;
}

.fearless-upfront {
    text-align: center;
    color: #00008b;
    max-width: calc(100% - 300px); /* 150px indent on left & right */
    margin: 40px auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* Ensure it stays centered and responsive */
@media (max-width: 768px) {
    .fearless-upfront {
        max-width: 90%;
    }
}

.fearless-upfront h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.fearless-upfront h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.fearless-upfront p {
    font-size: 16px;
    margin-bottom: 15px;
}



/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    margin: 15% auto;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    color: black;
}

.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#prospectusForm input {
    padding: 10px;
    margin: 10px 0;
    width: 90%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#prospectusForm button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

#prospectusForm button:hover {
    background-color: #0056b3;
}

/* Prospectus Button Styling */
.prospectus-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #4682B4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.prospectus-btn:hover {
    background-color: #004aad;
}

.prospectus-btn:active {
    background-color: #004aad;
}
