.floating-blobs {
  position: absolute;
  z-index: 0;
  width: 100%;
  left: 0; top: 0; height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
  animation: blobFloat 20s ease-in-out infinite alternate;
  filter: blur(2px);
}
.blob-1 {
  width: 180px; height: 180px;
  left: 10vw; top: 60px;
  background: #44bcf4;
  animation-delay: 0s;
}
.blob-2 {
  width: 250px; height: 250px;
  right: 2vw; top: 120px;
  background: #e3e3fa;
  animation-delay: 6s;
}

@keyframes blobFloat {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-30px) scale(1.09); }
  100% { transform: translateY(7px)  scale(1); }
}
.group-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.6rem);
    letter-spacing: 0.02em;
    color: #185adc; /* Your site blue */
    text-align: left;
    margin: 3.5rem 0 2rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid #185adc;
    max-width: 100%;
}

.iconbox-blue {
    background-color: #f3f9ff;
    transition: all 0.3s ease;
}

.iconbox-blue:hover, .service-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.18);
    transition: all 0.3s ease;
}

.read-more-btn {
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #007bff;
    color: #fff;
}
/* Overlap next section upward */
#about {
  margin-top: -50px; /* adjust as needed */
  position: relative; /* ensure z-index works */
  z-index: 10; /* bring above previous section */
}

/* Optionally reduce bottom margin in previous section */
#services {
  margin-bottom: 0; /* or small positive margin */
}

#hero.hero {
  position: relative;
  width: 100vw;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
  padding: 0;
}

#hero .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}

.hero-fullwidth-content {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  padding: 5.5rem 6vw 4rem 6vw;
  text-align: center;
  margin: 0;
}

.hero-fullwidth-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  font-weight: 800;
  text-shadow: 0 10px 36px #0006;
}

.hero-fullwidth-content .lead {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  color: #eef3fa;
}

.hero-btns .btn {
  min-width: 150px;
  font-weight: 600;
  border-radius: 999px;
  padding: 15px 32px;
  transition: all 0.3s;
}

.hero-btns .btn-primary {
  background-color: #185adc;
  border: none;
}

.hero-btns .btn-outline-light {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

.hero-btns .btn:hover, .hero-btns .btn:focus {
  filter: brightness(1.1);
  box-shadow: 0 5px 25px #185adc3a;
}

.hero-btns {
    display: flex;
    justify-content: center; /* Center horizontally */
    gap: 1rem;              /* Space between buttons */
    flex-wrap: wrap;        /* Wrap on small screens */
    margin-bottom: 3rem;    /* Adjust spacing if needed */
}


.hero-stats {
  margin-top: 3.2rem;
  gap: 2.5rem;
}
.stat-item h3 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 14px #0005;
}
.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  #hero.hero { min-height: 440px; }
  .hero-fullwidth-content { padding: 3rem 2vw 2rem 2vw; }
  .hero-stats { gap: 1.1rem; }
}
@media (max-width: 520px) {
  .hero-fullwidth-content { padding: 2rem 0.6rem 1rem 0.6rem; }
  .hero-stats .stat-item h3 { font-size: 1.7rem; }
}
#hero.hero {
  color: #ffffff !important; /* Force all text white */
}

#hero.hero h1,
#hero.hero h2,
#hero.hero h3,
#hero.hero h4,
#hero.hero h5,
#hero.hero h6,
#hero.hero p,
#hero.hero a,
#hero.hero .hero-stats p,
#hero.hero .hero-stats h3,
#hero.hero .btn,
#hero.hero .lead {
  color: #ffffff !important;
}

