.navbar-header {
    border-bottom: 2px solid #e5e7eb;
    height: 6rem;
}

.navbar-header img {
    width: 145px;
}

.register-form.show {
    /* display: flex !important; */
    justify-content: center !important;
    align-items: center;
}

.btn-nav {
    border: 2px solid #312E81;
    padding: 8px 16px;
    border-radius: 50px;
    color: #312E81;
    text-transform: uppercase;
}

.active-login {
    background-color: #312E81;
    color: #fff;
}

.active-login:hover {
    background-color: rgb(30, 27, 75, 1.0);
    color: #fff;
}

.homepage {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: opacity 1s ease-in-out;
}

.slide {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    border-radius: 1rem;
}

.slide-text {
    max-width: 600px;
    z-index: 9;
}

.slide-text h1 {
    font-size: 3.75rem;
    line-height: 1;
    color: #1e1b4b;
    font-weight: 800;
}

.slide-text p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-top: 1rem;
}

.slide-text button {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: 0.3s ease;
}

.slide-text button:hover {
    background-color: #4f46e5;
    transform: scale(1.05);
}

.wave {
    position: absolute;
    bottom: -2.5rem;
    width: 100%;
    transform: rotate(180deg);
}

/* home page end */

/* about page start */
.about-section {
    padding: 5rem 0;
    background-color: #4338ca;
}

.forget_pass_heading.text-center {
    padding-bottom: 1rem;
}

.text-center {
    text-align: center;
    padding-bottom: 4rem;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    color: #e5e7eb;
}

.about-left h2 {
    font-size: 1.875rem;
    line-height: 2.50rem;
    font-weight: 700;
    color: #fff;
}
.about-left p {
    font-size: 1.875rem;
    line-height: 2.50rem;
    font-weight: 700;
    color: #fff;
}
.forgot-title h2 {
    font-size: 18px;
    font-weight: 500;
}

.about-right h5 {
    font-size: 30px;
    color: #fff;
}

.stap-second {
    width: 49%;
}

button.btn.btn-primary.next-btn.next-step-btn.personal-details-step {
    background: #4f46e5 !important;
}

.modal {
    backdrop-filter: blur(9px);
    /* blur intensity */
    background-color: rgba(0, 0, 0, 0.3);
}

.about-right p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #fff;
}

.login-box {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    color: black;
}

.login-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.login-btn,
.register-btn {
    background: transparent;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.register-btn {
    background-color: #4f46e5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.register-btn:hover {
    background-color: #4338ca;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form input {
    padding: 0.50rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
}

.login-form button {
    background-color: #4f46e5;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: normal;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #4338ca;
}

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: #4f46e5;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in,
.slide-left,
.slide-right,
.zoom-in {
    opacity: 0;
}

.animate.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate.slide-left {
    transform: translateX(-50px);
    animation: slideLeft 1s ease-out forwards;
}

.animate.slide-right {
    transform: translateX(50px);
    animation: slideRight 1s ease-out forwards;
}

.animate.zoom-in {
    transform: scale(0.95);
    animation: zoomIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
}

/* Animated state */
.scroll-animate.animate {
    animation: fadeUp 0.5s ease-out forwards;
}

/* Delay classes */
.delay-1.animate {
    animation-delay: 0.1s;
}

.delay-2.animate {
    animation-delay: 0.3s;
}

.delay-3.animate {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about page end */

/* how it works page */
.how-it-works {
    background-color: #fff;
    padding: 60px 15px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.how-it-works p.lead {
    color: #5c6ac4;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.125rem;
}

.how-step {
    padding: 20px;
}

.how-step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background-color: rgba(79, 70, 229);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.how-step-icon svg {
    width: 40px;
    height: 40px;
}

.how-step-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 20px;
    color: rgba(17, 24, 39);
}

.how-step-desc {
    color: rgba(75, 85, 99);
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 10px;
}

.btn-signup {
    margin-top: 40px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 25px;
    border: 2px solid #f46036;
    background-color: rgba(234, 88, 12);
    color: #fff;
    transition: 0.3s all ease;
    border-radius: 50px;
}

.btn-signup:hover {
    background-color: #fff;
    color: #f46036;
    text-decoration: none;
}

/* how it works page end */

/* feature page start  */
.features-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(55, 65, 81);
    margin-bottom: 40px;
}

.features-section svg {
    color: rgba(79, 70, 229);
}

.feature-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #dcdffd;
    color: #5c6ac4;
    padding: 1rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    width: 72px;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.feature-desc {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgba(75, 85, 99);
}

.btn-join {
    text-transform: uppercase;
    font-weight: bold;
    padding: 12px 25px;
    border: 2px solid #f46036;
    background-color: #f46036;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background-color: #fff;
    color: #f46036;
    text-decoration: none;
}

/* feature page end */

/* testimonials page start */
.testimonial-section {
    padding: 60px 15px;
    text-align: center;
}

.testimonial-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: rgba(55, 65, 81);
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.1);
    margin: 0 10px;
    width: 300px;
    min-width: 300px;
    overflow: hidden;
    display: inline-block;
}

