body {
  font-family: "Montserrat", sans-serif;
}

/* ================= services US BANNER ================= */
.services-banner {
  width: 100%;
  height: 420px;

  position: relative;
  overflow: hidden;


  /* USE YOUR FULL IMAGE HERE */
  /* background: url("../images/portfolio/portfoliobanner.jpeg") no-repeat center/cover; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Dark gradient overlay (LEFT SIDE) */
.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  /* LEFT dark → RIGHT transparent (same as image) */
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.763) 0%,
      rgba(0, 0, 0, 0.581) 35%,
      rgba(0, 0, 0, 0.212) 55%,
      rgba(0, 0, 0, 0.014) 75%,
      transparent 100%);

  z-index: 1;
}

/* Content wrapper */
.services-banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.services-banner-content {
  padding-left: clamp(15px, 5vw, 80px);
  max-width: 600px;

}

/* Title */
.services-banner-content h1 {
  color: #fff;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4px;
}

/* Subtitle */
.services-banner-content p {
  color: #ddd;
  font-size: 16px;
  font-weight: 400;
  font-family: "Catamaran", sans-serif;
}

@media (max-width: 992px) {
  .services-banner {
    height: 320px;
  }

  .services-banner-content {
    padding-left: 40px;
  }

  .services-banner-content h1 {
    font-size: 32px;
  }

  .services-banner-content {

    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .services-banner {
    height: 250px;

  }

  .services-banner-content {
    padding-left: 20px;
  }

  .services-banner-content h1 {
    font-size: 26px;
  }

  .services-banner-content p {
    font-size: 14px;


  }


  .services-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px auto 0px auto;
  }
}


/* ================= SERVICE INTRO ================= */
.service-intro {
  padding: 60px 0;
  background: #f7f7f7;
}

.service-intro-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.service-intro-left {
  flex: 1;
}

.service-intro-left .tag {
  color: #ff6b81;
  font-family: "Cursive";
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
  font-family: cursive;
}

.service-intro-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.service-sub {
  color: #666;
  margin-bottom: 25px;
}

.intro-btn {
  background: #0d57ab;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;

}

/* DIVIDER */
.divider {
  width: 1px;
  background: #ddd;
  height: 100%;

}

/* RIGHT */
.service-intro-right {
  flex: 1;
}

.service-intro-right p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-intro-right ul {
  list-style: none;
  padding: 0;
}

.service-intro-right li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: #444;
}

/* ICON STYLE */
.service-intro-right li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #0d57ab;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-intro-wrapper {
    flex-direction: column;
  }

  .divider {
    display: none;
  }
}

/* ================= SERVICE STEPS ================= */
.service-steps {
  padding: 60px 0;
  background: #f4f6f9;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* CARD */
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-8px);
}

/* ICON BOX */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 28px;
  color: #fff;
}

.icon-box img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* TEXT */
.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .steps-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}


/* ================= THIRD SECTION ================= */
.service-highlight {
  padding: 60px 0;
  background: #f5f5f5;
}

.highlight-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.highlight-left {
  flex: 1;
  max-width: 400px;

}

.highlight-left img {
  width: 100%;
  max-width: 400px;
}

/* RIGHT CONTENT */
.highlight-right {
  flex: 1;
}

.highlight-tag {
  color: #ff6b81;
  font-family: "Cursive";
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
  font-family: cursive;

}

.highlight-right h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;

}

.highlight-right p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;

}

/* LIST */
.highlight-right ul {
  list-style: none;
  padding: 0;
}

.highlight-right li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #444;
}

/* ICON IMAGE (FLATICON) */
/* .highlight-right li img {
  width: 22px;
  height: 22px;
} */

/* POINT ICON STYLE */
.highlight-right li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #444;
}

.highlight-right li i {
  color: #0d57ab;
  /* brand color */
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .highlight-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .highlight-left img {
    margin: auto;
  }

  .highlight-right li {
    justify-content: center;
  }
}



/* ================= FOURTH SECTION ================= */
.service-growth {
  padding: 60px 0;
  background: #f7f7f7;
}

.growth-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.growth-left {
  flex: 1;
}

.growth-tag {
  color: #ff6b81;
  font-family: cursive;
  font-size: 22px;
}

.growth-left h2 {
  font-size: 42px;
  margin: 10px 0;
  font-weight: 700;
}

.growth-left p {
  color: #666;
  margin-bottom: 30px;
}

/* CIRCLES */
.growth-circles {
  display: flex;
  gap: 30px;
}

.circle-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.circle .bg {
  stroke: #eee;
}

.circle .progress {
  stroke: var(--clr);
  stroke-dasharray: 314;
  /* 2πr (r=50) */
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1s linear;
}

.circle span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
}

/* RIGHT */
.growth-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.growth-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #6dbedc;
}

.growth-card .dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
}

.growth-card h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.growth-card p {
  color: #666;
  font-size: 14px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .growth-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .growth-circles {
    justify-content: center;
  }

  .growth-card {
    text-align: left;
  }
}

@media (max-width: 770px) {
  .highlight-right h2 {
    font-size: 36px;
    margin: 10px 0;
    font-weight: 700;
  }

  .growth-left h2 {
    font-size: 32px;
  }
}

/* ===============================
STRATEGY & GROWTH MOBILE FIX
================================= */

@media (max-width: 500px) {

  .service-growth {
    padding: 30px 0;
  }

  /* STACK LAYOUT */
  .growth-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* TITLE FIX */
  .growth-left h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .growth-left p {
    font-size: 14px;
    padding: 0 10px;
  }

  /* CIRCLES FIX (MOST IMPORTANT) */
  .growth-circles {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .circle {
    width: 90px;
    height: 90px;
  }

  .circle span {
    font-size: 16px;
  }

  .circle-box p {
    font-size: 12px;
  }

  /* RIGHT CARDS FIX */
  .growth-right {
    width: 100%;
    gap: 15px;
  }

  .growth-card {
    padding: 18px;
    border-radius: 10px;
    align-items: flex-start;
  }

  .growth-card h4 {
    font-size: 15px;
  }

  .growth-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .growth-card .dot {
    width: 30px;
    height: 30px;
  }

}

/* @media (max-width: 770px) {
  .highlight-right h2 {
    font-size: 36px;
    margin: 10px 0;
    font-weight: 700;
  }
} */


/* ================= FAQ SECTION ================= */
.service-faq {
  padding: 60px 0;
  background: #f5f5f5;
}

.faq-servicesarea {
  flex-direction: column;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-tag {
  font-family: cursive;
  color: #ff6b81;
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c2c2c;
}

/* WRAPPER */
.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #e9edf3;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #444;
  font-size: 16px;
}

.faq-question i {
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: 0.4s ease;
}

.faq-answer p {
  padding: 15px 20px;
  color: #666;
  font-size: 14px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* HOVER */
.faq-item:hover {
  background: #dde3ec;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 28px;
  }
}