/* 🔄 Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding-top: 90px;
  background: transparent;
}

/* 🧭 Service Container Section */
.services-container {
  text-align: center;
  padding: 40px 20px;
}

.services-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-container p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

/* 🧊 Service Grid Layout – 2 per row */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* 💳 Service Card Styling – Glassmorphism */
.service-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h2 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 600;
}

/* 🧷 Button Row */
.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* 🔘 Buttons Shared Style */
.btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
  font-size: 1rem;
}

/* 📖 Read More Button */
.btn.read {
  background: rgba(255, 255, 255, 0.6);
  color: #333;
}

.btn.read:hover {
  background: rgba(240, 240, 240, 0.9);
}

/* 🛒 Place Order Button */
.btn.order {
  background: #007bff;
  color: white;
}

.btn.order:hover {
  background: #0056b3;
}

/* 📱 Tablet/Mobile View */
@media (max-width: 768px) {
  .services-container {
    padding: 30px 15px;
  }

  .services-container h1 {
    font-size: 1.6rem;
  }

  .services-container p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  .service-card h2 {
    font-size: 1.3rem;
  }
}

/* 📳 Extra Small Devices */
@media (max-width: 480px) {
  .services-container h1 {
    font-size: 1.4rem;
  }

  .service-card {
    padding: 18px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px;
  }

  .service-card h2 {
    font-size: 1.2rem;
  }
}