/*** 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: 80px;
}

.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;
    }

    .nav-bar .navbar-light .navbar-brand img {
        max-height: 80px;
    }

    .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;
    }

    /* //added by me */
    .nav-bar .navbar-light .navbar-brand img {
        max-height: 80px;
    }

    .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: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.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;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.header-carousel .owl-nav .owl-prev {
    margin-left: -75px;
}

.header-carousel .owl-nav .owl-next {
    margin-left: 75px;
}

.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,
    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
    }

    .header-carousel .owl-nav .owl-prev {
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        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/service_breadcrumb_banner.svg);
    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;
}

.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, .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;
}

.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-dark);
}

.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 ***/


/*** 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;
}

.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-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    height: 100%;
}

.testimonial .testimonial-item {
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
}

.testimonial .testimonial-item h4 {
    font-size: 18px;
}

.testimonial .testimonial-item p:not(.mb-4) {
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial .testimonial-item p.mb-4 {
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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;
}

.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);
}

/* Tablet */
@media (max-width: 991px) {
    .testimonial .testimonial-item {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .testimonial .testimonial-item {
        height: auto;
        min-height: 260px;
        padding: 25px 20px !important;
    }

    .testimonial .testimonial-item p.mb-4 {
        -webkit-line-clamp: 7;
        font-size: 13px;
    }

    .testimonial-carousel .owl-stage-outer {
        margin-top: 70px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        padding: 4px 20px;
        font-size: 13px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .testimonial .testimonial-item h4 {
        font-size: 16px;
    }

    .testimonial .testimonial-item p.mb-4 {
        -webkit-line-clamp: 8;
    }
}

/*** 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-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*** 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 a img {
    max-height: 80px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item p {
    line-height: 1.7;
}

.footer .footer-btn a,
.footer .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-btn a {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.footer .footer-btn a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.footer .footer-item i.fas,
.footer .footer-item i.fa {
    width: 16px;
    text-align: center;
}

@media (max-width: 991px) {
    .footer .footer-item {
        margin-bottom: 10px;
    }
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/





/* client */
/*** Clients Start ***/
.clients .client-item {
    background: var(--bs-white);
    border-radius: 10px;
    /* box-shadow: 0 0 45px rgba(236, 47, 47, 0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin: 10px;
    padding: 20px;
    transition: 0.5s;
}

.clients .client-item img {
    max-height: 80px;
    width: auto;
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: 0.5s;
}

.clients .client-item:hover {
    box-shadow: 0 0 45px rgba(1, 95, 201, .15);
    transform: translateY(-5px);
}

.clients .client-item:hover img {
    /* filter: grayscale(0%); */
    opacity: 1;
}

.clients-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.clients-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.clients-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: var(--bs-light);
    display: inline-block;
    border-radius: 50%;
    transition: 0.5s;
}

.clients-carousel .owl-dots .owl-dot.active span {
    background: var(--bs-primary);
}

/*** Clients End ***/



/*** Career Start ***/
.career-openings {
    background: var(--bs-light);
}

.career-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, .06);
}

.career-item .accordion-button {
    background: var(--bs-white);
    color: var(--bs-dark);
    font-size: 18px;
    padding: 25px 30px;
    box-shadow: none;
}

.career-item .accordion-button:not(.collapsed) {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.career-item .accordion-button:not(.collapsed) .career-meta {
    color: var(--bs-white);
}

.career-item .accordion-button::after {
    filter: none;
}

.career-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.career-item .career-meta {
    font-size: 14px;
    color: var(--bs-primary);
    font-weight: 500;
}

.career-item .accordion-body {
    padding: 30px;
    background: var(--bs-white);
}

.career-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.career-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.career-list li::marker {
    color: var(--bs-primary);
}

.career-footer {
    border-top: 1px solid rgba(0, 0, 0, .08);
}

@media (max-width: 767px) {
    .career-item .accordion-button {
        padding: 18px 20px;
        font-size: 16px;
    }

    .career-item .accordion-body {
        padding: 20px;
    }
}

/*** Career End ***/


/*** Job Application Form Start ***/
.job-application {
    background: var(--bs-white);
}

.application-form-wrap {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.job-application .form-label {
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 8px;
}

.job-application .form-control,
.job-application .form-select {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: var(--bs-light);
}

.job-application .form-control:focus,
.job-application .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.15rem rgba(1, 95, 201, .15);
    background: var(--bs-white);
}

.job-application .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.job-application .invalid-feedback {
    font-size: 13px;
}

.job-application .form-text {
    font-size: 12px;
}

#formStatus.text-success {
    color: #198754;
    font-weight: 600;
}

