*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}



.zx-navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:18px 8%;
  background:#fff;
  z-index:999;

  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* LOGO */
.zx-logo{
  font-size:22px;
  font-weight:700;
  z-index:1001;
}

/* ===== CENTER MENU ===== */
.zx-menu{
  position:absolute;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

/* LINKS */
.zx-menu a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  position:relative;
}

/* UNDERLINE EFFECT */
.zx-menu a::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:0%;
  height:2px;
  background:#ff5a1f;
  transition:0.3s;
}

.zx-menu a:hover::after{
  width:100%;
}

/* ===== DESKTOP CONTACT ===== */
.zx-desktop-contact{
  background:#ff5a1f;
  color:#fff;
  border:none;
  padding:10px 22px;
  cursor:pointer;
  transition:0.3s;
}

.zx-desktop-contact:hover{
  background:#ff7845;
}

/* ===== MOBILE CONTACT (HIDDEN DESKTOP) ===== */
.zx-mobile-contact{
  display:none;
}

.zx-mobile-contact button{
  width:80%;
  padding:16px 10px;
  background:#ff5a1f;
  color:#fff;
  border:none;
}

/* ===== TOGGLE ===== */
.zx-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
  z-index:1001;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  /* HIDE DESKTOP BUTTON */
  .zx-desktop-contact{
    display:none;
  }

  /* SHOW MOBILE CONTACT */
  .zx-mobile-contact{
    display:block;
    width:100%;
    padding:10px 0 0;
  }

  .zx-mobile-contact button{
    width:85%;
    margin:10px auto 0;
    display:block;

    padding:14px;
    font-size:15px;
    font-weight:500;

    background:#ff5a1f;
    color:#fff;
    border:none;

    border-radius:4px;
  }

  /* MENU */
  .zx-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;

    transform:none;

    flex-direction:column;
    align-items:center;

    background:#fff;

    max-height:0;
    overflow:hidden;
    transition:0.3s ease;
  }

  .zx-menu.active{
    max-height:400px;
    padding:20px 0;
  }

  /* TOGGLE */
  .zx-toggle{
    display:block;
  }
}












































*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

.hero{
  height:100vh;
  width:100%;
  position:relative;
  overflow:hidden;
}

/* ===== SLIDER (DESKTOP) ===== */
.slider{
  display:flex;
  height:100%;
  width:300%;
  transition:0.8s ease;
}

.slide{
  width:100%;
  height:100%;
  position:relative;
  flex-shrink:0;
}

/* IMAGE */
.slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(55%);
}

/* OVERLAY */
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.3));
}

/* CONTENT */
.content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:#fff;
  max-width:800px;
  z-index:2;

  display:flex;
  flex-direction:column;
  gap:18px;
}

/* TAG */
.tag{
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  opacity:0.45;
}

/* HEADING */
.content h1{
  font-size:clamp(32px, 6vw, 68px);
  line-height:1.15;
}

.content span{
  color:#ff5a1f;
}
 span{
  color:#ff5a1f;
}

/* TEXT */
.content p{
  font-size:16px;
  line-height:1.7;
  color:#ddd;
  max-width:650px;
}

/* BUTTONS */
.buttons{
  display:flex;
  gap:18px;
  margin-top:10px;
}

.btn{
  padding:15px 30px;
  border-radius:30px;
  font-size:14px;
  border:none;
  cursor:pointer;
}

.primary{
  background:#ff5a1f;
  color:#fff;
}

.secondary{
  background:rgba(255,255,255,0.1);
  color:#fff;
  border:1px solid rgba(255,255,255,0.3);
}

/* DOTS */
.dots{
  position:absolute;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#aaa;
  cursor:pointer;
}

.dot.active{
  background:#ff5a1f;
  transform:scale(1.3);
}

