@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: "inter", sans-serif;
  margin: 0;
  padding: 0;
}


.hire-box {
  width: 100%;
  max-width: 1140px;
  margin: 60px auto;
  padding: 40px 50px;
  background: linear-gradient(225deg, #F1F1F5 0%, #E4ECF7 100%);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.hire-box h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 55px;
  max-width: 520px;
  margin: 0;
}

.right-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ds1 {
  transform: rotate(127deg) !important;
}

.ds2 {
  transform: rotate(90deg) !important;
}

.ds3 {
  transform: rotate(227deg) !important;
}

/* SHAPE GROUP */
.shape-group {
  display: flex;
  gap: 14px;
}

/* INDIVIDUAL SHAPES */
.shape {
  display: block;
  border-radius: 10px;
  background: linear-gradient(172deg, #10EEC3 0%, #045D4C 100%);
}

/* EXACT SHAPE SIZES MATCHING YOUR DESIGN */
.s1 {
  width: 41px;
  height: 8px;
  transform: rotate(-127deg);
}

.s2 {
  width: 41px;
  height: 8px;
  transform: rotate(-90deg);
}

.s3 {
  width: 41px;
  height: 8px;
  transform: rotate(-50deg);
}

/* BUTTON */
.hire-btn {
  padding: 14px 40px;
  background: linear-gradient(172deg, #10EEC3 0%, #045D4C 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 59px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid white;
  text-align: center;
}

/* TABLET 768PX */
@media (max-width: 768px) {
  .hire-box {
    padding: 30px 40px;
    margin: 40px auto;
  }
  
  .hire-box h2 {
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .right-wrap {
    gap: 30px;
  }
}

/* MOBILE 480PX */
@media (max-width: 480px) {
  .hire-box {
    padding: 61px 30px;
    margin: 0;
    min-width: unset;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hire-box h2 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  
  .right-wrap {
    gap: 25px;
  }
  
  .hire-btn {
    padding: 12px 35px;
    font-size: 16px;
  }
  
  .shape-group {
    gap: 12px;
  }
}

/* SMALL MOBILE 320PX */
@media (max-width: 320px) {
  .hire-box {
    padding: 20px 25px;
    margin: 20px 10px;
  }
  
  .hire-box h2 {
    font-size: 22px;
    line-height: 32px;
  }
  
  .hire-btn {
    padding: 10px 30px;
    font-size: 15px;
  }
  
  .shape {
    border-radius: 8px;
  }
  
  .s1, .s2, .s3 {
    width: 35px;
    height: 7px;
  }
  
  .shape-group {
    gap: 10px;
  }
}








  /* Base styles */
        .testimonials {
            width: 100%;
            min-width: 800px;
            text-align: center;
            background-size: auto;
            height: 104vh;
            display: flex;
            justify-content: center;
            flex-direction: column;
            gap: 0;
        }

        .testimonials-heading {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 45px;
            color: #00c9a7;
            /* padding-top: 70px; */
        }

        .wks {
            color: white;
            font-weight: 400;
        }

        /* Desktop slider styles */
        .slider-wrapper {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .slider {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 40px;
            transition: transform 0.6s ease;
        }

        .slide {
            flex: 0 0 200px;
            text-align: center;
            padding: 25px;
            border-radius: 20px;
            filter: grayscale(1);
            opacity: 0.5;
            transition: 0.4s ease;
            cursor: pointer;
            transform-origin: center center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .slide.active {
            transform: scale(1.25);
            filter: grayscale(0);
            opacity: 1;
            z-index: 5;
        }

        .slide.active h3 {
            background: linear-gradient(172deg, #10EEC3 0%, #045D4C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slide img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
        }

        .slide h3 {
            font-size: 20px;
            font-weight: 700;
            margin-top: 10px;
            color: white;
        }

        .slide .role {
            color: #fff;
            font-size: 14px;
            margin: 5px 0;
            font-weight: 300;
        }

        .slide .text {
            color: #fff;
            font-size: 15px;
            line-height: 22px;
            font-weight: 200;
        }

        /* =========================
           TESTIMONIALS — MOBILE ONLY
        ========================= */
        @media (max-width: 768px) {
            .testimonials {
                height: auto;
                min-width: unset;
                padding: 80px 10px 50px 10px;
                text-align: center;
            }

            .testimonials-heading {
                font-size: 26px;
                padding-top: 40px;
                margin-bottom: 20px;
            }

            .desktop-slider {
                display: none;
            }

            .mobile-slider {
                display: block;
            }

            .testimonial-wrapper {
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                width: 100%;
                overflow: hidden;
            }

            .testimonial-slider {
                display: flex;
                transition: transform 0.5s ease-in-out;
                width: 100%;
            }

            .testimonial-track {
                display: flex;
                gap: 0;
                flex-wrap: nowrap;
                width: 100%;
            }

            .testimonial {
                flex: 0 0 100%;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 25px;
                border-radius: 20px;
            }

            .testimonial img {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                margin-bottom: 10px;
                object-fit: cover;
            }

            .testimonial h3 {
                font-size: 18px;
                margin: 8px 0;
                font-weight: 700;
                background: linear-gradient(172deg, #10EEC3 0%, #045D4C 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .testimonial p.role {
                font-size: 14px;
                margin: 5px 0;
                font-weight: 300;
                color: #fff;
            }

            .testimonial p.text {
                font-size: 15px;
                line-height: 22px;
                font-weight: 200;
                color: #fff;
            }

            /* Arrows styling */
            .arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(0,0,0,0.2);
                border: none;
                font-size: 30px;
                color: #00c9a7;
                padding: 5px 10px;
                border-radius: 50%;
                cursor: pointer;
                z-index: 10;
            }

            .arrow.left {
                left: 10px;
            }

            .arrow.right {
                right: 8px;
            }
        } 

        /* Desktop styles */
        @media (min-width: 769px) {
            .mobile-slider {
                display: none;
            }

            .desktop-slider {
                display: block;
            }
        }








/* process sec */

.processsectionhead {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center ;
}

.testimonials-headings {
  color: #2E2E2E !important;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 68px;
}

.cvs {
  font-weight: 200 !important;
background: linear-gradient(225deg, #0DCAA5 0%, #07836B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span.cvs {
  font-weight: 300;
}



.process-section {
  width: 100%;
  height: 90vh;
  /* padding: 180px 20px 150px 20px; */
  /* background: #000; */
  color: white;
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
}

.process-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-container {
  max-width: 1300px;
  margin: 0;
  margin-top: 30px;
}

/* --- ROWS --- */
.process-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.process-row.bottom {
  margin-top: 60px;
}

/* --- EACH STEP BOX --- */
.step {
  flex: 1;
  max-width: 23%;
}

.tick.tick1 {
  top: -11px !important;
  left: 119px;
}

.tick.tick3 {
  top: -12px !important;
  left: 153px;
}

.tick.tick6 {
  top: -12px !important;
}


.tick.tick2 {
  /* top: -12px !important; */
}

.tick.tick4 {
  /* top: -12px !important; */
  left: 47px;
}

.tick.tick5 {
  /* top: -12px !important; */
  left: 310px;
}

/* stps */

.step.step1s {
  left: 100px;
  position: relative;
}

.step.step2s {
  position: relative;
  left: 60px;
}

.step.step3s {
  position: relative;
  left: 52px;
}

.step2 {
  position: relative;
  left: -40px;
}


.step h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.step h3 span {
  color: #00c9a7;
  font-weight: 700;
  margin-right: 6px;
}

.step p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  font-weight: 200;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline .tick {
  width: 2px;
  height: 25px;
  background: #fff;
  position: relative;
  top: 12px;
}

.timeline .trophy {
  width: 40px;
  height: auto;
  position: relative;
  top: -18px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .process-row {
    flex-direction: column;
    text-align: center;
  }

  .step {
    max-width: 100%;
  }

  .timeline {
    height: 2px;
  }

  .timeline .tick {
    height: 20px;
  }

  .timeline .trophy {
    width: 30px;
  }
}
/* timeline */
/* timeline */
/* PROGRESS ANIMATION LINE */
.timeline {
  position: relative;
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 40px 0;
  overflow: visible;
}

/* The animated fill line */
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #00c9a7;
  transition: width 2.2s ease;
  box-shadow: 0 0 28px #00c9a7, 0 0 28px #00c9a7;
}

/* TICKS DEFAULT */
.timeline .tick {
  width: 2px;
  height: 25px;
  background: #fff;
  position: relative;
  top: 12px;
  transition: background 1.2s ease, box-shadow 1.2s ease; /* slower */
}

/* When filling */
.timeline.filled::before {
  width: 100%;
}

.timeline.filled .tick {
  background: #00c9a7 !important;
  box-shadow: 0 0 28px #00c9a7, 0 0 28px #00c9a7;
}


.step h3 span {
  color: #00c9a7;
  text-shadow: 
0 0 0px #00c9a7,
    0 0 0px #00c9a7,
    0 0 19px #00c9a7
}


/* When reversing */
.timeline.unfilled::before {
  width: 0%;
}

.timeline.unfilled .tick {
  background: #ffffff !important;
  box-shadow: none;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
  .process-row {
    flex-direction: column;
    text-align: center;
  }

  .step {
    max-width: 100%;
    left: 0 !important;
  }

  .timeline {
    height: 2px;
  }

  .timeline .tick {
    height: 18px;
    top: 10px;
  }

  .timeline .trophy {
    width: 26px;
    top: -15px;
  }
}
/* ==========================================
   PROCESS SECTION — FULL MOBILE RESPONSIVE FIX
   ========================================== */

/* Desktop stays the same — Only mobile optimized */
.process-section {
  width: 100%;
  min-height: auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-container {
  max-width: 1300px;
  width: 100%;
}

/* ---------------------------------------
   MOBILE COMPATIBLE STRUCTURE
--------------------------------------- */

@media (max-width: 991px) {

  .testimonials-headings {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .cvs {
    font-size: 26px !important;
  }

  /* Rows stack */
  .process-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    margin-bottom: 40px;
    width: 90%;
  }

  .process-row.bottom {
    margin-top: 30px;
  }
      .process-section {
        padding: 50px 15px;
        height: 121vh;
    } 
      .timeline {
        display: flex;
        justify-content: space-between;
        align-items: center;
        display: none !important;
    }

  /* Reset all step offsets */
  .step,
  .step1s,
  .step2s,
  .step3s,
  .step2 {
    max-width: 100%;
    width: 100%;
    left: 0 !important;
    position: relative !important;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 15px;
    line-height: 24px;
  }

  /* Timeline */
  .timeline {
    width: 100%;
    margin: 30px 0;
    height: 2px;
  }

  .timeline .tick {
    height: 18px;
    top: 10px !important;
    position: relative;
  }

  .timeline .trophy {
    width: 26px;
    top: -15px;
  }

  /* Reposition ticks evenly */
  .timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tick {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {

  .testimonials-headings {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
    line-height: 22px;
  }

  .timeline .tick {
    height: 15px;
    top: 8px !important;
  }

  .timeline .trophy {
    width: 22px;
    top: -14px;
  }
}

@media (max-width: 480px) {

  .process-section {
    padding: 50px 15px;
  }

  .testimonials-headings {
    font-size: 20px;
    line-height: 28px;
  }

  .cvs {
    font-size: 20px !important;
  }

  .step h3 {
    font-size: 17px;
  }

  .timeline .tick {
    height: 13px;
    top: 6px !important;
  }

  .timeline .trophy {
    width: 20px;
  }
}

/* ==========================================
   GLOW NUMBERS (unchanged)
========================================== */

.step h3 span {
  color: #00c9a7;
  text-shadow: 
      0 0 4px #00c9a7,
      0 0 8px #00c9a7,
      0 0 16px #00c9a7;
}

/* Timeline animation (unchanged) */
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #00c9a7;
  transition: width 2.2s ease;
  box-shadow: 0 0 28px #00c9a7, 0 0 28px #00c9a7;
}

.timeline.filled::before {
  width: 100%;
}

.timeline.filled .tick {
  background: #00c9a7 !important;
  box-shadow: 0 0 28px #00c9a7;
}


/* end */











/* tech  */

.tech-section {
  width: 100%;
  min-width: 800px;
  padding: 180px 20px;
  /* background: #fff; */
}

.tech-section .container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading h2 {
  text-align: center;
  font-size: 35px;
  line-height: 55px;
  font-family: Inter, sans-serif;
  color: #2E2E2E;
  margin-bottom: 40px;
}

.heading strong {
  font-weight: 700;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
}

.tab {
  font-size: 18px;
  font-family: Inter, sans-serif;
  cursor: pointer;
  padding-bottom: 4px;
  transition: 0.3s;
  color: #2E2E2E;
  font-weight: 400;
}

.tab.active {
 color: #00c9a7;
  /* text-shadow: 
    0 0 0px #00c9a7,
    0 0 0px #00c9a7,
    0 0 8px #00c9a7; */
  font-weight: 600;
}

.tab-underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 25px;
  background: linear-gradient(225deg, #0DCAA5 0%, #07836B 100%);
  border-radius: 3px;
  transition: 0.3s;
}

/* CONTENT */
.tab-content {
  width: 100%;
}

.tab-panel {
  display: none;
  flex-direction: column;
  gap: 30px;
}

.tab-panel.active {
  display: flex;
}

.icons-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGES */
.icons-row img {
  width: 160px;
  height: 80px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 480px) {
  .tabs {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }.tech-section {
  width: 100%;
  min-width: 100%;
  padding: 180px 0;
  /* background: #fff; */
}
    .icons-row {
        gap: 32px;
    }
  .tab {
    font-size: 16px;
  }

  .icons-row {
    gap: 20px;
  }

  .icons-row img {
    width: 120px;
    height: 60px;
  }
}
/* ==========================================
   PROCESS SECTION — FULL MOBILE RESPONSIVE FIX
   ========================================== */

/* Desktop stays the same — Only mobile optimized */
.process-section {
  width: 100%;
  min-height: auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-container {
  max-width: 1300px;
  width: 100%;
}

/* ---------------------------------------
   MOBILE COMPATIBLE STRUCTURE
--------------------------------------- */

@media (max-width: 991px) {

  .testimonials-headings {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .cvs {
    font-size: 26px !important;
  }

  /* Rows stack */
  .process-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    margin-bottom: 40px;
  }

  .process-row.bottom {
    margin-top: 30px;
  }

  /* Reset all step offsets */
  .step,
  .step1s,
  .step2s,
  .step3s,
  .step2 {
    max-width: 100%;
    width: 100%;
    left: 0 !important;
    position: relative !important;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 15px;
    line-height: 24px;
  }

  /* Timeline */
  .timeline {
    width: 100%;
    margin: 30px 0;
    height: 2px;
  }

  .timeline .tick {
    height: 18px;
    top: 10px !important;
    position: relative;
  }

  .timeline .trophy {
    width: 26px;
    top: -15px;
  }

  /* Reposition ticks evenly */
  .timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tick {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {

  .testimonials-headings {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
    line-height: 22px;
  }

  .timeline .tick {
    height: 15px;
    top: 8px !important;
  }

  .timeline .trophy {
    width: 22px;
    top: -14px;
  }
}

@media (max-width: 480px) {

  .process-section {
    padding: 50px 15px;
  }

  .testimonials-headings {
    font-size: 20px;
    line-height: 28px;
  }

  .cvs {
    font-size: 20px !important;
  }

  .step h3 {
    font-size: 17px;
  }

  .timeline .tick {
    height: 13px;
    top: 6px !important;
  }

  .timeline .trophy {
    width: 20px;
  }
}

/* ==========================================
   GLOW NUMBERS (unchanged)
========================================== */

.step h3 span {
  color: #00c9a7;
  text-shadow: 
      0 0 4px #00c9a7,
      0 0 8px #00c9a7,
      0 0 16px #00c9a7;
}

/* Timeline animation (unchanged) */
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #00c9a7;
  transition: width 2.2s ease;
  box-shadow: 0 0 28px #00c9a7, 0 0 28px #00c9a7;
}

.timeline.filled::before {
  width: 100%;
}

.timeline.filled .tick {
  background: #00c9a7 !important;
  box-shadow: 0 0 28px #00c9a7;
}





body,
html {
  overflow-x: hidden !important;
}

/* end */











/* steps section */
.team-section {
  width: 100%;
  min-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 95px;
  padding: 60px 20px  120px 20px ;
  box-sizing: border-box;
  align-items: center;
}

.team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 87px;
  flex-wrap: wrap;
  max-width: 1200px;
}

.team-row.reverse {
  flex-direction: row-reverse;
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 534px;
}

.team-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2E2E2E;
  line-height: 38px;
}

.team-desc {
  font-size: 18px;
  font-weight: 200;
  color: #2D3748;
  line-height: 30px;
}

.team-delivery {
  font-size: 18px;
  font-weight: 200;
  color: #2D3748;
  line-height: 30px;
}

.team-delivery .highlight {
  color: #088B72;
}

.team-quote {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.team-quote .quote-bar {
  width: 6px;
  height: 87px;
  background: linear-gradient(225deg, #0CC5A1 0%, #09967B 100%);
}

.team-quote p {
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 30px;

  /* Gradient text */
  background: linear-gradient(225deg, #0DCAA5 0%, #07836B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.team-image img {
  width: 575px;
  height: 473px;
  border-radius: 10px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 1140px) {
  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .team-row.reverse {
    flex-direction: column;
  }

  .team-image img {
    width: 100%;
    max-width: 575px;
    height: auto;
  }

  .team-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .team-quote {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .team-section {
    min-width: 480px;
    gap: 40px;
    padding: 40px 15px;
  }

  .team-content h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .team-desc,
  .team-delivery {
    font-size: 16px;
    line-height: 26px;
  }

  .team-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}
/* ============================
   FULL MOBILE RESPONSIVE FIX
   ============================ */

@media (max-width: 991px) {

  .team-section {
    min-width: unset;
    padding: 40px 20px 60px 20px;
    gap: 50px;
  }

  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
  }

  .team-row.reverse {
    flex-direction: column;
  }

  /* Text area */
  .team-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
    gap: 18px;
  }

  .team-content h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .team-desc,
  .team-delivery {
    font-size: 16px;
    line-height: 26px;
    padding: 0 8px;
  }

  /* Quote */
  .team-quote {
    justify-content: center;
    gap: 10px;
  }

  .team-quote .quote-bar {
    height: 60px;
  }

  .team-quote p {
    font-size: 14px;
    line-height: 24px;
  }

  /* Images */
  .team-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .team-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
  }

  /* Top heading styling */
  .processsectionhead h2 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    padding: 0 10px;
  }

  .processsectionhead .accent-line {
    margin: 0 auto;
  }
}

/* Very small phones */
@media (max-width: 480px) {

  .team-section {
    padding: 30px 15px 50px 15px;
  }

  .team-content h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .team-desc,
  .team-delivery {
    font-size: 14px;
    line-height: 22px;
  }

  .team-quote p {
    font-size: 13px;
    line-height: 22px;
  }

  .team-image img {
    max-width: 320px;
  }
}


/* ends */




/* portfolio */

.portfolio-container {
  width: 100%;
  max-width: 1510px;
  min-width: 800px;
  background: white;
  font-family: "inter", sans-serif;
  border-radius: 40px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
}

@media (max-width: 1140px) {
  .portfolio-container {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
}

/* Header Section */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 205px 40px;
  text-align: center;
  font-family: "inter", sans-serif;
}

.logo {
  width: 123.72px;
  height: 58.80px;
  padding: 19px 0 10.80px;
}

.accent-line {
  width: 69px;
  height: 5px;
  background: linear-gradient(225deg, #10EEC3 0%, #045D4C 100%);
  margin: 10px 0;
  transition: width 0.5s ease;
}

.header:hover .accent-line {
  width: 100px;
}

.title {
  padding: 19px 0 20px;
  font-family: "inter", sans-serif;
}

.title h1 {
  font-size: 53px;
  font-weight: 300;
  line-height: 71px;
  color: #2E2E2E;
  font-family: "inter", sans-serif;
}

.title strong {
  font-weight: 800;
}

.title .highlight {
background: linear-gradient(225deg, #0DCAA5 0%, #07836B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
  padding-bottom: 10px;
}

.subtitle p {
  font-size: 22px;
  font-weight: 200;
  line-height: 25px;
  color: #2D2323;
  margin-bottom: 5px;
}

/* Portfolio Cards Section */
.portfolio-section {
  /* background: white; */
  border-radius: 30px;
  padding-bottom: 60px;
  position: relative;
}

.portfolio-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-container {
  width: 100%;
  padding-top: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  cursor: grab;
}

.cards-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.cards-container.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.cards-row {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  width: max-content;
}

.card {
  min-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 320px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 28px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  gap: 9px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.card-title {
  text-align: left;
  font-size: 22px;
  font-family: "inter", sans-serif;
  font-weight: 700;
  line-height: 33.60px;
  /* padding: 0 20px; */
}

.card-description {
  text-align: left;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  opacity: 0.8;
  padding: 0 0;
}

.cards-container:hover .drag-overlay {
  opacity: 1;
}

.drag-icon {
  font-size: 48px;
  color: #045D4C;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.drag-text {
  font-size: 22px;
  font-weight: 600;
  color: #045D4C;
  text-align: center;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Card specific styles */
.card-1 .card-image {
  /* background: #0ed7b0; */
}

.card-1 {
  position: relative;
  overflow: hidden;
}

.card-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(16, 238, 195, 0.65) 0%,
      #2E2E2E 150%);
  z-index: 1;
}

.card-1>* {
  position: relative;
  z-index: 2;
}



/* 2nd */

      /* Card specific styles */
        .card-2 .card-image {
            /* background: #0ed7b0; */
        }
        .card-2 {
    position: relative;
    overflow: hidden;
}

.card-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(16, 238, 195, 0.65) 0%,
        #2E2E2E 150%
    );
    z-index: 1;
}

.card-2 > * {
    position: relative;
    z-index: 2;
}


/* 3rd */



/* 2nd */

      /* Card specific styles */
        .card-4 .card-image {
            /* background: #0ed7b0; */
        }
        .card-4 {
    position: relative;
    overflow: hidden;
}

.card-4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(16, 238, 195, 0.65) 0%,
        #2E2E2E 150%
    );
    z-index: 1;
}

.card-4 > * {
    position: relative;
    z-index: 2;
}







.card-1 .card-content {
  /* background: #0ed7b0; */
}

.card-1 .card-title,
.card-1 .card-description {
  color: white;
}

.card-2 .card-image {
  /* background: #0DC9A5; */
}

.card-2 .card-content {
  /* background: #0DC9A5; */
}

.card-2 .card-title,
.card-2 .card-description {
  color: white;
}

.card-3 .card-image {
  background: #E7D472;
  padding: 75px 0 20px;
}

.card-3 .card-content {
  background: #E7D472;
}

.card-3 .card-title,
.card-3 .card-description {
  color: #1F1717;
}

.card-4 .card-image {
  /* background: #3CB8AA; */
}

.card-4 .card-content {
  /* background: #3DB8AA; */
}

.card-4 .card-title,
.card-4 .card-description {
  color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 1140px) {
  .header {
    padding: 60px 40px 30px;
  }

  .title h1 {
    font-size: 42px;
    line-height: 55px;
  }

  .subtitle p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 40px 20px 20px;
  }

  .title h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .subtitle p {
    font-size: 16px;
    line-height: 24px;
  }

  .card {
    min-width: 300px;
  }

  .card-image {
    height: 240px;
  }

  .card-content {
    padding: 20px 25px 30px;
  }

  .card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .card-description {
    font-size: 16px;
    line-height: 22px;
  }

  .drag-overlay {
    display: none;
    /* Hide drag overlay on mobile */
  }
}

@media (max-width: 480px) {
  .header {
    padding: 30px 15px 15px;
  }

  .title h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .subtitle p {
    font-size: 14px;
    line-height: 20px;
  }

  .card {
    min-width: 280px;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 15px 20px 25px;
    gap: 5px;
  }

  .card-title {
    font-size: 16px;
    line-height: 22px;
  }

  .card-description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Scroll indicators */
.scroll-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  display: none;
  margin-top: 20px;
}

.scroll-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-indicator.active {
  background-color: #045D4C;
  transform: scale(1.2);
}

/* Navigation arrows */
.nav-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
  z-index: 5;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  /* background-color: rgba(255, 255, 255, 0.8); */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
  transition: background-color 0.3s ease;
}

.nav-arrow:hover {
  background-color: white;
}

.nav-arrow i {
  font-size: 24px;
  color: #045D4C;
}

@media (max-width: 768px) {
  .nav-arrows {
    display: none;
    /* Hide arrows on mobile */
  }
}
/* preview */
/* ================================
   IMAGE PREVIEW POPUP
================================= */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease forwards;
}

.popup-box {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    animation: scaleIn 0.3s ease forwards;
}

.popup-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgba(255,255,255,0.2);
}

.popup-close {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 45px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.popup-close:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media(max-width: 480px) {
    .popup-close {
        font-size: 38px;
        top: -30px;
    }
}


img#popupImage {
    width: 46%;
}
div#imagePreviewPopup {
    position: fixed;
    top: 0;
    z-index: 100000000000000000000;
    width: 101%;
}
.popup-box {
    position: relative;
    max-width: 100%;
    max-height: 85%;
    animation: scaleIn 0.3s ease forwards;
    align-items: center;
    display: flex;
    justify-content: center;
}
.popup-close {
    position: absolute;
    top: -110px;
    right: 19px;
}
/* end */







/* partnesr section */

/* CSS */
.partners-section {
  width: 100%;
  overflow: hidden;
  background: #F7F7FA;
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.partners-slider {
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

.partners-track img {
  height: 80px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1140px) {
  .partners-track {
    gap: 30px;
  }
  .partners-track img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .partners-track {
    gap: 20px;
  }
  .partners-track img {
    height: 50px;
  }
}

/* ends */








/* about */
/* General Section */
.company-section {
  width: 100%;
  min-width: 800px;
  min-height: 660px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: 'Inter', sans-serif;
  position: relative;
}

/* Container Flex */
.company-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1140px;
  width: 100%;
  gap: 40px;
  margin-top: 80px;
  flex-wrap: wrap;
}

/* Text Content */
.company-text {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gradient-bar {
  width: 65px;
  height: 5px;
  background: linear-gradient(225deg, #10EEC3 0%, #045D4C 100%);
  border-radius: 2px;
}

.company-heading {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.5;
}

.company-desc {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 200 ;
}

.company-desc .highlight {
  color: #0DD0AA;
  font-weight: 200;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #0DC7A3;
  cursor: pointer;
}

.company-link .arrow {
  width: 22px;
  height: 22px;
  /* background: #0BB493; */
  border-radius: 50%;
  position: relative;
}
#arrowright {
    font-size: 24px !important;
    margin-top: 20px;
    color: #0dc9a5;
}
span.arrows {
    position: relative;
    left: 17px;
}
/* Image */
.company-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: flex-end;
}

.company-image img {
  width: 573px;
  /* max-width: 675px; */
  /* height: auto; */
  border-radius: 30px;
}

/* Responsive below 1140px */
@media (max-width: 1140px) {
  .company-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .company-text {
    text-align: center;
    flex: 1 1 100%;
  }

  .company-image {
    justify-content: center;
  }
}

/* Mobile <480px */
@media (max-width: 480px) {
  .company-heading {
    font-size: 24px;
  }

  .company-desc {
    font-size: 15px;
  }

  .company-link {
    font-size: 14px;
  }

  .company-image img {
    max-width: 100%;
  }
}
/* ================ */
/* MOBILE RESPONSIVE */
/* ================ */

@media (max-width: 768px) {

  .company-section {
    min-width: unset;
    padding: 40px 18px;
    min-height: auto;
    /* margin-top: 50px; */
  }

  .company-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
  }

  /* IMAGE */
  .company-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .company-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }

  /* TEXT BOX */
  .company-text {
    flex: 1;
    text-align: center;
    gap: 15px;
  }

  .company-heading {
    font-size: 22px;
    line-height: 1.4;
  }

  .company-desc {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 5px;
  }

  .gradient-bar {
    margin: 0 auto;
  }

  /* Link row */
  .company-link {
    justify-content: center;
    font-size: 14px;
    gap: 10px;
  }

  #arrowright {
    font-size: 20px !important;
    margin-top: 0;
  }

  /* ROUND CIRCLE PART */
  .mainround {
    margin-top: 30px;
    text-align: center;
    transform: scale(0.8);
  }

  .mainround img {
    max-width: 200px;
  }
}

/* Small phones 480px */
@media (max-width: 480px) {
  
  .company-heading {
    font-size: 20px;
  }

  .company-desc {
    font-size: 14px;
  }

  .company-image img {
    max-width: 100%;
  }
  .company-link .arrow {
    width: 22px;
    height: 14px !important;
    /* background: #0BB493; */
    border-radius: 50%;
    position: relative;
}
img#popupImage {
    width: 100%;
}
.popup-box {
    padding: 20px;
}
}


/* end */







/* main banner */
/* MAIN HERO SECTION */




/* RADIAL GRADIENT BLUR BLOBS */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* LEFT TOP GRADIENT */
.hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -150px;
  top: -80px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
      rgba(4, 93, 76, 0.17) 0%,
      rgba(8, 195, 159, 0) 100%);
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
}

