*{
font-family: 'Urbanist', sans-serif !important;
}
body{
font-family: 'Urbanist', sans-serif;
}
button:hover{

background: none;
border-bottom: 1px solid #e84b6a !important;
}
button:active{
border-bottom: 1px solid #e84b6a !important;
}
/* HEADER DEFAULT (TRANSPARENT) */

#siteHeader{
background: transparent;
padding-top:25px;
transition: all .35s ease;
}

.nav-link{
color:white;
font-weight:500;
transition:.3s;
}
/* DEFAULT MENU WHITE */

#siteHeader .nav-link{
color:#ffffff;
transition:.3s;
}

#menuBtn{
color:#ffffff;
}
.menu-icon{
color:white;
}

/* logo white */
.logo{
filter: brightness(0) invert(1);
}

/* DROPDOWN */

.dropdown{
position:absolute;
top:120%;
left:0;
background:white;
min-width:220px;
padding:12px 0;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:.3s;
}

.group:hover .dropdown{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.dropdown a{
display:block;
padding:10px 18px;
color:#222;
}

/* SCROLL STYLE */

#siteHeader.scrolled{
background:white;
padding-top:12px;
padding-bottom:12px;
box-shadow:0 4px 25px rgba(0,0,0,.08);
}

/* text black */

#siteHeader.scrolled .nav-link{
color:#111;
}

#siteHeader.scrolled .menu-icon{
color:#111;
}

/* logo normal */

#siteHeader.scrolled .logo{
filter:none;
}
/* Navigation */
.nav-link{
/* font-weight:500; */
font-family: urbanist, sans-serif;
font-size: 18px;
color:#222;
transition:.3s;
}

.nav-link:hover{
color:#E64469;
}

/* Dropdown */
.dropdown{
position:absolute;
top:120%;
left:0;
background:#fff;
box-shadow:0 10px 25px rgba(0,0,0,.08);
border-radius:8px;
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:.3s;
min-width:200px;
}

.group:hover .dropdown{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.dropdown a{
display:block;
padding:10px 20px;
}

.dropdown a:hover{
background:#f5f5f5;
}


/* Mobile Menu */
.mobile-menu{
transform:translateX(-100%);
transition:.3s;
}

.mobile-menu.active{
transform:translateX(0);
}
.mobile-menu{

position:fixed;
top:0;
left:0;

width:300px;
height:100vh;

background:#ffffff;

box-shadow:0 0 40px rgba(0,0,0,0.15);

padding:25px;

transform:translateX(-100%);
transition:0.35s ease;

z-index:9999;

}

.mobile-menu.active{
transform:translateX(0);
}

.odoo-badge{
    position: relative;
    display: inline-block;
    padding: 1px;
    border-radius: 10px;
    overflow: hidden;
}

/* animated border */
.odoo-badge::before{
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        #ff4d6d,
        #6b2d90,
        #00e0ff,
        #ff4d6d
    );
    background-size: 300% 300%;
    animation: borderMove 4s linear infinite;
    z-index: 0;
}

/* inner area */
.odoo-badge img{
    position: relative;
    display: block;
    width: 134px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    z-index: 1;
}

@keyframes borderMove{
    0%{background-position:0% 50%;}
    100%{background-position:200% 50%;}
}

/* text */

.badge-text{
font-size:12px;
font-weight:600;
color:#6b4c00;
white-space:nowrap;
}

/* logo */

.badge-logo{
height:32px;
width:auto;
object-fit:contain;
}
/* MOBILE SIDEBAR */

