/* Services Page Styles - Matching Home Page Theme */

/* Services Hero Section */

.services-hero-section {
  position: relative;

  background: linear-gradient(135deg, var(--primary-color) 0%, #01357a 100%);

  padding: 150px 0 100px;

  overflow: hidden;
}

.hero-background {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 1;
}

.hero-shape {
  position: absolute;

  border-radius: 50%;

  opacity: 0.08;
}

.hero-shape-1 {
  width: 300px;

  height: 300px;

  background: var(--secondary-color);

  top: -100px;

  right: 10%;

  animation: heroFloat 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;

  height: 200px;

  background: var(--white);

  bottom: -50px;

  left: 5%;

  animation: heroFloat 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 150px;

  height: 150px;

  background: var(--secondary-color);

  top: 40%;

  left: 10%;

  animation: heroFloat 18s ease-in-out infinite;

  animation-delay: 2s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

.services-hero-section .container {
  position: relative;

  z-index: 2;
}

.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);

  padding: 12px 25px;

  border-radius: 50px;

  display: inline-flex;

  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);

  text-decoration: none;

  transition: color 0.3s ease;

  display: flex;

  align-items: center;

  gap: 5px;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.page-title {
  font-size: 3.5rem;

  font-weight: 700;

  color: var(--white);

  margin-bottom: 20px;

  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.2rem;

  color: rgba(255, 255, 255, 0.9);

  max-width: 800px;

  margin: 0 auto;

  line-height: 1.7;
}

/* Services Overview */

.services-overview {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

/* Service Process Section */

.service-process {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);

  position: relative;

  overflow: hidden;
}

.process-background {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;
}

.process-shape {
  position: absolute;

  border-radius: 50%;

  opacity: 0.05;
}

.process-shape-1 {
  width: 250px;

  height: 250px;

  background: var(--primary-color);

  top: 10%;

  right: 5%;

  animation: processFloat 20s ease-in-out infinite;
}

.process-shape-2 {
  width: 180px;

  height: 180px;

  background: var(--secondary-color);

  bottom: 15%;

  left: 8%;

  animation: processFloat 18s ease-in-out infinite reverse;
}

@keyframes processFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(25px, -25px) rotate(180deg);
  }
}

.service-process .container {
  position: relative;

  z-index: 2;
}

.section-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: rgba(235, 190, 0, 0.15);

  color: var(--primary-color);

  padding: 10px 20px;

  border-radius: 50px;

  margin-bottom: 20px;

  font-weight: 600;

  font-size: 0.9rem;

  border: 1px solid rgba(235, 190, 0, 0.3);
}

.section-badge i {
  color: var(--secondary-color);
}

/* Process Step Cards */

.process-step-card {
  background: rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(2, 44, 130, 0.1);

  border-radius: 20px;

  padding: 35px 25px;

  text-align: center;

  transition: all 0.4s ease;

  position: relative;

  height: 100%;
}

.process-step-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(2, 44, 130, 0.15);

  background: rgba(255, 255, 255, 1);
}

.step-number {
  position: absolute;

  top: 20px;

  right: 20px;

  font-size: 2.5rem;

  font-weight: 700;

  color: rgba(2, 44, 130, 0.08);

  line-height: 1;
}

.step-icon {
  width: 80px;

  height: 80px;

  background: linear-gradient(
    135deg,
    rgba(2, 44, 130, 0.1),
    rgba(2, 44, 130, 0.05)
  );

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  transition: all 0.4s ease;
}

.step-icon i {
  font-size: 2.2rem;

  color: var(--primary-color);

  transition: all 0.4s ease;
}

.process-step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary-color), #0347b8);

  transform: scale(1.1) rotate(5deg);
}

.process-step-card:hover .step-icon i {
  color: var(--secondary-color);
}

.process-step-card h4 {
  color: var(--primary-color);

  font-size: 1.4rem;

  font-weight: 600;

  margin-bottom: 15px;
}

.process-step-card p {
  color: var(--dark-gray);

  line-height: 1.7;

  margin-bottom: 25px;

  font-size: 0.95rem;
}

.step-arrow {
  position: absolute;

  right: -20px;

  top: 50%;

  transform: translateY(-50%);

  font-size: 1.5rem;

  color: var(--secondary-color);

  opacity: 0.5;
}

.process-step-card:last-child .step-arrow {
  display: none;
}

/* Process Stats */

.process-stats {
  background: rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(2, 44, 130, 0.1);

  border-radius: 20px;

  padding: 40px 30px;

  box-shadow: 0 10px 30px rgba(2, 44, 130, 0.1);
}

.stat-box {
  text-align: center;

  padding: 25px 20px;

  position: relative;

  transition: all 0.3s ease;
}

