/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Pre-position the spinner to prevent layout shifts */
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/* Parallax Container CSS*/

.wave-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #4779f7;
}

.owl-prev,
.owl-next {
    display: none !important;
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 5px;
    /* Space between spinner and text */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: url('../img/wave.png');
    background-size: 100vw 20vh;
}

.wave1 {
    animation: animate 20s linear infinite;
    z-index: 15;
    opacity: 0.9;
    animation-delay: 0s;
    bottom: -150px;
}

.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 10;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: -130px;
}

.wave3 {
    animation: animate 10s linear infinite;
    z-index: 5;
    opacity: 0.4;
    animation-delay: -2s;
    bottom: -110px;
}

.wave4 {
    animation: animate2 5s linear infinite;
    z-index: 1;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: -90px;
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 100vw;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -100vw;
    }
}

.parallax-item {
    position: absolute;
    height: auto;
}

.human {
    width: 30%;
    bottom: 0;
    left: 2rem;
    z-index: 3;
}

.table {
    width: 50%;
    bottom: 1rem;
    left: 3rem;
    z-index: 2;
}

.pot {
    bottom: 1rem;
    right: 3rem;
    z-index: 3;
}

.board {
    width: 80%;
    top: 0rem;
    left: 0;
    z-index: 1;
}

@media (max-width: 992px) {
    .board {
        width: 60%;
        left: 3rem;
    }

    .human {
        width: 25%;
        bottom: 9rem;
        left: 3rem;
    }

    .table {
        width: 40%;
        bottom: 9rem;
    }

    .pot {
        bottom: 9rem;
        right: 8rem;
        z-index: 3;
    }

    .wave1 {
        bottom: 20px;
    }

    .wave2 {
        bottom: 15px;
    }

    .wave3 {
        bottom: 10px;
    }

    .wave4 {
        bottom: 5px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

/* Slide in from the top */
@keyframes slideInTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-in-top {
    animation: slideInTop 1s ease-in-out forwards;
}

/* Slide in from the right */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in-right {
    animation: slideInRight 1s ease-in-out forwards;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: 0.5s;
    opacity: 1;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 64px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--bs-light); */
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 600px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)),
        url(../img/bg-breadcrumb.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    min-height: 320px;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
    line-height: 1;
}

.feature .feature-item .feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.1s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Feature End ***/

/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
    max-height: 125px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner:hover {
    max-height: 25rem;
    transition: max-height 200ms ease;
}

.service .service-item .service-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Service End ***/

/*Pricing*/

.pricing img {
    width: 50%;
}

.pricing-content {
    position: relative;
}

.pricing_design {
    position: relative;
    margin: 0px 15px;
}

.pricing_design .single-pricing {
    background: var(--bs-primary);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.2);
    position: relative;
    z-index: 1;
    min-height: 35rem;
}


.pricing_design .single-pricing:before {
    content: '';
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 190px 18px;
    border: 1px solid #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.price-head {}

.price-head h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

.price-head h3 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 5px;
    color: var(--bs-primary);
    font-size: 3rem;
}

.price-head span {
    font-size: 16px;
    color: var(--bs-dark);
}

.single-pricing ul {
    /* list-style: none; */
    margin-top: 30px;
}

.single-pricing ul li {
    line-height: 36px;
}

.single-pricing ul li i {
    background: var(--bs-primary);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    margin-right: 6px;
}

.pricing-price {}

.price_btn {
    background: var(--bs-primary);
    padding: 10px 30px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border-radius: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price_btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

a {
    text-decoration: none;
}

.section-title {
    margin-bottom: 60px;
}

.text-center {
    text-align: center !important;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
}

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, 0.8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

/* .spinner {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial-text {
    height: 125px;
}

@media (max-width: 991px) {
    .testimonial-text {
        height: 200px;
    }
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s;
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/*** copyright end ***/

/* ===============================================
   MODERN HERO SECTION STYLING
   =============================================== */

/* Main Hero Container */
.modern-hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 50%, #f0f8ff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

/* Hero Background Elements */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Background Shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    will-change: transform;
    /* Optimize for animation */
    contain: layout style paint;
    /* Improve performance */
    transform: translate3d(0, 0, 0);
    /* Force GPU acceleration */
    animation: float 6s ease-in-out infinite;
}

.hero-bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4285f4, #34a853);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ea4335, #fbbc04);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.hero-bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4285f4, #9c27b0);
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