.mobile-menu{
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: .35s ease;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu.active{
  right: 0;
}


/* HEADER */

.sidebar-header{
display:flex;
    justify-content: space-between;
align-items:center;

padding-bottom:20px;
border-bottom:1px solid #eee;
}

/* LOGO SMALLER */

.mobile-logo img{
width:140px;
height:auto;
}


/* NAVIGATION */

.sidebar-nav{
display:flex;
flex-direction:column;

gap:22px;

margin-top:25px;
}

.sidebar-nav a{
font-size:17px;
color:#222;
text-decoration:none;
font-weight:500;
}


/* DROPDOWN */

.dropdown-item summary{
display:flex;
justify-content:space-between;
align-items:center;

cursor:pointer;

font-size:17px;
font-weight:500;
list-style:none;
}


/* ICON */

.icon{
width:18px;
height:18px;
stroke:#555;
stroke-width:2;
fill:none;

transition:.3s;
}

details[open] .icon{
transform:rotate(180deg);
}


/* SUBMENU */

.submenu{
display:flex;
flex-direction:column;

gap:12px;

padding-left:16px;
margin-top:12px;

border-left:2px solid #eee;
}

.submenu a{
font-size:15px;
color:#555;
}

/* BADGE CONTAINER */

.mobile-odoo-badge{
margin-top:auto;
padding-top:30px;
border-top:1px solid #eee;
}


/* TITLE */

.badge-title{
font-size:14px;
font-weight:600;
color:#8c6a12;
margin-bottom:12px;
}


/* BADGE CARD */

.badge-card{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

background:#fafafa;

padding:18px;

border-radius:12px;

border:1px solid #eee;

box-shadow:0 5px 15px rgba(0,0,0,.05);

text-decoration:none;

transition:.3s;
}

/* hover */

.badge-card:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,.08);
}


/* LOGO */

.badge-logo{
width:110px;
height:auto;
margin-bottom:8px;
}


/* TAG */

.badge-tag{
font-size:12px;
background:#28c59a;
color:white;
padding:4px 8px;
border-radius:4px;
}
/* CTA BUTTON */

.cta-link{
background:linear-gradient(to right,#E64469,#5A2D88);

padding:12px;
border-radius:8px;

text-align:center;
color:#fff !important;
margin-top:10px;
}


/* ODOO BADGE BOTTOM */

.mobile-odoo-badge{
margin-top:40px;

padding-top:20px;
border-top:1px solid #eee;

text-align:center;
}

.mobile-odoo-badge img{
width:150px;
height:auto;
}

  body{
      font-family:'Urbanist',sans-serif;
      /*background:#0c0712;*/
    }


@media (max-width: 768px) {

    .hero::before {
       
    }

    .hero::after {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
    }
}
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background: url('https://qwysoft.com/assets/img/home-4/sliderimage.jpg') center/cover no-repeat;
  /*background:*/
  /*  radial-gradient(circle at 50% 15%, rgba(235,69,104,.45), transparent 28%),*/
  /*  radial-gradient(circle at 78% 30%, rgba(107,45,144,.28), transparent 22%),*/
  /*  linear-gradient(115deg,#0b0911 0%,#231126 32%,#5a1839 62%,#241036 100%);*/
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.08), transparent 18%, transparent 82%, rgba(255,255,255,.05));
  mix-blend-mode:screen;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  width:620px;
  height:620px;
  right:-140px;
  top:50%;
  transform:translateY(-50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 38%, transparent 70%);
  filter:blur(8px);
  pointer-events:none;
}

.hero-container{
  width:100%;
  min-height:100vh;
  padding-top:140px;
  padding-left:4%;
  padding-right:4%;
  padding-bottom:60px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
  position:relative;
  z-index:2;
}

.hero-left{
  width:100%;
  min-width:0;
}

.heroSlider{
  width:100%;
  padding-bottom:60px;
}

.swiper-slide{
  display:flex;
  align-items:center;
}

.hero-text{
  max-width:720px;
  position:relative;
  text-align:left;
}

.hero-text h1{
  font-size:clamp(36px, 5.2vw, 88px);
  line-height:1.05;
  font-weight:800;
  letter-spacing:-0.04em;
  color:#fff;
  margin:0 0 18px;
}

.hero-text h1 .gradient{
  background:linear-gradient(90deg,#ff5f88 0%,#ff8fae 28%,#f0d8df 54%,#d687ff 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text p{
  max-width:620px;
  font-size:clamp(16px, 1.2vw, 22px);
  line-height:1.75;
  color:rgba(255,255,255,.82);
  margin:0 0 26px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  text-decoration:none;
  border-radius:14px;
  font-weight:700;
  transition:.35s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  font-size:clamp(13px, 0.9vw, 16px);
  line-height:1;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#ff4e7a 0%,#9126d8 100%);
  box-shadow:0 14px 34px rgba(201,61,140,.26);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(201,61,140,.35);
}

.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.btn-secondary:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.1);
}

.hero-meta{
  margin-top:32px !important;
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  max-width:700px;
}

