
/*** 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;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    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-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
}

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

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-weight: 400;
    transition: 0.5s;
}

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


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0%   {left: 0px;}
    50%   {left: 40px;}
    100%  {left: 0px;}
}

@keyframes RotateMoveRight {
    0%   {right: 0px;}
    50%   {right: 40px;}
    100%  {right: 0px;}
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 700;
    font-size: 18px;
}

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

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 568px) {
   
.navbar-light .navbar-brand img {
    max-height: 40px;
    transition: .5s;
}
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .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;
    }
}

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

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

.collapse.navbar-collapse {
    transition: 0.5s;
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: var(--bs-light);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

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

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 60px 0;
    /* margin-bottom: 6rem; */
    transition: 0.5s;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}


@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 10%;}
    100%  {bottom: 0px;}
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.04);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {top: 0px;}
    50%   {top: 10%;}
    100%  {top: 0px;}
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 100px !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-dark) !important;
}


.breadcrumb-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.breadcrumb-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(102, 16, 242, 0.07);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.breadcrumb-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

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


/*** Hearo Header Start ***/
.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
}

.hero-header {
    padding-top: 160px;
    /* padding-bottom: 100px; */
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/-sty1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}


.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}


@media (max-width: 992px) {
    .hero-header {
        padding-top: 280px;
        
    }

    .hero-header .rotate-img img {
        margin-top: 100px;
    }
   
}
@media (max-width: 568px) {
    .hero-header {
        padding-top: 170px;
        
    }

    .hero-header .rotate-img img {
        margin-top: 100px;
    }
   
}
/*** Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
    transition: 0.5s;
}

.service .service-item:hover {
    background: rgba(102, 16, 242, 0.09);
    border: 1px ;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {
    background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
    background: var(--bs-light);
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}
/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.price .price-item:hover {
    background: var(--bs-white) !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
    position: absolute;
    width: 200px;
    height: 110px;
    top: -45px;
    right: -80px;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transform: rotate(42deg);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}
/*** Pricing End ***/


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

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    background: rgba(102, 16, 242, 0.2);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(102, 16, 242, 0.2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

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

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

/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial {
    position: relative;
    background: var(--bs-light);
    overflow: hidden;
    z-index: 1;
}
.testimonial::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: url(../img/testimonial-img-2.jpg) center center no-repeat;
    animation: TestimonialMoveLeft 100s linear infinite;
    z-index: -1;

}

.testimonial::before {
    content: "";
    position: absolute;
    top: 30%;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: url(../img/testimonial-img-3.jpg) center center no-repeat;
    animation: TestimonialMoveRight 100s linear infinite;
    z-index: -1;

}

@keyframes TestimonialMoveLeft {
    0%   {left: 0px;}
    25%   {top: 100px;}
    50%   {left: 100%;}
    75%   {top: 80%;}
    100%  {left: 0px;}
}

@keyframes TestimonialMoveRight {
    0%   {right: 0px;}
    25%   {top: 100px;}
    50%   {right: 100%;}
    75%   {top: 80%;}
    100%  {right: 0px;}
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
    padding: 0 35px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    width: 70px;
    height: 70px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial .testimonial-carousel.owl-carousel {
        padding: 0;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -250px;
        margin-left: -15px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -250px;
        margin-right: -15px;
    }
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveLeft 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveLeft {
    0%   {left: 0px;}
    25%   {top: 100px;}
    50%   {left: 90%;}
    75%   {top: 80%;}
    100%  {left: 0px;}
}

.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0%   {right: 0px;}
    25%   {top: 100px;}
    50%   {right: 90%;}
    75%   {top: 80%;}
    100%  {right: 0px;}
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-dark);
    transition: 0.5s;
}

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

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
    
}
.footer {
    background: #f6f1ff;
}

.footer-centered {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    flex-wrap: wrap;
}