/* ===== MOBILE (NO SLIDER) ===== */
@media(max-width:768px){

  .slider{
    width:100%; /* stop sliding */
    transform:none !important;
  }

  .slide{
    display:none; /* hide all */
  }

  .slide:first-child{
    display:block; /* show only first */
  }

  .slide::after{
    background:linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  }

  .content{
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:90%;
    text-align:center;
    align-items:center;
  }

  .content h1{
    font-size:30px;
  }

  .content p{
    font-size:14px;
  }

  .buttons{
    flex-direction:column;
    width:100%;
  }

  .btn{
    width:100%;
  }

  .dots{
    display:none; /* no dots on mobile */
  }
}

















.about{
  padding:80px 8%;
  background:#f9f9f9;
}

.container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT */
.left{
  flex:1;
  max-width:600px;
}

.tag{
  font-size:14px;
  color:#777;
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
}

.tag::before{
  content:"";
  width:40px;
  height:2px;
  background:#ff5a1f;
}

.left h1{
  font-size:42px;
  margin-bottom:20px;
}

.left h1 span{
  color:#ff5a1f;
}

.left p{
  font-size:15px;
  color:#666;
  line-height:1.8;
  margin-bottom:15px;
}

.features{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.feature{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
}

.feature::before{
  content:"✓";
  width:22px;
  height:22px;
  border-radius:50%;
  background:#ff5a1f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.signature{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:20px;
}

.sign{
  font-family:cursive;
  font-size:28px;
}

.ceo h4{
  font-size:16px;
}

.ceo p{
  font-size:13px;
  color:#777;
}

/* RIGHT */
.right{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
}

/* TOP ORANGE BAR (NEW) */
.top-bar{
  position:absolute;
  top:-5%;
  left:4%;
  width:70%;
  height:150px;
  background:#ff5a1f;
  z-index:1;
}

/* ORANGE FRAME */
/* .frame{
  position:absolute;
  width:80%;
  height:80%;
  border-left:8px solid #ff5a1f;
  border-top:8px solid #ff5a1f;
  top:-1%;
  left:06%;
  z-index:1;
} */

/* IMAGE */
.right img{
  width:85%;
  position:relative;
  z-index:2;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* FLOATING CARD */
.card{
  position:absolute;
  bottom:-5%;
  right:5%;
  background:#ff5a1f;
  color:#fff;
  padding:25px;
  max-width:250px;
  z-index:3;
}

.card p{
  font-size:14px;
  line-height:1.6;
}

/* ===== MOBILE ===== */



@media(max-width:768px){

  .about{
    padding:60px 6%;
  }

  .container{
    flex-direction:column;
    gap:50px;
  }

  /* LEFT SIDE */
  .left{
    max-width:100%;
  }

  .left h1{
    font-size:30px;
    line-height:1.2;
  }

  .left p{
    font-size:14px;
    line-height:1.7;
  }

  .features{
    gap:10px;
  }

  .signature{
    margin-top:25px;
  }

  /* RIGHT SIDE */
  .right{
    width:100%;
    margin-top:20px;
  }

  /* REMOVE DECORATIONS (clean mobile look) */
  .top-bar,
  .frame{
    display:none;
  }

  /* IMAGE */
  .right img{
    width:100%;
    border-radius:10px;
  }

  /* CARD */
.card{
  position:absolute;
  order:1;
    bottom:-10%;
  width:85%;
  max-width:300px;   /* tighter width */

  padding:14px 16px; /* less bulky */

  text-align:center;

  background:#ff5a1f;
  color:#fff;
margin: 0 auto;
  border-radius:10px;

  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.card p{
  font-size:12.5px;
  line-height:1.5;
}
}

























.services-sec{
  height:100vh;
  padding:60px 8%;
  background:#f6f6f6;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* HEADER */
.services-head{
  margin-bottom:40px;
}

.services-sub{
  color:#777;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.services-sub::before{
  content:"";
  width:40px;
  height:2px;
  background:#ff5a1f;
}

.services-head h2{
  font-size:42px;
  margin-top:10px;
}

/* SLIDER */
.services-slider-wrap{
  overflow:hidden;
}

.services-track{
  display:flex;
  width:200%;
  transition:0.6s ease;
}

.services-slide{
  width:100%;
  display:flex;
}

/* CARD */
.service-card{
  width:33.33%;
  padding:15px;
}

.service-inner{
  background:#fff;
  transition:0.3s;
}

.service-inner:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.service-img{
  position:relative;
}

.service-img img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* ICON */
.service-icon{
  position:absolute;
  bottom:-25px;
  left:25px;
  width:55px;
  height:55px;
  background:#ff5a1f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* CONTENT */
.service-content{
  background:#f3f3f3;
  padding:40px 25px 25px;
}

.service-content h4{
  font-size:20px;
  margin-bottom:10px;
  color:#111;
}

.service-content p{
  font-size:14px;
  color:#666;
  line-height:1.6;
  margin-bottom:15px;
}

/* LINK */
.service-link{
  font-size:14px;
  color:#666;
  display:inline-block;
  border-bottom:1px solid #ccc;
  padding-bottom:3px;
  transition:0.3s;
}

.service-link:hover{
  color:#ff5a1f;
  border-color:#ff5a1f;
}

/* DOTS */
.services-dots{
  display:flex;
  justify-content:center;
  margin-top:20px;
  gap:10px;
}

.services-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ccc;
  cursor:pointer;
}

.services-dot.active{
  background:#ff5a1f;
  transform:scale(1.3);
}

/* MOBILE */
@media(max-width:768px){
  .services-sec{
    height:auto;
  }

  .services-slide{
    flex-direction:column;
  }

  .service-card{
    width:100%;
  }
}



































.process-sec{
  height:100vh;
  position:relative;
  overflow:hidden;
  color:#fff;
}

/* PARALLAX BG */
.process-bg{
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1590650153855-d9e808231d41?q=80&w=1600') center/cover no-repeat;
  z-index:-2;
  will-change:transform;
}

/* OVERLAY */
.process-sec::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:-1;
}

/* CONTENT */
.process-container{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 6%;
}

/* TEXT */
.process-sub{
  font-size:14px;
  margin-bottom:10px;
  opacity:0.8;
}

.process-title{
  font-size:48px;
  font-weight:700;
  margin-bottom:15px;
}

.process-desc{
  max-width:600px;
  font-size:15px;
  opacity:0.8;
  margin-bottom:60px;
}

/* STEPS */
.process-steps{
  display:flex;
  justify-content:space-between;
  width:100%;
  max-width:1000px;
  position:relative;
}

/* CONNECTOR LINE */
.process-steps::before{
  content:"";
  position:absolute;
  top:35px;
  left:10%;
  width:80%;
  height:2px;
  border-top:2px dashed rgba(255,255,255,0.4);
  z-index:0;
}

/* STEP */
.process-step{
  position:relative;
  text-align:center;
  z-index:1;
}

/* ICON CIRCLE */
.process-icon{
  width:70px;
  height:70px;
  background:#ff5a1f;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin:auto;
  box-shadow:0 0 25px rgba(255,90,31,0.5);
}

/* LABEL */
.process-label{
  margin-top:15px;
  font-size:16px;
}

.process-label span{
  color:#ff5a1f;
  font-weight:600;
  margin-right:6px;
}

/* MOBILE */
@media(max-width:768px){

  .process-sec{
    height:auto;
    padding:80px 0;
  }

  .process-title{
    font-size:32px;
  }

  .process-steps{
    flex-direction:column;
    gap:40px;
  }

  .process-steps::before{
    display:none;
  }
}




























.process-sec{
  height:55vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;

  background:url('https://images.unsplash.com/photo-1590650153855-d9e808231d41?q=80&w=1600') center/cover no-repeat;
  background-attachment:fixed;
}

/* OVERLAY */
.process-sec::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

/* CONTENT */
.process-container{
  position:relative;
  z-index:2;
  text-align:center;
  width:100%;
  max-width:1000px;
  padding:0 6%;
}

/* TITLE */
.process-sub{
  font-size:13px;
  opacity:0.7;
  margin-bottom:8px;
}

.process-title{
  font-size:34px;
  margin-bottom:30px;
  font-weight:700;
}

/* STEPS */
.process-steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:170px;
}

/* STEP */
.process-step{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* ICON */
.process-icon{
  width:65px;
  height:65px;
  background:#ff5a1f;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 0 20px rgba(255,90,31,0.6);
}

/* LABEL */
.process-label{
  margin-top:10px;
  font-size:14px;
}

.process-label span{
  color:#ff5a1f;
  margin-right:4px;
}

/* ARROWS */
.process-arrow{
  font-size:22px;
  opacity:0.7;
}

/* MOBILE */
/* ===== IMPROVED MOBILE (RESPONSIVE + PARALLAX VISIBLE) ===== */
@media(max-width:768px){

  .process-sec{
    height:80vh; /* more height so parallax effect is visible */
    padding:40px 0;

    background-size:cover;
    background-position:center;
    background-attachment:fixed; /* keep parallax */
  }

  .process-container{
    padding:0 20px;
  }

  .process-title{
    font-size:26px;
    margin-bottom:20px;
  }

  .process-sub{
    font-size:12px;
  }

  /* STACK STEPS */
  .process-steps{
    flex-direction:column;
    gap:30px;
  }

  /* STEP */
  .process-step{
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:15px;
  }

  /* ICON */
  .process-icon{
    width:55px;
    height:55px;
    font-size:18px;
    flex-shrink:0;
  }

  /* TEXT */
  .process-label{
    font-size:14px;
    text-align:left;
  }

  .process-label span{
    display:block;
    font-size:12px;
    margin-bottom:2px;
  }

  /* ARROWS → vertical */
  .process-arrow{
    transform:rotate(90deg);
    font-size:18px;
    opacity:0.6;
  }

}



























:root{
  /* CONTROLS */
  --proj-padding: 80px 8%;
  --proj-block-height: 80vh;

  --proj-img-width: 65%;
  --proj-img-height: 80%;

  --proj-card-width: 420px;
  --proj-card-padding: 30px;

  --proj-overlap: -120px;
  --proj-vertical: 50%;
}



/* SECTION */
.proj-section{
  padding:var(--proj-padding);
  background:#f9f9f9;
}

/* HEADER */
.proj-header{
  margin-bottom:60px;
}

.proj-tag{
  font-size:14px;
  color:#777;
  display:flex;
  align-items:center;
  gap:10px;
}

.proj-tag::before{
  content:"";
  width:40px;
  height:2px;
  background:#ff5a1f;
}

.proj-header h2{
  font-size:42px;
  margin-top:10px;
}

.proj-header span{
  color:#ff5a1f;
}

/* BLOCK */
.proj-row{
  height:var(--proj-block-height);
  display:flex;
  align-items:center;
  margin-bottom:60px;
}

/* IMAGE WRAPPER */
.proj-img-box{
  position:relative;
  width:var(--proj-img-width);
  height:var(--proj-img-height);
}

.proj-img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CARD */
.proj-card{
  position:absolute;
  width:var(--proj-card-width);
  background:#fff;
  padding:var(--proj-card-padding);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);

  top:var(--proj-vertical);
  transform:translateY(-50%);
}

/* LEFT IMAGE → CARD RIGHT */
.proj-left .proj-img-box{
  margin-right:auto;
}

.proj-left .proj-card{
  right:var(--proj-overlap);
}

/* RIGHT IMAGE → CARD LEFT */
.proj-right .proj-img-box{
  margin-left:auto;
}

.proj-right .proj-card{
  left:var(--proj-overlap);
}

/* TEXT */
.proj-card h3{
  font-size:22px;
  margin-bottom:15px;
}

.proj-card p{
  font-size:14px;
  color:#666;
  line-height:1.6;
  margin-bottom:20px;
}

.proj-divider{
  width:40px;
  height:2px;
  background:#ff5a1f;
  margin:15px 0;
}

.proj-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.proj-footer span{
  color:#ff5a1f;
}


/* ===== FIXED MOBILE (CARDS VISIBLE) ===== */
/* ===== MOBILE FIX (CENTER CARD ON IMAGE) ===== */
/* ===== FINAL MOBILE VIEW ===== */
@media(max-width:768px){

  .proj-section{
    padding:60px 5%;
  }

  .proj-header{
    margin-bottom:40px;
    text-align:center;
  }

  .proj-header h2{
    font-size:28px;
  }

  .proj-tag{
    justify-content:center;
    font-size:12px;
  }

  /* STACK LAYOUT */
  .proj-row{
    flex-direction:column;
    height:auto;
    margin-bottom:80px;
  }

  /* IMAGE */
  .proj-img-box{
    width:100%;
    height:240px;
    border-radius:12px;
    overflow:hidden;
    position:relative;
  }

  .proj-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /* 🔥 CARD FIX (WORKS FOR BOTH LEFT & RIGHT) */
  .proj-card{
    position:absolute;

    left:50% !important;
    right:auto !important;

    transform:translateX(-50%);
    bottom:-45px;

    width:90%;
    max-width:340px;

    padding:18px;
    border-radius:14px;
    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    z-index:2;
  }

  /* SPACING AFTER OVERLAP */
  .proj-row{
    padding-bottom:60px;
  }

  /* TEXT */
  .proj-card h3{
    font-size:18px;
    margin-bottom:10px;
  }

  .proj-card p{
    font-size:13px;
    line-height:1.5;
  }

  .proj-footer{
    font-size:13px;
  }

}





























.svc-wrapper{
  padding:80px 8%;
  background:#f8f8f8;
}

/* HEADER */
.svc-header{
  text-align:center;
  margin-bottom:50px;
}

.svc-tag{
  font-size:14px;
  color:#777;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.svc-tag::before{
  content:"";
  width:40px;
  height:2px;
  background:#ff5a1f;
}

.svc-header h2{
  font-size:40px;
  margin-top:10px;
}

/* GRID */
.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.svc-box{
  background:#fff;
  padding:35px;
  min-height:260px;
  position:relative;
  overflow:hidden;
  border:1px solid #eee;
  transition:0.3s;
}

/* LINES */
.svc-box::before,
.svc-box::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#000;
  transition:0.3s;
}

.svc-box::before{ top:0; }
.svc-box::after{ bottom:0; }

/* ICON */
.svc-icon{
  width:60px;
  height:60px;
  background:#ff5a1f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:20px;
  transition:0.5s;
}

/* BG ICON */
.svc-bg-icon{
  position:absolute;
  right:15px;
  bottom:10px;
  font-size:90px;
  color:#000;
  opacity:0.05;
  transition:0.6s;
}

/* TEXT */
.svc-box h3{
  font-size:20px;
  margin-bottom:12px;
  transition:0.3s;
}

.svc-box p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* HOVER */
.svc-box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.svc-box:hover::before,
.svc-box:hover::after{
  background:#ff5a1f;
}

.svc-box:hover .svc-icon{
  transform:rotate(360deg);
}

.svc-box:hover .svc-bg-icon{
  transform:rotate(360deg);
}

.svc-box:hover h3{
  color:#ff5a1f;
}

/* ========================= */
/* 🔥 SLIDER BUTTONS UPGRADE */
/* ========================= */

.svc-controls{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:30px;
}

/* BUTTON STYLE */
.svc-controls button{
  width:45px;
  height:45px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:#ff5a1f;
  font-size:20px;
  cursor:pointer;
  position:relative;
  transition:0.3s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* HOVER */
.svc-controls button:hover{
  background:#ff5a1f;
  color:#fff;
  transform:scale(1.1);
  box-shadow:0 12px 25px rgba(255,90,31,0.3);
}

/* CLICK */
.svc-controls button:active{
  transform:scale(0.95);
}

/* GLOW RING */
.svc-controls button::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  background:rgba(255,90,31,0.15);
  opacity:0;
  transition:0.3s;
}

.svc-controls button:hover::after{
  opacity:1;
}

/* ICON FIX */
.svc-controls button i{
  pointer-events:none;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .svc-grid{
    grid-template-columns:1fr;
  }

  .svc-header h2{
    font-size:28px;
  }

  .svc-controls{
    margin-top:20px;
  }

  .svc-controls button{
    width:40px;
    height:40px;
    font-size:18px;
  }
}









































.team-wrap{
  padding:80px 8%;
  background:#f8f8f8;
}

/* HEADER */
.team-head{
  margin-bottom:50px;
}

.team-sub{
  font-size:14px;
  color:#777;
  display:flex;
  align-items:center;
  gap:10px;
}

.team-sub::before{
  content:"";
  width:40px;
  height:2px;
  background:#ff5a1f;
}

.team-head h2{
  font-size:42px;
  margin-top:10px;
}

.team-head span{
  color:#ff5a1f;
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.team-card{
  position:relative;
  overflow:hidden;
  height:420px;
}

/* IMAGE */
.team-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* BOTTOM BADGE */
.team-badge{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  background:#ff5a1f;
  color:#fff;
  padding:15px 25px;
  text-align:center;
  transition:0.3s;
}

.team-badge h4{
  font-size:16px;
}

.team-badge p{
  font-size:13px;
  opacity:0.9;
}

/* OVERLAY */
.team-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,90,31,0.95);
  color:#fff;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px;

  opacity:0;
  transition:0.4s;
}