.meta-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:clamp(12px, 0.8vw, 15px);
  line-height:1.45;
  color:rgba(255,255,255,.86);
  white-space:nowrap;
}

.meta-chip span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff6895,#8c59ff);
  box-shadow:0 0 12px rgba(255,104,149,.45);
  flex:0 0 7px;
}

.hero-visual{
  position:relative;
  height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  justify-self:end;
  width:100%;
}

.orbit-wrap{
  position:relative;
  width:min(580px,100%);
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:auto;
}

.orbit-bg-glow{
  position:absolute;
  width:140%;
  height:140%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,80,140,.22), rgba(140,89,255,.12), transparent 62%);
  filter:blur(24px);
  animation:pulseGlow 4.5s ease-in-out infinite;
  pointer-events:none;
}

.orbital-core{
  position:absolute;
  inset:10%;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), rgba(255,255,255,.03) 48%, rgba(255,255,255,.015) 58%, transparent 59%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.04), transparent 68%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 50px rgba(255,255,255,.06),
    0 0 60px rgba(217,92,167,.14);
  backdrop-filter:blur(12px);
}

.orbit-ring,
.orbit-ring.two,
.orbit-ring.three{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  will-change:transform;
}

.orbit-ring{
  width:100%;
  height:100%;
  border:1.5px dashed rgba(255,255,255,.18);
  animation:rotateClock 28s linear infinite;
}

.orbit-ring.two{
  width:76%;
  height:76%;
  border:1.5px solid rgba(255,255,255,.08);
  animation:rotateAnti 18s linear infinite;
}

.orbit-ring.three{
  width:52%;
  height:52%;
  border:1.2px dashed rgba(255,255,255,.14);
  animation:rotateClock 12s linear infinite;
}

.orbit-ring::after{
  content:"";
  position:absolute;
  width:12px;
  height:12px;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
  border-radius:50%;
  background:linear-gradient(135deg,#ff6a95,#ff9eb7);
  box-shadow:0 0 20px rgba(255,106,149,.95);
}

.orbit-ring.two::after{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  bottom:-5px;
  right:18%;
  border-radius:50%;
  background:linear-gradient(135deg,#8c59ff,#c69cff);
  box-shadow:0 0 18px rgba(140,89,255,.95);
}

.orbit-ring.three::after{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  top:22%;
  left:-4px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff89b0,#a678ff);
  box-shadow:0 0 14px rgba(255,137,176,.85);
}

.center-piece{
  position:absolute;
  width:250px;
  height:250px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  animation:floatCard 6s ease-in-out infinite;
}

.center-piece img{
  width:76%;
  height:auto;
  object-fit:contain;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.24));
}

.topic-card{
  position:absolute;
  min-width:155px;
  padding:12px 16px;
  border-radius:18px;
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  animation:cardFloat 5s ease-in-out infinite;
}

.topic-card::before{
  content:"";
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff6895,#9450ff);
  box-shadow:0 0 14px rgba(255,104,149,.5);
  flex:0 0 12px;
}

.card1{top:6%; right:2%;}
.card2{left:-1%; top:34%; animation-delay:1s;}
.card3{right:0; bottom:9%; animation-delay:1.8s;}
.card4{left:6%; bottom:10%; animation-delay:2.3s;}
.card5{top:18%; right:22%; animation-delay:.6s;}
.card6{top:50%; right:-4%; animation-delay:1.4s;}
.card7{bottom:20%; left:18%; animation-delay:2.8s;}
.card8{top:60%; left:-6%; animation-delay:3.2s;}

.swiper-pagination{
  position:absolute;
  left:0 !important;
  bottom:0 !important;
  width:auto !important;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:6px;
}

.swiper-pagination .swiper-pagination-bullet{
  width:10px;
  height:10px;
  background:#d4d4d4;
  opacity:1;
  margin:0 6px 0 0 !important;
  transition:all .3s ease;
  border-radius:999px;
}

