@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f8f9fb;
  color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero */
.service-hero {
  background: linear-gradient(to right, #0a1a2a, #1e90ff);
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.service-hero p {
  color: #ccc;
  text-align: center;
}

/* Content */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 60px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.25);
}

.card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.card h3 {
  color: #1e90ff;
}

.card p {
  color: #333;
  font-size: 0.95rem;
}

.tablet-service-section{
  padding:60px 20px;
  background:#f8f9fb;
}

.tablet-service-container{
  max-width:1200px;
  margin:auto;
}

.tablet-service-intro{
  text-align:center;
  max-width:750px;
  margin:0 auto 50px;
  line-height:1.6;
  color:#555;
}

.tablet-service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.tablet-service-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 18px rgba(0,0,0,0.08);
  transition:0.3s;
}

.tablet-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,119,255,0.2);
}

.tablet-service-card img{
  width:100%;
  max-width:120px;
  height:auto;
  margin-bottom:15px;
}

.tablet-service-card h3{
  color:#0077ff;
  margin-bottom:10px;
  font-size:18px;
}

.tablet-service-card p{
  font-size:14px;
  color:#333;
  line-height:1.5;
}

/* Tablet */
@media (max-width:992px){
  .tablet-service-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media (max-width:576px){
  .tablet-service-grid{
    grid-template-columns:1fr;
  }

  .tablet-service-section{
    padding:40px 15px;
  }
}

@media (max-width: 768px) {
  .service-hero h1 { font-size: 2rem; }

  .tablet-service-intro{
    text-align: justify;
  }
}
