.service-page-hero {
  background: linear-gradient(135deg, #2196f3, #0d75c2);
  color: white;
  position: relative;
  z-index: 1;
}

.service-hero-title {

  color: #ffffff;

  font-family: "Montserrat", Sans-serif;
  font-size: 34px;
  font-weight: 700;
}

.service-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #e8f8ff;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background-color: white;
  color: #0d75c2;
}

.service-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}







.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #268bcc;
  margin-bottom: 20px;
}

.custom-list {
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.custom-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #268bcc;
}





.audience-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.3s ease;
}

.audience-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.audience-icon {
  font-size: 32px;
  color: #268bcc;
}



.simple-cta-section {
  background-color: #268bcc;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin: 60px 0;
}

.cta-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-subheading {
  font-size: 1.05rem;
  color: #e3f2fd;
  margin-bottom: 0;
  max-width: 600px;
}

.cta-buttons .btn {
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn {
  background-color: #ffffff;
  color: #268bcc;
  border: none;
}

.cta-btn:hover {
  background-color: #e3f2fd;
  color: #195d85;
}






.service-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-caption {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}











.cc-icon i,
.cc-bullet i,
.cc-pill i {
  color: #268BCC;
}

.cc-section {
  position: relative;
  padding: 60px 0;
  background: transparent;
}

.cc-heading {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.15;
}

.cc-sublead {
  max-width: 780px;
  margin: 0 auto 24px;
  color: rgba(0, 0, 0, .7);
}


.cc-wave,
.cc-wave-top,
.cc-wave-bottom {
  display: none;
}


.cc-challenges {
  background: transparent;
}

.cc-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.cc-timeline li {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 14px;
  position: relative;
  padding: 14px 0;
}

.cc-timeline li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e7eefb;

}

.cc-timeline li:last-child::before {
  bottom: 18px;
}

.cc-bullet {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #268BCC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.cc-tcontent h6 {
  margin: 0 0 4px;
  font-weight: 700;
}

.cc-tcontent p {
  margin: 0;
  color: rgba(0, 0, 0, .7);
}

.cc-footnote {
  margin-top: 20px !important;
  color: rgba(0, 0, 0, .7);
}



.cc-solutions {
  background: transparent;
}

.cc-stripes {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

.cc-stripe {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eef2fb;
  
}

.cc-stripe:last-child {
  border-bottom: none;
}

.cc-pill {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  border: 2px solid #268BCC;

}

.cc-stripe h6 {
  margin: 0 0 4px;
  font-weight: 800;
}

.cc-stripe p {
  margin: 0;
  color: rgba(0, 0, 0, .7);
}

.cc-services {
  background: transparent;
}

.cc-service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .cc-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .cc-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cc-service {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #d8e3fb;
}

.cc-service:last-child {
  border-bottom: none;
}

.cc-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #268BCC;

}

.cc-service h6 {
  margin: 0 0 2px;
  font-weight: 800;
}

.cc-service p {
  margin: 0;
  color: rgba(0, 0, 0, .7);
}

.cc-section .add-cart-button,
.cc-section .location-header-button {
  transition: transform .15s ease, box-shadow .15s ease;
}

.cc-section .add-cart-button:hover,
.cc-section .location-header-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

@media (max-width: 767.98px) {

  .cc-solutions .container,
  .cc-services .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  
  .cc-stripes,
  .cc-service-grid {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}










.cc-boxed-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

/* Headings & lead */
.cc-boxed-section .ccb-title {
  color: #268BCC;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.cc-boxed-section .ccb-lead {
  margin: 0 0 1.25rem;
  color: #000000;
  line-height: 1.65;
  
   text-align: center;
}

/* Grid */
.cc-boxed-section .ccb-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: 1rem;
  max-width: 1100px;
}

@media (min-width: 768px) {
  .cc-boxed-section .ccb-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Card */
.cc-boxed-section .ccb-card {
  background: #ffffff;
  border: 1px solid #e5e7eb; /* light gray border */
  border-radius: 14px;
  padding: 1rem 1rem;
 
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cc-boxed-section .ccb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: #268BCC;
}

/* Optional number badge (if you use it on challenges) */
.cc-boxed-section .ccb-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e6f2fb; /* soft tint of #268BCC */
  color: #268BCC;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

/* Titles & text inside cards */
.cc-boxed-section .ccb-card-title {
  margin: 0 0 0.25rem;
  color: #268BCC;
  font-weight: 700;
  font-size: 1rem;
}

.cc-boxed-section .ccb-card-text {
  margin: 0;
  color: #000000;
  line-height: 1.65;
  font-size: 0.98rem;
}

/* Footer note */
.cc-boxed-section .ccb-foot {
  margin-top: 1rem;
  color: #000000;
  line-height: 1.65;
}