/* Theme change */

    .stack-section {
        position: relative;
        padding: 100px 0;
    }

    /* --------- CARD BASE STYLE --------- */
    .card {
        width: 90%;
        max-width: 1100px;
        min-height: 520px;
        margin: 0 auto 40px;
        border-radius: 22px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        position: sticky;
        top: 90px;
        padding: 40px;
        overflow: hidden;
    }

    /* Make inner row full width */
    .card .row {
        width: 100%;
        align-items: center;
    }

    /* --------- IMAGE CONTAINER (LEFT SIDE) --------- */
    .card .col-md-5 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card .col-md-5 img {
        width: 100%;
        max-width: 380px;
        border-radius: 16px;
        object-fit: cover;
    }

    /* --------- TEXT SIDE --------- */
    .card h2 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .card h5 {
        font-weight: 500;
        color: #555;
        margin-bottom: 8px;
    }

    .card p {
        color: #333;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    /* --------- DIFFERENT BACKGROUNDS (LIKE YOUR IMAGE) --------- */
    .card:nth-child(1) {
        background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
    }

    .card:nth-child(2) {
        background: linear-gradient(180deg, #f0fff4 0%, #ffffff 100%);
    }

    .card:nth-child(3) {
        background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
    }

    .card:nth-child(4) {
        background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    }

    /* ================= RESPONSIVE ================= */

    /* Tablet */
    @media (max-width: 1024px) {
        .stack-section {
            padding: 80px 0;
        }

        .card {
            min-height: 460px;
            top: 80px;
            padding: 32px;
            border-radius: 18px;
        }

        .card .col-md-5 img {
            max-width: 320px;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .stack-section {
            padding: 60px 0;
        }

        .card {
            width: 95%;
            min-height: 380px;
            top: 65px;
            padding: 28px;
            border-radius: 16px;
            text-align: left;
        }

        /* Stack image & text vertically */
        .card .row {
            flex-direction: column;
        }

        .card .col-md-5 {
            width: 100%;
            margin-bottom: 20px;
        }

        .card .col-md-5 img {
            max-width: 100%;
        }

        .card .col-md-7 {
            width: 100%;
        }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
        .card {
            min-height: 330px;
            padding: 24px;
            border-radius: 14px;
        }

        .card h2 {
            font-size: 1.5rem;
        }

        .card h5,
        .card p {
            font-size: 0.95rem;
        }
    }

    .solution-section .company-logo{
        z-index: 0;
        
    }
    .solution-section .company-logo h2{
        font-family: var(--font-marcellus);
        font-size: 175px;
        font-weight: 400;
        
        -webkit-background-clip: text;
        -webkit-text-fill-color: #0000003b;
        margin-bottom: 0;
    }

    .eg-card-2{
        border: 1px solid var(--primary-color) !important;
    }
    .eg-card-2.style-2 .sl-no h3{
        color: var(--primary-color) !important;
    }

    .working-process-section {
        background-color: #f4f6fb;
    }    
/* Theme change end */

/* Timeline  */
 /* ===== WRAPPER ===== */
        /* .ptl-wrapper {
        max-width: 1400px;
        margin: auto;
        text-align: center;
        }

        .ptl-title {
        margin-bottom: 6px;
        }

        .ptl-subtitle {
        max-width: 900px;
        margin: 0 auto 48px;
        color: #555;
        } */

        /* ===== SCROLL (MOBILE ONLY) ===== */
        /* .ptl-scroll {
        overflow-x: hidden;
        } */

        /* ===== TIMELINE ===== */
        /* .ptl-timeline {
        position: relative;
        display: grid;
        grid-template-columns: repeat(10, minmax(0, 1fr));
        width: 100%;
        height: 360px;
        } */

        /* CENTER LINE */
        /* .ptl-timeline::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, #1e88e5, #6a1b9a);
        transform: translateY(-50%);
        } */

        /* ===== STEP ===== */
        /* .ptl-step {
        position: relative;
        display: flex;
        justify-content: center;
        } */

        /* ===== ICON ===== */
        /* .ptl-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: #fff;
        border-radius: 50%;
        border: 3px solid #1e88e5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #1e88e5;
        z-index: 3;
        } */

        /* alternate color */
        /* .ptl-step:nth-child(even) .ptl-icon {
        border-color: #2ecc71;
        color: #2ecc71;
        } */

        /* ===== CARD ===== */
        /* .ptl-card {
        position: absolute;
        width: clamp(120px, 11vw, 150px);
        background: #fff;
        border-radius: 10px;
        padding: 10px 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        text-align: center;
        } */

        /* ZIG-ZAG */
        /* .ptl-step:nth-child(odd) .ptl-card {
        top: 0;
        }

        .ptl-step:nth-child(even) .ptl-card {
        bottom: 0;
        } */

        /* CONNECTOR LINE */
        /* .ptl-card::after {
        content: "";
        position: absolute;
        left: 50%;
        width: 2px;
        background: currentColor;
        transform: translateX(-50%);
        }

        .ptl-step:nth-child(odd) .ptl-card::after {
        bottom: -24px;
        height: calc(50% - 24px);
        }

        .ptl-step:nth-child(even) .ptl-card::after {
        top: -24px;
        height: calc(50% - 24px);
        } */

        /* TEXT */
        /* .ptl-year {
        font-weight: 700;
        font-size: 13px;
        margin-bottom: 6px;
        }

        .ptl-card h4 {
        font-size: 14px;
        margin: 6px 0;
        }

        .ptl-card p {
        font-size: 12px;
        color: #555;
        line-height: 1.4;
        } */

        /* ===== MOBILE ===== */
        /* @media (max-width: 992px) {
        .ptl-scroll {
            overflow-x: auto;
        }

        .ptl-timeline {
            min-width: 1200px;
        }
        } */
/* Timeline end */

/* new timeline start */
.timeline-section {
        padding: 60px 20px;
        }

        .timeline-wrapper {
        position: relative;
        overflow-x: auto;
        }

        .timeline {
        display: flex;
        gap: 60px;
        min-width: 1300px;
        /* padding: 120px 20px 40px; */
        position: relative;
        }

        /* Line exactly through circle center */
        .timeline-line {
          position: absolute;
          top: 68px; /* must match circle center */
          left: 0;
          width: 100%;
          height: 4px;
          background: linear-gradient(90deg, #1e90ff, #00c897, #7f3fbf);
          z-index: 1;
        }

        @media (max-width: 575px) {
           .timeline-line {
             top: 207px;
             width: 400%;
           }
        }
        @media (min-width: 576px) and (max-width: 991px) {
          .timeline-line {
            top: 52px;
          }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
          .timeline-line {
            top: 66px;
            width: 135%;
          }
        }

        /* Mobile */
        @media (max-width: 768px) {
          /* .timeline {
              padding-top: 145px;
              top:-151px
          } */

          .timeline-line {
            top: 66px;
            width: 185%;
          }
        }



        /* Item */
        .timeline-item {
        width: 220px;
        text-align: center;
        position: relative;
        z-index: 2;
        }

        /* Year */
        .year {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 14px;
        display: block;
        }

        /* Circle with icon inside */
        .circle {
        width: 54px;
        height: 54px;
        background: #fff;
        border: 4px solid #1e90ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        position: relative;
        z-index: 3;
        }

        /* Icon inside circle */
        .circle i {
        font-size: 22px;
        color: #1e90ff;
        }

        /* Text */
        .timeline-item h4 {
        font-size: 11px;
        margin-bottom: 6px;
        }

        .timeline-item p {
        font-size: 12px;
        color: #000000;
        line-height: 1.4;
        }

        
/*new timeline end */


/* mission and vision */
/* ================= SECTION BACKGROUND ================= */
.mv-section {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url("../img/about/photo-1503387762-592deb58ef4e.jpeg") center/cover no-repeat;
  color: #fff;
  padding: 90px 0;
}

/* ================= MISSION / VISION ================= */
.mv-title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 2px;
}

.mv-text {
  max-width: 520px;
  font-size: 18px;
  opacity: 0.9;
  margin-top: 20px;
}

.line-dot {
  width: 120px;
  height: 3px;
  background: #ff7a00;
  position: relative;
  margin-top: 25px;
}

.line-dot::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: -6px;
}

.line-dot.left::after {
  left: -8px;
  right: auto;
}

/* ================= CORE VALUES TITLE ================= */
.core-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.core-subtitle {
  font-size: 16px;
  opacity: 0.85;
  max-width: 600px;
  margin: auto;
}

.core-line {
  width: 120px;
  height: 3px;
  background: #ff7a00;
  margin: 20px auto 40px;
  position: relative;
}

.core-line::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: -6px;
}

/* ================= CORE VALUES CARDS ================= */
.values-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.values-wrapper::-webkit-scrollbar {
  height: 6px;
}
.values-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

.value-card {
  min-width: 230px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card img {
  width: 55px;
  margin-bottom: 20px;
  filter: invert(1);
}

.value-card h5 {
  margin: 0;
  font-weight: 600;
}

.value-card span {
  display: block;
  width: 40px;
  height: 3px;
  background: #2f6bff;
  margin: 12px auto 0;
}

/* ================= MOBILE CENTER ALIGN FIX ================= */
@media (max-width: 768px) {
  .mv-title {
    font-size: 32px;
    text-align: center;
  }

  .mv-text {
    font-size: 16px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .line-dot,
  .line-dot.left {
    margin-left: auto;
    margin-right: auto;
  }

  .line-dot::after,
  .line-dot.left::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .core-title {
    font-size: 30px;
  }
}

.mv-text,.core-subtitle{
    color: #ffffff;
}


/* mission and vision end */


/* logo animation */
.scene {
  perspective: 1000px;
}

/* ================= LOGO CARD ================= */
.logo {
  width: 350px;
  height: 350px;
  /* background: linear-gradient(135deg, #1e90ff, #00c897); */
  background-color: aliceblue;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.4,.2,.2,1);
  cursor: pointer;

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* ================= FLIP ================= */
.logo:hover {
  transform: rotateY(180deg);
}

/* ================= FRONT & BACK BASE ================= */
.spancls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.spancls1{
  position: absolute;
  inset: 0;
  padding-top: 60px;
  /* background-color: #3a3939; */
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* ================= FRONT (IMAGE) ================= */
.logo-front img {
  max-width: 70%;
  transform: translateZ(60px);
}

/* ================= BACK (TEXT) ================= */
.logo-back {
  /* background-color: #3a3939; */
  /* color: #eef2ff; */
  font: var(--font-montserrat);
  font-size: 14px;
  /* font-weight: 800; */
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: rotateY(180deg) translateZ(60px);
}

/* ================= SHINE ================= */
.logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .logo {
    width: 200px;
    height: 200px;
  }

  .logo span {
    font-size: 12px;
  }
}


/* logo anumation end */

.people-card-section .people-card-top-area .total-team-members-area .content{
  max-width:100%;
}