#formStatus.text-danger {
    color: #dc3545;
    font-weight: 600;
}

/*** Job Application Form End ***/




/*** About Page Redesign Start ***/

/* Gradient accent text */
.text-gradient {
    background: linear-gradient(90deg, var(--bs-primary), #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating background shapes */
.about-intro {
    background: var(--bs-light);
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--bs-primary);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
    animation: floatY 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: -50px;
    animation: floatY 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 45%;
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* About image + floating badge */
.about-img-wrap {
    animation: fadeScale 1s ease;
}

.about-main-img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bs-white);
    border-radius: 12px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    animation: floatY 4s ease-in-out infinite;
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-badge h3 {
    color: var(--bs-primary);
    font-weight: 700;
}

@keyframes fadeScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stats strip */
.stats-strip {
    background: var(--bs-primary);
}

.stat-box {
    color: var(--bs-white);
}

.stat-icon {
    font-size: 34px;
    margin-bottom: 15px;
    opacity: 0.85;
    display: inline-block;
    transition: transform 0.4s ease;
}

.stat-box:hover .stat-icon {
    transform: translateY(-8px) scale(1.1);
}

.stats-strip .counter-counting span {
    color: var(--bs-white);
}

/* Mission / Vision / Values cards */
.mvv-section {
    background: var(--bs-white);
}

.mvv-card {
    background: var(--bs-light);
    border-radius: 16px;
    height: 100%;
    transition: all 0.45s ease;
    transform-style: preserve-3d;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(1, 95, 201, .15);
    background: var(--bs-white);
}

.mvv-card-highlight {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.mvv-card-highlight h4,
.mvv-card-highlight p {
    color: var(--bs-white);
}

.mvv-card-highlight:hover {
    background: var(--bs-dark);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bs-white);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: transform 0.5s ease;
}

.mvv-card:hover .mvv-icon {
    transform: rotateY(360deg);
}

.mvv-card-highlight .mvv-icon {
    color: var(--bs-primary);
}

/* Why Choose Us */
.why-choose {
    background: var(--bs-light);
}

.why-item {
    background: var(--bs-white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: 0.4s ease;
    border-left: 3px solid transparent;
}

.why-item:hover {
    border-left: 3px solid var(--bs-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transform: translateX(5px);
}

.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: rgba(1, 95, 201, .1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.why-item:hover .why-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-dark));
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .about-badge {
        position: static;
        margin-top: 15px;
        justify-content: center;
    }

    .about-shape {
        opacity: 0.05;
    }
}

/*** About Page Redesign End ***/
/*** About Page Start ***/

/* Mission & Vision */
.mv-item {
    transition: 0.5s;
}

.mv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bs-white);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: 0.5s;
}

.mv-item:hover .mv-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Our Goals */
.goal-item {
    transition: 0.5s;
}

.goal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.goal-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.5s;
}

.goal-item:hover .goal-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Our Objectives */
.objective-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Key Benefits */
.benefit-item {
    transition: 0.5s;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Stats */
.stats {
    background: var(--bs-primary);
}

.stats h4 {
    color: rgba(255, 255, 255, .85);
}

/* Why Choose Us */
.why-choose {
    background: var(--bs-white);
}

/*** About Page End ***/







/*** Accounting Service Page Start ***/

/* Sidebar nav */
.service-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--bs-white);
    color: var(--bs-dark);
    font-weight: 500;
    transition: 0.4s;
}