.stat-box::after {
  content: "";

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 1px;

  height: 60%;

  background: rgba(2, 44, 130, 0.15);
}

.stat-box:last-child::after {
  display: none;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;

  height: 60px;

  background: linear-gradient(
    135deg,
    rgba(2, 44, 130, 0.1),
    rgba(2, 44, 130, 0.05)
  );

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

  transition: all 0.3s ease;
}

.stat-icon i {
  font-size: 1.8rem;

  color: var(--primary-color);

  transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
  background: var(--primary-color);

  transform: scale(1.1);
}

.stat-box:hover .stat-icon i {
  color: var(--secondary-color);
}

.stat-box h3 {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(--primary-color);

  margin-bottom: 8px;

  line-height: 1;
}

.stat-box p {
  color: var(--dark-gray);

  font-size: 0.9rem;

  margin: 0;

  font-weight: 500;
}

/* Responsive Design */

@media (max-width: 992px) {
  .page-title {
    font-size: 2.8rem;
  }

  .step-arrow {
    display: none;
  }

  .process-step-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .services-hero-section {
    padding: 120px 0 80px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1.05rem;
  }

  .process-step-card {
    padding: 30px 20px;
  }

  .step-number {
    font-size: 2rem;
  }

  .step-icon {
    width: 70px;

    height: 70px;
  }

  .step-icon i {
    font-size: 2rem;
  }

  .stat-box::after {
    display: none;
  }

  .stat-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .services-hero-section {
    padding: 100px 0 60px;
  }

  .page-title {
    font-size: 1.9rem;
  }

  .process-step-card {
    padding: 25px 18px;
  }

  .step-number {
    font-size: 1.8rem;

    top: 15px;

    right: 15px;
  }

  .step-icon {
    width: 60px;

    height: 60px;
  }

  .step-icon i {
    font-size: 1.7rem;
  }

  .process-step-card h4 {
    font-size: 1.2rem;
  }

  .process-step-card p {
    font-size: 0.9rem;
  }

  .stat-icon {
    width: 50px;

    height: 50px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }
}

/* Services Overview Section */

.services-overview {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.benefit-item {
  display: flex;

  gap: 20px;

  padding: 25px;

  background: rgba(255, 255, 255, 0.8);

  border: 1px solid rgba(2, 44, 130, 0.1);

  border-radius: 15px;

  margin-bottom: 20px;

  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);

  box-shadow: 0 10px 30px rgba(2, 44, 130, 0.1);

  background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
  width: 60px;

  height: 60px;

  background: linear-gradient(
    135deg,
    rgba(2, 44, 130, 0.1),
    rgba(2, 44, 130, 0.05)
  );

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  transition: all 0.3s ease;
}

.benefit-icon i {
  font-size: 1.8rem;

  color: var(--primary-color);
}

.benefit-item:hover .benefit-icon {
  background: var(--primary-color);

  transform: scale(1.1);
}

.benefit-item:hover .benefit-icon i {
  color: var(--secondary-color);
}

.benefit-content h5 {
  color: var(--primary-color);

  font-size: 1.1rem;

  font-weight: 600;

  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--dark-gray);

  font-size: 0.9rem;

  margin: 0;

  line-height: 1.6;
}

.services-overview-image {
  position: relative;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(2, 44, 130, 0.15);
}

.services-overview-image img {
  width: 100%;

  border-radius: 20px;
}

.image-stats {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
}

.stat-bubble {
  position: absolute;

  background: rgba(255, 255, 255, 0.95);

  padding: 20px;

  border-radius: 15px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(2, 44, 130, 0.2);

  border: 2px solid rgba(2, 44, 130, 0.1);

  min-width: 100px;
}

.stat-number {
  display: block;

  font-size: 2rem;

  font-weight: 700;

  color: var(--primary-color);

  line-height: 1;

  margin-bottom: 5px;
}

.stat-label {
  display: block;

  font-size: 0.85rem;

  color: var(--dark-gray);

  font-weight: 500;
}

/* Services Grid Section */

.services-grid {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.service-grid-card {
  background: rgba(255, 255, 255, 0.8);

  border: 1px solid rgba(2, 44, 130, 0.1);

  border-radius: 20px;

  padding: 35px 30px;

  height: 100%;

  transition: all 0.4s ease;

  text-align: center;
}

.service-grid-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(2, 44, 130, 0.15);

  background: rgba(255, 255, 255, 0.95);
}