.swiper-pagination .swiper-pagination-bullet-active{
  width:30px;
  border-radius:999px;
  background:linear-gradient(90deg,#e94b7d,#7a3fd1);
  box-shadow:0 0 14px rgba(233,75,125,.35);
}

.swiper-slide-active .hero-text{
  animation:fadeUp .9s ease both;
}

@keyframes rotateClock{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes rotateAnti{
  from{transform:rotate(360deg);}
  to{transform:rotate(0deg);}
}

@keyframes pulseGlow{
  0%,100%{transform:scale(1);opacity:.65;}
  50%{transform:scale(1.08);opacity:1;}
}

@keyframes floatCard{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}

@keyframes cardFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:translateY(0);}
}

/* LARGE LAPTOP / DESKTOP */
@media (min-width: 1440px){
  /*.hero-container{*/
  /*  max-width:1400px;*/
  /*}*/

  .hero-text{
    max-width:760px;
  }

  .hero-text h1{
    font-size:clamp(64px, 5vw, 92px);
  }

  .hero-text p{
    font-size:20px;
    max-width:640px;
  }

  .meta-chip{
    font-size:14px;
  }

  .btn-primary,
  .btn-secondary{
    min-height:54px;
    padding:0 26px;
    font-size:15px;
  }
}

/* ULTRA WIDE */
@media (min-width: 1800px){
  /*.hero-container{*/
  /*  max-width:1600px;*/
  /*}*/

  .hero-text h1{
    font-size:96px;
  }

  .hero-text p{
    font-size:22px;
    line-height:1.8;
  }

  .meta-chip{
    font-size:15px;
  }

  .btn-primary,
  .btn-secondary{
    min-height:56px;
    padding:0 28px;
    font-size:16px;
  }
}

/* TABLET */
@media (max-width: 1200px){
  .hero-container{
    grid-template-columns:1fr;
    gap:26px;
    padding-top:150px;
  }

  .hero-text{
    text-align:center;
    max-width:100%;
  }

  .hero-text h1{
    font-size:clamp(42px, 6vw, 68px);
  }

  .hero-text p{
    max-width:100%;
    font-size:18px;
    line-height:1.75;
  }

  .hero-actions,
  .hero-meta{
    justify-content:center;
  }

  .hero-visual{
    height:520px;
    justify-self:center;
  }

  .orbit-wrap{
    margin-left:0;
  }

  .swiper-pagination{
    left:50% !important;
    transform:translateX(-50%);
    justify-content:center;
  }
}

/* MOBILE */
@media (max-width: 767px){
  .hero{
    min-height:auto;
  }

  .hero-container{
    width:min(92%,100%);
    min-height:auto;
    padding-top:150px;
    padding-bottom:45px;
    gap:18px;
  }

  .heroSlider{
    padding-bottom:52px;
  }

  .hero-text h1{
    font-size:clamp(30px, 7vw, 42px);
    line-height:1.1;
    margin-bottom:14px;
  }

  .hero-text p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
  }

  .hero-actions{
    flex-direction:row;
    justify-content:center;
    gap:10px;
  }

  .btn-primary,
  .btn-secondary{
    width:auto;
    min-height:42px;
    padding:0 15px;
    border-radius:12px;
    font-size:13px;
  }

  .hero-meta{
    margin-top:18px !important;
    gap:8px 12px;
    max-width:100%;
    justify-content:center;
  }

  .meta-chip{
    font-size:12px;
    white-space:normal;
    text-align:center;
    justify-content:center;
    line-height:1.5;
  }

  .hero-visual{
    height:340px;
  }

  .orbit-wrap{
    width:100%;
    max-width:290px;
  }

  .center-piece{
    width:150px;
    height:150px;
    border-radius:22px;
  }

  .topic-card{
    min-width:auto;
    padding:8px 11px;
    font-size:11px;
    border-radius:14px;
    gap:7px;
  }

  .topic-card::before{
    width:9px;
    height:9px;
    flex:0 0 9px;
  }

  .card1{top:5%;right:2%;}
  .card2{left:-2%;top:34%;}
  .card3{right:0;bottom:8%;}
  .card4{left:1%;bottom:13%;}
  .card5{top:16%;right:18%;}
  .card6{top:52%;right:-6%;}
  .card7{bottom:18%;left:12%;}
  .card8{top:61%;left:-5%;}

  .swiper-pagination{
    left:30% !important;
    transform:translateX(-50%);
    bottom:0 !important;
    justify-content:center;
  }

  .swiper-pagination .swiper-pagination-bullet{
    width:9px;
    height:9px;
    margin:0 5px !important;
  }

  .swiper-pagination .swiper-pagination-bullet-active{
    width:24px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px){
  .hero-container{
    padding-top:150px;
  }

  .hero-text h1{
    font-size:34px;
  }

  .hero-text p{
    font-size:16px;
  }

  .btn-primary,
  .btn-secondary{
    min-height:40px;
    padding:0 13px;
    font-size:12px;
  }

  .hero-actions{
    flex-wrap:wrap;
    gap:8px;
  }

  .hero-visual{
    height:300px;
  }

  .orbit-wrap{
    max-width:250px;
  }

  .center-piece{
    width:132px;
    height:132px;
  }

  .topic-card{
    font-size:10px;
    padding:7px 10px;
  }

  .meta-chip{
    font-size:14px;
  }
  .swiper-pagination{
      display:none;
  }


}

























