

.container {
  text-align: center;
  padding: 40px 20px;
}

h2 {
  font-size: 2.5em;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}



.read-more {
  margin-top: 40px;
}

.read-more button {
  background-color: #f47421;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}


.read-more button:hover {
  background-color: #d65f1c;
}

/* Add this at the bottom of styles.css */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3em;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

/* ========== Portfolio Section Styling ========== */
.portfolio-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 1rem;
}

/* For each image box */
.service-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: scale(1.02);
}

.service-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Breakpoints */
@media (min-width: 600px) {
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