.footer-section {
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: black;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-info li i {
    color: #2e404e;
    margin-right: 8px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2e404e;
    color: #fff;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #031538;
}

.footer-bottom {
    background: #343c4a;
    color: white;
    font-size: 14px;
}




/*** Custom css ***/


  .hero-img {
    max-width: 65%;       /* smaller image */
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

@media (max-width: 992px) {
    .hero-img {
        max-width: 75%;   /* for tablet */
    }
}

@media (max-width: 576px) {
    .hero-img {
        max-width: 80%;   /* for mobile */
    }
}

 .abt-img {
    max-width: 55%;       /* smaller image */
    display: block;
    margin-left: auto;
    margin-right: auto;
    height:350px;
}

@media (max-width: 992px) {
    .abt-img {
        max-width: 75%;   /* for tablet */
    }
}

@media (max-width: 576px) {
    .abt-img {
        max-width: 80%;   /* for mobile */
    }
}










.about-img {
    max-width: 420px;   /* Stop image from becoming too big */
    width: 100%;
    display: block;
    margin: auto;
    height :450px;
}

/* Better spacing for the text block */
.about-section h2 {
    font-size: 32px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
}

/* Perfect mobile stacking */
@media (max-width: 768px) {
    .about-section {
      
        padding-bottom: 40px;
    }

    .about-img {
        max-width: 300px;
        margin-top: 10px;
    }

    .about-section h2 {
        text-align: center;
    }

    .about-section p {
        text-align: center;
    }

    .about-section a {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}















    /* Main content wrapper */
.services-tabs-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 25px;
}

.glass-section {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 55px 25px 0px 25px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 15px 60px rgba(0,0,0,0.18);
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.services-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: black;
  margin-bottom: 35px;
}

/* Tab buttons wrapper */
.tab-header {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

/* Tab button */
.tab-btn {
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 17px;
  background: rgba(255,255,255,0.35);
  color: black;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: 0.35s ease;
  position: relative;
}

/* Badge */
.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 10px;
  background: #ff5100;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Content wrapper */
.tab-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

/* Content panels */
.tab-content {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(70px) rotateY(-35deg);
  transition: all 0.65s cubic-bezier(.22,.68,0,.96);
}

.tab-content.active {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  width: 100%;
  max-width: 1050px;
  margin: auto;
}

.tab-text h3 {
  font-size: 27px;
  margin-bottom: 12px;
  color: black;
}

.tab-text p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
}

.tab-img {
  width: 100%;
  max-width: 420px;
  height: auto; /* Ensures proper aspect ratio */
  object-fit: contain; /* Prevents image distortion */
  transition: 0.45s ease;
}

.tab-img:hover {
  transform: translateY(-10px) scale(1.06);
}

/* Tablet responsiveness */
@media (max-width: 992px) {
  .tab-row {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .tab-img {
    max-width: 450px; /* Slightly larger for tablets */
    width: 90%; /* Percentage based for flexibility */
  }

  .tab-text h3 {
    font-size: 22px;
  }

  .tab-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  .tab-wrapper {
    min-height: 400px; /* Increase min-height for tablet */
  }
}

/* Mobile responsiveness (600px and below) */
@media (max-width: 600px) {
  .services-tabs-container {
    padding: 30px 15px; /* Reduce padding on mobile */
  }
  
  .glass-section {
    padding: 30px 15px 0 15px; /* Reduce padding */
    border-radius: 16px; /* Slightly smaller radius */
  }
  
  .services-heading {
    font-size: 28px; /* Smaller heading */
    margin-bottom: 25px;
  }
  
  .tab-header {
    gap: 10px; /* Reduce gap between buttons */
    padding-bottom: 20px;
  }
  
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    gap: 6px;
  }
  
  .tab-wrapper {
    min-height: 380px; /* Adjusted for mobile */
  }
  
  .tab-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 10px;
  }
  
  .tab-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .tab-text p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .tab-img {
    max-width: 320px; /* Fixed max width */
    width: 100%; /* Full width of container */
    margin: 0 auto; /* Center the image */
    display: block;
  }
  
  /* Remove hover effects on mobile */
  .tab-img:hover {
    transform: none;
  }
}


/* Extra Small Devices (XS) - Phones (<576px) */
@media (max-width: 575.98px) {
  .services-tabs-container {
    padding: 20px 10px;
  }

  .glass-section {
    padding: 30px 15px;
    border-radius: 16px;
  }

  .services-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .tab-header {
    gap: 8px;
    padding-bottom: 15px;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .tab-wrapper {
    min-height: 200px;
  }

  .tab-row {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
    /* Remove image on mobile */
    .tab-img {
      display: none !important;
    }
  }

  .tab-text h3 {
    font-size: 18px;
  }

  .tab-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .tab-img:hover {
    transform: none;
  }

  .tab-content {
    transform: translateX(70px); /* Remove rotateY */
  }

  .tab-content.active {
    transform: translateX(0); /* Remove rotateY */
  }
}


/* Overall section spacing */
.why-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Card styling */
.why-card {
    background: #ffffff;
    border-radius: 14px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    padding: 32px 22px !important;
    transition: 0.3s ease;
    border: 1px solid #e6e6e6;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Icons */
.why-icon img {
    width: 60px;
    height: auto;
}

/* Titles */
.why-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 14px;
    color: black;
}

/* Paragraph text */
.why-text {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive improvements */
@media (max-width: 992px) {
    .why-card {
        min-height: auto;
        padding: 28px 18px !important;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 18px;
    }
    .why-text {
        font-size: 14.5px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .why-card {
        padding: 24px 16px !important;
    }
    .why-icon img {
        width: 50px;
    }
}




  /* -----------------------------------------------------
   GLOBAL WRAPPER SPACING
------------------------------------------------------*/
/* -----------------------------------------------------
   MAIN GRID LAYOUT
------------------------------------------------------*/
.ai-section {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    padding: 30px 40px 15px 40px;
}


/* -----------------------------------------------------
   LEFT BIG CARD
------------------------------------------------------*/
.ai-left {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.ai-left-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
    background: #f9f9f9;
}

.ai-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 55px;
    background: #fff;
}

.ai-left h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}


/* -----------------------------------------------------
   RIGHT CARDS
------------------------------------------------------*/
.ai-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.ai-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    border: 1px solid #eaeaea;
}

/* IMAGE AT TOP */
.ai-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: #fafafa;
    padding: 10px;
}

