#about box-icon,
#services box-icon {
  font-size: 2.5em;
  color: #0078d4;
  margin-bottom: 0.75em;
  display: inline-block;
  background: linear-gradient(135deg, #0078d4, #00b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: iconFadeIn 1s ease;
}

#about h4,
#services h4 {
  font-size: 1.4em;
  color: #010057;
  margin-bottom: 0.6em;
  font-weight: 700;
}

#about p,
#services p {
  font-size: 1.05em;
  color: #333;
  line-height: 1.5;
}

@keyframes iconFadeIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



#hero-modern-grid {
  position: relative;
  background: #e6ecf5; /* soft, muted color */
  padding: 4em 2em;
  border-radius: 12px;
  overflow: hidden;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5em;
}

.hero-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.hero-tags li {
  background: #fff;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  border-radius: 4px;
  font-weight: 500;
}

.hero-main-content {
  text-align: left;
}

.hero-main-content h1 {
  font-size: 3em;
  color: #010057;
  margin-bottom: 0.5em;
}

.hero-main-content .highlight {
  color: #0078d4;
}

.hero-main-content p {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 1.5em;
}

.hero-main-content .hero-cta {
  padding: 0.8em 1.6em;
  font-size: 1.1em;
  background: #0078d4;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-main-content .hero-cta:hover {
  background: #005ea0;
}

.hero-background-elements::before,
.hero-background-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.hero-background-elements::before {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #000 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.hero-background-elements::after {
  width: 600px;
  height: 600px;
  border: 2px solid #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}






.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* image twice as wide as details */
  /* align-items: center; */
  gap: 2em;
  margin-bottom: 4em;
}

.feature-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}

.feature-details {
  max-width: 450px;
}

.feature-details h3 {
  font-size: 1.8em;
  color: #010057;
  margin-bottom: 0.6em;
}

.feature-details p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.5;
}

/* Responsive stacking: image full-width on small screens, details below */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-details {
    margin-top: 2em;
  }
}


@keyframes rotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}