/* ourservices  */

.cs-container {
   width: 100%;
   max-width: none;
   padding-left: 4%;
   padding-right: 4%;
   margin: 0 auto;
   box-sizing: border-box;
}

.cs-tittle {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.cs-tittle span {
  color: #e84b6a;
}

.cs-wrapper {
  display: flex;
  gap: 120px;
  align-items: center;
}
.cs-img {
  width: 100%;
  height: 500px; /* adjust height as needed */
  object-fit: cover;
  display: block;
}

/* Left */
.cs-left {
  flex: 1;
}
.cs-item h3{
  margin:0;
  font-size:28px;
  font-family: urbanist, sans-serif;
  font-weight: 700;
  cursor:pointer;
  position:relative;
  padding-right:25px;
  color:#000000;
  transition:0.3s;
}

/* Active title color */
.cs-item.active h3{
  color:#e84b6a;
  font-weight:700;
}
.cs-item {
  padding: 25px 0;
  border-bottom: 1px solid #f2a5b5;
}
.cs-item:hover h3{
  color:#e84b6a;
}

.cs-item.active{
  border-bottom:1px solid #e84b6a;
}
.cs-item h3 {
  margin: 0;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.cs-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #e84b6a;
}

.cs-item.active h3::after {
  content: "−";
}

/* Accordion text */
.cs-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  font-size: 17px;
  font-weight: 400;
  color: #666;
  max-width: 450px;
  margin-top: 10px;
}

.cs-item.active p {
  max-height: 150px;
  opacity: 1;
}

/* Right */
.cs-right {
  flex: 1;
  position: relative;
}

.cs-right img {
  width: 100%;
  border-radius: 18px;
}

/* Floating Card */
.cs-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #E64469;
  color: #fff;
  padding: 25px;
  border-radius: 16px;
  max-width: 300px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .cs-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .cs-card {
    position: static;
    margin-top: 20px;
    max-width: 100%!important;
  }
}

@media (max-width: 600px) {
  .cs-tittle {
    font-size: 28px;
  }
}









/* custom cursor */
.cursor{
position:fixed;
width:18px;
height:18px;
border-radius:50%;
background:#fff;
mix-blend-mode:difference;
pointer-events:none;
transform:translate(-50%,-50%);
z-index:9999;
transition:transform .15s ease;
}

.cursor-grow{
transform:translate(-50%,-50%) scale(2.5);
}


}
/* =========================
   SECTION
========================= */
.stack-section {
  padding-top: clamp(50px, 8vw, 100px) !important;
  padding-bottom: clamp(50px, 8vw, 100px) !important;
  padding-left: 4%;
  padding-right: 4%;
  background:radial-gradient(circle at 50% 15%, rgba(235,69,104,.45), transparent 28%),radial-gradient(circle at 78% 30%, rgba(107,45,144,.28), transparent 22%),linear-gradient(115deg,#0b0911 0%,#231126 32%,#5a1839 62%,#241036 100%) !important;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  color: #fff;
  margin: 0 auto clamp(40px, 7vw, 80px);
  max-width: 980px;
  width: 100%;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  margin: 0;
}

.section-heading p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: #fff;
  margin-top: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   WRAPPER
========================= */
.cards-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* =========================
   CARD
========================= */
.stack-card {
  position: sticky;
  top: 100px;
  width: 100%;
  /*max-width: 1400px;*/
  margin: 0 auto clamp(40px, 8vw, 90px) !important;
  padding: clamp(22px, 4vw, 50px) !important;
  border-radius: 24px;
  box-sizing: border-box;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);

  transition: transform .4s ease, opacity .4s ease;
  will-change: transform;
}

