h2 {
  font-size: 2.5rem; /* big headline */
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #05141f;
}

p,
ul li,
ol li {
  font-size: 18px;
  color: #555;
}

/* ===== Section Spacing ===== */
.content-section{
  margin-top: 130px;
  margin-bottom: 130px;
}

section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* ===== Hero Section ===== */
section.text-center {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===== Service Cards ===== */
.row .p-4.border {
  background: #fff;
  border: 1px solid #eee !important;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.row .p-4.border:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  border-color: #05141f !important;
}

.row .p-4 ul {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
}

/* ===== Process Lists ===== */
ol li {
  margin-bottom: 0.6rem;
}

ol li b {
  color: #05141f;
}

/* ===== Industry Badges ===== */
.badge {
  font-size: 1rem;
  font-weight: 500;
  background: #fff !important;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 0.7rem 1.2rem !important;
  transition: all 0.3s ease;
}

.badge:hover {
  background: #05141f !important;
  color: #fff !important;
  transform: scale(1.07);
  box-shadow: 0 4px 14px rgba(220, 53, 69, 0.25);
}

/* ===== Why Build With Us ===== */
ul.list-unstyled li {
  margin: 0.5rem 0;
  font-size: 18px;
  color: #444;
}

/* ===== CTA Section ===== */
section.text-center.bg-light {
  background: linear-gradient(135deg, #fff, #f1f3f5);
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

section.text-center.bg-light h3 {
  font-size: 2rem;
  color: #222;
}

section.text-center.bg-light p {
  font-size: 18px;
  color: #555;
}

/* ===== Buttons ===== */
.btn-danger {
  background: #05141f;
  border: none;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: #05141f;
  transform: translateY(-3px);
  /* box-shadow: 0 6px 18px rgba(220, 53, 69, 0.35); */
}

/* About section */
.service-card {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card i {
  font-size: 16px;
  text-align: center;
  /* color: #05141f; */
  /* margin-bottom: 10px; */
  margin-right: 5px;
  display: block;
}
.service-card p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #f8f9fa;
}
.service-card:hover i {
  color: #05141f;
}

/* Privacy-policy */
.policy-section{
  margin: 100px 0 10px 0;
}

.policy-content h2{
  margin: 0;
}
.policy-content p{
  margin: 0;
}
.policy-content ul{
  margin: 0;
}