body {
  font-family: Roboto, Arial, sans-serif;
  margin: 0;
  color: #333;
  font-size: 14px;
}

.service-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

.top-header {
  border-bottom: 1px solid #ddd;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

nav a.active {
  color: #0b78b5;
}

.hero {
  background: #0b78b5;
  color: #fff;
  height: 160px;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 28px;
  font-weight: 500;
}

.main-content {
  padding: 50px 0;
}

.main-content h2 {
  font-size: 22px;
}

.features {
  padding: 40px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.main-content-para{
  font-size: 15px;
  text-align: center;
  margin-bottom: 35px;

}	

/* Section background like screenshot */
.suitescript-section {
  background: #e6f0f2;
  padding: 60px 15px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Centered container */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Gray line + blue center bar underline */
.title-underline {
  width: 220px;
  height: 3px;
  background: #8a8a8a;
  margin: 12px auto 40px;
  position: relative;
  border-radius: 2px;
}

.title-underline .blue-bar {
  width: 60px;
  height: 4px;
  background: #0094d9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}

/* Main white card */
.content-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px 30px 30px;
  border: 1px solid #d8d8d8;
  margin-bottom: 50px;
  /* 3D depth effect like screenshot */
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.25);
}

/* Card heading */
.card-title {
  font-size: 20px;
  color: #0284c7;
  margin: 0 0 18px;
  font-weight: 700;
}

/* List style */
.card-list p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #111;
}

.card-list p strong {
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .content-card {
    padding: 22px 18px;
  }

  .card-title {
    font-size: 22px;
  }
}

.thumb-item i {
  font-size: 18px;
  color: #000;
}

.partners-section {
  padding: 50px 15px;
  font-family: Arial, Helvetica, sans-serif;
}

/* CTA BAR */
.cta-bar {
  max-width: 1200px;
  margin: 0 auto;
  background: #1d3f60;
  border-radius: 12px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.cta-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  max-width: 900px;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #00b4ff;
  color: #fff;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

/* LOGOS ROW */
.partners-logos {
  max-width: 1200px;
  margin: 55px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: wrap;
}

.partners-logos img {
  min-height: 100px;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn-wrap {
    width: 100%;
  }

  .cta-btn {
    width: fit-content;
  }

  .partners-logos {
    justify-content: center;
  }
}


.footer {
  background: #4d4d4d;
  color: #fff;
  padding: 40px 0 10px;
}

.footer-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px;
}

.copy {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
  border-top: 1px solid #666;
  padding-top: 10px;
}
