.services-cards .container h2 {
    color: rgb(8, 34, 82);
    font-size: 55px;
    font-weight: 600;
    margin: 4rem auto;
    text-align: center;
}

.link-hover {
    color: rgb(0, 0, 0);
}
.ul-container {
    width: 50%;
}
.nav-container {
    width: 93vw;
    margin: 0 auto;
}
.nav-buttons {
    margin: 0;
    padding: 0;
    width: fit-content;
}
.nav-container {
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.services-section {
    padding: 60px 20%;
    text-align: center;
}

.services-section h2 {
    color: rgb(8, 34, 82);
    font-size: 45px;
    font-weight: 600;
    margin: 4rem auto;
    text-align: center;
}

/* 👇 Grid ko update kiya hai */
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Laptop pe 2 cards per row */
    gap: 25px;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr; /* Mobile/Tablet pe 1 card per row */
    }
    .services-section {
      padding: 60px 6%;
      text-align: center;
    }
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


.gallery-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.gallery-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* First image full width */
.gallery-item.large {
  grid-column: span 3;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}
