  * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
  .hero {
    height: 60vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== SERVICES ===== */
.services {
    width: 90%;
    margin: -80px auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #020617;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.cta h2 {
    font-size: 32px;
}

.cta p {
    margin: 10px 0 20px;
}

.cta a {
    display: inline-block;
    padding: 12px 30px;
    background: #020617;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}



.button-card {
    
    backdrop-filter: blur(10px);
    
    border-radius: 18px;

    margin-top: 30px;
    
}

.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
}






@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .services {
    width: 95%;
    margin: -60px auto 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 25px;
  }

  .cta {
    padding: 50px 20px;
  }

  .cta h2 {
    font-size: 26px;
  }

}





@media (max-width: 600px) {

  .hero {
    padding: 70px 15px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .services {
    width: 95%;
    margin: -40px auto 50px;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .cta h2 {
    font-size: 22px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta a {
    padding: 10px 22px;
    font-size: 14px;
  }

  .button-card {
    margin-top: 25px;
  }

}















