/*** Spinner Start ***/
/*** Spinner ***/
#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;
}
.fa-2x{
    color:#e06327;
}
/*** 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);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #e06327;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.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 a:hover {
    background: #e06327;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top:10px;
    margin-bottom:10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    border-bottom: 1px solid #202e4d;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #202e4d;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}
/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
    
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0; 
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white); 
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    background-color: #ffffff;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 300ms ease;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}  

.blog .blog-item .blog-content {
    position: relative;
    background: #ffffff;
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0; 
    left: 25px; 
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}
/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.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-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px; 
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.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 {
    letter-spacing: 1px;
    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) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/
/* ===============================
   ABOUT US SECTION
================================ */

.section-abt{
    max-width:1417px;
    margin:auto;
    padding:2px;
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* LEFT CONTENT */
.left{
    flex:1;
}
.sheading{
    font-weight: 800;
}
.left h2{
    font-weight:700;
    font-size:23px;
    color:#333;
    margin: 0 0px 3px;
    line-height: 40px;
}

.left p{
    color:#555;
    text-align: justify;
}

/* RIGHT CONTENT */
.right{
    flex:1;
}

/* ===============================
   STATS CARDS
================================ */
.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.card{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0px 15px;
    border-radius:14px;
    box-shadow:0 4px 14px rgba(0,0,0,0.06);
}

.card-text{
    display:flex;
    flex-direction:column;
    flex:1;
}

.card-text h3{
    margin:0;
    font-size:22px;
}

.card-text span{
    font-size:14px;
    color:#666;
}

.card img{
    width: 107px;
    height: 107px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

/* 📱 Mobile Responsive */
@media(max-width:768px){

    .stats{
        grid-template-columns:repeat(2,1fr); /* 2 cards mobile */
        gap:12px;
    }

    .card{
        flex-direction:column;
        text-align:center;
        padding:15px 10px;
    }

    .card img{
        margin-top:10px;
        width:70px;
        height:70px;
    }

    .card-text h3{
        font-size:18px;
    }

    .card-text span{
        font-size:12px;
    }
}

/* ===============================
   FEATURED SECTION
================================ */

.featured{
    background:#eef2f6;
    padding:20px;
    border-radius:14px;
    overflow:hidden; /* IMPORTANT */
    margin: 10px 0px;
}

.featured .logos{
    display:flex;
    align-items:center;
    gap:40px;
    width:max-content;
    animation: featuredSlide 10s linear infinite;
}

.featured .logos img{
    height:36px;
    opacity:.85;
    transition:0.3s;
}

.featured .logos img:hover{
    transform:scale(1.08);
    opacity:1;
}

/* Animation only for featured section */
@keyframes featuredSlide{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}
/* MOBILE RESPONSIVE CLIENT SLIDER */

@media(max-width:768px){

    .featured{
        padding:15px;
        display: none;
    }

    .featured h4{
        text-align:center;
        font-size:18px;
        margin-bottom:15px;
    }

    .featured .logos-track{
        gap:25px;
        animation: continuousSlideMobile 18s linear infinite;
    }

    .featured .logos img{
        height:28px;
    }
}

@media(max-width:480px){

    .featured .logos-track{
        gap:20px;
        animation-duration:14s;
    }

    .featured .logos img{
        height:24px;
    }
}

/* Mobile smoother animation */
@keyframes continuousSlideMobile{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet & Mobile */
@media (max-width: 900px){

    .section-abt{
        flex-direction:column;
        gap:0px;
    }

    /* 2 CARDS PER ROW ON MOBILE */
    .stats{
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
    }

    .card{
        padding:12px;
        display: none;
    }

    .card-text h3{
        font-size:17px;
    }

    .card-text span{
        font-size:12px;
    }

    .card img{
        width: 107px;
        height: 107px;
    }

    .left h2{
        font-size:16px;
        line-height:32px;
    }

    .logos{
        justify-content:center;
    }
}

/* Extra Small Devices (optional) */
@media (max-width: 480px){
    .stats{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* TYPE HEADING DESIGN */
.typeJsWrapper{
    text-align:center;
    background:linear-gradient(90deg,#0f2e5b,#1b4b91);
}

.typeJsWrapper .typeJsText{
    font-family:'Montserrat',sans-serif;
    font-size:30px;
    font-weight:800;
    letter-spacing:.5px;
    line-height:1.4;
    color:#ffffff;
    display:inline-block;
    border-right:3px solid #e06327;
    padding-right:8px;
}

/* Highlight words effect */
.typeJsWrapper .typeJsText::selection{
    background:#e06327;
    color:#fff;
}
@media(max-width:768px){
  .typeJsWrapper .typeJsText{
      font-size:13px;
  }
}
/* about us end */
/* package start */
 .shine-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #ffff, #fff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s ease infinite;
    letter-spacing: 3px;
  }

  @keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
        .pricing-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1670px;
            margin: auto;
            /* background: #f4f5ff; */
        }

        /* CARD */
        .pricing-card {
            background: #fff;
            border: 1px solid #e2e9ff;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
            height: 560px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: .35s;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(11, 44, 77, .18);
        }

        /* HEADER (NO SCROLL) */
        .card-header {
            padding: 5px 21px 4px 13px;
            /* padding: 22px; */
            position: relative;
        }

        .page-badge {
            position: absolute;
            top: 28px;
            right: 15px;
            background: #eef3ff;
            color: #0b2c4d;
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 30px;
            font-weight: 600;
        }

        .plan-title {
            font-size: 18px;
            font-weight: 600;
            color: #111;
        }

        .price {
            font-size: 25px;
            font-weight: 700;
            color: #0b2c4d;
        }

        .price span {
            font-size: 13px;
            color: #c4001a;
            font-weight: 600;
        }

        .label {
            background: #0b2c4d;
            color: #fff;
            display: inline-block;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 30px;
            margin: 0px 0 2px;
        }

        /* DEMO LINKS (HORIZONTAL SCROLL ONLY) */
        .link-box {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding: 3px;
            border: 1px solid #dcdcdc;
            border-radius: 6px;
        }

        .link-box span {
            flex: 0 0 calc(100% / 7);
            min-width: calc(100% / 7);
            text-align: center;
            font-size: 12px;
            border: 1px solid #e2e2e2;
            border-radius: 4px;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
        }

        /* Thin scrollbar */
        .link-box::-webkit-scrollbar {
            height: 4px;
        }

        .link-box::-webkit-scrollbar-thumb {
            background: #9a9a9a;
            border-radius: 10px;
        }

        .link-box::-webkit-scrollbar-track {
            background: #e5e5e5;
        }

        /* BUTTON */
        .order-btn {
            display: block;
            margin: 0px 22px;
            background: linear-gradient(135deg, #316382, #202735);
            color: #fff;
            text-align: center;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
        }

        .order-btn:hover {
            background: linear-gradient(135deg, #202735, #316382);
        }

        /* BODY (VERTICAL SCROLL ONLY) */
        .card-body {
            overflow-y: auto;
            scrollbar-gutter: stable;
        }

        .features {
            list-style: none;
            font-size: 13px;
        }

        .features li {
            padding: 5px 0;
            display: flex;
        }

        .features li::before {
            content: "◆";
            font-size: 9px;
            margin-right: 8px;
            margin-top: 5px;
            color: #0b2c4d;
        }

        /* RESPONSIVE */
        @media(max-width:991px) {
            .pricing-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:600px) {
            .pricing-wrapper {
                grid-template-columns: 1fr;
            }
            .shine-title {
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(90deg, #ffff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s ease infinite;
    letter-spacing: 3px;
}
            .corp-container {
    width: 95% !important;
    margin: auto;
}
        }
/* package end */
/* carousel video slider start */
.video-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.video-track {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.video-track::-webkit-scrollbar {
  display: none;
}

.video-track video {
  min-width: 100%;
  height: 70vh;
  object-fit: cover;
  scroll-snap-align: center;
}
/* carousel video slider end */

/* grow your business line */

/* Banner */
.cta-banner{
display:flex;
align-items:center;
justify-content:space-between;
background:linear-gradient(90deg,#0f0c7a,#5b0ecf);
border-radius:22px;
color:#fff;
position:relative;
overflow:hidden;
}

/* Content Center */
.banner-content{
flex:1;
text-align:center;
}

.banner-content h2{
font-size:34px;
font-weight:600;
margin-bottom:25px;
line-height:1.4;
color: #fff;
}

/* Button */
.banner-btn{
display:inline-block;
border-radius:10px;
background: linear-gradient(90deg, #0f2e5b, #1b4b91);
color:#fff;
text-decoration:none;
font-weight:500;
transition:0.3s;
box-shadow:0px 8px 20px rgba(0,0,0,0.25);
padding: 5px 7px;
}

.banner-btn:hover{
transform:translateY(-4px);
}

/* Right Image */
.banner-img{
flex:0 0 auto;
}

.banner-img img{
max-width:280px;
animation:float 3s ease-in-out infinite;
}

/* Animation */
@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0);}
}

/* Tablet */
@media(max-width:992px){

.cta-banner{
flex-direction:column;
text-align:center;
padding:40px 25px;
}

.banner-img{
margin-top:20px;
}

.banner-img img{
max-width:220px;
}

.banner-content h2{
font-size:26px;
}

}

/* Mobile */
@media(max-width:576px){
.video-track video {
  min-width: 100%;
  height: 60vh;
  object-fit: cover;
  scroll-snap-align: center;
}
.banner-content h2{
font-size:22px;
}

.banner-btn{
padding:12px 24px;
font-size:14px;
display: none;
}

.banner-img img{
max-width:180px;
}

}

.btn-package{
    background-color: #173d73;
    color: #fff;
}
.btn-package:hover{
   background-color: #dc6033;
   color: #fff;
}
/* industries we serve */
.industry-container{
width:90%;
margin:auto;
}

.industry-section{
background:#f3f3f3;
padding:20px 0;
border-radius:20px;
}

.industry-flex{
display:flex;
gap:40px;
align-items:flex-start;
}

/* LEFT */
.industry-content{
width:22%;
}

.industry-content h2{
font-size:28px;
margin-bottom:15px;
}

.industry-content p{
line-height:1.7;
margin-bottom:20px;
}

.industry-button{
display:inline-block;
background:#d62828;
color:#fff;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
}

/* GRID */
.industry-cards{
width:88%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.industry-box{
position:relative;
overflow:hidden;
border-radius:12px;
}

.industry-box img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.industry-box span{
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);
background:#1b3e71;
color:#fff;
padding:5px 12px;
border-radius:6px;
font-size:18px;
}

/* TABLET */
@media(max-width:1024px){

.industry-flex{
flex-direction:column;
}

.industry-content,
.industry-cards{
width:100%;
}

.industry-cards{
grid-template-columns:repeat(2,1fr);
}

}
p{
    text-align: justify;
}
/* MOBILE */
@media(max-width:600px){
.industry-box span{
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);
background:#1b3e71;
color:#fff;
padding:5px 12px;
border-radius:6px;
font-size:13px;
}
.industry-section{
padding:0px 15px;
}

.industry-content h2{
font-size:22px;
}

.industry-cards{
grid-template-columns:repeat(2,1fr);
gap:12px;
}
}
/* industries we serve end */

/* pc whatsapp icon start here */
.heart {
  font-size: 150px;
  color: #e00;
  animation: beat .25s infinite alternate;
  transform-origin: center;
}

/* Heart beat animation */

@keyframes beat{
  to { transform: scale(1.2); }
}
/* pc whatsapp icon end here */

/* call now whatsapp now icon for mobile device start */
/* ===== MOBILE FIXED BAR ===== */
.mobile-contact-bar {
    display: none;
}

.mobile-btn {
    flex: 1;
    text-align: center;
    padding: 4px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-family: Poppins, sans-serif;
    
}

.call-btn {
    background: #e06327;
}
.call-btn:hover {
    background: #173d73;
}
.whatsapp-btn {
    background: #173d73;
}
.whatsapp-btn:hover {
    background: #e06327;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:768px){
.heart{
    display: none;
}
.mobi
    .top-contact-bar {
        display: none;
    }

    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    }
.mobile-btn:hover{
    color: #000;
}
}
/* call now whatsapp now icon for mobile device end */

/*blog deatils start here*/
/* BLOG CARD */
.blog-card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
transition:.4s;
}

.blog-card:hover{
transform:translateY(-4px);
box-shadow:0 18px 50px rgba(0,0,0,0.12);
}

.blog-title{
font-weight:700;
margin-bottom:10px;
}

.blog-intro{
color:#e33b3b;
font-weight:500;
}


/* CONTENTS TABLE */
.toc-box{
background:#fff;
border-radius:14px;
padding:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.toc-title{
font-weight:700;
margin-bottom:15px;
}

.toc-list{
list-style:none;
padding:0;
margin:0;
}

.toc-list li{
display:flex;
align-items:center;
gap:10px;
padding:8px;
border-radius:8px;
transition:.3s;
}

.toc-list li:hover{
background:#f4f6fb;
transform:translateX(4px);
}

.toc-list span{
background:#111;
color:#fff;
font-size:12px;
padding:3px 6px;
border-radius:4px;
min-width:35px;
text-align:center;
}

.toc-list a{
text-decoration:none;
color:#333;
font-weight:500;
}

.toc-list a:hover{
color:#0d6efd;
}


/* SIDEBAR */
.sidebar{
position:sticky;
top:90px;
}

.sidebar-card{
background:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
margin-bottom:20px;
}

.sidebar-title{
font-weight:700;
margin-bottom:15px;
border-left:4px solid red;
padding-left:10px;
}

.sidebar-list{
list-style:none;
padding:0;
margin:0;
}

.sidebar-list li{
border-bottom:1px dashed #ddd;
}

.sidebar-list a{
display:block;
text-decoration:none;
padding:10px 5px;
color:#444;
transition:.3s;
}

.sidebar-list a:hover{
color:#0d6efd;
padding-left:10px;
}


/* LATEST NEWS */
.latest-news-item{
gap:12px;
padding:10px 0;
border-bottom:1px dashed #ddd;
transition:.3s;
display:flex;
}

.latest-news-item:hover{
transform:translateX(5px);
}

.news-img{
width:90px;
height:70px;
object-fit:cover;
border-radius:8px;
}

.news-content h6{
font-size:14px;
margin-bottom:3px;
}

.news-content a{
text-decoration:none;
color:#333;
font-weight:600;
transition:.3s;
}

.news-content a:hover{
color:#0d6efd;
}

.news-content span{
font-size:12px;
color:#888;
display:block;
}


/* MOBILE RESPONSIVE */
@media(max-width:991px){

.sidebar{
position:relative;
top:0;
}

}

@media(max-width:767px){

.toc-list{
font-size:14px;
}

.latest-news-item{
flex-direction:column;
}

.news-img{
width:100%;
height:auto;
}

}

/*blog details end here*/