    body {
      font-family: 'Roboto', sans-serif;
      scroll-behavior: smooth;
    }
    .hero {
      background: linear-gradient(to right, #17B169, #0d5c4b);
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
      font-weight: 700;
    }
    .services .card {
      border: none;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .services .card:hover {
      transform: translateY(-5px);
    }
    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #17B169;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 50%;
      display: none;
      z-index: 999;
    }
    footer {
       background: linear-gradient(135deg, #17B169 0%, #0c8b6c 100%) !important;
      color: #fff;
      padding: 20px 0;
    }


/* Green gradient navbar */

.navbar-brand img {
  max-height: 50px;
  width: auto;
}

.green-gradient {
  background: linear-gradient(135deg,#0c8b6c 100%, #17B169 0% ) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.green-gradient .nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.green-gradient .nav-link:hover,
.green-gradient .nav-link.active {
  color: #fffae6 !important;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.green-gradient .dropdown-menu {
  background-color: #0c8b6c;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.green-gradient .dropdown-item {
  color: #fff;
  font-weight: 500;
}

.green-gradient .dropdown-item:hover {
  background-color: #17B169;
  color: #fff;
}


/* Hero Section */

.hero-section {
  background-image: url('../img/server-index.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: #fff;
}

.hero-section .lead {
  color: #e0f7ec;
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    background-position: center top;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }
}

.btn-custom {
  background-color: #17B169;
  color: #ffffff;
  border: none;
}

.btn-custom:hover {
  background-color: #f1f1f1;
  color: #17B169;
  border: none;
}

.image-card .overlay-info {
  backdrop-filter: blur(4px);
}

/* Scroll */

html {
  scroll-behavior: smooth;
}

.scroll-indicator {
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-arrow i {
  transition: opacity 0.3s;
  opacity: 0.8;
}

.scroll-arrow:hover i {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}


/* SERVICES */

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
}
.service-card:hover .icon-circle {
  transform: scale(1.1);
}



/* About us / Core */
.timeline-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: "";
  display: block;
  border-top: 4px dotted #17B169;
  width: 4rem;
  position: absolute;
  top: 1.25rem;
  left: 100%;
}

.timeline-step:not(:first-child)::before {
  content: "";
  display: block;
  border-top: 4px dotted #17B169;
  width: 4rem;
  position: absolute;
  top: 1.25rem;
  right: 100%;
}

.timeline-content {
  width: 180px;
  text-align: center;
  position: relative;
}

.timeline-content .inner-circle {
  height: 1rem;
  width: 1rem;
  background-color: #17B169;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.timeline-content .inner-circle::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #17B169;
  opacity: 0.15;
  z-index: -1;
}


/* Product Card Hover Effect */
/* Fancy Card Wrapper */

.fancy-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.fancy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.fancy-card .btn {
  transition: all 0.3s ease;
}

.fancy-card .btn:hover {
  background-color: #138d5c;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* On hover: elevate and glow */
.card.hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.card-img-top {
  height: 180px;
  object-fit: cover;
}









