/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .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;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .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: .5s;
    opacity: 1;
}

/*** Topbar End ***/


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

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

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

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #16171a;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 36px 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(0deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 5px;
        transition: .5s;
        opacity: 0;
        left: -10px;
    }

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

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: calc(100vh - 98px);
}


.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, .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.jpg);
    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;
}

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

.feature .feature-item .feature-icon {
    position: relative;
    width: 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;
}

.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.5s;
    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;
    height: 200px;
}

.service .service-item:hover .service-img img {
    transform: scale(1.3) rotate(5deg);
}

/* .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, .2);
    transition: 0.5s;
    z-index: 1;
} */

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

.service .service-item .service-icon {
    position: absolute;
    /* width: 140px; */
    top: -20px;
    right: 25px;
    background: #252940;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
    padding: 8px 24px !important;
    border-radius: 5px;
    color: #fff;
}



.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);
    height: 183px;
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

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

.service-content-inner h6 {
    font-weight: 800;
    font-size: 20px;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .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, .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, .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;
    height: 300px;
}

.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: 0px;
    margin-right: -30%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-right: 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: 70px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 22px;
    border-radius: 50%;
    transition: 0.5s;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.testimonial .owl-nav .owl-next {
    height: 60px;
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 22px;
    border-radius: 50%;
    transition: 0.5s;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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



/*** 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, .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, .08);
}

/*** copyright end ***/

/* Background wrapper */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
}

/* Zoom smooth animation */
.zoom-bg {
    animation: zoomInBg 10s ease-in-out forwards;
}

@keyframes zoomInBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

/* Background images */
.slide-1 .slide-bg {
    background-image: url("/frontend/img/banner1.webp");
}

.slide-2 .slide-bg {
    background-image: url("/frontend/img/banner2.webp");

}


.bannerc {
    position: relative;
    overflow: hidden;
}

.header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.circle-shape {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: linear-gradient(138deg, rgba(18, 47, 42, 0) 20.66%, #122f2a 91.54%);
    backdrop-filter: blur(6.5px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

/* Animated Button – TT Version */
.tt-animated-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 5px;
    background-color: #314259;
    /* main button color */
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: max-content;
}

/* Top & bottom layers */
.tt-animated-btn::before,
.tt-animated-btn::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background: #252940;
    /* layer background */
    color: #fff;
    /* layer text color */
    overflow: hidden;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;
}

/* Top half text */
.tt-animated-btn::before {
    top: 0;
    padding-top: 18px;
    transform: translate3d(0, 0, 0);
}

/* Bottom half text */
.tt-animated-btn::after {
    bottom: 0;
    line-height: 0;
    transform: translate3d(0, 0, 0);
}

/* Center text */
.tt-animated-btn>span {
    position: relative;
    z-index: 2;
    display: inline-block;
    opacity: 0;
    transform: scale3d(0.2, 0.2, 1);
    transition:
        opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* Hover animation */
.tt-animated-btn:hover::before {
    transform: translate3d(0, -100%, 0);
}

.tt-animated-btn:hover::after {
    transform: translate3d(0, 100%, 0);
}

.tt-animated-btn:hover>span {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    color: #ffffff;
}

/* ===== Custom Submenu Style ===== */

.navbar .dropdown-menu {
    border-radius: 10px;
    border: none;
    padding: 10px 0;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    /* space for arrow */
    position: relative;
}

.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 40px;
    /* adjust arrow position */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #252940;
    /* arrow color */
}

.navbar .dropdown-item {
    font-weight: 600;
    padding: 10px 20px;
    color: #111;
}

.navbar .dropdown-item:hover {
    background: #f4f7ff;
    color: #0d6efd;
    /* blue hover text */
}

/* highlight main menu on hover */
.navbar .nav-link:hover,
.navbar .dropdown:hover>.nav-link {
    color: #2f6c73 !important;
}

/* Base arrow – always down by default */
.navbar .nav-link.dropdown-toggle::after {
    /* use Bootstrap’s default caret style */
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;

    transform: none;
    transition: transform 0.2s ease;
}

/* Rotate ONLY when dropdown is open (Bootstrap adds .show) */
.navbar .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.fs-16 {
    font-size: 16px;
}

.language_dropdown a small {
    font-size: 15px;
    font-weight: 600;
    color: #4e4e4e;
}

.topbar .container,
.nav-bar .container {
    max-width: 1564px;
}

/* 
.topbar__social::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-start: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #18bcc7;
}

.topbar__social {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    padding-block: 14px;
    position: relative;
    overflow-y: clip;
    z-index: 1;
    line-height: 0px;
}

.topbar__social::after {
    content: "";
    position: absolute;
    inset-inline-start: 99%;
    inset-block: 0px;
    width: 100%;
    height: 100%;
    background-color: #18bcc7;
    z-index: -1;
} */

.topbar__social a i {
    font-weight: 500;
}

/* =============== SECTION LAYOUT =============== */

.diff-two {
    position: relative;
    overflow: hidden;
}

/* GRID-LIKE BACKGROUND DOTS */
.diff-images-wrapper {
    position: relative;
    text-align: right;
}

/* Main Image */
.diff-main-img {
    display: inline-block;
    position: relative;
    margin-bottom: 80px;
    margin-inline-end: 80px;
}

.diff-main-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
}

