*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, sans-serif;
}

.logo{
    height: 40px;
    width: auto;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav{
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.nav-links li a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.nav-links li a:hover{
    color: #fa5252;
}

.login-btn{
    background-color: transparent;
    border: 2px solid #fa5252;
    color: #fa5252;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.login-btn:hover{
    background-color: #fa5252;
    color: #fff;
}
.signup-btn{
    background-color: #fa5252;
    border: none;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.signup-btn:hover{
    background-color: #e03e3e;
}

/* Responsive Design */
@media (max-width: 1024px){
    .nav-links{
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .auth-buttons{
        margin-top: 10px;
    }

    .nav-toggle{
        display: block !important;
    }
    .nav-links.active{
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 80px;
        right: 0;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 10;       
        border-radius: 20px; 
    }
}


.nav-toggle{
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* hero section */
.hero{
    background-color: #f5f5f5;
    text-align: center;
    height: 80vh;
}
.embla {
    overflow: hidden;
}
.embla__container {
    display: flex;
}
.embla__slide {
    flex: 0 0 100%;
    min-width: 0;
}
.embla__slide{
    overflow: hidden;
    height: 80vh;
    width: 100%;
}

/* style hero text with rgba(0,0,0,0.7) background */
.hero-text{
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text h1{
    font-size: 48px;
    margin-bottom: 20px;
}
.hero-text p{
    font-size: 18px;
    margin-bottom: 30px;
}
.hero-text .get-started-btn{
    background-color: #fa5252;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.hero-text .get-started-btn:hover{
    background-color: #e03e3e;
}
/* Responsive Design for Hero Section */
@media (max-width: 768px){
    .hero-text h1{
        font-size: 32px;
    }
    .hero-text p{
        font-size: 16px;
    }
    .hero-text .get-started-btn{
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* cards section two column with image on the right */
.two-column{
    display: flex;
    gap: 20px;
    padding: 50px 20px;
    align-items: center;
    justify-content: center;
}

.two-column .text-content{
    flex: 1;
}
.two-column .text-content h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: rgb(1, 1, 100);
}
.two-column .text-content p{
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}
.two-column .text-content .learn-more-btn{
    background-color: #fa5252;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.two-column .image-content{
    flex: 1;
}
.two-column .image-content img{
    width: 100%;
    border-radius: 10px;
}

/* responsiveness */
@media (max-width: 768px){
    .two-column{
        flex-direction: column;
    }
    .two-column .text-content h2{
        font-size: 28px;
    }
    .two-column .text-content p{
        font-size: 16px;
    }
}

/* financial service */
.financial-services{
    background-image: url('../images/skyscrapers-from-low-angle-view-scaled-1.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 100, 0.5);
    padding-top: 50px;
    padding-bottom: 50px;
}

.financial-services h2{
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}
.financial-services .services-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.financial-services .service-card{
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.financial-services .service-card i{
    font-size: 48px;
    color: #fa5252;
    margin-bottom: 20px;
}
.financial-services .service-card h3{
    font-size: 24px;
    margin-bottom: 10px;
    color: rgb(1, 1, 100);
}
.financial-services .service-card p{
    font-size: 16px;
    color: #333;
    text-align: justify;
}
/* responsiveness */
@media (max-width: 1024px){
    .financial-services .services-container{
        flex-direction: column;
        align-items: center;
    }
}

/* why choose us section */
.why-choose-us{
    padding: 50px 20px;
    background-color: #f5f5f5;
}
.why-choose-us h2{
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: rgb(1, 1, 100);
}
.why-choose-us .features-container{
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 20px;
    flex-wrap: wrap;
}

.why-choose-us .features-container .reasons-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
}

.why-choose-us .features-container .reason-card{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.why-choose-us .features-container .reason-card:hover{
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    background-color:#fa5252;
    color: #fff;
}
/* when hove on card then style icon */
.why-choose-us .features-container .reason-card:hover i, .why-choose-us .features-container .reason-card:hover h3, .why-choose-us .features-container .reason-card:hover p{
    color: #fff;
}

.why-choose-us .features-container .reason-card i{
    font-size: 48px;
    color: #fa5252;
    margin-bottom: 20px;
}

.why-choose-us .features-container .reason-card h3{
    font-size: 24px;
    margin-bottom: 10px;
    color: rgb(1, 1, 100);
}

.why-choose-us .features-container .reason-card p{
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.why-choose-us .features-container .why-us-image{
    flex: 1;
    text-align: center;
}
.why-choose-us .features-container .why-us-image .why-image{
    max-width: 100%;
    border-radius: 10px;
}

/* responsiveness */
@media (max-width: 1024px){
    .why-choose-us h2{
        font-size: 28px;
    }

    .why-choose-us .features-container .reason-card h3{
        font-size: 20px;
    }
    .why-choose-us .features-container .reason-card p{
        font-size: 14px;
    }
    .why-choose-us .features-container .why-us-image .why-image{
        max-width: 80%;
    }
    
    .why-choose-us .features-container{
        flex-direction: column;
        align-items: center;
    }
    .why-choose-us .why-us-image{
        margin-top: 30px;
    }
} 

/* What Users Say About Us */
.testimonials{
    padding: 50px 20px;
}
.testimonials h2{
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: rgb(1, 1, 100);
}
.testimonials .testimonial-cards{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.testimonials .testimonial-card{
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}
.testimonials .testimonial-card img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}
.testimonials .testimonial-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: rgb(1, 1, 100);
}
.testimonials .testimonial-card p{
    font-size: 16px;
    color: #333;
    text-align: justify;
}
/* responsiveness */
@media (max-width: 1024px){
    .testimonials .testimonial-cards{
        flex-direction: column;
        align-items: center;
    }
}

/* standard footer section */
footer{
    background: linear-gradient(135deg, #000428, #004e92);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
footer .footer-container{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-container .footer-about, footer .footer-container .footer-links, footer .footer-container .footer-contact{
    flex: 1;
    min-width: 250px;
}
footer .footer-container h3{
    font-size: 20px;
    margin-bottom: 2rem;
    padding-bottom: 10px;
    color: #fa5252;
    border-bottom: 2px solid;
    border-image: linear-gradient(135deg, #000428, #fff) 1;

}
footer .footer-container p, footer .footer-container li, footer .footer-container a{
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}
footer .footer-container .footer-about img{
    height: 40px;
    width: auto;
    margin-bottom: 10px;
    /* change image to white */
    filter: brightness(0) invert(1);
}
footer .footer-container p{
    margin-bottom: 10px;
    text-align: justify;
}
footer .footer-container ul{
    list-style: none;
    padding: 0;
}
footer .footer-container li{
    margin-bottom: 8px;
}

footer .footer-container .footer-contact{
    text-align: justify;
}

footer .footer-container a:hover{
    color: #fa5252;
}
footer .footer-bottom{
    margin-top: 20px;
    font-size: 14px;
}
/* responsiveness */
@media (max-width: 768px){
    footer .footer-container{
        flex-direction: column;
        align-items: center;
    }
}

/* Custom Chat Button */
.chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #00bfa5, #00796b);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
    animation: float 2s infinite;
}
@keyframes float {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

/* Hide the default JivoChat widget */
#jivo-iframe-container {
    display: none !important;
}

/* signup section */
.signup-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1623907912478-225b48885012?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTF8fGludmVzdG1lbnR8ZW58MHx8MHx8fDI%3D&auto=format&fit=crop&q=60&w=600');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);

}

.signup-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
}

.signup-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.signup-form label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.signup-form input,
.signup-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.signup-form input:focus,
.signup-form select:focus {
    border-color: #fa5252;
}

.signup-form .btn {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    padding: 12px;
    background-color: #fa5252;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.signup-form .btn:hover {
    background-color: #d94444;
    transform: scale(1.03);
}
.signup-form a {
    color: #fa5252;
    text-decoration: none;
    font-weight: 600;
}
.signup-form a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
    grid-template-columns: 1fr;
    }

    .signup-form {
    padding: 20px;
    }
}

/* Login Section (inherits signup styling) */
.login-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW52ZXN0bWVudHxlbnwwfHwwfHx8Mg%3D%3D&auto=format&fit=crop&q=60&w=600');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
}

.login-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
}

.login-form {
    background: #fff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.login-form label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.login-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    border-color: #fa5252;
}

.login-form .btn {
    width: 100%;
    padding: 12px;
    background-color: #fa5252;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-form .btn:hover {
    background-color: #d94444;
    transform: scale(1.03);
}

.login-form a {
    color: #fa5252;
    text-decoration: none;
    font-weight: 600;
}

.login-form a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-form {
    padding: 25px;
    }
}