.service-grid-icon {
  width: 80px;

  height: 80px;

  background: linear-gradient(135deg, var(--primary-color), #0347b8);

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  transition: all 0.4s ease;
}

.service-grid-icon i {
  font-size: 2.5rem;

  color: var(--secondary-color);
}

.service-grid-card:hover .service-grid-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-grid-card h4 {
  color: var(--primary-color);

  font-size: 1.4rem;

  font-weight: 600;

  margin-bottom: 15px;
}

.service-grid-card p {
  color: var(--dark-gray);

  line-height: 1.7;

  margin-bottom: 20px;
}

.service-highlights {
  list-style: none;

  padding: 0;

  margin: 0 0 25px 0;

  text-align: left;
}

.service-highlights li {
  color: var(--dark-gray);

  font-size: 0.9rem;

  margin-bottom: 8px;

  padding-left: 20px;

  position: relative;
}

.service-highlights li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--secondary-color);

  font-weight: 700;
}

.service-grid-link {
  color: var(--primary-color);

  text-decoration: none;

  font-weight: 600;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  transition: all 0.3s ease;
}

.service-grid-link:hover {
  color: var(--secondary-color);

  gap: 12px;
}

.service-grid-link i {
  transition: transform 0.3s ease;
}

.service-grid-link:hover i {
  transform: translateX(5px);
}

/* Service Detail Sections */

.service-detail {
  position: relative;
}

.service-detail.pastel-bg {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.service-detail-content {
  padding-right: 20px;
}

.service-badge {
  width: 70px;

  height: 70px;

  background: linear-gradient(
    135deg,
    rgba(2, 44, 130, 0.1),
    rgba(2, 44, 130, 0.05)
  );

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;
}

.service-badge i {
  font-size: 2rem;

  color: var(--primary-color);
}

.service-detail-content h3 {
  color: var(--primary-color);

  font-size: 2.2rem;

  font-weight: 700;

  margin-bottom: 20px;
}

.service-detail-content .lead {
  font-size: 1.15rem;

  color: var(--primary-color);

  font-weight: 600;

  margin-bottom: 15px;

  line-height: 1.7;
}

.service-detail-content p {
  color: var(--dark-gray);

  line-height: 1.8;

  margin-bottom: 25px;
}

.service-metrics {
  background: rgba(255, 255, 255, 0.7);

  border: 1px solid rgba(2, 44, 130, 0.1);

  border-radius: 15px;

  padding: 25px 20px;

  margin-bottom: 30px;
}

.metric-item {
  text-align: center;
}

.metric-number {
  display: block;

  font-size: 2rem;

  font-weight: 700;

  color: var(--primary-color);

  line-height: 1;

  margin-bottom: 8px;
}

.metric-label {
  display: block;

  font-size: 0.85rem;

  color: var(--dark-gray);

  font-weight: 500;
}

.service-features {
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;

  padding: 0;

  margin: 0;
}

.feature-list li {
  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--dark-gray);

  margin-bottom: 12px;

  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--secondary-color);

  font-size: 0.9rem;
}

.service-technologies h5 {
  color: var(--primary-color);

  font-size: 1.1rem;

  font-weight: 600;

  margin-bottom: 15px;
}

.tech-stack {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.tech-tag {
  background: rgba(2, 44, 130, 0.08);

  color: var(--primary-color);

  padding: 8px 16px;

  border-radius: 20px;

  font-size: 0.85rem;

  font-weight: 500;

  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--primary-color);

  color: var(--white);

  transform: translateY(-2px);
}

.service-image {
  position: relative;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(2, 44, 130, 0.15);
}

.service-image img {
  width: 100%;

  border-radius: 20px;

  transition: transform 0.4s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(2, 44, 130, 0.85);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  transition: opacity 0.4s ease;
}

.service-image:hover .service-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;

  color: var(--white);

  padding: 30px;
}

.overlay-content h5 {
  color: var(--white);

  font-size: 1.5rem;

  font-weight: 600;

  margin-bottom: 10px;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 20px;
}