.card-1 { z-index: 1; }
.card-2 {
  z-index: 2;
  background: rgba(255, 255, 255, 0.10);
}
.card-3 { z-index: 3; }

@media (max-width: 1200px) {
  .stack-card {
    position: relative;
    top: 0;
  }
}

/* =========================
   GRID
========================= */
.card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================
   IMAGE
========================= */
.card-image {
  position: relative;
  width: 100%;
  min-width: 0;
}

.main-img {
  width: 100%;
  height: clamp(260px, 34vw, 480px);
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
}

@media (max-width: 1024px) {
  .main-img {
    height: clamp(240px, 52vw, 420px);
  }
}

@media (max-width: 767px) {
  .main-img {
    height: clamp(220px, 60vw, 320px);
    border-radius: 16px;
  }
}

/* =========================
   CONTENT
========================= */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  width: 100%;
  color: #fff;
}

.smallbox {
  background: rgba(255, 255, 255, 0.10);
  padding: clamp(20px, 3vw, 34px);
  border-radius: 18px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-content h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  color: #fff;
}

.card-content p {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

/* =========================
   BUTTONS
========================= */
.card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  width: 100%;
}

.card-buttons button {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 180px;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #E64469, #5A2D88);
  color: #fff;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.card-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(230, 68, 105, 0.22);
}

@media (max-width: 1200px) {
  .card-buttons button {
    flex: 1 1 calc(50% - 8px);
    min-width: 160px;
  }
}

@media (max-width: 767px) {
  .card-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .card-buttons button {
    flex: 1 1 100%;
    min-width: 100%;
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
  }
}

/* =========================
   MOBILE SPACING
========================= */
@media (max-width: 767px) {
  .stack-section {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.75;
  }

  .stack-card {
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 26px;
  }

  .smallbox {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .card-content h3 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .stack-section {
    padding-top: 42px;
    padding-bottom: 42px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .stack-card {
    padding: 16px;
  }

  .smallbox {
    padding: 16px 14px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 13.5px;
  }

  .card-buttons button {
    font-size: 13px;
    padding: 12px 14px;
  }
}

/* ===============================
   DRAG CURSOR
================================ */
.drag-cursor,
.cursor {
  position: fixed;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #EB4568;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 99999;
  backdrop-filter: blur(6px);
}

body.dragging .drag-cursor,
body.dragging .cursor {
  transform: translate(-50%, -50%) scale(0.9);
}





/* ===============================
   DRAG CURSOR
================================ */
.drag-cursor {
  position: fixed;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #EB4568;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 99999;
  backdrop-filter: blur(6px);
}

body.dragging .drag-cursor {
  transform: translate(-50%, -50%) scale(0.9);
}

/* ===============================
   CAROUSEL WRAPPER
================================ */
.pro-carousel {
  width: 100%;
  padding: 60px 0;
  cursor: none;
 
}

.pro-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

/* ===============================
   TRACK
================================ */
.pro-carousel__track {
  display: flex;
  gap: 0px;
  width: max-content;
  padding: 0px 0px;
  will-change: transform;
}

/* ===============================
   GRID SLIDE
================================ */
.pro-slide {
  display: grid;
  grid-template-columns: 460px 260px 260px;
  grid-template-rows: 260px 260px;
  gap: 40px;
  flex: 0 0 auto;
}

/* LEFT BIG */
.pro-slide .large-left {
  grid-row: span 2;
  border-radius: 56px;
  overflow: hidden;
}

/* SMALL TOP */
.pro-slide .small-1,
.pro-slide .small-2,
.pro-slide .small-3,.pro-slide .small-4 {
  border-radius: 40px;
  overflow: hidden;
}

/* RIGHT BIG */
.pro-slide .large-right {
  grid-row: span 2;
  border-radius: 40px;
  overflow: hidden;
}

/* IMAGE */
.pro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .pro-carousel {
    padding: 20px 20px;
  }

  .pro-carousel__track {
    gap: 50px;
    padding: 0 16px;
  }

  .pro-slide {
    display: grid;
    grid-template-columns: 58% 42%;
    column-gap: 20px;   /* center gap control */
    width: 88vw;
  }

  /* LEFT BIG IMAGE */
  .pro-slide .large-left {
    aspect-ratio: 3 / 4;   /* perfect proportion */
    border-radius: 22px;
    height: 100%;
  }

  /* RIGHT WRAP (make small grid container effect) */
  .pro-slide .small-1,
  .pro-slide .small-2,
  .pro-slide .small-3,
  .pro-slide .small-4 {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    
  }

  /* Create 2x2 grid on right side */
  .pro-slide {
    grid-template-rows: auto;
  }

  .pro-slide .small-1 { grid-column: 1; grid-row: 1; }
  .pro-slide .small-2 { grid-column: 1; grid-row: 1; }
  .pro-slide .small-3 { grid-column: 1; grid-row: 2; }
  .pro-slide .small-4 { grid-column: 1; grid-row: 2; }

  .pro-slide .small-1,
  .pro-slide .small-2 {
    width: 48%;
  }

  .pro-slide .small-3,
  .pro-slide .small-4 {
    width: 48%;
  }

  .pro-slide .small-2,
  .pro-slide .small-4 {
    margin-left: 52%;
  }

  .pro-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .drag-cursor {
    display: none;
  }
}
.partnerSlider .swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 90px;
  opacity: 1 !important;
  transform: scale(1) !important;
  filter: none !important;
  visibility: visible !important;
}