/* RIGHT BOTTOM GRADIENT */
.hero-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -140px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
      rgba(4, 93, 76, 0.17) 0%,
      rgba(8, 195, 159, 0) 100%);
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
}

/* Make sure content stays ABOVE the blobs */
.hero-container,
.hero-content {
  position: relative;
  z-index: 2;
}




.hero-section {
  width: 100%;
  min-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 215px 20px 0 20px;
  box-sizing: border-box;
  background: #fff;
  font-family: 'Inter', sans-serif;
  margin-top: -100px;
  z-index: -1;
}

.hero-container {
  width: 100%;
  max-width: 1140px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* HEADING */
.hero-title {
  font-size: 58px;
  font-weight: 400;
  line-height: 82px;
  color: #2E2E2E;
}

.hero-title {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  padding: 0;
}

.green-strong {
  background: linear-gradient(190deg, #10EEC3 0%, #045D4C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;

  font-weight: 700;
}



/* SUB TEXT */
.hero-sub {
  font-size: 20px;
  line-height: 28px;
  color: #4A5568;
  max-width: 900px;
  font-weight: 300;
}

/* BUTTONS ROW */
.hero-buttons {
  display: flex;
  gap: 0;
  margin-top: 10px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(172deg, #10EEC3 0%, #045D4C 100%);
  color: #FAFAFA;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 34px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 55px rgba(0, 0, 0, 0.15);
}

/* OUTLINE BUTTON */
.btn-outline {
  background: transparent;
  border: 1px solid #045D4C;
  padding: 18px 40px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #045D4C;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

/* ARROW ICON */
.btn-outline .arrow {
  width: 22px;
  height: 22px;
  /* background: #0BB493; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-outline {
  margin-left: -124px;
}

button.btn-primary {
  z-index: 1;
}

span.arrow i {
  color: #0BB493;
}
/* HOVER EFFECT: slide outline button right */
.btn-primary:hover + .btn-outline {
  transform: translateX(140px); /* moves right on hover */
}

/* ARROW ICON */
.btn-outline .arrows i {
  color: #0BB493;
}
.btn-primary,
.btn-outline {
transition: margin 0.3s ease; /* smooth movement */
}

.btn-primary:hover,
.btn-outline:hover {
margin-left: -5px; /* move left by 5px */
}

/* ------------------------- */
/* RESPONSIVE BELOW 1140px  */
/* ------------------------- */
@media (max-width: 1140px) {
  .hero-section {
    min-width: auto;padding-bottom: 82px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 60px;
    text-align: center;
  }

  .hero-sub {
    text-align: center;
    line-height: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    align-items: center;
  }
}

/* ------------------------- */
/* FOR MOBILE UNDER 480px   */
/* ------------------------- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
    line-height: 44px;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 30px;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.plusrevolve {
  width: 70%;
  display: block;
  /* if it's an image or div */
  margin: 0 auto;
  animation: rotateSlow 60s linear infinite;
  /* VERY slow and constant */
}

.plusrevolve {
  position: absolute;
  right: 0;
  width: 32%;
  top: 232px;
  z-index: 2000000000000000 !important;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ends */