:root {
  --primary: #dc2626;
  --secondary: #f8fafc;
  --accent: #059669;
  --dark: #0f172a;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-brand img { height: 45px; }

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  transition: color 0.3s;
  margin: 0 0.5rem;
}

.nav-link:hover { color: var(--primary) !important; }

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 500;
}

.section {
  padding: 6rem 0;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
 
  padding-top: 1.3rem;
  
}

/* .feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
} */

.feature-list {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
}

.feature-icon i {
  font-size: 42px;
  color: #b91c1c;
}


@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .section { padding: 4rem 0; margin-top: 3.1rem;}
  .feature-card { padding: 2rem; }
}

/* Container */
.service-section {
  padding: 80px 20px;
  background-color: #f7f9fc;
  font-family: 'Poppins', sans-serif;
}

/* Inner wrapper: two-column layout */
.service-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Image side */
.service-section .image-side {
  flex: 1 1 45%;
}

.service-section .image-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Text side */
.service-section .text-side {
  flex: 1 1 45%;
}

.service-section .section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff4c60;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.service-section .text-side h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f1b36;
}

.service-section .text-side p {
  /* font-size: 16px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 30px; */
  font-size: 1.25rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

/* Button style */
.service-section .btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #ff4c60;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-section .btn:hover {
  background-color: #e04357;
  transform: translateY(-2px);
}

.service-section .image-side {
  flex: 1 1 45%;
  order: 2;
}

.service-section .text-side {
  flex: 1 1 45%;
  order: 1; 
} 


/* Responsive */
@media (max-width: 992px) {
  .service-section .content-wrapper {
    flex-direction: column-reverse;
  }

  .service-section .image-side,
  .service-section .text-side {
    flex: 1 1 100%;
  }

  .service-section .text-side h2 {
    font-size: 28px;
  }
}