/* Animated grid behind image */
.diff-grid {
    position: absolute;
    left: -35px;
    top: -40px;
    z-index: -1;
}

.diff-grid img {
    width: 110px;
    animation: moveTopBottom 4s ease-in-out infinite;
}

/* Floating small image */
.diff-small-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.diff-small-img img {
    width: 300px;
    border-radius: 40px;
    border: 8px solid #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

/* up-down animation */
@keyframes moveTopBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.8;
    }

    25% {
        opacity: 1;
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0.8;
    }

    75% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.8;
    }
}

/* =============== CONTENT =============== */

.diff-title {
    font-weight: 800;
    color: #296cd6;
    font-size: 34px;
}

/* =============== TABS =============== */

.diff-tabs {
    margin-top: 40px;
}

.diff-tab-btns {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 16px;
}

.diff-tab-btn {
    flex-grow: 1;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    background: transparent;
    border: none;
    color: #296cd6;
    cursor: pointer;
}

.diff-tab-btn:hover {
    background: #296cd6;
    color: #fff;
}

/* Active button */
.diff-tab-btn.active {
    background: #296cd6;
    color: #fff;
}

/* TAB CONTENT */
.diff-tab-content {
    margin-top: 30px;
}

.diff-content {
    display: none;
}

.diff-content.active {
    display: block;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.bg-section {
    background-color: #f5f5f5;
}

.testimonial-item {
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 20px 0px;
    transition: all 0.35s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: #fafafa;
}

.testimonial-carousel {
    padding-left: 80px;
    padding-right: 80px;
}

.icon-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 20px 0;
}

.icon-divider .lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    /* space between the two lines */
}

.icon-divider .lines .line1 {
    display: block;
    width: 56px;
    height: 1px;
    background: #4da3ff;
    opacity: 0.8;
    border-radius: 2px;
}

.icon-divider .lines .line2 {
    display: block;
    width: 70px;
    height: 1px;
    background: #4da3ff;
    opacity: 0.8;
    border-radius: 2px;
}

.icon-divider .icon {
    font-size: 32px;
    color: #4da3ff;
}

.left_lines {
    direction: rtl;
}


.custom-faq .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.custom-faq .faq-header {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #1f3c88;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    text-align: start;
    transition: all 0.3s ease;
}

.custom-faq .faq-header i {
    color: #1f3c88;
    font-size: 18px;
    transition: 0.3s;
}

