* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1c1e26;
    color: white;
  }
  
  
 
  
  
  .services {
    padding: 60px 40px;
    background-color: #282a36;
    text-align: center;
  }
  
  .services h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }
  
  .service-card {
    background-color: #1c1e26;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .service-card h3 {
    font-size: 20px;
    color: #ffaf5f;
    margin: 15px 0 10px;
    padding: 0 20px;
    text-align: left;
  }
  
  .service-card p {
    font-size: 16px;
    color: #ccc;
    padding: 0 20px 20px;
    text-align: left;
    line-height: 1.6;
  }
  
  .explore-button-container {
    margin-top: 40px;
    text-align: center;
  }
  
  .explore-services-btn {
    display: inline-block;
    background-color: #ffaf5f;
    color: #1c1e26;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .explore-services-btn:hover {
    background-color: #ffa13f;
  }
  
  /* === Responsive Styles for Services Section === */

@media (max-width: 1024px) {
  .services {
    padding: 50px 30px;
  }

  .service-card img {
    height: 200px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 40px 20px;
  }

  .services h2 {
    font-size: 28px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card img {
    height: 180px;
  }

  .service-card h3 {
    font-size: 17px;
    padding: 0 16px;
  }

  .service-card p {
    font-size: 14px;
    padding: 0 16px 16px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 30px 15px;
  }

  .services h2 {
    font-size: 24px;
  }

  .explore-services-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .service-card img {
    height: 160px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

  