/* ===== Global Responsive Images ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-header{
    font-family: Fabrico BC;
}

/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/

.logo{
    width: 150px;
    height: auto;
}

/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 400px;
    overflow: hidden;
}

#note small {
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: mymove 7s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes mymove {
    from {left: -50%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 6px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-dark);
    font-size: 20px;
    font-weight: 600;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}
/* Base nav link */
.navbar .navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Pseudo underline (hidden by default) */
.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--bs-secondary);
    transform: translateX(-50%);
    transition: width 0.35s ease;
    opacity: 0;
}

/* Hover effect: underline grows from center */
.navbar .navbar-nav .nav-link:hover {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 80%;
    opacity: 1;
}

/* Active link stays underlined */
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
    opacity: 1;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

/* ===== Mobile menu toggle fix ===== */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
    opacity: 1;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem 0;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 12px 0;
        margin: 0;
    }
}

/* ===== Glassmorphism Sticky Navbar ===== */

.navbar-glass {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Mobile & Tablet fallback (performance safe) */
@media (max-width: 991px) {

    /* Glass navbar when scrolled */
    .navbar-glass {
        background: rgba(255, 255, 255, 0.55) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }

    /* Mobile dropdown panel (the white box) */
    .navbar-glass .navbar-collapse {
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        overflow: hidden;
    }

    /* When menu is OPEN */
    .navbar-glass .navbar-collapse.show {
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    /* Menu items spacing */
    .navbar-nav {
        padding: 12px 0;
    }

    /* Menu links styling */
    .navbar-nav .nav-link {
        font-size: 17px;
        padding: 14px 0;
        font-weight: 600;
    }

    /* Optional divider between items */
    .navbar-nav .nav-link:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
    height: 700px;
}

.carousel-item-1 {
    position: relative;
    height: 550px;
}

/* Background image */
.carousel-item img,
.carousel-item-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay (CLICK-THROUGH FIX) */
.carousel-item::after,
.carousel-item-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none; /* 🔥 KEY FIX */
}

/* Caption */
.carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px;
}

/* Controls (ENSURE CLICKABLE) */
.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
    width: 90px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bs-primary);
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
    border-radius: 0 50px 50px 0;
}

.carousel-control-next {
    right: 0;
    border-radius: 50px 0 0 50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--bs-secondary);
}

/* Indicators */
#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    border-radius: 30px;
    background: var(--bs-primary);
    opacity: 1;
}

#carouselId .carousel-indicators .active {
    background: var(--bs-secondary);
}

/* ===============================
   RESPONSIVE TEXT ONLY
   (NO HEIGHT CHANGE)
================================ */

/* Tablets */
@media (max-width: 992px) {
    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-item h1,
    .carousel-item-1 h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        padding-top: 30px;
        font-size: 14px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 55px;
        height: 45px;
    }
}

/*** Carousel End ***/


/*** Services Start ***/

/* ===============================
   Card Container
================================ */
.services .services-item {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 0px 0;
    position: relative;
    display: flex;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.8s ease forwards;
}

/* Stagger animation (desktop only) */
.services-inner .col-lg-4:nth-child(1) .services-item { animation-delay: 0.1s; }
.services-inner .col-lg-4:nth-child(2) .services-item { animation-delay: 0.3s; }
.services-inner .col-lg-4:nth-child(3) .services-item { animation-delay: 0.5s; }
.services-inner .col-lg-4:nth-child(4) .services-item { animation-delay: 0.7s; }
.services-inner .col-lg-4:nth-child(5) .services-item { animation-delay: 0.9s; }
.services-inner .col-lg-4:nth-child(6) .services-item { animation-delay: 1.1s; }

/* ===============================
   Content Wrapper
================================ */
.services .services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hover Overlay */
.services .services-content::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 0;
    border-radius: 10px;
    background: rgba(3, 43, 243, 0.8);
    transition: height 0.5s ease;
}

.services-item:hover .services-content::after {
    height: 100%;
}

/* ===============================
   Foreground Content
================================ */
.services .services-content-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Icon container (equal height) */
.services .services-content-icon i {
    font-size: 3.5rem;
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}



/* Title alignment + animation */
.services .services-content-icon h4 {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    transform: translateY(12px);
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.services-item:hover .services-content-icon h4 {
    transform: translateY(0);
    opacity: 1;
}

/* Description */
.services .services-content-icon p {
    flex-grow: 1;
    max-height: 110px;
    overflow-y: auto;
    padding-right: 5px;
    margin-top: 0;
    transition: color 0.4s ease;
}

/* Scrollbar */
.services .services-content-icon p::-webkit-scrollbar {
    width: 4px;
}

.services .services-content-icon p::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

/* Button */
.services .services-content-icon a.btn {
    margin-top: auto;
    align-self: center;
    background-color: var(--bs-primary);
    border: none;
}
/* Hover effects (desktop) */
.services-item:hover .services-content-icon i {
    color: var(--bs-secondary);
    transform: translateY(-6px) scale(1.05);
}

.services-item:hover .services-content-icon h4,
.services-item:hover .services-content-icon p {
    color: var(--bs-white);
    border: none;
}

/* Icon hover color change */
.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
    transform: translateY(-6px) scale(1.05);
}