/* When OPEN */
.custom-faq .faq-header:not(.collapsed) {
    background: #58a8ff;
    color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-faq .faq-header:not(.collapsed) i {
    transform: rotate(90deg);
    color: #fff;
}

/* Body */
.custom-faq .faq-body {
    background: #fff;
    padding: 20px 24px;
    border-top: none;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Fix arrow direction */
.custom-faq .faq-header.collapsed i {
    transform: rotate(0deg);
}

/* ICON DIVIDER */
.icon-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.icon-divider .line {
    width: 70px;
    height: 2px;
    background: #5cb3ff;
    opacity: .7;
}

.icon-divider .divider-icon {
    font-size: 28px;
    color: #5cb3ff;
}

/* Wrap card */
.value-card {
    position: relative;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background image layer (copied from inline image) */
.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    /* copies the inline background image */
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.7s ease;
    z-index: 0;
    transform: scale(1);
}

/* Zoom effect */
.value-card:hover::before {
    transform: scale(1.2);
}

/* Dark bottom overlay */
.value-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
    z-index: 1;
}

/* Top button */
.arrow-btn {
    background: #24c4e6;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
    z-index: 1;
    position: relative;
}

/* Overlay text */
.card-overlay {
    position: relative;
    z-index: 3;
}

/* Optional: Hover effect for button */
.value-card:hover .arrow-btn {
    background: #008caa;
}

.card-overlay h5,
.card-overlay p {
    color: #fff;
    margin: 0 0 8px 0;
    z-index: 1;
    position: relative;
}

/* NAV TABS */
.custom-tabs .nav-link {
    border: none !important;
    background: transparent;
    color: #5a76a6;
    font-weight: 600;
    font-size: 17px;
    margin: 0 25px;
    padding: 8px 24px;
    border-radius: 40px;
    transition: .3s;
}

.custom-tabs .nav-link.active {
    background: #5ba7ff;
    color: #fff !important;
}

/* Divider line */
.reports-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-top: 12px;
}


/* CARD */
.report-card {
    /* background: #fff; */
    border-radius: 16px;
    /* box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
}

.report-card:hover .report-top img {
    transform: scale(1.2) rotate(5deg);
    border-radius: 10px;
}

.report-card .report-top img {
    transition: all 0.5s ease;
    border-radius: 10px;
}


/* Top Gradient */
.report-top {
    height: 300px;
    /* background: linear-gradient(135deg, #00b0b4, #0068a8); */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.pdf-icon {
    max-width: 100%;
    height: auto;
}

/* Blue Folder Badge */
.report-badge {
    position: absolute;
    background: #252940;
    color: #fff;
    font-size: 14px;
    padding: 7px 18px;
    border-radius: 6px;
    top: -15px;
    margin-left: auto;
    margin-right: auto;
    left: 60px;
}

.report-badge i {
    margin-left: 5px;
}

/* Content */
.report-content {
    padding: 18px 20px;
    background: #fff;
    padding: 30px 30px;
    padding-top: 0px;
    position: relative;
    top: -50px;
    margin-bottom: -50px;
    width: calc(100% - 30px);
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    text-align: center;
}

.report-content .title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-top: 40px;
}

.report-content .divider {
    width: 100%;
    height: 1px;
    /* background: #e7e7e7; */
    margin: 12px 0;
    border-top: 1px solid #dedede;
    padding-top: 15px;
    margin-top: 30px;
    transition: all 0.5s ease;
}

.show-file {
    color: #003cff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.show-file i {
    margin-left: 6px;
}

.reports-section {
    background: #f2f2f2;
}

/* CARD WRAPPER */
.u-card {
    position: relative;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
}

/* BACKGROUND IMAGE */
.u-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--u-img);
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    transform: scale(1.1);
    transition: transform 0.6s ease, filter 0.6s ease;
    z-index: 1;
}

/* Hover: remove blur + zoom in */
.u-card:hover::before {
    filter: blur(0px);
    transform: scale(1.25);
}

/* OVERLAY */
.u-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45));
    z-index: 2;
}

/* TEXT */
.u-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;

    /* Default position */
    transform: translateY(0);
    transition: transform 0.5s ease;
}

/* TEXT MOVES UP ON HOVER */
.u-card:hover .u-content {
    transform: translateY(-20px);
    /* move text upward */
}