/* TEXT SECTION BELOW IMAGE */
.card-content {
    padding: 18px 22px;
    background: #fff;

    /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.ai-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}


/* -----------------------------------------------------
   RESPONSIVE FIXES
------------------------------------------------------*/
@media (max-width: 992px) {
    .ai-section {
        grid-template-columns: 1fr;
    }

    .ai-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ai-right {
        grid-template-columns: 1fr;
    }

    .ai-card img {
        height: 160px;
    }

    .ai-left-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ai-left-img {
        height: 200px;
    }

    .ai-card img {
        height: 130px;
    }
}

/* -----------------------------------------------------
   SECTION 2 – SERVICES LIST
------------------------------------------------------*/
.services-section {
    padding: 60px 40px;
    background: #f6f6fa;
    margin-top: -10px;
}

.services-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.services-grid li {
    list-style: none;
    padding: 6px 0;
}

.services-grid a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
}

.services-grid a:hover {
    color: black;
}

/* -----------------------------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------------------------------*/

/* ---------- Large Tablets ---------- */
@media (max-width: 992px) {
    .ai-section {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .ai-right {
        grid-template-columns: 1fr 1fr;
    }

    .ai-left-img {
        height: 280px;
    }

    .ai-left h1 {
        font-size: 28px;
    }
}

/* ---------- Tablets / Small Screens ---------- */
@media (max-width: 768px) {
    .ai-right {
        grid-template-columns: 1fr;
    }

   .ai-card {
        min-height: 220px;
        height: auto !important;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
    .ai-section {
        padding: 30px 20px;
    }

    .ai-left-img {
        height: 240px;
    }

    .ai-left h1 {
        font-size: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Extra Small Phones ---------- */
@media (max-width: 400px) {
    .ai-left-img {
        height: 210px;
    }

    .ai-card {
        height: 200px;
    }
}








    .client-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 18px 0;
}

.client-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll var(--speed) linear infinite;
  will-change: transform;
}

/* LOGO */
.client-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
/* Desktop – reduce logo height */
@media (min-width: 992px) {
  .client-logo img {
    height: 55px !important;  /* adjust as you like */
  }
}

/* Large Desktop – even smaller if needed */
@media (min-width: 1400px) {
  .client-logo img {
    height: 100px !important;
  }
}

/* Desktop pause only */
@media (pointer: fine) {
  .client-slider:hover .client-track {
    animation-play-state: paused;
  }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

:root {
  --speed: 25s;
}






/* Heading Wrapper */
.clients-heading-wrapper {
    width: 100%;
    text-align: center;
   
    padding: 40px 0 10px;    /* top spacing / bottom spacing */
}

/* Heading Style */
.clients-heading {
   font-size: 40px;
    font-weight: 700;
    color: #000;          /* match your theme */
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .clients-heading {
        font-size: 22px;
    }
    .clients-heading-wrapper {
        padding: 30px 0 5px;
    }
}





    /* MAIN CONTAINER */
.rim-adv-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers last row */
    gap: 35px;
    max-width: 1100px;
    margin: 60px auto;
}

/* First 3 cards take 30% width each */
.rim-adv-cards .adv-card:nth-child(-n+3) {
    flex: 0 0 calc(33.33% - 35px);
}

/* Last 2 cards centered at 45% width */
.rim-adv-cards .adv-card:nth-child(n+4) {
    flex: 0 0 calc(45% - 35px);
}

/* CARD STYLE */
.adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: .3s;
    min-height: 160px;
}

/* ICON */
.adv-card i {
    font-size: 28px;
    margin-bottom: 14px;
    color: #000;
}

/* CARD TITLE */
.adv-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.adv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.55;
}