.services-item:hover .services-content-icon a.btn {
    background-color: var(--bs-secondary);
    color: var(--bs-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* ===============================
   Animations
================================ */
@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   Mobile Optimization
================================ */


@media (max-width: 768px) {

    /* Prevent card color change on tap */
    .services-item:active,
    .services-item:focus,
    .services-item:focus-within {
        background: inherit !important;
    }

    /* Prevent overlay activation on tap */
    .services-item:active .services-content::after,
    .services-item:focus .services-content::after,
    .services-item:focus-within .services-content::after {
        height: 0 !important;
    }

    /* Prevent text/button color change on tap */
    .services-item:active .services-content-icon *,
    .services-item:focus .services-content-icon *,
    .services-item:focus-within .services-content-icon * {
        color: inherit !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/*** Services End ***/




/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #dc9330;
}

.contact-form {
    background: #dc9330;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 45px 0 15px 0;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #EE592E;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #EE592E;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 11px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 11px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: #EF233C;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #dddddd;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #dddddd;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}


.carousel-item-1 {
    position: relative;
    height: 550px
}

.carousel-item-1::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}


.section {
  padding: 5rem 0;
}

.section-tight-bottom {
  margin-bottom: 1.5rem;
}

.section-tight-top {
  margin-top: 1.5rem;
}



/* Contact Section */
.contact-section {
  padding: 1rem 0;
  padding-bottom: 3rem;
  background-color: #fff;
}

/* Headings */
.contact-subtitle {
  color: #1842b6;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-title {
  color: #000;
  font-weight: 700;
}

/* Info Cards */
.contact-info-card {
  background: #fff;
  box-shadow: 1px 2px 7px black;
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.contact-info-card i {
  font-size: 1.8rem;
  color: #EE592E;
  margin-bottom: 0.8rem;
}

.contact-info-card p {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.contact-info-card:hover {
  transform: translateY(-6px);
}

/* Main Card */
.contact-card {
  background: #EE592E;
  border-radius: 20px;
  padding: 2rem;
}

/* Map */
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 16px;
}

/* Form Inputs */
.contact-input {
  background: #fafafa;
  border: 1px solid #3A4A6B;
  color: #EAEAF0;
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.contact-input::placeholder {
  color: #9CA3AF;
}

.contact-input:focus {
  border-color: #22D3EE;
  box-shadow: none;
}


/* Button */
.contact-btn {
    display: block;
    margin: 0 auto;
    background: #fafafa;
  color: #0E1117;
  font-weight: 600;
  border: none;
  padding: 12px 40px;
    border-radius: 30px;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0px 0px 5px black;
}



/* ===== Modal Styling ===== */
.modal-content {
    border-radius: 20px;
    padding: 10px;
}

/* Modal title */
.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-primary);
}

/* Modal icon */
#serviceModalIcon {
    color: #EE592E;
}

/* Section headings inside modal */
.service-modal-content b {
    display: block;
    margin-top: 20px;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* ===== Bullet points ===== */
.service-points {
    padding-left: 20px;
}

.service-points li {
    margin-bottom: 12px;
    font-size: 16px;
}

.service-points li::marker {
    color: var(--bs-primary);
    font-size: 18px;
}

/* ===== Modal Entrance Animation ===== */
.modal.fade .modal-dialog {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.fade.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* ===== SOCIAL ICON HOVER EFFECT ===== */

.hightech-link a {
    transition: all 0.35s ease;
}

.hightech-link a:hover {
    background-color: var(--bs-secondary) !important;
}

.hightech-link a:hover i {
    color: #ffffff !important;
}


/* ===============================
   MOBILE SERVICES SLIDER (HOME)
================================ */
@media (max-width: 768px) {

    .home-services .services-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 20px;
    }

    .home-services .services-track::-webkit-scrollbar {
        display: none;
    }

    .home-services .service-slide {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    /* PROGRESS BAR */
    .services-progress {
        width: 80%;
        height: 4px;
        margin: 14px auto 0;
        background: #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
    }

    .services-progress span {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--bs-secondary);
    }
}
/* ===============================
   SERVICES DEFAULT (DESKTOP / LAPTOP)
================================ */
.services-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Each card fills grid cell */
.service-slide {
    width: 100%;
}

/* ===============================
   MOBILE SERVICES SLIDER ONLY
================================ */
@media (max-width: 768px) {

    .services-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 20px;
    }

    .services-track::-webkit-scrollbar {
        display: none;
    }

    .service-slide {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    /* Progress bar */
    .services-progress {
        width: 80%;
        height: 4px;
        background: #e5e7eb;
        border-radius: 10px;
        margin: 14px auto 0;
        overflow: hidden;
    }

    .services-progress span {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--bs-secondary);
        border-radius: 10px;
        transition: width 0.1s linear;
    }
}

/* ===============================
   DESKTOP (unchanged grid)
================================ */
.services-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   MOBILE SLIDER ONLY
================================ */
@media (max-width: 768px) {

    .services-track {
        display: flex;
        gap: 16px;
        overflow-x: hidden;
        scroll-behavior: smooth;
        will-change: transform;
    }

    .service-slide {
        flex: 0 0 85%;
        max-width: 85%;
        transition: transform 0.45s ease, opacity 0.45s ease;
        opacity: 1;
        transform: scale(0.9);
    }

    /* CENTER FOCUSED CARD */
    .service-slide.is-active {
        transform: scale(1);
        opacity: 1;
    }

    /* Progress bar */
    .services-progress {
        width: 80%;
        height: 4px;
        margin: 14px auto 0;
        background: #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
    }

    .services-progress span {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--bs-secondary);
        border-radius: 10px;
    }
}