.partnerSlider .swiper-slide-active,
.partnerSlider .swiper-slide-next,
.partnerSlider .swiper-slide-prev,
.partnerSlider .swiper-slide-duplicate,
.partnerSlider .swiper-slide-visible {
  opacity: 1 !important;
  transform: scale(1) !important;
  filter: none !important;
}

.partnerSlider .partner-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
}


.partnerSlider .swiper-wrapper{
  transition-timing-function: linear !important;
  filter: none !important;
    opacity: 1 !important;
}


.testimonial-card{
position:relative;
padding-top:70px;
width:100%;
}

.testimonial-avatar{
position:absolute;
left:50%;
top:0;
transform:translateX(-50%);
width:110px;
height:110px;
border-radius:50%;
/* border:6px solid white; */
object-fit:cover;
z-index:2;
}

.testimonial-box{
background:#e8e2ef;
border-radius:30px;
padding:90px 70px 60px;
text-align:center;
min-height:380px;
position:relative;
}

.testimonial-text{
color:#555;
font-size:18px;
line-height:1.8;
max-width:720px;
margin:auto;
margin-bottom:30px;
}

.testimonial-name{
color:#ff4d6d;
font-weight:600;
font-size:22px;
margin-bottom:8px;
}

.testimonial-role{
color:#777;
font-size:14px;
}

.quote-icon{
position:absolute;
right:40px;
bottom:30px;
width:70px;
opacity:0.15;
}

/* exact layout: center 80%, sides visible */
.swiper{
width:100%;
padding-left:10%;
padding-right:0;
overflow:visible;
box-sizing:border-box;
}

.swiper-slide{
width:80%;
flex-shrink:0;
display:flex;
justify-content:center;
opacity:.5;
transform:scale(.92);
transition:all .4s ease;
}

.swiper-slide-active{
opacity:1;
transform:scale(1);
}

/* remove default swiper spacing */
.swiper-wrapper{
transition-timing-function:linear;
}

@media(max-width:768px){

.swiper-slide{
width:92%;
}

.testimonial-box{
padding:70px 30px 50px;
}

}
/* TAB STYLE */
.tab-btn{
color:#444;
border-color:transparent;
position:relative;
}

.tab-btn:hover{
color:#EB4568;
}

/* ACTIVE TAB */
.tab-btn.active{
color:#EB4568;
border-color:#EB4568;
}