/* HOVER EFFECT */
.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ---------- RESPONSIVE ---------- */

/* Tablets */
@media (max-width: 900px) {

    .rim-adv-cards .adv-card {
        flex: 0 0 calc(50% - 35px) !important;
    }
}

/* Mobiles */
@media (max-width: 600px) {

    .rim-adv-cards .adv-card {
        flex: 0 0 100% !important;
    }
}






    /* Equal height fix */
.equal-height {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Make internal elements keep spacing */
.equal-height > * {
    flex-shrink: 0;
}

/* IMAGE CIRCLE */
.image-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e9f2ff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-circle img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* CARD BOXES */
.vision-box, 
.mission-box {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    transition: 0.3s ease-in-out;
    padding: 30px;
}

.vision-box:hover, 
.mission-box:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}


  /* Wrapper */
.hero-slide-wrapper {
    width: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

/* IMAGE */
.hero-slide-img {
    width: 36%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* CAPTION */
.hero-caption {
    margin-top: 25px;
}

.hero-caption h2 {
    font-size: 55px;
    font-weight: 700;
    color: #000;
}

.hero-caption p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #000;
}

.hero-caption .btn {
    font-weight: 500;
    font-size: 15px;
}


/* DARK FADE BG (nicely visible slides) */
.carousel-item {
    background:white;
}


/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 40px;
    height: 40px;
}


/* Responsive */
@media (max-width: 992px) {
    .hero-slide-wrapper { min-height: 550px; }
    .hero-slide-img { width: 48%; }
    .hero-caption h2 { font-size: 40px; }
}

@media (max-width: 768px) {
    .hero-slide-wrapper { min-height: 500px; padding-top: 40px; }
    .hero-slide-img { width: 58%; }
    .hero-caption h2 { font-size: 32px; }
}

@media (max-width: 576px) {
    .hero-slide-wrapper { min-height: 420px; padding-top: 30px; }
    .hero-slide-img { width: 75%; }
    .hero-caption h2 { font-size: 26px; }
    .hero-caption p { font-size: 14px; }
}





.service-section {
    width: 100%;
    padding: 60px 30px;
    background: #ffffff;
}

/* ------------------------------
   HEADING RESPONSIVE
------------------------------ */
.heading-service {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #000;
    margin-bottom: 50px;
    transition: 0.6s ease;
    opacity: 0;
}