.testimonial-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonial-content {
    padding: 20px;
    text-align: left;
}

.testimonial-feedback {
    font-style: italic;
    font-size: 14px;
    color: #666;
}

.testimonial-name {
    margin-top: 10px;
    font-weight: bold;
    color: #4F46E5;
}

.stars {
    color: #FFD700;
    margin-top: 10px;
    font-size: 18px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.swiper-slide-box {
    display: flex;
    align-items: center;
    width: 388px;
    gap: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.1);
}

.swiper-slide-detail {
    padding: 10px;
}

.swiper-slide-box .img img {
    width: 100%;
}

.swiper-slide-box p {
    font-size: 16px;
    text-align: left;
    color: rgba(75, 85, 99);
    font-style: italic;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    background-color: #4338ca;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 3px solid #fff;
}

/* Avatar Color Variants */
.avatar-indigo { background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%); }
.avatar-teal { background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); }
.avatar-rose { background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%); }
.avatar-amber { background: linear-gradient(135deg, #d97706 0%, #92400e 100%); }
.avatar-violet { background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); }
.avatar-emerald { background: linear-gradient(135deg, #059669 0%, #064e3b 100%); }
.avatar-blue { background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%); }

.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-name {
    color: rgba(79, 70, 229);
    font-style: normal;
    font-size: 16px;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 33px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}

.swiper--bottom {
    margin-top: 30px;
}

@-webkit-keyframes line-slide {
    0% {
        background-position: -5% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes line-slide {
    0% {
        background-position: -5% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.footer-bottom .footer {
    background: #fff;
}

.footer-box-inner {
    background: #312e81;
    padding: 2.5rem;
    border-radius: 10px;
    color: #fff;
}

.panel-community h2 {
    font-size: 3rem;
}

.bg-indigo-100 {
    background: rgba(224, 231, 255);
}

.bg-indigo-100 p {
    font-size: 1.25rem;
}

.bg-indigo-100 a {
    color: #000;
    text-decoration: none;
    font-size: 1.25rem;
}

/* Additional styling for animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.button-hover:hover {
    transform: scale(1.05);
    background-color: #5a67d8 !important;
}

.footer-box .container {
    max-width: 100%;
    padding: 0 30px;
    width: 100%;
}

.footer-bottom .container {
    max-width: 100%;
    padding: 0 22px;
    width: 100%;
}

/* popup form css */
.register-form h4.modal-title {
    color: #374151;
}

.register-form .form-control {
    margin-bottom: 3px;
    border: 0;
    border-bottom: 1px solid rgb(209, 213, 219);
    border-radius: 0;
}

.register-form .form-control:focus {
    border-color: rgba(79, 70, 229);
    box-shadow: none;
}

.checkbox {
    margin-bottom: 15px;
}

.checkbox label {
    font-size: 14px;
    color: #9ca3af;
}

.checkbox input[type="checkbox"] {
    margin-right: 5px;
}

button.btn-block {
    width: 100%;
}

.button-hover:focus {
    transform: scale(1.05);
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be;
}

.register-form .btn-close {
    font-size: 10px;
    color: #6b7280;
    position: absolute;
    right: .75rem;
    top: .75rem;
}

.register-form .modal-dialog.modal-lg {
    max-width: 900px;
    width: 100%;
}

.register-form select.form-control {
    background: #efefef;
}

.register-form select.form-control:focus {
    background: #efefef;
}

.register-form .modal-dialog {
    margin: 0 auto;
}

@media(max-width: 1199px) {
    .slide-text h1 {
        font-size: 2.75rem;
    }
}

@media(max-width: 991px) {
    .slide img {
        display: none;
    }

    .homepage .slide {
        display: block;
    }

    .homepage {
        min-height: 650px;
    }

    .bg-indigo-100 {
        display: block !important;
    }

    /*    .navbar-header .container-lg div#navbarCollapse {
    padding-left: 0;
    width: 100%;
    text-align: left;
    padding-bottom: 20px;
}
button.navbar-toggler {
    display: block;
}
.navbar-header{
    height: auto;
    padding: 0;
}
.navbar-header .container-lg div#navbarCollapse .navbar-right {
    display: grid;
    gap: 15px;
}
.navbar-header .container-lg div#navbarCollapse .navbar-right a, .navbar-header .container-lg div#navbarCollapse .navbar-right button {
    width: max-content;
    margin: 0 !important;
}*/
    /*div#navbarCollapse {
    flex-basis: 100%;
    flex-grow: 1;
    padding-left: 0;
    background: #fff;
}*/
    .navbar-expand-lg .navbar-collapse {
        display: block;
    }

    .navbar-header {
        height: auto;
        padding: 0;
    }

    .navbar-light .navbar-brand {
        margin-right: 0;
    }

}

@media(max-width: 767px) {

    .how-it-works .col-sm-4,
    .features-section .col-sm-4 {
        width: 100%;
    }

    .footer-box-inner {
        display: block !important;
    }

    .panel-community {
        width: 100% !important;
        margin-bottom: 40px;
    }

    .panel-community h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .panel-community p {
        text-align: center;
    }

    .bg-indigo-100 .d-flex {
        display: block !important;
    }

    .getInTouchBtn {
        text-align: center;
    }
}
@media(max-width: 576px) {
    .navbar-header img {
        width: 115px;
    }
    .navbar-right .btn-nav{
        padding: 5px 10px;
        font-size: 14px;
    }
}
@media(max-width: 480px) {
    .footer img {
        width: 100%;
    }

    .panel-community h2,
    .testimonial-title,
    .features-section h2,
    .how-it-works h2,
    .main-title {
        font-size: 2rem;
    }

    .slide-text h1 {
        font-size: 2rem;
    }

    .about-left h2 {
        font-size: 22px;
    }

    .navbar-header img {
        width: 105px;
    }

    .navbar-expand-lg .navbar-collapse {
        display: block;
        padding-left: 0;
        flex-grow: inherit;
        flex-basis: inherit;
    }

    .navbar-header .container-lg div#navbarCollapse .navbar-right a,
    .navbar-header .container-lg div#navbarCollapse .navbar-right button {
        width: max-content;
        margin: 0 !important;
        font-size: 12px;
    }
}

.register-form .vaildation_errors {
    color: #a94442;
}

.og_login_signup #signup .top-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.og_login_signup #signup .top-pagination .step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

.og_login_signup #signup .top-pagination .step .circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    padding-left: 0;
}

.og_login_signup #signup .completed .circle {
    background-color: #4f46e5 !important;
}

.og_login_signup #signup .completed .tab-number {
    color: #fff;
}

.og_login_signup #signup .completed span.ms-2 {
    display: none;
}

.og_login_signup #signup .top-pagination .step.active {
    display: flex !important;
}

