

  /* why us section start here */
  .section-title {
    margin-bottom: 2rem;
  }

  .about-card {
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }

  .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .about-icon {
    font-size: 1.8rem;
    color: #1559a6;
    margin-right: 0.75rem;
  }

  .card-footer-gradient {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at bottom right, rgba(0, 123, 255, 0.08), transparent 70%);
    border-bottom-right-radius: 0.75rem;
  }

  /* technology section start here */

  .tech-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .tech-title h2 {
    font-weight: 700;
    color: #1e2a39;
  }

  .tech-title p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .tech-logo {
    background-color: #fff;
    border-radius: 50px;
    padding: 8px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
  }

  .tech-logo img {
    height: 25px;
    width: auto;
  }

  .tech-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .side-text {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: rotate(90deg) translateY(-50%);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    letter-spacing: 5px;
    pointer-events: none;
  }