* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}


header {
    background-color: #ffffff;
    max-width: 100%;
    margin: 0 auto;
}

.navbar {
    background-color: #ffffff;
    position: fixed;
    /* Make navbar fixed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 1000;
    padding: 10px 0px;
}

.logo {
    position: relative;
    left: 30px;
}

.navbar-1 {
    display: flex;
    padding: 3px;
    font-family: Arial, sans-serif;
}

.nav-item {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.2rem;
    position: relative;
    margin-right: 2px;
}


.main-link {
    color: rgba(22, 22, 22, 0.616);
    text-decoration: none;
    padding: 10px;
}

.dropdown {
    display: none;
    /* Hide dropdown by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 150px;
    /* Set width for dropdown */
}

.dropdown a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 5px;
}

.dropdown a:hover {
    background-color: #f0f0f0;
    /* Highlight on hover */
}

.nav-item:hover .dropdown {
    display: block;
    /* Show dropdown on hover */
}

/* Mobile Styles */
.navbar-toggle {
    display: none;
    /* Hidden by default */
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    body{
        width: 100%;
    }
    .navbar-1 {
        box-shadow: 2px 6px 19px 6px #888888;
        border-radius: 20px;
        display: none;
        /* Hide navbar initially */
        flex-direction: column;
        /* Stack items vertically */
        width: 90%;
        /* Full width for mobile */
        background-color: rgb(255, 255, 255);
        /* Background for the modal */
        position: absolute;
        /* Positioning for dropdown effect */
        top: 60px;
        /* Adjust based on your navbar height */
        left: 0;
        z-index: 999;
        /* Above other elements */
    }

    .navbar.active .navbar-1 {
        display: flex;
        /* Show navbar when active */
    }

    .nav-item {
        margin: 0;
        /* Remove margin for mobile */
    }

    .navbar-toggle {
        display: block;
        /* Show toggle button */
    }
    .login-container{
        display: block;
    }
    .image-container img{
        width: 300px;
    }
}



.exp-adv {
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 50%;
    font-weight: 700;
    /* Animation properties */
    animation: zoomAndColorChange 3s infinite alternate;
}

@keyframes zoomAndColorChange {
    0% {
        transform: scale(1);
        /* original size */
        color: #000000;
        /* original color (black) */
    }

    50% {
        transform: scale(1.2);
        /* zoomed in */
        color: rgb(255, 0, 0);
        text-shadow: 10px 1px 13px red;
    }

    100% {
        transform: scale(1);
        /* back to original size */
        color: #000000;
        /* steelblue color at the end */
    }
}

#register-btn {
    position: relative;
    top: 55px;
}