/* Grid Pattern Background */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(66, 133, 244, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 133, 244, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Hero Main Content */
.hero-main-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Utility Classes */
.min-vh-90 {
    min-height: 90vh;
}

/* Trust Badges Styling */
.hero-trust-badges {
    margin-bottom: 1.5rem;
}

.hero-trust-badges .bg-white {
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-trust-badges .bg-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Professional Stats Bar */
.professional-stats {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.professional-stats .stat-item {
    text-align: center;
    padding: 0 1rem;
}

.professional-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    display: block;
    line-height: 1.2;
}

.professional-stats .stat-label {
    font-size: 0.875rem;
    color: #5f6368;
    margin-top: 0.25rem;
}

/* Trusted By Section */
.trusted-by-section {
    margin-top: 2rem;
}

.trusted-by-section .badge-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.trusted-by-section .badge-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Visual Card Styling */
.visual-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
    border-radius: 20px 20px 0 0;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Transcript Preview */
.transcript-preview {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
}

.transcript-preview::before {
    content: 'IRS Form 1040';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #f8f9fa;
    padding: 0 10px;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-badge.badge-secure {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-badge.badge-instant {
    bottom: 30%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #34a853, #fbbc04);
}

.floating-badge.badge-approved {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #ea4335, #4285f4);
}

/* Enhanced CTA Buttons */
.hero-cta-group .btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.hero-cta-group .btn-primary {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.hero-cta-group .btn-primary:hover {
    background: linear-gradient(135deg, #1557b0, #0f4c8c);
    border-color: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.hero-cta-group .btn-outline-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #1a73e8;
    border: 2px solid #4285f4;
    backdrop-filter: blur(10px);
}

.hero-cta-group .btn-outline-primary:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

/* Free Badge on CTA */
.free-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #34a853, #0f9d58);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(52, 168, 83, 0.3);
}

/* Wave Footer */
.wave-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.wave-footer svg {
    width: 100%;
    height: 100px;
}

/* Keyframe Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-hero-section {
        min-height: 80vh;
        padding: 1.5rem 0;
    }

    .hero-bg-shape {
        opacity: 0.05;
    }

    .hero-bg-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        right: 5%;
    }

    .hero-bg-shape.shape-2 {
        width: 150px;
        height: 150px;
        bottom: 10%;
        left: -5%;
    }

    .hero-bg-shape.shape-3 {
        width: 100px;
        height: 100px;
        top: 40%;
        right: -5%;
    }

    .professional-stats {
        padding: 1rem;
    }

    .professional-stats .stat-item {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .floating-badge {
        display: none;
    }

    .visual-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .modern-hero-section {
        min-height: 70vh;
        padding: 1rem 0;
    }

    .min-vh-90 {
        min-height: 70vh;
    }

    .hero-trust-badges .d-flex {
        justify-content: center;
    }

    .professional-stats .row {
        text-align: center;
    }

    .professional-stats .stat-item {
        margin-bottom: 1.5rem;
    }

    .hero-cta-group {
        text-align: center;
        margin-top: 1.5rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .trusted-by-section .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }

    .trusted-by-section .badge-item {
        text-align: center;
    }
}

/* ===============================================
   MODERN NAVBAR STYLING
   =============================================== */

/* Modern Navbar */
#modernNavbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    z-index: 1050;
}

#modernNavbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* Brand styling */
.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-text .brand-name {
    font-size: 1.1rem;
    color: #1a73e8;
    line-height: 1.2;
}

.brand-text .brand-tagline {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1;
}

/* Modern hamburger menu */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.hamburger-lines {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .line2 {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .line3 {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation links */
.navbar-nav .nav-link {
    color: #4a5568 !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: #1a73e8 !important;
    background: rgba(26, 115, 232, 0.08);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: #1a73e8 !important;
    background: rgba(26, 115, 232, 0.1);
}

/* Modern CTA buttons */
.navbar .btn {
    font-weight: 500;
    letter-spacing: 0.025em;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-width: 1.5px;
    font-size: 0.9rem;
}

.navbar .btn-outline-primary {
    color: #1a73e8;
    border-color: #1a73e8;
    background: transparent;
}

.navbar .btn-outline-primary:hover {
    background: #1a73e8;
    border-color: #1a73e8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.navbar .btn-primary {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    border-color: #1a73e8;
    color: white;
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, #1557b0, #0f4c8c);
    border-color: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

/* Mobile navbar styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        margin-bottom: 1.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(26, 115, 232, 0.1);
    }

    .navbar .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .brand-text {
        display: none !important;
    }
}

/* Navbar spacer responsive adjustment */
.navbar-spacer {
    height: 80px;
}

@media (max-width: 991.98px) {
    .navbar-spacer {
        height: 70px;
    }
}

/* Smooth scroll behavior for navbar links */
html {
    scroll-behavior: smooth;
}

/* Active page indicator */
.navbar-nav .nav-link[href*="index.html"] {
    color: #1a73e8 !important;
    background: rgba(26, 115, 232, 0.1);
}

/* Additional responsive brand styling */
@media (max-width: 576px) {
    .navbar-logo {
        height: 35px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-spacer {
        height: 65px;
    }
}

/* Scroll-triggered navbar styling (for JavaScript) */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* ===============================================
   END MODERN NAVBAR STYLING
   =============================================== */