.service-nav .nav-link i {
    font-size: 16px;
    width: 20px;
    color: var(--bs-primary);
}

.service-nav .nav-link:hover {
    background: rgba(1, 95, 201, .08);
}

.service-nav .nav-link.active {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.service-nav .nav-link.active i {
    color: var(--bs-white);
}

/* Tab content panel */
.service-tab-content {
    min-height: 380px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
}

.service-tab-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(1, 95, 201, .1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.service-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--bs-dark);
}

.service-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}

/* Process steps */
.process-item {
    background: var(--bs-light);
    border-radius: 10px;
    padding: 40px 25px;
    height: 100%;
    transition: 0.5s;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

/* CTA strip */
.cta-strip {
    background: var(--bs-primary);
}

/* Mobile: sidebar nav becomes horizontal scroll instead of stacked column */
@media (max-width: 991px) {
    .service-nav {
        position: static !important;
    }

    .service-nav .nav {
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .service-nav .nav-link {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/*** Accounting Service Page End ***/




/*** Compliance Service Page Start ***/

/* Key Offerings */
.offering-item {
    transition: 0.5s;
}

.offering-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.offering-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.5s;
}

.offering-item:hover .offering-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Key Benefits chips */
.benefit-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bs-light);
    border-radius: 8px;
    padding: 15px 20px;
    height: 100%;
    font-weight: 500;
    color: var(--bs-dark);
    transition: 0.4s;
}

.benefit-chip i {
    color: var(--bs-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-chip:hover {
    background: rgba(1, 95, 201, .08);
}

/* Add-on Services */
.addon-item {
    transition: 0.5s;
    border-top: 3px solid transparent;
}

.addon-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    border-top: 3px solid var(--bs-primary);
}

.addon-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.5s;
}

.addon-item:hover .addon-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* CTA strip (shared with accounting page — skip if already added) */
.cta-strip {
    background: var(--bs-primary);
}

/*** Compliance Service Page End ***/

/*** Service Page Redesign Start ***/

/* Reuse gradient text + floating shapes from About page */
.text-gradient {
    background: linear-gradient(90deg, var(--bs-primary), #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-intro {
    background: var(--bs-light);
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--bs-primary);
    z-index: 1;
}

.shape-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -70px;
    animation: floatY 6s ease-in-out infinite;
}

.shape-2 {
    width: 140px;
    height: 140px;
    bottom: 30px;
    left: -40px;
    animation: floatY 8s ease-in-out infinite reverse;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* Service hero image + badge */
.service-img-wrap {
    animation: fadeScale 1s ease;
}

.service-main-img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.service-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bs-white);
    border-radius: 12px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    animation: floatY 4s ease-in-out infinite;
}

.service-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.service-badge h3 {
    color: var(--bs-primary);
    font-weight: 700;
}

@keyframes fadeScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flip Cards */
.flip-card {
    perspective: 1500px;
    height: 260px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 14px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front {
    background: var(--bs-white);
}

.flip-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(1, 95, 201, .1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: 0.4s ease;
}

.flip-card:hover .flip-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: scale(1.1);
}

.flip-hint {
    font-size: 12px;
    color: var(--bs-primary);
    margin-top: 15px;
    opacity: 0.75;
}

.flip-card-back {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: rotateY(180deg);
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.flip-card-back h5 {
    color: var(--bs-white);
    width: 100%;
    text-align: center;
}

.flip-card-back .service-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.flip-card-back .service-check-list li {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.flip-card-back .service-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 11px;
    color: var(--bs-white);
}

/* Tap-to-flip on touch devices (no hover) */
@media (hover: none) {
    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card:hover .flip-card-inner {
        transform: none;
    }
}

/* Process timeline connector */
.process-timeline {
    position: relative;
}

.process-item {
    background: var(--bs-white);
    border-radius: 12px;
    padding: 35px 20px;
    height: 100%;
    position: relative;
    transition: 0.4s ease;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #00c6ff);
    color: var(--bs-white);
    font-size: 22px;
    font-weight: 700;
}

@media (min-width: 992px) {
    .process-item::after {
        content: "";
        position: absolute;
        top: 55px;
        right: -20px;
        width: 40px;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--bs-primary) 0, var(--bs-primary) 6px, transparent 6px, transparent 12px);
    }

    .col-lg-3:last-child .process-item::after {
        display: none;
    }
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-dark));
}

