.header {
    margin: 15px;
    position: fixed;
    top: 0;
    width: calc(100% - 30px); 
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(56, 50, 50, 0.1);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 15px; 
}

/* Background */
/* .services-hero {
  background-color: #0d0c0c;
  padding: 5px 20px;
   margin-top: 120px;
  text-align: center;
    border-radius: 15px; 

} */

/* // Background ke upar ext */
.services-hero .hero-content h1 {
  font-size: clamp(4rem, 7vw, 3rem);
  font-weight: bold;         
  color: 	#333333;   
  text-align: center;  
    padding: 5px 20px;
     margin-top: 120px;                    
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Size of Card  */
.service-content {
  padding: 2rem;
}

/* Space Between Super Duplex And their Feature */
.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.service-content ul {
  list-style: none;
}

.service-content ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-content ul li i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

/* Small Mobile Phones (320px - 480px) */
@media screen and (max-width: 480px) {
    .services-hero {
        /* padding: 60px 15px; */
        /* margin-top: 10px; */
    }

    .services-hero .hero-content h1 {
        font-size: clamp(2.4rem, 6.4vw, 3.4rem);
    }

    .services-grid {
        padding: 2rem 15px;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .service-content ul li {
        font-size: 0.9rem;
    }
}

/* Large Mobile Phones (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .services-hero {
        padding: 70px 20px;
        margin-top: 70px;
    }

    .services-hero .hero-content h1 {
        font-size: clamp(4rem, 10vw, 5rem);
    }

    .services-grid {
        padding: 3rem 20px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content h3 {
        margin-bottom: 3rem;
        font-size: 1.8rem;
    }

    .service-content ul li {
        font-size: 1rem;
    }
}

/* Tablets (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services-hero {
        padding: 100px 30px;
    }

    .services-hero .hero-content h1 {
        font-size: clamp(5rem, 11vw, 6rem);
    }

    .services-grid {
        padding: 4rem 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        height: 220px;
    }
}

/* Small Laptops (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .services-grid {
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: repeat(3, 1fr);
    }

    .service-image {
        height: 240px;
    }
}

/* Large Laptops and Desktops (1367px and above) */
@media screen and (min-width: 1367px) {
    .services-grid {
        max-width: 1400px;
        margin: 0 auto;
        grid-template-columns: repeat(4, 1fr);
    }

    .service-image {
        height: 250px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }

    .service-card:active {
        transform: scale(0.98);
    }
} 