.projects-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px;
  padding-top: 40px;
  justify-content: center;
}

.project-card {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  padding: 20px;
  color: black;
  box-shadow: -5px -5px 5px rgb(57 165 255), 1px 1px 10px red;
  gap: 16px;
  width: 45%;
  box-sizing: border-box;
}

.project-image img {
  width: 250px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #aaa;
}

.project-details {
  flex: 1;
}

@media (max-width: 1024px) {
  .project-card {
    width: calc(50% - 24px);
  }
}

@media (max-width: 600px) {
  .project-card {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-image img {
    width: 100%;
    height: auto;
  }
}

 .Services_sec {
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .Services_sec h2 {
      text-align: center;
      font-size: 2.5rem;
      color: #00e1ff;
      margin-bottom: 40px;
    }

    .scrolling-wrapper {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding-bottom: 20px;
    }

    .scrolling-wrapper::-webkit-scrollbar {
      display: none;
    }

    .ServiceCard {
      flex: 0 0 300px;
      scroll-snap-align: center;
      padding: 20px;
      margin: 10px;
      color: white;
      background: linear-gradient(rgb(57 165 255) 15%, rgb(209 11 11) 100%);
      border-radius: 16px;
      box-shadow: 5px 5px 10px #2d2d2d;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ServiceCard:hover {
      transform: translateY(-5px) scale(1.03);
      box-shadow: 0 0 20px rgba(0, 225, 255, 0.4);
    }

    .ServiceCard img {
      width: 100%;
      height: 150px;
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .ServiceCard h4 {
      font-size: 24px;
      font-weight: bold;
      margin: 10px 0;
      text-align: center;
      color: #fff;
    }

    .ServiceCard ul {
      margin: 0 20px;
      padding-left: 16px;
    }

    .ServiceCard li {
      font-size: 16px;
      color: white;
      margin-bottom: 6px;
    }

    .read-more {
      display: flex;
      justify-content: center;
      margin-top: 10px;
      padding: 8px 14px;
      background: rgb(57 165 255);
      color: #111;
      border-radius: 20px;
      font-size: 13px;
      font-weight: bold;
      transition: background 0.3s;
      text-decoration: none;
      text-align: center;
    }

    .read-more:hover {
      background: #eee;
    }

    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(17, 94, 236, 0.2);
      border: none;
      color: rgb(57 165 255);
      font-size: 30px;
      cursor: pointer;
      z-index: 10;
      padding: 10px;
      border-radius: 50%;
      transition: background 0.3s;
    }

    .scroll-btn:hover {
      background-color: rgba(0, 102, 255, 0.4);
    }

    .scroll-left {
      left: 0;
    }

    .scroll-right {
      right: 0;
    }

    @media screen and (max-width: 768px) {
      .ServiceCard {
        flex: 0 0 85%;
      }
      .scroll-btn {
        display: none;
      }
    }


    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 1rem;
    }
    .ServiceCard {
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
    }
    .ServiceCard img {
      max-width: 100%;
      border-radius: 8px;
    }
    .ServiceCard h4 {
      margin: 1rem 0 0.5rem;
      font-weight: 500;
    }
    .ServiceCard ul {
      margin: 0;
      padding-left: 1.2rem;
      color: #555;
    }
    .ServiceCard ul li {
      margin-bottom: 0.5rem;
    }
    /* Pushes button to bottom */
    .btn-container {
      margin-top: auto;
      display: flex;
      justify-content: center;
      padding-top: 1rem;
    }
    .read-more {
      padding: 0.8rem 1.2rem;
      background: #0073e6;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s;
    }
    .read-more:hover {
      background: #0058b1;
    }