.og_login_signup #signup .step.completed .circle {
    position: relative;
}

.og_login_signup #signup .step.completed .circle::after {
    content: '\2714';
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff !important;
}

.og_login_signup #signup .top-pagination .step.active .circle {
    background-color: #4f46e5;
    color: #fff;
}

.og_login_signup .login_signup_container button.login_signup_btn {
    background: #4f46e5;
    font-family: "Poppins", sans-serif;
}

button.next-btn.personal-details-step {
    background: #4f46e5;
    color: #fff;
    border-radius: 0.3em;
    padding: 0.5em 2em;
    border: none;
    margin-bottom: 0.2em;
    box-shadow: 0.1em 0.1em 0.2em #00000045;
}

button.next-btn.professional-details-step.stap-second {
    background: #4f46e5;
    color: #fff;
    border-radius: 0.3em;
    padding: 0.5em 2em;
    border: none;
    margin-bottom: 0.2em;
    box-shadow: 0.1em 0.1em 0.2em #00000045;
}

button.login_signup_btn:hover {
    background: #4f46e5;
    color: #fff;
}

.btn-container-action-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

button.next-btn.professional-details-step:hover {
    background: #0d6efd;
}

.step-3-submit-btn {
    background: #4f46e5;
    color: #fff;
    border-radius: 0.3em;
}

.first-step-action-btn {
    margin-top: 30px;
}

.step-3-submit-btn:hover {
    background: #4e45e4;
}