:root {
    --dc-primary: rgb(0, 205, 85);
    --dc-light-primary: rgb(66, 250, 155);
    --dc-light-secondary: rgb(219, 240, 255);
    --dc-medium-light-secondary: #dee6f5;
    --dc-extra-light-secondary: #eff5ff;
    --dc-dark-secondary: #181f50;
  }


/* Section Area */

.dc-primary-btn {
    background-color: var(--dc-primary) !important;
    color: white !important;
  }
  
  .dc-primary-btn:hover {
    background-color: var(--dc-primary) !important;
    color: white !important;
  }
  
  .highlight-text {
    color: var(--dc-primary);
  }
  
  .highlight-text-with-bg {
    background-color: var(--dc-primary);
  }
  
  .bg-light-secondary {
    background-color: var(--dc-light-secondary) !important;
  }
  
  .hero-container {
    background: var(--dc-primary);
    background: linear-gradient(333deg, var(--dc-light-primary) 0%, var(--dc-primary) 100%);
  }
  
  .hero-bg-image {
    left: -100px;
    top: 0;
    scale: 1.3;
    opacity: 0.1;
    z-index: 1;
  }
  
  
  .contact-bg-image {
    right: -100px;
    top: 0;
    scale: 1.3;
    opacity: 0.07;
    filter: grayscale(0.5);
    z-index: 1;
  }
  
  .service-catalog-card {
    padding: 3rem 2rem;
    background-color: var(--dc-light-secondary) !important;
    transition: background-color 0.3s ease;
  }
  
  .service-catalog-card:hover {
    background: rgb(11, 0, 205);
    background: linear-gradient(333deg, rgba(11, 0, 205, 1) 0%, rgba(66, 250, 115, 1) 100%);
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .service-catalog-card i {
    font-size: 3rem;
    color: var(--dc-primary);
    transition: color 0.3s ease;
  }
  
  .service-catalog-card:hover i {
    color: white;
    transition: color 0.3s ease;
  }
  
  .img-fluid {
    position: relative;
  }
  
  .img-fluid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the color and opacity as needed */
  }
  
  .feature-card {
    padding: 2rem !important;
    background-color: var(--dc-extra-light-secondary);
    transition: scale 0.3s ease;
  }
  
  .feature-card:hover {
    scale: 1.1;
    transition: scale 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--dc-medium-light-secondary);
    color: var(--dc-dark-secondary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: var(--dc-primary);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  #scrollToTopBtn:hover {
    background-color: var(--dc-primary);
  }
  
  
  
  @media only screen and (max-width: 600px) {
  
    .hero-bg-image {
      display: none;
      opacity: 0;
    }
  
    .service-catalog-card {
      padding: 2rem 1rem;
    }
  
  }