.services-wrapper {
  
  /* height: 100vh; */
}

.services-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 50px;
    padding-bottom: 50px;
}

.column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-box-sushank {
  padding: 10px 0;
}

.service-box-sushank h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-box-sushank p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  width: 61.7%;
  margin-top: 6%;
}

/* ✅ Updated "Learn more" styling with red line on top */
.service-box-sushank a {
  color: red;
  font-size: 19px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-top: 15px;
  transition: 0.3s;
}

.service-box-sushank a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: red;
}

.service-box-sushank a:hover {
  opacity: 0.8;
}

.straight-line2 {
  margin-top: 7%;
}
/* ----------------------------------
   ✅ Responsive Media Queries 
---------------------------------- */
/* Large tablets and small desktops */
/* ----------------------------------
   ✅ Responsive Media Queries (updated)
---------------------------------- */

/* Extra large screens - 1400px and below */
@media (max-width: 1400px) {
  .services-wrapper {
    background-size: contain;
    background-position: bottom right;
  }
}

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .services-container {
    gap: 30px;
  }

  .service-box-sushank p {
    width: 75%;
  }

  .services-wrapper {
    background-size: contain;
    background-position: bottom right;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .services-wrapper {
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    height: auto;
    padding: 40px 20px;
  }

  .service-box-sushank p {
    width: 85%;
  }

  .service-box-sushank h3 {
    font-size: 22px;
  }

.service-box-sushank a {
    font-size: 18px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .column {
    width: 100%;
    max-width: 600px;
  }

  .services-wrapper {
    background-size: cover;
    background-position: center bottom;
  }

  .service-box-sushank p {
    width: 100%;
    font-size: 17px;
  }

  .service-box-sushank h3 {
    font-size: 20px;
  }

  .service-box-sushank a {
    font-size: 17px;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .services-wrapper {
    padding: 30px 15px;
    background-size: cover;
    background-position: center;
  }

  .service-box-sushank h3 {
    font-size: 18px;
  }

  .service-box-sushank p {
    font-size: 16px;
  }

  .service-box-sushank a {
    font-size: 16px;
  }

  .service-box-sushank a::before {
    width: 40px;
  }
}