/* ------------------------------
   GRID RESPONSIVE
------------------------------ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}
@media(min-width: 1800px){
    .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
}
}

/* ------------------------------
   CARD RESPONSIVE
------------------------------ */
.service-card {
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(45px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE RESPONSIVE */
.service-img {
    width: 100%;
    height: auto;
    max-height: 230px;
    border-radius: 14px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* TITLES */
.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title-wrapper i {
    font-size: 24px;
    color: black;
}

.service-card h3 {
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 900;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    font-size: clamp(16px, 1.4vw, 16px);
    line-height: 1.52;
    margin-bottom: 18px;
}

/* LABEL */
.section-label {
    font-size: clamp(15px, 1.6vw, 16px);
    font-weight: 900;
    color: black;
    margin-bottom: 10px;
    margin-top: 20px;
    
}

.section-label::after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    border-radius: 10px;
    background: black;
    margin-top: 6px;
    
}

/* LISTS */
.service-card ul li {
    font-size: clamp(16px, 1.4vw, 16px);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
   
}

.service-card ul{
    padding-left: 0px !important;
}

.service-card ul li i {
    font-size: 15px;
    color: black;
    
}

/* BENEFIT ICON COLOR FIX */
.benefit-icon i {
    color:black !important;
}

/* REVEAL ANIMATION */
.animate-visible {
    transform: translateY(0);
    opacity: 1 !important;
    transition: 0.9s ease;
}

/* ------------------------------
   MOBILE FIXES
------------------------------ */

@media(max-width: 768px) {
    .service-section {
        padding: 40px 20px;
    }

    .service-img {
        max-height: 200px;
    }

    .service-card {
        padding: 22px;
    }
}

@media(max-width: 430px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .service-img {
        max-height: 180px;
    }
}





/* Add Font Awesome */




/* Header Section */
.page-header-section {
    background:rgb(243, 241, 241);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.page-header-section h1 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
}

/* Navigation */
.solutions-navigation {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.solutions-navigation h1 {
    color: #000;
    margin-bottom: 20px;
    font-size: 40px;
    text-align: center;
}

.nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.nav-links a {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-links a:hover {
    background: #f0f1f3;
    color:black;
    transform: translateY(-2px);
    
}

.nav-links a i {
    font-size: 1.1rem;
}

/* Solution Items */
.solution-item {
    background: white;
    border-radius: 12px;
    padding: 35px 35px 0px 35px;
    margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
/* FIX: Always align text & image on same vertical level */

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background:black;
}

.solution-number {
    position: absolute;
    top: 35px;
    right: 35px;
    background: black;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    z-index: 2;
}

.solution-title {
    font-size: 40px;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 700;
    padding-right: 80px;
}

.solution-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center; /* Makes both columns equal height */
}

.solution-content-wrapper.reverse {
    direction: rtl;
}

.solution-content-wrapper.reverse .solution-text {
    direction: ltr;
}

.solution-content-wrapper.reverse .solution-image {
    direction: ltr;
}

.solution-image {
    position: relative;
}

.image-container {
    background: black;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    background: white;
    width: 90%;
    height: 90%;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* UI Components for Images - Updated for all solutions */
.dashboard-ui, .mobile-app, .warranty-ui, .file-manager, .timeline-ui, .ticket-ui,
.mobile-form, .workflow-ui, .catalog-ui, .erp-ui, .hr-ui, .invoice-ui, .service-ui, .dashboard-kpi {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dashboard UI */
.dashboard-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    flex: 1;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f46e5;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 5px;
}

.chart-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #4f46e5, #3b82f6);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

/* Mobile App UI */
.app-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 15px;
}

.order-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.item-name {
    color: #475569;
    font-weight: 500;
}

.item-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.processing {
    background: #fef3c7;
    color: #92400e;
}

.shipped {
    background: #d1fae5;
    color: #065f46;
}

.delivered {
    background: #dbeafe;
    color: #1e40af;
}

.action-button {
    background: #4f46e5;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

/* Warranty UI */
.warranty-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    width: 100%;
}

.card-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.product-id {
    background: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-family: monospace;
    color: #4f46e5;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.warranty-info {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child {
    border-bottom: none;
}

   .warranty-card.active {
    color: #10b981;
    font-weight: 600;
}

.verify-badge {
    background: #10b981;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

/* File Manager UI */
.folder-structure {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.folder, .file {
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.folder.active {
    background: #e0e7ff;
    color: #4f46e5;
}

.file {
    background: white;
    border: 1px solid #e2e8f0;
}

.folder i, .file i {
    color: #94a3b8;
}

.version-info {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.version-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.version-history {
    color: #64748b;
    font-size: 0.9rem;
}

/* Timeline UI */
.timeline-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.milestone-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
}

.timeline-milestone.complete .milestone-dot {
    background: #10b981;
}

.timeline-milestone.active .milestone-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.milestone-label {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.timeline-milestone.active .milestone-label {
    color: #3b82f6;
    font-weight: 600;
}

/* Ticket UI */
.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
}

.ticket-id {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.ticket-status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.urgent {
    background: #fee2e2;
    color: #dc2626;
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail {
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

/* Mobile Form UI */
.mobile-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.form-field {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.field-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 5px;
}

.field-value {
    font-weight: 500;
    color: #1e293b;
}

.field-value.sku {
    color: #4f46e5;
    font-family: monospace;
}

.form-action {
    margin-top: 10px;
}

.action-status {
    background: #fef3c7;
    color: #92400e;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Workflow UI */
.workflow-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e2e8f0;
}

.workflow-step.active .step-dot {
    background: #4f46e5;
}

.step-label {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

/* Catalog UI */
.product-card {
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.product-image {
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-info {
    padding: 15px;
}

.product-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 8px;
}

.product-stock {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.in-stock {
    color: #10b981;
}

.product-action {
    background: #4f46e5;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

/* ERP UI */
.erp-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.module {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.module.active {
    border-color: #4f46e5;
    background: #e0e7ff;
}

.module i {
    font-size: 1.5rem;
    color: #4f46e5;
}

.module-name {
    font-weight: 600;
    color: #1e293b;
}

/* HR UI */
.employee-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.employee-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.employee-avatar {
    width: 50px;
    height: 50px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.employee-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.employee-role {
    color: #64748b;
    font-size: 0.9rem;
}

.employee-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.detail-label {
    color: #64748b;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: #1e293b;
}

/* Invoice UI */
.invoice-ui {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.invoice-id {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.invoice-status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.paid {
    background: #d1fae5;
    color: #065f46;
}

.invoice-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invoice-customer {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.invoice-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
}

.invoice-date {
    color: #64748b;
    font-size: 0.95rem;
}

/* Service UI */
.service-tracking {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.tracking-step.complete .step-icon {
    background: #10b981;
    color: white;
}

.tracking-step.active .step-icon {
    background: #3b82f6;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    max-width: 80px;
}

/* Dashboard KPI UI */
.dashboard-kpi {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kpi-row {
    display: flex;
    gap: 15px;
}

.kpi-item {
    flex: 1;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 5px;
}

.kpi-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Solution Text Content */
.solution-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-description {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
}

.solution-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.features, .benefits {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.features h3, .benefits h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features h3 i {
    color: black;
}

.benefits h3 i {
    color: black;
}

.features ul, .benefits ul {
    list-style-type: none;
    padding-left: 0;
}

.features li, .benefits li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #000;
    border-bottom: 1px dashed #e2e8f0;
    line-height: 1.5;
}

.features li:last-child, .benefits li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color:black;
    font-weight: bold;
}

.benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: black;
    font-weight: bold;
}

.solution-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.solution-cta button {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.solution-cta button:hover {
    background: linear-gradient(135deg, #4338ca, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Footer */
.solutions-footer {
    background: #1e293b;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.solutions-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.solutions-footer p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-footer button {
    background: white;
    color: #1e293b;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.solutions-footer button:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .solution-content-wrapper {
        gap: 30px;
    }
    
    .solution-details {
        gap: 25px;
    }
    
    .image-container {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .page-header-section h1 {
        font-size: 1.9rem;
    }
    
    .solution-title {
        font-size: 1.6rem;
    }
    
    .solution-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-content-wrapper.reverse {
        direction: ltr;
    }
    
    .image-container {
        height: 300px;
        order: -1;
    }
    
    .nav-links {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .solution-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .page-header-section {
        padding: 30px 25px;
    }
    
    .page-header-section h1 {
        font-size: 1.7rem;
    }
    
    .solutions-navigation {
        padding: 20px;
        position: static;
    }
    
    .solution-item {
        padding: 25px;
    }
    
    .solution-number {
        top: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .solution-title {
        font-size: 1.4rem;
        padding-right: 65px;
        margin-bottom: 20px;
    }
    
    .solution-description {
        font-size: 1rem;
    }
    
    .features, .benefits {
        padding: 20px;
    }
    
    .features h3, .benefits h3 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .image-container {
        height: 250px;
    }
    
    .solution-details {
        grid-template-columns: 1fr;
    }
    
    .kpi-row {
        flex-direction: column;
    }
    
    .erp-modules {
        grid-template-columns: 1fr;
    }
}
/* MOBILE FIX FOR DASHBOARD UI */
@media (max-width: 576px) {

    .image-container {
        height: 200px !important; /* make image responsive */
    }

    .image-placeholder {
        padding: 10px !important; 
        width: 95% !important;
        height: 95% !important;
    }

    .dashboard-header {
        gap: 8px !important;
        margin-bottom: 10px !important;
    }

    .metric-card {
        padding: 8px !important;
    }

    .metric-value {
        font-size: 1.2rem !important;
    }

    .metric-label {
        font-size: 0.7rem !important;
    }

    .chart-container {
        padding: 10px !important;
        gap: 6px !important;
    }

    .chart-bar {
        border-radius: 3px !important;
    }
}






    .consultancy-section .section-intro {
    max-width: 850px;
    font-size: 16px;
}

.consult-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;
    border: 1px solid #eee;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.consult-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 18px 40px rgba(0,0,0,0.12);
}

/* Icon Circle */
.icon-box {
    width: 65px;
    height: 65px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon-box i {
    color: #000;
    font-size: 28px;
}

/* Card Lists */
.consult-card ul {
    padding-left: 18px;
    margin-top: 12px;
}

.consult-card li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #000;
}

/* CTA Button */
.cta-btn {
    background: #090f30;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #080d2b;
    color: #fff;
}

