/* === Fullwidth Services Section (Bootstrap Version) === */
.snet-services {
  padding: clamp(3rem, 6vw, 6rem) 5%;
  color: #222;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f8f9fa 0%, #eaf4ff 100%);
}

/* Title & Description */
.snet-services .section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: #0f5ea8;
  margin-bottom: 0.8rem;
font-weight: bold;
  position: relative;
  display: inline-block;
}

.snet-services .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(40px, 6vw, 60px);
  height: 3px;
  background: #00e291;
  border-radius: 2px;
}

.snet-services .section-description {
  max-width: 700px;
  margin: 1rem auto 0.75rem;
  color: #1f2937;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

/* === Improved Column + Card Width & Height === */
.snet-services .row {
  align-items: stretch;
}

.snet-services .col-12,
.snet-services .col-sm-6,
.snet-services .col-md-4,
.snet-services .col-lg-4 {
  display: flex;
  padding-bottom: 1.5rem;
}

.snet-services .service-card {
  background: #fff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%; 
  max-width: 100%; 
  flex: 1 1 auto;
  text-align: center;
}

.snet-services .service-card:hover {
  transform: translateY(-5px);
  background-color: #e6fff7;
  box-shadow: 0 0 15px rgba(0, 226, 145, 0.4);
}

/* Content that grows to equalize cards */
.snet-services .services-texts {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1rem;
}

.snet-services .services-texts h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: #004aad;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid #00e291;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.snet-services .services-texts div {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #444;
  line-height: 1.7;
  flex-grow: 1;
}

/* Icon - fixed size */
.snet-services .services-img {
  position: relative; 
  width: clamp(90px, 15vw, 140px);
  height: clamp(90px, 15vw, 140px);
  padding: clamp(12px, 2.5vw, 18px);
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
  border-radius: 50%;
  background: linear-gradient(135deg, #e9fff6 0%, #ffffff 100%);
  border: 2px solid #00e291;
  box-shadow: 0 6px 15px rgba(0, 226, 145, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.snet-services .services-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0; /* hidden by default */
  pointer-events: none;
}

.snet-services .service-card:hover .services-img::after {
  opacity: 1;
  animation: shimmer 2s forwards;
}

@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.snet-services .services-img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.snet-services .service-card:hover .services-img img {
  transform: scale(1.15);
}

/* === Tablet Width & Height Fix === */
@media (min-width: 768px) and (max-width: 991.98px) {
  .snet-services .service-card {
    min-height: 440px;
  }

  /* Force consistent width on tablets */
  .snet-services .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* AOS mobile fix */
@media (max-width: 768px) {
  [data-aos] {
    transition-delay: 0ms !important;
  }
}