


html {
  scroll-behavior: smooth;
}

.highlight {
  animation: border-highlight 3s ease-out;
}

@keyframes border-highlight {
  0% {
    outline: 7px solid rgba(128, 126, 126, 0.988);
    outline-offset: 2px;
  }
  100% {
    outline: 2px solid transparent;
  }
}

/* Hero Section Styling */
.hero {
    background: var( --background-color--dark);
    padding: 5px 20px;
    color: #fff;
    text-align: center;
  }
  
  .hero .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1rem;
      text-align: justify;
    }
  }
  


/* Main Services Section */
.services {
    padding: 60px 20px;
    background: var( --background-color--dark);
  }
  
  /* Service Container */
  .service-container {
    display: flex;
    background: var( --background-color--dark);
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 5px;
  }
  
  /* Service Card - System Integration */
  .service-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  }
  
  .service-card-icon {
    flex-shrink: 0;
    margin-right: 20px;
    width: 150px;
  }
  
  .service-card-icon img {
    width: 100px;
    color: rgb(0, 0, 0);
  }
  
  /* Textual Content */
  .service-card-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--color-dark);
  }
  
  .service-card-content p {
    margin: 0;
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.6;
  }

  .service-card li {
    margin-right: 10px;
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.6;
  }