.team-overlay h4{
  font-size:20px;
  margin-bottom:5px;
}

.team-overlay span{
  font-size:14px;
  margin-bottom:15px;
}

.team-overlay p{
  font-size:14px;
  margin-bottom:20px;
  line-height:1.6;
}

/* SOCIAL */
.team-social{
  display:flex;
  gap:15px;
}

.team-social i{
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.team-social i:hover{
  transform:scale(1.2);
}

/* HOVER EFFECT */
.team-card:hover .team-overlay{
  opacity:1;
}

.team-card:hover .team-badge{
  opacity:0;
  transform:translate(-50%,20px);
}

/* MOBILE */
@media(max-width:768px){
  .team-grid{
    grid-template-columns:1fr;
  }

  .team-head h2{
    font-size:28px;
  }
}



























/* SECTION */
.stats-wrap{
  height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1200&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
  background-attachment:fixed; /* PARALLAX */
}

/* GRID */
.stats-grid{
  width:100%;
  max-width:1100px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
  color:#fff;
}

/* ITEM */
.stat-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

/* ICON WRAPPER */
.icon-wrapper{
  width:70px;
  height:70px;
  border-radius:50%;
  position:relative;
  overflow:hidden;
}

/* ICONS */
.icon{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  transition:0.4s;
}

/* ORANGE ICON */
.icon.orange{
  background:#ff5a1f;
  color:#fff;
  transform:translateX(0);
}

/* WHITE ICON */
.icon.white{
  background:#fff;
  color:#ff5a1f;
  transform:translateX(100%);
}

/* HOVER ANIMATION */
.icon-wrapper:hover .icon.orange{
  transform:translateX(-100%);
}

.icon-wrapper:hover .icon.white{
  transform:translateX(0);
}

/* TEXT */
.stat-item h3{
  font-size:32px;
}

.stat-item p{
  font-size:14px;
  opacity:0.9;
}

/* INDEX */
.stat-item span{
  font-size:12px;
  color:#ff5a1f;
}

/* MOBILE */
@media(max-width:768px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .stats-wrap{
    height:auto;
    padding:40px 20px;
  }
}












































.ref-bg{
  height:70vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1400');

  background-size:cover;
  background-position:center;
  background-attachment:fixed;

  display:flex;
  align-items:center;
  padding:0 8%;
  color:#fff;
}

/* LEFT */
.ref-left{
  max-width:420px;
}

.ref-play{
  width:65px;
  height:65px;
  border-radius:50%;
  background:#ff5a1f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:15px;
}

.ref-left h2{
  font-size:28px;
  margin-bottom:8px;
}

.ref-left p{
  font-size:13px;
  opacity:0.9;
}

/* STRIP */
.ref-strip{
  background:#ff5a1f;
  padding:30px 8%;
  position:relative;
}

/* TEXT STRIP */
.ref-text-strip{
  display:flex;
  justify-content:center;
  gap:60px;
  color:#fff;
  font-size:14px;
  font-weight:500;
  letter-spacing:1px;
}

/* CARD */
.ref-card{
  position:absolute;
  right:8%;
  bottom:-40px;

  width:500px;
  min-height:450px;

  background:#fff;
  padding:30px 28px;

  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* HEADER */
.ref-sub{
  font-size:12px;
  color:#777;
  margin-bottom:5px;
}

.ref-title{
  font-size:22px;
  margin-bottom:15px;
}

/* DIVIDER */
.ref-line{
  width:40px;
  height:2px;
  background:#ff5a1f;
  margin:15px 0 20px;
}

/* QUOTE */
.ref-quote-icon{
  font-size:28px;
  color:#eee;
  margin-bottom:10px;
}

/* TEXT */
.ref-text{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

/* STARS */
.ref-stars{
  margin-top:15px;
  color:#ff5a1f;
  font-size:14px;
}

/* USER */
.ref-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:25px;
}

.ref-user img{
  width:45px;
  height:45px;
  border-radius:50%;
}

.ref-user strong{
  font-size:14px;
}

.ref-user span{
  font-size:12px;
  color:#777;
}

/* SLIDES */
.ref-slide{
  display:none;
}

.ref-slide.ref-active{
  display:block;
}

/* DOTS */
.ref-dots{
  display:flex;
  gap:6px;
  margin-top:20px;
}

.ref-dot{
  width:9px;
  height:9px;
  background:#ddd;
  border-radius:50%;
  cursor:pointer;
}

.ref-dot.ref-active{
  background:#ff5a1f;
}

/* MOBILE */
@media(max-width:768px){

  .ref-bg{
    height:auto;
    padding:60px 20px;
  }

  .ref-strip{
    padding:70px 20px 30px;
  }

  .ref-card{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    margin-top:-60px;
  }

  .ref-text-strip{
    flex-wrap:wrap;
    gap:15px;
    text-align:center;
  }
}















































.ftx-footer{
  background:#000;
  color:#fff;
  padding:60px 8% 30px;
}

/* ===== TOP CONTACT BAR ===== */
.ftx-contact{
  border:1px solid #222;
  display:flex;
  justify-content:space-between;
  margin-bottom:60px;
}

.ftx-contact-box{
  flex:1;
  display:flex;
  align-items:center;
  gap:15px;
  padding:20px 30px;
  border-right:1px solid #222;
}

.ftx-contact-box:last-child{
  border-right:none;
}

.ftx-icon{
  width:50px;
  height:50px;
  background:#ff5a1f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.ftx-contact-text h4{
  font-size:14px;
  margin-bottom:5px;
}

.ftx-contact-text p{
  font-size:13px;
  color:#bbb;
}

/* ===== MAIN GRID ===== */
.ftx-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap:60px;
}

/* LEFT */
.ftx-logo{
  font-size:28px;
  font-weight:bold;
  margin-bottom:15px;
}

.ftx-desc{
  font-size:14px;
  color:#bbb;
  line-height:1.6;
  margin-bottom:20px;
}

.ftx-social{
  display:flex;
  gap:10px;
}

.ftx-social i{
  width:40px;
  height:40px;
  background:#ff5a1f;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.3s;
}

.ftx-social i:hover{
  background:#fff;
  color:#ff5a1f;
}

/* LINKS */
.ftx-title{
  font-size:18px;
  margin-bottom:20px;
}

.ftx-links{
  list-style:none;
}

.ftx-links li{
  margin-bottom:10px;
  font-size:14px;
  color:#bbb;
  cursor:pointer;
}
.ftx-links li a{
    text-decoration: none;
    color: white;
}

.ftx-links li::before{
  content:"•";
  color:#ff5a1f;
  margin-right:10px;
}

.ftx-links li:hover{
  color:#fff;
}

/* SUBSCRIBE */
.ftx-sub-text{
  font-size:14px;
  color:#bbb;
  margin-bottom:15px;
  line-height:1.6;
}

.ftx-input{
  display:flex;
}

.ftx-input input{
  flex:1;
  padding:12px;
  border:none;
  outline:none;
}

.ftx-input button{
  background:#ff5a1f;
  color:#fff;
  border:none;
  padding:0 20px;
  cursor:pointer;
}

/* ===== BOTTOM ===== */
.ftx-bottom{
  border-top:1px solid #222;
  margin-top:40px;
  padding-top:20px;
  font-size:13px;
  color:#bbb;
}

/* ===== SCROLL TOP ===== */
.ftx-top{
  position:fixed;
  bottom:20px;
  right:20px;
  width:45px;
  height:45px;
  border:2px solid #ff5a1f;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#ff5a1f;
  background:#000;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .ftx-contact{
    flex-direction:column;
  }

  .ftx-contact-box{
    border-right:none;
    border-bottom:1px solid #222;
  }

  .ftx-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .ftx-input{
    flex-direction:column;
  }

  .ftx-input button{
    padding:12px;
  }
}

