/* Ensure buttons with outline-light have white text */
#hero.hero .btn-outline-light, 
#hero.hero .btn-outline-light:hover, 
#hero.hero .btn-outline-light:focus {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* If any text shadows interfere, consider adjusting or removing */
#hero.hero h1,
#hero.hero h2,
#hero.hero h3 {
  text-shadow: 0 0 8px rgba(0,0,0,0.9);
}
.custom-icon {
    width: 75px;   /* Increase width as desired */
    height: 75px;  /* Increase height as desired */
    object-fit: contain;
    display: inline-block;
}
.hero-fullwidth-content {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 15px;  /* keep some horizontal padding */
  padding-right: 15px;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
/* Force bullets to appear */
.service-description-wrapper ul,
.service-description-wrapper ol {
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin-left: 1.5em !important;
  padding-left: 1.5em !important;
  color: #2c3e50 !important;
}

/* Ensure each list item behaves as a block with default marker */
.service-description-wrapper ul li,
.service-description-wrapper ol li {
  display: list-item !important;
  margin-bottom: 0.8em !important;
  padding-left: 0 !important;
}

/* Make strong labels inline and adjacent to descriptions */
.service-description-wrapper ul li strong,
.service-description-wrapper ol li strong {
  display: inline !important;
  font-weight: 700 !important;
  margin-right: 0.4em !important;
  white-space: nowrap !important;
}

/* Remove unintended breaks inside strong */
.service-description-wrapper ul li strong br,
.service-description-wrapper ol li strong br {
  display: none !important;
}

/* Fix horizontal scroll or overflowing margins */
.service-description-wrapper {
  overflow-wrap: break-word !important;
  max-width: 740px;
  margin: 0 auto;
  padding: 1.2em 1em;
  background: #f9fbff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgb(0 0 0 / 4%);
}

/* Title above section */
.service-main-content-title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #1a2a6c; /* Deep sophisticated blue */
  margin-bottom: 1.6rem;
  text-align: left;
  border-left: 6px solid #3478f6; /* Elegant accent color bar */
  padding-left: 14px;
  user-select: none;
  text-transform: uppercase;
}

/* Image banner below title */
.service-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 7; /* Wide and cinematic */
  background-size: cover;
  background-position: center center;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(52, 120, 246, 0.25);
  transition: box-shadow 0.3s ease;
  outline-offset: 6px;
}

/* Focus outline for accessibility */
.service-image-wrapper:focus {
  outline: 3px solid #3478f6;
  box-shadow: 0 12px 40px rgba(52, 120, 246, 0.38), 0 0 0 6px rgba(52, 120, 246, 0.3);
}

/* Modern description styling */
.service-description-wrapper {
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #344055; /* Dark slate */
  padding: 1.8rem 1.2rem;
  background: #f7faff;
  border-radius: 12px;
  box-shadow: 0 4px 28px rgb(52 120 246 / 0.12);
  margin-top: 2.5rem;
  max-width: 760px;
  user-select: text;
  word-wrap: break-word;
}

/* Description inner tags styling */
.service-description-wrapper ul,
.service-description-wrapper ol {
  padding-left: 1.4rem;
  margin-bottom: 1.5rem;
  color: #566574;
  list-style-position: outside;
}

/* List items: label and description inline as requested */
.service-description-wrapper ul li,
.service-description-wrapper ol li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.1em;
}

.service-description-wrapper ul li strong,
.service-description-wrapper ol li strong {
  font-weight: 700;
  margin-right: 0.6rem;
  white-space: nowrap;
}

.service-description-wrapper ul li strong::after,
.service-description-wrapper ol li strong::after {
  content: ":";
}

/* Remove any unwanted breaks inside strong */
.service-description-wrapper ul li strong br,
.service-description-wrapper ol li strong br {
  display: none;
}

/* Links inside description */
.service-description-wrapper a {
  color: #3478f6;
  text-decoration: underline;
  transition: color 0.22s ease;
}
.service-description-wrapper a:hover {
  color: #2454c3;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .service-main-content-title {
    font-size: 1.85rem;
    padding-left: 10px;
    border-left-width: 4px;
  }

  .service-image-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .service-description-wrapper {
    padding: 1rem;
    font-size: 1rem;
    max-width: 100%;
    margin-top: 2rem;
  }
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #0d6efd; /* Bootstrap primary color */
  border: 1px solid #0d6efd;
  transition: background-color 0.3s, color 0.3s;
}

.social-share a:hover {
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
}

.social-share a:focus {
  outline: 2px solid #0a58ca;
  outline-offset: 2px;
}