@media (max-width: 767px) {
    .flip-card {
        height: 240px;
    }

    .service-badge {
        position: static;
        margin-top: 15px;
        justify-content: center;
    }
}

/*** Service Page Redesign End ***/

/*** Accounting Services Redesign Start ***/

/* Hero image frame */
.service-hero {
    background: var(--bs-white);
}

.service-hero-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
}

/* Intro */
.service-detail-intro {
    background: var(--bs-white);
}

/* Key Offering panel */
.key-offering-section {
    background: var(--bs-light);
}

.key-offering-panel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 95, 201, .12);
}

.key-offering-img {
    height: 100%;
    min-height: 260px;
}

.key-offering-img img {
    object-fit: cover;
    height: 100%;
}

.key-offering-content {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-dark));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.key-offering-label {
    display: inline-block;
    color: var(--bs-white);
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Key Benefits — numbered tiles */
.benefits-strip {
    background: var(--bs-white);
}

.benefit-tile {
    background: var(--bs-light);
    border-radius: 12px;
    padding: 25px 18px;
    height: 100%;
    text-align: center;
    transition: 0.4s ease;
}

.benefit-tile:hover {
    background: var(--bs-primary);
    transform: translateY(-6px);
}

.benefit-tile:hover p,
.benefit-tile:hover .benefit-num {
    color: var(--bs-white);
}

.benefit-num {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 10px;
    transition: 0.4s ease;
    font-family: 'DM Sans', sans-serif;
}

.benefit-tile p {
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-dark);
    transition: 0.4s ease;
}

/* Add-on Services — connected list */
.addon-services {
    background: var(--bs-light);
}

.addon-row {
    display: flex;
    gap: 25px;
    background: var(--bs-white);
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 20px;
    transition: 0.4s ease;
    position: relative;
}

.addon-row:last-child {
    margin-bottom: 0;
}

.addon-row:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transform: translateX(6px);
}

.addon-row-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(1, 95, 201, .1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.4s ease;
}

.addon-row:hover .addon-row-icon {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.addon-row-content h5 {
    color: var(--bs-dark);
}

.addon-row-content p {
    color: #6c757d;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 767px) {
    .key-offering-img {
        min-height: 200px;
    }

    .key-offering-content {
        padding: 30px !important;
        text-align: center;
    }

    .addon-row {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .addon-row-icon {
        margin: 0 auto;
    }

    .benefit-tile {
        padding: 20px 12px;
    }
}

/*** Accounting Services Redesign End ***/

/* Privacy page background and styling */
.privacy-section {
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0 1px, transparent 1px 20px);
    padding-top: 60px;
    padding-bottom: 60px;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 14px;
    padding: 40px 42px;
    box-shadow: 0 10px 30px rgba(23, 42, 69, 0.08);
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.privacy-section h1 {
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 8px;
}

.privacy-divider {
    height: 4px;
    width: 72px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--bs-primary), rgba(13, 110, 253, 0.5));
    margin: 10px 0 22px 0;
}

.privacy-card p {
    font-size: 16px;
    line-height: 1.82;
    color: #495057;
    margin-bottom: 1rem;
}

.privacy-card h5 {
    color: var(--bs-primary);
    margin-top: 22px;
    font-weight: 700;
}

.privacy-card a {
    color: var(--bs-primary);
    text-decoration: underline;
}

.privacy-card ul {
    margin-left: 1.2rem;
    color: #495057;
}

.privacy-card .last-updated {
    color: #6c757d;
    font-size: 14px;
    margin-top: 14px;
}