.login-button {
    background: linear-gradient(to right, #165eca, #1c89e2);
    text-decoration: none;
    border-radius: 15px;
    color: rgb(0, 0, 0);
    border: none;
    position: relative;
    right: 50px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background: linear-gradient(to right, #0d3064, #4f9bda);
    transition: 0.6s;
    color: rgb(231, 230, 230);
    border-radius: 20px;
}



.inqury-form-off-canvas {
    text-align: center;
    height: 95vh;
    width: 65%;
    margin: 20px auto;
    border-radius: 15px;
}

.canvas-hdr {
    text-align: center !important;
}

.offcanvas-header {
    justify-content: center !important;
}

.form-start {
    width: 70%;
    margin: 30px auto;
}

.expert-form-btn {
    padding: 8px 60px !important;
    background-color: rgb(194, 194, 194);
}

.form-img-flexer {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.qr-code h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #0543a0b0;
}

.instructions-list {
    list-style-type: none;
    text-align: left;
}

.instructions-list li {
    margin: 8px 0px;
    font-size: 1.1rem;
    color: rgba(15, 15, 15, 0.685);
}


.rotating-div {
    position: absolute;
    width: 200px;
    height: 100px;
    background-color: rgba(0, 255, 157, 0.253);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translate(100px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translate(100px) rotate(-360deg);
    }
}
.input-field i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.input-field i.fa-eye {
    display: block; /* Make sure the eye icon is visible */
}




.login-section {
    margin: 0px 0px;
    background: url(login_bg.png);
    background-position: center;
    background-size: cover;

}

.login-container {
    width: 100%;
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    text-align: center;
    color: white;
}

.section-heading {
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 140px;

}

.section-heading h2 {
    color: rgba(23, 255, 73, 0.808);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 50px;
    /* text-shadow: 10px 10px 5px rgba(1, 201, 191, 0.616); */
}

.section-heading p {
    color: rgba(7, 245, 66, 0.979);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    /* text-shadow: 10px 10px 6px rgb(1, 201, 191); */
}

.form-box {
    width: 100%;
    max-width: 650px;
    min-width: 350px;
    background-color: rgb(34 93 122);
    padding: 55px;
    text-align: center;
    border-radius: 10px;
    box-shadow: -2px 2px 15px rgba(0, 0, 0, 0.5);
}

.form-box h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    font-size: 30px;
}

.underline {
    background-color: green;
    width: 20%;
    height: 3px;
    border-radius: 10px;
    margin: 8px auto;
    transition: transform 0.5s;
}

.input-field {
    background-color: rgba(228, 243, 255, 0.13);
    margin: 0px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 15px 0px;
    transition: max-Height 0.5s;
    overflow: hidden;
}

.input-field input {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 14px 20px;
}

.input-field i {
    margin-top: 15px;
    margin-left: 15px;
    color: #d8d7d7b9;
}

.forg-btn {
    background-color: rgba(116, 1, 1, 0.767);
    font-size: 1.1rem;
    padding: 7px 60px;
    border: 0;
    border-radius: 25px;
    color: rgb(255, 255, 255);
    text-align: left;
}

.forg-btn a {
    text-decoration: underline;
    color: rgb(0, 247, 255);
}

.btn-field {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.signUpBtn {
    flex-basis: 48%;
    background-color: green;
    color: white;
    height: 40px;
    border-radius: 25px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
}

.input-group {
    height: 24s0px;
}

button.disable {
    background-color: #eaeaea63;
    color: #555;
}
.form-check{
    font-size: 1.1rem;
    color: whitesmoke;
    text-align: left;
}
.form-check input{
   height: 20px;
}
.lst-acc{
    color: whitesmoke;
    font-size: 1.1rem;
}
.lst-acc a{
    color: rgb(218, 218, 60);
}
.heading-p{
    font-size: 1.1rem;
    color: whitesmoke;
}
#view{
    position: relative;
    right: 15px;
}


@media (max-width: 768px) {
   
    .resp-flexer{
        width: 85%;
        margin: 0px auto !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }


    .login-container{
        height: 100%;
    }
    .form-box {
        width: 90%;
        max-width: 90%;
        min-width: 95%;
        padding: 0px 5px;
    }
    #dynamic-image{
        width: 80%;
        height: 50vh;
    }
    .login-header{
        font-size: 1.5rem !important;
    }
    .header-p{
        font-size: 0.8rem !important;
    }
    .dynamic-text{
        font-size: 0.8rem !important;
    }
    .heading{
        font-size: 1.4rem !important;
    }
    .heading-p{
        font-size: 0.8rem !important;
    }
    .input-field input{
        padding: 5px 15px ;
    }
    .input-field{
        margin: 5px 0px;
    }
    .signUpBtn{
        width: 90%;
        padding: 5px 0px;
    }
    .forg-btn{
        width: 90%;
        margin: 10px 0px;
        padding: 5px 0px;
        text-align: center;
    }
    .text{
        width: 100%;
        padding: 5px 0px;
        text-align: center;
        font-size: 0.8rem !important;
    }


.login-button {
    padding: 5px 10px !important;
}
.exp-adv{
    right: 0 !important;
    margin-right: 0 !important;
}
.nav-item a{
    font-size: 0.9rem !important;
}
.img-size{
    display: none !important;
    width: 40% !important;
    height: 20vh !important;
}
.starter-sliderv-text-container{
    width: 100% !important;
    left: 0 !important;
    bottom: 30px !important;
}
.starter-slider-btn {
    margin: 0px 10px !important;
    padding: 5px !important;
}
.starter-sliderv-text-container{
    text-align: left !important;
}
.slider-form-submit-btn-cont{
    text-align: center !important;
}
.slider-form-submit-btn{
    margin: 10px auto !important;
}











.footer-links{
    justify-content: center;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* Creates two columns of equal width */
    gap: 10px; 
}
.footer-container {
    width: 100% !important;
    flex-direction: column;
    /* Stack items on smaller screens */
    align-items: center;
    /* Center align items */
}
.footer-logo{
    width: 90% !important;
    margin: 0px auto;
}
.footer-logo p{
    width: 100% !important;
}
.link-column {
    width: 100%;
    /* Full width for smaller screens */
    text-align: center;
    /* Center text */
    border: 1px dotted rgba(128, 128, 128, 0.37);
    border-radius: 20px;
}
.social-links {
    width: 50% !important;
}


}






@media (min-width: 767px)  and (max-width: 992px){
    .navbar-nav {
        flex-direction: row !important;
        margin: 0pc 150px ;
    }
    .exp-adv{
        right: 0 !important;
        bottom: 8px !important;
    }
    .login-button{
        right: 0 !important;
    }
}

@media (min-width: 992px){
    .navbar-expand-lg .navbar-collapse{
        margin: 0px 100px !important;
    }
    .navbar-expand-lg .navbar-nav{
        width: 100% !important;
    }
    .exp-adv{
        right: 0 !important;
        margin-right: 0 !important;
        bottom: 10px ;
    }
}






footer {
    background: linear-gradient(to right, #030824e0, #093050de);
    color: #fff;
    padding: 20px;
}

.footer-container {
    width: 85%;
    padding: 30px 0px;
    margin: 0px auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-logo img {
    max-width: 130px;
    /* Adjust size as needed */
    background-color: #a2e5ff5d;
    padding: 10px 20px;
    border-radius: 20px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 20px;
}

.link-column {
    flex: 1;
    margin: 0 10px;
}

.link-column h4 {
    margin-bottom: 10px;
}

.link-column ul {
    list-style-type: none;
    padding: 0;
}

.link-column li {
    margin-bottom: 8px;
}

.link-column a {
    color: #fff;
    text-decoration: none;
}

.link-column a:hover {
    text-decoration: underline;
}

.social-links {
    width: 85%;
    margin: 20px auto;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links i {
    width: 24px;
    /* Adjust size as needed */
    height: 24px;
    margin: 0px 10px;
    color: white;
    border-radius: 10px;
}

.w-100 {
    height: 550px !important;
}

.facebook:hover {
    color: #1c89e2de;
    transition: 0.5s;
    font-size: 35px;
}

.twitter:hover {
    color: #1c5be2de;
    transition: 0.5s;
    font-size: 35px;
}

.insta:hover {
    color: rgb(255, 94, 0);
    transition: 0.5s;
    font-size: 35px;
}

.yt:hover {
    color: rgb(255, 0, 0);
    transition: 0.5s;
    font-size: 35px;
}

.linkdin:hover {
    color: rgb(0, 4, 255);
    transition: 0.5s;
    font-size: 35px;
}

.footer-logo p {
    width: 200px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.7rem;
    box-sizing: border-box;
    margin: 15px 0px;
}