@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;
}

body {
  overflow-x: hidden !important;
    font-family: "inter", sans-serif;

}


/* ----------------------------
   BW Gradual Font Import
----------------------------- */
@font-face {
  font-family: 'BwGradual';
  src: url('./fonts/BwGradualDEMO-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'BwGradual';
  src: url('./fonts/BwGradualDEMO-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'BwGradual';
  src: url('./fonts/BwGradualDEMO-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'BwGradual';
  src: url('./fonts/BwGradualDEMO-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'BwGradual';
  src: url('./fonts/BwGradualDEMO-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

/* banner */

/* Banner Section */
.banner {
  padding: 80px 20px;
  text-align: center;
  background-image: url('./images/pattern.png');
  font-family: 'BwGradual', sans-serif;
  background-repeat: no-repeat;
  /* background-position: cover; */
  background-position: right;
  background-size: 50%;
}

span.line1,
.line2 {
  color: black !important;
  /* line-height: 1.6; */
}

.banner-content h1 {
  font-size: 65px;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.info {
  width: 60%;
  text-align: left;
  font-weight: 300;
}

.banner-content .line1,
.banner-content .line2 {
  font-family: 'BwGradual', sans-serif;
  font-weight: 300;
  display: block;
  color: #069A77;
  /* Gradual greenish color */
}

.banner-content .highlight {
  font-family: 'BwGradual', sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #0DCEA8;
  /* Slightly different green */
  display: block;
  font-size: 70px;
}

.banner-sub {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #555;
}

.banner-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.info2 {
  margin-bottom: 0 !important;
}

.banner-stats .stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-stats .stat .icon {
  font-size: 19px;
  color: black;
  padding: 13px;
  border-radius: 94px !important;
}

.banner-stats .stat .info strong {
  display: block;
  font-size: 1.2rem;
  color: black;
  text-align: left;
  font-weight: 300;
}

.icon {
  /* background: red; */
  padding: 7px;
  border-radius: 22px;
  background: linear-gradient(90deg, #d8e6ff, rgba(216, 230, 255, 0))
}

.banner-btn {
  display: inline-block;
  padding: 14px 22px;
  font-size: 14px;
  height: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 45px;
  background: linear-gradient(90deg, #069A77 -16.75%, #0DCEA8 113.25%);
  box-shadow: 0 0 20px rgba(6, 154, 119, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-btn:hover {
  box-shadow: 0 0 30px rgba(6, 154, 119, 0.8);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content .highlight {
    font-size: 2.2rem;
  }

  .banner-sub {
    font-size: 0.9rem;
  }

  .banner-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* ends */





/* video */
/* SECTION */
/* SECTION */
.video-section {
  width: 100%;
  height: 100vh;
  /* increased because now text is inside */
  background: white;
  transition: background 0.4s ease;
  position: relative;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* VIDEO BOX */
.video-wrapper video {
  width: 1140px;
  max-width: 90%;
  border-radius: 20px;
  transform: scale(1);
  margin-top: 250px;
  transition: transform 0.3s ease;
}

/* HIRE US TEXT INSIDE VIDEO SECTION */
.hireus-container {
  position: relative;
  margin-top: 10vh;
  /* place below video visually */
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hireus-text {
  font-family: 'BwGradual', sans-serif;
  font-size: 20vw;
  font-weight: 200;
  white-space: nowrap;
  transform: translateX(120%);
  /* start offscreen right */
  color: #222 !important;
  /* WHITE */
  line-height: 1;
  user-select: none;
  text-transform: uppercase;
}

/* ends */












/* marquee */
.clients-section {
  text-align: center;
  padding: 60px 20px;
}

.clients-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-family: poppins, sans-serif;

}

.logos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 80px;
  animation: scrollLogos 25s linear infinite;
  white-space: nowrap;
}

.logos-track img {
  /* height: 60px; */
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s;
}

.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ends */






/* about */
.aboutsection_wrapper {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
  box-sizing: border-box;
}

.aboutsection_container {
  max-width: 1300px;
  margin: auto;
}

/* TOP ROW */
.aboutsection_row-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.aboutsection_text {
  flex: 1 1 400px;
}

.aboutsection_text h2 {
  font-size: 60px;
  font-weight: 300;
  font-style: italic;
  font-family: 'BwGradual', sans-serif;
}

.aboutsection_text span {
  color: #00c9a7;
  font-weight: 700;
  font-style: normal !important;
  font-family: 'BwGradual', sans-serif;


}

.aboutsection_text h2 span {
  font-style: italic;
}

.aboutsection_cards-top {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-direction: row;
}

/* BOTTOM ROW CARDS */
.aboutsection_row-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.aboutsection_cards-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.aboutsection_card {
  flex: 1 1 250px;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease;
}

.aboutsection_card img {
  width: 60px;
  margin-bottom: 15px;
}

.aboutsection_card h3 {
  font-size: 2.8rem;
  font-family: 'BwGradual', sans-serif;
  font-weight: 700;
  color: #0DCEA8;
  margin-bottom: 5px;
}

.aboutsection_card p {
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutsection_card span {
  font-size: 0.95rem;
  color: #555;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .aboutsection_row-top {
    flex-direction: column;
  }

  .aboutsection_cards-top,
  .aboutsection_cards-bottom {
    flex-direction: column;
  }

  .aboutsection_card {
    width: 100%;
  }

  .aboutsection_text h2 {
    font-size: 2.2rem;
  }
}


/* ends */







/* contact */
.serviceheading {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: red;/ */
}
#servicesecion{
  color: white !important;
    width: 60%;
    text-align: center;
    font-weight: 300;
        padding-bottom: 30px;
}
/* Section */
.section {
  width: 100%;
  padding: 120px 20px 0 20px;
  text-align: center;
  font-family: 'BwGradual', sans-serif;
}

.title {
  font-size: 50px;
  font-weight: 300;
  font-family: 'BwGradual', sans-serif;
}

.title span {
  color: #0DCEA8;
  font-family: 'BwGradual', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.subtext {
  margin-top: 10px;
  opacity: 0.6;
}

/* Content layout */
.content-wrapper {
  margin-top: 100px;
  max-width: 1140px;
  width: 100%;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}

section#clientSection {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left {
  width: 50%;
  text-align: left;
}

/* Rating */
.rating {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #0DCEA8;
}

/* Text */
.testimonial {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 16px;
  /* font-family: ; */
  font-weight: 600;
  text-align: left !important;
  padding: 0 !important;
}

.percent {
  margin-top: 40px;
  font-size: 60px;
  font-weight: 700;
  font-family: 'BwGradual', sans-serif;
  color: #0DCEA8;
}

.info {
  opacity: 0.7;
  margin-bottom: 40px;
}

.name {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.role {
  opacity: 0.6;
}

/* Video */
.right {
  width: 50%;
}

.video-box {
  width: 100%;
  max-width: 480px;
  height: 620px;
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0DCEA8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsive */
@media(max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .left,
  .right {
    width: 100%;
  }

  .video-box {
    height: 420px;
  }
}


/* below boxes */
.testimonial-wrapper {
  width: 1360px;
  height: 511px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-left: 0;
}

.t-logo img {
  width: 20px;
}

.t-card {
  width: 211px;
  height: 322px;
  margin-top: 71px;
  background: #F7F7F7;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  flex-shrink: 0;
  text-align: left;
}

/* Logo */
.t-logo {
  width: 30px;
  height: 30px;
  position: relative;
  margin-bottom: 20px;
}

.logo-white {
  width: 30px;
  height: 30px;
  background: #ffffff;
  position: absolute;
  z-index: 1;
}

.logo-black {
  width: 27.3px;
  height: 30px;
  background: #000;
  position: absolute;
  left: 1.2px;
  top: 0;
  z-index: 2;
}

.logo-red {
  width: 10.3px;
  height: 10px;
  background: #FF3D2E;
  position: absolute;
  left: 11.2px;
  top: 10px;
  z-index: 3;
}

/* Text */
.t-text {
  font-family: inter, sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  text-align: left;
  color: #000;
  margin-bottom: 30px;
}

.t-name {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter';
  color: #000;
}

.t-role {
  font-size: 12px;
  color: #545454;
  font-family: 'Inter';
  font-weight: 300;
  margin-top: 5px;
}

/* Arrows */
/* .nav-arrow {
  width: 50px;
  height: 50px;
  background: white;
  opacity: 0.3;
  border-radius: 50%;
  position: absolute;
  top: 461px;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
} */

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}









/* ends */




.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: 106vh;
  }

  .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: 'BwGradual', sans-serif;
}

.title h1 {
  font-size: 53px;
  font-weight: 300;
  line-height: 71px;
  color: #2E2E2E;
  font-family: 'BwGradual', sans-serif;
}

.title strong {
  font-weight: 800;
  font-family: 'BwGradual', sans-serif;
}

.title .highlight {
  background: linear-gradient(225deg, #0DCAA5 0%, #07836B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'BwGradual', sans-serif;
}

.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 {
  position: absolute;
  right: 0;
  top: 232px;
  width: 32%;
  z-index: 99999;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* ends */



/* service */
/* Background transition on scroll */
.scrolled-into-services {
  background-color: #000;
}

/* Main container */
.servicesSection_container {
  max-width: 100%;
  margin: 0 auto;
  transition: background-color 0.7s ease-in-out;
  background-color: transparent;
  /* default */
  padding: 150px 20px ;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.innerservice {
  width: 1140px;
}

.innerservice {
  width: 1140px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

/* Service card common styles */
.servicesSection_card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 502px;
}

@media (min-width: 992px) {
  .servicesSection_card {
    flex-direction: row;
    min-height: 400px;
  }
}

/* Card content area */
.servicesSection_content {
  flex: 1;
  padding: 38px 60px 38px 81px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card visual area */
.servicesSection_visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}

@media (min-width: 992px) {
  .servicesSection_visual {
    min-height: auto;
  }
}

/* Card specific gradients */
.servicesSection_card--uiux {
  background: linear-gradient(122deg, #0DCEA8 0%, #07836C 99%);
}

.servicesSection_card--dev {
  background: linear-gradient(122deg, #0DCEA8 0%, #07997D 100%);
}

.servicesSection_card--marketing {
  background: linear-gradient(122deg, #07997D 0%, #050E1E 99%);
}

/* Typography */
.servicesSection_title {
  color: white;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 10px;
}

.servicesSection_title--main {
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
}

.servicesSection_subtitle {
  color: white;
  font-family: 'inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Services list */
.servicesSection_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: auto;
}

.servicesSection_serviceItem {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.60);
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.servicesSection_serviceItem:not(:last-child)::after {
  content: '/';
  color: #337CFF;
  font-size: 16px;
  margin-left: 10px;
}

/* Button */
.servicesSection_button {
  width: 142px;
  height: 45px;
  border-radius: 25px;
  background: linear-gradient(90deg, white 100%);
  box-shadow: 0px 12px 32px #0DCEA8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  cursor: pointer;
  border: none;
}

.servicesSection_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-radius: 25px;
  z-index: 1;
}

.servicesSection_buttonText {
  color: black;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 20px;
  z-index: 2;
  position: relative;
}

.servicesSection_buttonIcon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}

.servicesSection_buttonIcon::before,
.servicesSection_buttonIcon::after {
  content: '';
  position: absolute;
  border: 2px solid white;
  top: 50%;
  transform: translateY(-50%);
}

.servicesSection_buttonIcon::before {
  width: 8px;
  height: 8px;
  left: 6px;
}

.servicesSection_buttonIcon::after {
  width: 7px;
  height: 7px;
  left: 7px;
}

/* Images */
.servicesSection_imageMain {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.servicesSection_imageOverlay {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: -30px;
  z-index: 1;
}

/* Mobile responsiveness */
@media (max-width: 1199px) {
  .servicesSection_content {
    padding: 80px 40px 40px 60px;
  }
}

@media (max-width: 991px) {
  .servicesSection_card {
    min-height: auto;
  }

  .servicesSection_content {
    padding: 60px 30px 40px 30px;
  }

  .servicesSection_visual {
    order: -1;
    min-height: 300px;
  }

  .servicesSection_imageMain {
    height: 400px;
    object-fit: cover;
  }

  .servicesSection_title {
    font-size: 42px;
    line-height: 1.2;
  }

  .servicesSection_title--main {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .servicesSection_container {
    padding: 15px;
    gap: 20px;
  }

  .servicesSection_content {
    padding: 40px 20px 30px 20px;
  }

  .servicesSection_title {
    font-size: 36px;
  }

  .servicesSection_title--main {
    font-size: 38px;
  }

  .servicesSection_serviceItem {
    font-size: 16px;
    line-height: 22px;
  }

  .servicesSection_list {
    gap: 15px 25px;
  }

  .servicesSection_visual {
    min-height: 250px;
  }

  .servicesSection_imageMain {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .servicesSection_title {
    font-size: 28px;
  }

  .servicesSection_title--main {
    font-size: 30px;
  }

  .servicesSection_subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .servicesSection_serviceItem {
    font-size: 14px;
  }

  .servicesSection_list {
    gap: 12px 20px;
  }

  .servicesSection_button {
    width: 160px;
    height: 46px;
  }
}

/* Scroll indicator for demo */
.scrollIndicator {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: monospace;
  z-index: 1000;
  display: none;
}

@media (min-width: 768px) {
  .scrollIndicator {
    display: block;
  }
}

/* ends */




/* project setion */
.projects-section {
  width: 100%;
  padding: 60px 20px;
  background: white;
}
.projects-heading {
    text-align: center;
}
 .projheadingstop {
    font-size: 60px;
    font-family: 'BwGradual';
    font-weight: 300;
}
 .projheadings {
    font-size: 60px;
    font-family: 'BwGradual';
    font-weight: 700;
    font-style: italic;
    /* margin-bottom: 60px; */
}
 .para {
    margin-bottom: 60px;
}
.projects-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* .projects-heading h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.projects-heading h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.projects-heading p {
  font-size: 16px;
  color: #555;
} */

.projects-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.tab-button {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

.tab-button.active {
  background: #0dcea8;
  color: #fff;
  border-color: #0dcea8;
}

.projects-contents {
  margin-top: 30px;
}

.projects-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.projects-content.active {
  display: block;
  opacity: 1;
}

.projects-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.projects-left {
  flex: 2;
  min-width: 300px;
}

.projects-left img {
  width: 100%;
  border-radius: 15px;
}

.projects-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
}

.projects-right-top img {
  width: 100%;
  border-radius: 15px;
}

.projects-info-card {
  background: #e4f3f0;
  border-radius: 15px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  height: 116px;
      align-items: center;
    display: flex;
}
.projects-right-bottom p {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .projects-flex {
    flex-direction: column;
  }
}
/* Video styling */
.projects-left video,
.projects-right-top video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  object-fit: cover;
}
 /* end */




 /* faq */
.faq-section {
  padding: 60px 20px;
  background: #f7f7f7;
  font-family: 'Arial', sans-serif;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.footer-btn {
text-align: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.main-header.sticky .header-logo img {
    width: 80px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.95rem;
  }
}