/* small utility for contact link emphasis */
.contact-link {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(13, 110, 253, 0.06);
    color: var(--bs-primary);
    font-weight: 600;
}

/* responsive tweaks */
@media (max-width: 992px) {
    .privacy-card {
        padding: 32px;
    }
}

@media (max-width: 576px) {
    .privacy-card {
        padding: 20px;
        border-radius: 10px;
    }

    .privacy-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .privacy-card p {
        font-size: 15px;
    }
}

/* Print-friendly adjustments */
@media print {
    .privacy-section {
        background: none;
    }

    .privacy-card {
        box-shadow: none;
        border: none;
    }

    .privacy-card a {
        text-decoration: underline;
    }
}


/*** Form Submit Animation Start ***/
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: -2px;
    animation: btn-spin .6s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.form-status-fade {
    animation: form-fade-up .45s ease;
}

@keyframes form-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #3FAE6B;
    margin: 0 auto 12px;
    animation: form-pop-in .45s cubic-bezier(.34, 1.56, .64, 1);
}

.form-success-check svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes form-pop-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*** Form Submit Animation End ***/


/*** Form Submit Animation Start ***/

/* Submit button loading state */
.btn-sending {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner-ring {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin .6s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Shake the form on error so it doesn't feel like a silent failure */
.shake-error {
    animation: shake-error .5s cubic-bezier(.36, .07, .19, .97);
}

@keyframes shake-error {

    10%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    80% {
        transform: translateX(4px);
    }

    30%,
    50%,
    70% {
        transform: translateX(-8px);
    }

    40%,
    60% {
        transform: translateX(8px);
    }
}

#contactFormStatus.text-danger {
    display: inline-block;
    animation: form-fade-up .35s ease;
}

@keyframes form-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel wrapper so the form and the success state can crossfade in place */
.contact-form-panel {
    position: relative;
}

#contactForm {
    transition: opacity .35s ease, transform .35s ease;
}

#contactForm.form-exit {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
}

/* Success panel */
.contact-success-panel {
    position: relative;
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 45px rgba(0, 0, 0, .06);
    overflow: hidden;
    animation: success-panel-in .5s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes success-panel-in {
    0% {
        opacity: 0;
        transform: scale(.92) translateY(12px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.contact-success-panel h3 {
    animation: form-fade-up .5s ease .15s both;
}

.contact-success-panel p,
.contact-success-panel #sendAnotherBtn {
    animation: form-fade-up .5s ease .25s both;
}

/* Animated checkmark (stroke-draw circle + tick) */
.success-checkmark {
    margin: 0 auto 20px;
    width: 90px;
    height: 90px;
}

.checkmark-circle {
    stroke: #3FAE6B;
    stroke-width: 3;
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: checkmark-circle .55s cubic-bezier(.65, 0, .45, 1) forwards;
}

.checkmark-tick {
    stroke: #3FAE6B;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: checkmark-tick .35s ease-in .5s forwards;
}

@keyframes checkmark-circle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-tick {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Lightweight confetti burst made of pure CSS, no libraries needed */
.success-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.success-confetti span {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0;
    animation: confetti-burst .9s ease-out forwards;
}

@keyframes confetti-burst {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: var(--confetti-end) rotate(var(--confetti-spin)) scale(.6);
    }
}

/*** Form Submit Animation End ***/


/*** Announcement Bar Start ***/
.announcement-bar {
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-dark));
    color: var(--bs-white);
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    max-height: 60px;
}

.announcement-bar.hide {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.announcement-bar p {
    color: var(--bs-white);
    padding-right: 30px;
}

.announcement-link {
    color: #FFD27A;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.announcement-link:hover {
    color: var(--bs-white);
}

.announcement-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--bs-white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
    .announcement-bar {
        font-size: 12.5px;
        max-height: 90px;
    }

    .announcement-bar p {
        line-height: 1.5;
        padding-right: 26px;
    }
}
/*** Announcement Bar End ***/