/* Smooth underline effect */
.tab-btn::after{
content:"";
position:absolute;
left:0;
bottom:-2px;
width:0%;
height:3px;
background:linear-gradient(90deg,#EB4568,#6B2D90);
transition:0.4s;
}

.tab-btn.active::after{
width:100%;
}


/* RIGHT GRADIENT BOX */
.custom-gradient{
background: linear-gradient(180deg,#EB4568 0%, #6B2D90 100%);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE STYLE */
img{
transition:0.4s;
}

/*img:hover{*/
/*transform:scale(1.04);*/
/*}*/


/* TAB CONTAINER SCROLL FIX (mobile) */
@media (max-width:768px){
.tab-btn{
font-size:15px;
}
}


 .feature-card{
    position: relative;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
    transition: all 0.35s ease;
  }

  .feature-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(107,45,144,0.12);
  }

  .glass-tag{
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #6B2D90;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  }

  .erp-grid{
    background-image:
      linear-gradient(rgba(107,45,144,0.16) 1px, transparent 1px),
      linear-gradient(90deg, rgba(107,45,144,0.16) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: gridMove 18s linear infinite;
  }

  .float-dot{
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6B2D90, #EB4568);
    opacity: 0.35;
    filter: blur(0.5px);
    animation: floatDot 7s ease-in-out infinite;
  }

  .dot-1{ top: 18%; left: 8%; animation-delay: 0s; }
  .dot-2{ top: 28%; right: 10%; animation-delay: 1.2s; }
  .dot-3{ bottom: 18%; left: 16%; animation-delay: 2.2s; }
  .dot-4{ bottom: 24%; right: 18%; animation-delay: 3.2s; }

  .animate-floatY{
    animation: floatY 4.5s ease-in-out infinite;
  }

  .delay-200{ animation-delay: .8s; }
  .delay-500{ animation-delay: 1.5s; }

  .animate-spin-slow{
    animation: spinSlow 24s linear infinite;
  }

  @keyframes floatY{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-12px); }
  }

  @keyframes floatDot{
    0%,100%{ transform: translateY(0) scale(1); opacity:.25; }
    50%{ transform: translateY(-18px) scale(1.15); opacity:.45; }
  }

  @keyframes gridMove{
    0%{ transform: translateY(0); }
    100%{ transform: translateY(44px); }
  }

  @keyframes spinSlow{
    from{ transform: rotate(0deg) scale(1.04); }
    to{ transform: rotate(360deg) scale(1.04); }
  }

  @media (max-width: 1023px){
    .feature-card{
      padding: 16px 18px;
    }
  }



   .platformsAcceleratorSlider {
    overflow: visible;
    padding: 10px 4px 30px;
  }


  .platform-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 340px;
    height: 340px;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.45s ease;
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
    background: #ddd;
  }

  .platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(17, 24, 39, 0.18);
  }

  .platform-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
  }

  .platform-card:hover .platform-img {
    transform: scale(1.08);
    filter: blur(2px) brightness(0.55);
  }

  .platform-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.35) 100%
  );
  opacity: 1;
  transition: 0.4s ease;
  border-radius: 24px;
}


  .platform-default {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    transition: all 0.35s ease;
  }

  .platform-default h4 {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }

  .platform-card:hover .platform-default {
    opacity: 0;
    transform: translateY(20px);
  }

 .platform-hover{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transform:scale(.94);
  transition:all .45s ease;
}

.platform-card:hover .platform-hover{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:scale(1);
}
  .platform-hover-box {
    width: 100%;
    max-width: 280px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  }

  .platform-hover-box h4 {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .platform-hover-box p {
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .platform-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .platform-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.08);
  }

  @media (max-width: 1024px) {
    .platform-card {
      min-height: 320px;
      height: 320px;
    }
  }

  @media (max-width: 767px) {
    .platform-card {
      min-height: 300px;
      height: 300px;
      border-radius: 16px;
    }

    .platform-default {
      left: 18px;
      right: 18px;
      bottom: 18px;
    }

    .platform-default h4 {
      font-size: 1rem;
    }

    .platform-hover {
      opacity: 1;
      transform: none;
      align-items: flex-end;
      padding: 16px;
      background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.05));
    }

    .platform-card:hover .platform-default {
      opacity: 1;
      transform: none;
    }

    .platform-card:hover .platform-img {
      transform: none;
      filter: brightness(0.62);
    }

    .platform-hover-box {
      max-width: 100%;
      padding: 16px 14px;
      text-align: left;
      background: rgba(0,0,0,0.34);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .platform-hover-box h4 {
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .platform-hover-box p {
      font-size: 0.86rem;
      line-height: 1.55;
      margin-bottom: 12px;
    }
  }