/* POPUP */
.zx-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:2000;
}

.zx-popup.active{
  opacity:1;
  visibility:visible;
}

.zx-popup-box{
  background:#fff;
  width:90%;
  max-width:420px;
  padding:25px;
  border-radius:10px;
}

/* HEADER */
.zx-popup-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.zx-popup-head i{
  cursor:pointer;
}

/* FORM */
.zx-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.zx-form input,
.zx-form textarea{
  padding:10px;
  border:1px solid #ddd;
  outline:none;
}

.zx-form textarea{
  height:100px;
}

.zx-form button{
  background:#ff5a1f;
  color:#fff;
  border:none;
  padding:12px;
  cursor:pointer;
}
































.services-carousel {
  padding: 80px 8%;
  background: linear-gradient(135deg,#f8fafc,#eef2f7);
  font-family: sans-serif;
}

/* HEADER */
.services-carousel-head {
  margin-bottom: 50px;
}

.services-carousel-sub {
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-carousel-sub::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff5a1f;
}

.services-carousel-head h2 {
  font-size: 40px;
  margin-top: 10px;
}

/* SLIDER */
.carousel-wrap {
  overflow: hidden;
  position: relative;
}

/* EDGE FADE (premium touch) */
.carousel-wrap::before,
.carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.carousel-track {
  display: flex;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* CARD */
.carousel-card {
  flex: 0 0 calc(100% / 3);
  padding: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

/* CARD DESIGN */
.card-inner {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  position: relative;
}

.card-inner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

.card-inner:hover .card-img img {
  transform: scale(1.08);
}

/* ICON */
.card-icon {
  position: absolute;
  bottom: -25px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg,#ff5a1f,#ff8c5a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.card-inner:hover .card-icon {
  transform: rotate(10deg) scale(1.1);
}

/* CONTENT */
.card-content {
  padding: 50px 20px 20px;
}

.card-content h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* LINK */
.card-link {
  color: #ff5a1f;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}

.card-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ff5a1f;
  transition: 0.3s;
}

.card-link:hover::after {
  width: 100%;
}

/* ========================= */
/* 🔥 SLIDER BUTTONS */
/* ========================= */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #ff5a1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* POSITION */
.prev { left: 10px; }
.next { right: 10px; }

/* HOVER */
.carousel-btn:hover {
  background: #ff5a1f;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 30px rgba(255,90,31,0.35);
}

/* CLICK */
.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* GLOW EFFECT */
.carousel-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255,90,31,0.15);
  opacity: 0;
  transition: 0.3s;
}

.carousel-btn:hover::before {
  opacity: 1;
}



/* ===== DRAG ENABLE ===== */


@media(max-width:768px){

  .carousel-card {
    flex: 0 0 100%;
  }

   .carousel-btn {
    width:40px;
    height:40px;
    font-size:16px;
    opacity:0.7;
  }

  .prev { left:0px; }
  .next { right:5px; }

  .services-carousel-head h2 {
    font-size: 28px;
  }
}

.carousel-track {
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

/* ===== FANCY EFFECT ===== */
.carousel-card {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* center focus feel */
.carousel-card.active-card {
  transform: scale(1.05);
  opacity: 1;
}

.carousel-card:not(.active-card) {
  opacity: 0.7;
}