.overlay-content .btn {
  background: var(--secondary-color);

  color: var(--primary-color);

  border: none;

  padding: 12px 30px;

  border-radius: 25px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.overlay-content .btn:hover {
  background: #d4aa00;

  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(235, 190, 0, 0.4);
}

/* Additional Responsive Styles */

@media (max-width: 992px) {
  .service-detail-content {
    padding-right: 0;

    margin-bottom: 40px;
  }

  .service-detail-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .service-detail-content h3 {
    font-size: 1.7rem;
  }

  .service-detail-content .lead {
    font-size: 1.05rem;
  }

  .benefit-item {
    flex-direction: column;

    text-align: center;
  }

  .service-grid-card {
    padding: 30px 25px;
  }

  .metric-number {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .service-detail-content h3 {
    font-size: 1.5rem;
  }

  .service-badge {
    width: 60px;

    height: 60px;
  }

  .service-badge i {
    font-size: 1.7rem;
  }

  .service-grid-icon {
    width: 70px;

    height: 70px;
  }

  .service-grid-icon i {
    font-size: 2rem;
  }

  .tech-tag {
    font-size: 0.8rem;

    padding: 6px 12px;
  }
}

/* Floating Background Elements for All Sections */

.floating-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;
}

.float-shape {
  position: absolute;

  border-radius: 50%;

  opacity: 0.06;

  will-change: transform;
}

.float-shape-1 {
  width: 150px;

  height: 150px;

  background: var(--primary-color);

  top: 15%;

  right: 10%;

  animation: floatAround 20s ease-in-out infinite;
}

.float-shape-2 {
  width: 100px;

  height: 100px;

  background: var(--secondary-color);

  bottom: 20%;

  left: 8%;

  animation: floatAround 18s ease-in-out infinite reverse;

  animation-delay: 1s;
}

.float-shape-3 {
  width: 120px;

  height: 120px;

  background: var(--primary-color);

  top: 50%;

  right: 5%;

  animation: floatAround 22s ease-in-out infinite;

  animation-delay: 2s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }

  50% {
    transform: translate(-15px, 15px) rotate(180deg);
  }

  75% {
    transform: translate(15px, 20px) rotate(270deg);
  }
}

/* Ensure sections with floating elements have position relative */

.service-detail,
.services-overview,
.services-grid {
  position: relative;
}

.service-detail .container,
.services-overview .container,
.services-grid .container {
  position: relative;

  z-index: 2;
}

/* Service Section Styles */

.service-section {
  position: relative;

  overflow: hidden;
}

.service-section .container {
  position: relative;

  z-index: 2;
}

.service-section.pastel-bg {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.service-title {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(--primary-color);

  margin-bottom: 15px;
}

.service-description {
  font-size: 1.1rem;

  color: var(--dark-gray);

  max-width: 800px;

  margin: 0 auto 40px;

  line-height: 1.7;
}

/* Sub-service Cards with Glassmorphism */

.sub-service-card {
  background: rgba(255, 255, 255, 0.7);

  -webkit-backdrop-filter: blur(10px);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 8px 32px rgba(2, 44, 130, 0.1);

  border-radius: 15px;

  padding: 30px 25px;

  height: 100%;

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;
}

.sub-service-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s ease;
}

.sub-service-card:hover::before {
  transform: scaleX(1);
}

.sub-service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 40px rgba(2, 44, 130, 0.2);

  background: rgba(255, 255, 255, 0.9);

  -webkit-backdrop-filter: blur(15px);

  backdrop-filter: blur(15px);

  border-color: rgba(255, 255, 255, 0.5);
}

/* Sub-service Image */

.sub-service-image {
  width: 120px;

  height: 120px;

  margin: 0 auto 20px;

  border-radius: 15px;

  overflow: hidden;

  position: relative;

  transition: all 0.4s ease;

  /* box-shadow: 0 5px 20px rgba(2, 44, 130, 0.15); */
}

.sub-service-image::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    135deg,
    rgba(2, 44, 130, 0.1),
    rgba(235, 190, 0, 0.1)
  );

  opacity: 0;

  transition: opacity 0.4s ease;

  z-index: 1;
}

.sub-service-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.4s ease;

  display: block;
}

.sub-service-card:hover .sub-service-image {
  transform: scale(1.1) rotate(5deg);

  box-shadow: 0 10px 30px rgba(2, 44, 130, 0.25);
}

.sub-service-card:hover .sub-service-image::before {
  opacity: 1;
}

.sub-service-card:hover .sub-service-image img {
  transform: scale(1.05);
}

/* Sub-service Content */

.sub-service-card h4 {
  font-size: 1.25rem;

  font-weight: 600;

  color: var(--primary-color);

  margin-bottom: 15px;

  line-height: 1.4;
}

.sub-service-card p {
  font-size: 0.95rem;

  color: var(--dark-gray);

  line-height: 1.7;

  margin: 0;
}

/* Responsive Design */

@media (max-width: 992px) {
  .service-title {
    font-size: 2.2rem;
  }

  .service-description {
    font-size: 1.05rem;
  }

  .sub-service-card {
    padding: 28px 22px;
  }

  .sub-service-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 2rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .sub-service-card {
    padding: 25px 20px;
  }

  .sub-service-image {
    width: 110px;

    height: 110px;
  }

  .sub-service-card h4 {
    font-size: 1.15rem;
  }

  .sub-service-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 1.8rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  .sub-service-card {
    padding: 22px 18px;
  }

  .sub-service-image {
    width: 100px;

    height: 100px;
  }

  .sub-service-card h4 {
    font-size: 1.1rem;
  }

  .sub-service-card p {
    font-size: 0.88rem;
  }
}