.u-content h4 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.u-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

/* IMAGE BOX */
.ceo-img-box {
    border: 8px solid #e8e8e8;
    border-radius: 25px;
    padding: 5px;
    overflow: hidden;
}

.ceo-img-box img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

/* CENTER VERTICAL LINE */
.ceo-divider {
    width: 7px;
    height: 100%;
    background-color: #00b9c9;
    border-radius: 10px;
}

/* HEADINGS */
.ceo-subtitle {
    font-size: 18px;
    margin-bottom: 8px;
}

.ceo-title {
    font-size: 36px;
}

/* DESCRIPTION */
.ceo-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

/* INFO BOXES */
.ceo-info-box i {
    font-size: 35px;
    color: #007bff;
}

.ceo-info-box h6 {
    font-size: 16px;
    color: #007bff;
}

.ceo-info-box p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .ceo-divider {
        display: none;
    }

    .ceo-profile-section {
        text-align: center;
    }
}

.ceo-info-box {
    text-align: left;
}

/* .ceo-img-box::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline-end: -40px;
    width: 20px;
    height: 400px;
    background-color: var(--base-bg);
    border-radius: 20px;
} */

.team-icon .btn-sm-square {
    border-radius: 0;
    border-bottom: 1px solid #ffffff2e !important;
}

.partners-logo-section {
    background: #ffffff;
}

.partners-carousel .partner-item {
    text-align: center;
    padding: 20px 0;
}

.partners-carousel .partner-item img {
    max-width: 160px;
    height: auto;
    opacity: 0.95;
    transition: 0.3s;
}

.partners-carousel .partner-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* MAIN CARD */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid #e6e6e6;
}

.contact-title {
    font-weight: 700;
    font-size: 28px;
}

.contact-subtitle {
    margin-top: -5px;
    font-size: 15px;
    color: #777;
}

/* INPUT WRAPPER WITH ICON */
.input-wrap {
    position: relative;
    margin-bottom: 10px;
}

.input-wrap input,
.input-wrap textarea,
.input-select {
    background: #f3f3f3;
    border: none;
    padding-left: 45px;
    min-height: 52px;
    border-radius: 8px;
}

.input-wrap textarea {
    resize: none;
    padding-top: 14px;
}
.form-select:focus {
    border: none;
    outline: 0;
    box-shadow: none;
}

.input-wrap i {
    position: absolute;
    left: 15px;
    top: 25px;
    transform: translateY(-50%);
    color: #777;
    font-size: 18px;
}
.form-control:focus {
    color: #787878;
    background-color: #f3f3f3;
    border-color: #f3f3f3;
    outline: 0;
    box-shadow: none;
}
/* CAPTCHA IMAGE */
.captcha-img {
    height: 45px;
    border-radius: 5px;
}

/* SUBMIT BUTTON */
.contact-btn {
    background: #06b6c9;
    color: #fff;
    font-weight: 600;
    padding: 12px 0;
}

.contact-btn:hover {
    background: #089aad;
}

/* RIGHT SIDE INFO CARD */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e6e6e6;
}

.info-title {
    font-weight: 700;
}

.info-line {
    width: 40px;
    height: 3px;
    background: #296cd6;
    margin-bottom: 20px;
    margin-top: 5px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: #333;
}

.info-list i {
    font-size: 26px;
    color: #296cd6;
}

/* SOCIAL */
.social-title {
    margin-top: 20px;
    font-weight: 600;
}

.social-line {
    width: 40px;
    height: 3px;
    background: #296cd6;
    margin-bottom: 15px;
    margin-top: 5px;
}

.social-icons a {
    display: inline-block;
    background: #f4f4f4;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 6px;
    color: #444;
    font-size: 18px;
}

.social-icons a:hover {
    background: #296cd6;
    color: white;
}

/* RIGHT SIDE BUTTONS */
.side-btn {
    background: #06b6c9;
    color: #fff;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 8px;
}

.side-btn:hover {
    background: #089aad;
}

