  body {
    font-family: 'Roboto', sans-serif;
  }
  header h1 {
    font-size: 2rem;
    font-weight: bold;
  }

  .carousel-content .image {
    width: 100%;
    border-radius: 8px;
    transition: 0.5s;
  }
  .carousel-content:hover .image {
    opacity: 0.5;
  }
  .middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: 0.5s;
  }
  .carousel-content:hover .middle {
    opacity: 1;
  }
  .text {
    background-color: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 6px;
  }

  .card, .card-hover, .service-card {
    transition: all 0.3s ease;
  }

  .card:hover, .card-hover:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
  }

  .card-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .service-box {
    border-radius: 10px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .service-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
  }

  .service-card .card-header {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
  }

  .service-card .card-body {
    padding: 1.2rem;
    background-color: #f8f9fa;
  }

  .service-card .card-header i {
    margin-right: 10px;
  }

  .service-header {
    padding: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
  }

  .service-header i {
    margin-right: 10px;
  }

  .service-body {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .service-card ul {
    padding-left: 1.2rem;
    list-style: none;
    margin-bottom: 1rem;
  }

  .service-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .btn-toggle-link {
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
  }

  /* Header colors */
  .header-enterprise { background-color: #198754; }
  .header-engagement { background-color: #0d6efd; }
  .header-bpm        { background-color: #ffc107; color: #212529; }
  .header-custom     { background-color: #dc3545; }
  .header-zero       { background-color: #0dcaf0; color: #000; }
  .header-strategy   { background-color: #6c757d; }
  .highlight-box {
    background-color: #fff;
    border: 2px solid #0f5132;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    color: #000;
    margin-top: 100px;
    font-size: 12pt;
    font-weight: bold;
	min-width:900px !important;
  }
  .highlight-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f5132;
    border-bottom: 2px dashed #0f5132;
    padding-bottom: 8px;
  }

  .highlight-box ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-top: 15px;
  }

  .highlight-box li {
    margin-bottom: 14px;
    font-size: 12pt;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
  }
  .highlight-box li i {
    color: #0f5132;
    margin-right: 12px;
    font-size: 1rem;
    margin-top: 4px;
  }
  .footer-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: #173A63;
    color: #fff;
  }

  .footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: #145093;
  }

  .footer-card:hover a,
  .footer-card a {
    color: #ffc107;
    text-decoration: underline;
  }

  .footer-card i {
    color: #ffc107;
  }

  .footer-card:hover i {
    color: #ffdd57;
  }

  .legal-box {
    background: #fff;
    color: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 20px;
    transition: 0.3s;
  }

  .legal-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background-color: #f9f9f9;
  }
  .legal-box:hover h6,
  .legal-box:hover p,
  .legal-box:hover i {
    color: #000;
  }
  .footer-bottom {
    background-color: #0a1a33;
    color: #fff;
    padding: 15px 0;
  }



  
  .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer; /* 🟢 Ensures the pointer icon shows on hover */
  }

  .navbar-nav .nav-link:hover {
    background-color: #28a745 !important; /* Green background */
    color: #fff !important; /* White text */
  }

  .navbar-nav .nav-link.active {
    font-weight: 700;
    color: #fff !important;
    border-bottom: 2px solid #ffc107;
  }

 

  section {
    margin-bottom: 3rem;
  }
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
  }



  .contact-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
  }

  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .contact-card .card-header {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-card .card-body {
    padding: 1.2rem;
    background-color: #f8f9fa;
    text-align: center;
  }

  .contact-card .card-header i {
    margin-right: 10px;
  }

  /* Color themes */
  .header-address  { background-color: #0d6efd; } /* Blue */
  .header-phone    { background-color: #198754; } /* Green */
  .header-email    { background-color: #dc3545; } /* Red */

  .contact-form .form-control {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
  }

  .contact-form textarea.form-control {
    resize: none;
  }

  .contact-form .btn {
    margin-top: 1rem;
  }




.carousel {
  width: 100%;
  max-height: 500px; /* adjust as needed */
  overflow: hidden;
  position: relative;
}

.carousel-inner {
  width: 100%;
  height: 100%;
}

.carousel-item {
  height: 100%;
}

.carousel-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}



.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.card-title {
  font-weight: 600;
  font-size: 1.2rem;
}
.card-text {
  font-size: 1.05rem;
  min-height: 80px;
}
.card img {
  margin-top: -10px;
  margin-bottom: 10px;
}



<!-- Start of AdoronSoft Promo Section -->
<!-- Start of AdoronSoft Promo Section -->

  .adoron-wrapper {
    margin-top: 60px;
    height: 90vh;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, #004aad, #00b4db);
    color: #fff;
    font-family: 'Arial', Arial;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  }

  .adoron-promo-box {
    width: 1200px;
    height: 100vh;
    padding: 40px;
    padding-top: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
  }

  .adoron-logo {
    max-width: 160px;
    margin: 0 auto 20px auto;
  }

  .adoron-promo-box h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffde59;
  }

  .adoron-promo-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
  }

  .adoron-promo-box p,
  .adoron-promo-box li {
    font-size: 18px;
    line-height: 1.6;
  }

  .adoron-promo-box a {
    color: #ffde59;
    text-decoration: none;
  }

  .adoron-flex {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    justify-content: center;
    text-align: left;
  }

  .adoron-column {
    width: 50%;
  }

  .adoron-promo-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
  }

  .adoron-promo-box ul li::before {
    content: "✅ ";
    color: #fff;
  }

  .adoron-btn {
    margin-top: 25px;
    padding: 12px 28px;
    font-size: 18px;
    background-color: #ffde59;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .adoron-btn:hover {
    background-color: #fff200;
    color: #000;
  }

  @media screen and (max-width: 1100px) {
    .adoron-wrapper,
    .adoron-promo-box {
      width: 100vw;
      height: auto;
      border-radius: 15px;
    }

    .adoron-flex {
      flex-direction: column;
      text-align: center;
    }

    .adoron-column {
      width: 100%;
    }

    .adoron-promo-box h1 {
      font-size: 32px;
    }

    .adoron-promo-box h2 {
      font-size: 24px;
    }

    .adoron-promo-box p,
    .adoron-promo-box li {
      font-size: 24px;
    }

    .adoron-btn {
      font-size: 18px;
      padding: 10px 24px;
    }
  }
