   /* Global Styles */
    * {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* Top Navigation Bar */
#topnav {
    background:#004165; /* Original color */
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    left:0px;
    top: 0px;
    z-index: 999999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    height:50px;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 70px; /* Adjust height as needed */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff; /* Text color */
    font-size: 16px;
    text-decoration: none;
    padding: 10px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.signin-btn {
    color: #004165; /* Original background color */
    background-color: #fff; /* Button background */
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.getstarted-btn {
    color: #fff; /* Button text color */
    background-color: #006400; /* Green background */
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.signin-btn:hover,
.getstarted-btn:hover {
    background-color: #003049; /* Slightly darker shade for hover */
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links on mobile */
    }
    .nav-actions {
        flex-grow: 1;
        justify-content: flex-end;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links on mobile */
    }
    .nav-actions {
        flex-grow: 1;
        justify-content: flex-end;
    }
}


/* Header Section */
#slideshowHeader {
    position: relative;
    height: 70vh;
    text-align: center;
    overflow: hidden;
    margin-top: 65px; /* Adjusted to account for the height of the nav bar */
    z-index: 200; /* Set a z-index lower than the navigation bar */
}

.slideshow-container {
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.slideshow-container img{
    width:100%;
}

.slides {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Content Section */
#afterHeader {
    background: #fff;
    padding: 20px;
    z-index: 250; /* Ensure this section appears above the header */
    position: relative;
    margin-top: -40px; /* Adjust margin for visibility */
    text-align: center;
}

.middleWrapper {
    padding: 20px;
    width: 90%;
    margin: 0 auto;
}

.product-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
}

.product {
    flex: 1;
    margin: 10px;
    padding: 15px;
    max-width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product h3 {
    margin: 10px 0;
    font-size: 1.5em;
}

.product p {
    font-size: 1em;
    color: #555;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #topNav {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
    }

    .navLogo, .navLinks {
        text-align: center;
    }

    .navLinks {
        margin-top: 10px;
        right: 0;
        width: 100%;
    }

    #topNav ul {
        flex-direction: column;
    }

    #topNav li {
        padding: 10px;
    }

    .product {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .product {
        max-width: 100%;
    }

    .navLinks {
        margin-top: 0;
    }

    #afterHeader {
        margin-top: -20px;
        padding-top: 20px;
    }
}

/* Loan Options Section */
#loanOptions {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.loan-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.loan-item {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    flex-basis: 22%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

.loan-item h3 {
    margin: 20px 0 10px;
    font-size: 1.4em;
    color: #333;
}

.loan-item p {
    font-size: 1em;
    color: #777;
}

.loan-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .loan-item {
        flex-basis: 45%;
    }
}

@media (max-width: 480px) {
    .loan-item {
        flex-basis: 100%;
    }
}
#contentWrapper{
    background:#fff;
    width:981px;
margin:0 auto;
height:500px;
z-index:999999999 !important;
}
.content-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.content-card {
    background-color: #edf7ee;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-text {
    margin-bottom: 10px;
}

.content-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d5540;
}

.content-card p {
    font-size: 1rem;
    color: #555;
}

.arrow-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #2d5540;
    text-decoration: none;
    margin-top: 10px;
}

.content-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .content-section {
        grid-template-columns: 1fr;
    }
}
.wellness-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.left-content {
    flex: 1;
}

.left-content h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.left-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.learn-btn {
    background-color: #b70d0d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.learn-btn:hover {
    background-color: #8a0a0a;
}

.right-content {
    flex: 1.5;
}

.card {
    display: flex;
    align-items: center;
    background-color: #f3f4f7;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #b70d0d;
    border-radius: 5px;
}

.icon {
    margin-right: 20px;
}

.icon img {
    width: 50px;
    height: 50px;
}

.card-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.card-text p {
    font-size: 1rem;
    color: #666;
}

.see-more {
    display: inline-block;
    color: #b70d0d;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.see-more:hover {
    color: #8a0a0a;
}

@media (max-width: 768px) {
    .wellness-section {
        flex-direction: column;
    }

    .right-content {
        flex: 1;
    }
}

.footer {
    background-color: #004165;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-logo img {
    width: 380px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #aaa;
}

.footer-navigation ul {
    list-style: none;
}

.footer-navigation ul li {
    margin-bottom: 10px;
}

.footer-navigation ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-navigation ul li a:hover {
    color: #fff;
}

.footer-legal ul {
    list-style: none;
    margin-top: 20px;
}

.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-legal ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
    color: #fff;
}

.footer-icons img {
    width: 50px;
    margin-right: 10px;
    margin-top: 20px;
}

.footer-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

.footer-disclaimer a {
    color: #fff;
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}


/* styles for closing fee sheet*/

	body {
	background-color: #F3EBF6;
	font-family: 'Ubuntu', sans-serif;
}
    
    .main {
        background-color: #FFFFFF;
        width: 400px;
        height: 400px;
        margin: 7em auto;
        border-radius: 1.5em;
        box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
    }
    
    .sign {
        padding-top: 40px;
        color: #1a53ff;
        font-family: 'Ubuntu', sans-serif;
        font-weight: bold;
        font-size: 23px;
    }
    
    .un {
    width: 76%;
    color: rgb(38, 50, 56);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(136, 126, 126, 0.04);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
    margin-left: 46px;
    text-align: center;
    margin-bottom: 27px;
    font-family: 'Ubuntu', sans-serif;
    }
    
    form.form1 {
        padding-top: 40px;
    }
    
    .pass {
            width: 76%;
    color: rgb(38, 50, 56);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(136, 126, 126, 0.04);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 50px;
    margin-left: 46px;
    text-align: center;
    margin-bottom: 27px;
    font-family: 'Ubuntu', sans-serif;
    }
    
   
    .un:focus, .pass:focus {
        border: 2px solid rgba(0, 0, 0, 0.18) !important;
        
    }
    
    .submit {
      cursor: pointer;
        border-radius: 5em;
        color: #fff;
        background: linear-gradient(to right, #1a53ff, #668cff);
        border: 0;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 10px;
        padding-top: 10px;
        font-family: 'Ubuntu', sans-serif;
        margin-left: 35%;
        font-size: 13px;
        box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04);
    }
    
    .forgot {
        text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
        color: #668cff;
        padding-top: 15px;
    }
    
    a {
        text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
        color: #668cff;
        text-decoration: none
    }
    @media (max-width: 600px) {
        .main {
            border-radius: 0px;
        }
        
/* end styles for closing fee sheet*/

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }
}

        #missionSec{
            background:#eee;
            border-radius:5px;
            -moz-border-radius:5px;
            width:30%;
            text-align:center;
            margin:0 auto;
            color:#000;
            padding:15px;
           
        }

          /* Quote Box Styles */
          .quote-box {
            width: 80%;
            margin: 100px auto;
            padding: 20px;
            background-color: #0f3a57;
            color: #dfdfdf;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .quote-box.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .quote-box h2 {
            margin-bottom: 10px;
            font-size: 2rem;
        }

        .quote-box p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .quote-box {
                width: 90%;
                padding: 20px;
            }

            .quote-box h2 {
                font-size: 1.8rem;
            }

            .quote-box p {
                font-size: 1rem;
            }
        }