body{
  /* cursor:none; */
}

/* outer cursor */
/* .cursor{
  width:40px;
  height:40px;
  border:2px solid #0ea5e9;
  border-radius:50%;
  position:fixed;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:all .10s ease;
  z-index:9999;
  box-shadow:0 0 10px rgba(14,165,233,.6);
} */

/* center dot */
.cursor-dot{
  width:10px;
  height:10px;
  background:#0ea5e9;
  border-radius:50%;
  position:fixed;
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:9999;
}

/* hover effect */
.cursor.hover{
  transform:translate(-50%,-50%) scale(1.8);
  background:rgba(14,165,233,.1);
}

/* click effect */
.cursor.click{
  transform:translate(-50%,-50%) scale(0.8);
}









.client-slider2 .swiper-wrapper {
    transition-timing-function: linear !important;
}
/* vistion */


/* LIMIT CARD WIDTH */
.feature-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

/* SMALLER BOX */
.horizontal-card {
    max-width: 850px;   /* 🔥 controls width */
    width: 100%;
    margin: 0 auto;
    padding: 18px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-slider {
    overflow: hidden;
    padding: 10px 0;
}

/* CARD */
.horizontal-card {
    padding: 16px 18px; /* smaller */
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 130px; /* smaller height */
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

/* HOVER */
.horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* FLEX */
.card-flex {
    display: flex;
    align-items: center;
    gap: 14px; /* tighter */
    width: 100%;
}

/* ICON BOX */
.horizontal-card .box-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4A70A9, #8FABD4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ICON */
.horizontal-card .box-icon svg {
    width: 70px;
    height: 70px;
    color: #fff;
}

/* TITLE */
.horizontal-card .content h3 {
    margin: 0 0 6px;
    font-size: 25px; /* smaller */
    font-weight: 700;
    color: #ffffff;
}

/* TEXT */
.horizontal-card .content p {
    margin: 0;
    font-size: 18px; /* smaller */
    line-height: 1.6;
    color: #cbd5e1;
}

/* MOBILE */
@media (max-width: 767px) {
    .card-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .horizontal-card {
        padding: 14px;
    }

    .horizontal-card .box-icon {
        width: 60px;
        height: 60px;
    }

    .horizontal-card .box-icon svg {
        width: 32px;
        height: 32px;
    }

    .horizontal-card .content h3 {
        font-size: 18px;
    }

    .horizontal-card .content p {
        font-size: 13px;
    }
}












/* ===============================
   HERO ROTATING TEXT (OLD VERSION)
================================= */

.slogan-slider {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 30px 0;
}

.slogan-text {
    margin: 0;
    font-size: 60px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Colors */
.slogan-text .we {
    color: #ffffff;
}

.slogan-text .maximize {
    color: #4A70A9;
}

.slogan-text .your {
    color: #8FABD4;
}

.slogan-text .potentials {
    color: #EFECE3;
}

/* Responsive */
@media (max-width: 991px) {
    .slogan-text {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .slogan-text {
        font-size: 28px;
    }
}
/* end */
.Prof {
    font-size: 45px;
    color: #ffffff;
}

/* odoo video */
.video-modal {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.88) !important;
    z-index: 99999999 !important;
    justify-content: center;
    align-items: center;
}

.video-modal.show {
    display: flex !important;
}

.video-modal-content {
    position: relative !important;
    z-index: 100000000 !important;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.video-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 100000001 !important;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 28px;
    line-height: 42px;
    cursor: pointer;
}

.video-modal video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}

/* hide custom cursor when modal is open */
body.modal-open .cursor,
body.modal-open .cursor-dot {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* make sure cursor stays under modal even if visible */
.cursor,
.cursor-dot {
    z-index: 999 !important;
}

