.algo-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    will-change: transform, box-shadow;
    padding: 20px;
}
.algo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; 
    justify-content: center;
    align-items: center;
    padding: 40px 20px; 
}
.algo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.algo-card .card-body {
    padding: 2rem;
    text-align: center;
}
.algo-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
    display: inline-block;
}
.algo-card h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
}
.algo-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}
.algo-card.aos-init {
    opacity: 0;
    transform: translateY(20px);
}
.algo-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.tikapis-container {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tikapi-title {
    text-align: center;
    margin-bottom: 40px;
}
.tikapi-title h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.tikapi-title p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}
.tikapi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
}
.tikapi-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    height: auto;
    min-width: 250px;
}
.tikapi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    border-color: #ccc;
}
.tikapi-card h3 {
    color: #007bff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}
.tikapi-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.tikapi-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.2s;
}
.tikapi-card ul li:last-child {
    border-bottom: none;
}
.tikapi-card ul li:hover {
    color: #007bff;
    cursor: pointer;
}

.hero-section {
    padding: 120px 0;
    text-align: center;
    color: #fff;
  }
  .hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
  }
  .hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #eee;
  }
  .btn-cta {
    padding: 14px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }
  .btn-cta:hover {
    transform: translateY(-2px);
  }
  .additional-services {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  .additional-services .container {
    max-width: 1200px;
  }
  .additional-services .text-center h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #343a40;
  }
  .additional-services .text-center p {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
  }
  .additional-services .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease-in-out;
  }
  .additional-services .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .additional-services .card-body {
    padding: 30px;
    text-align: center;
  }
  .additional-services .card-body i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
  }
  .additional-services .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #343a40;
  }
  .additional-services .card-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
  }