@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #f0f0f0;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url('assets/IMAGES\ \(1\).jpg') center center/cover no-repeat;
  background-blend-mode: overlay;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* for Safari */
}

.overlay {
  display: none;
  /* Not needed anymore */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo {
  width: 250px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-top: 10px;
  opacity: 0.8;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(135deg, #d9d9d9, #bfbfbf);
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #d9d9d9;
  color: #d9d9d9;
}

.btn-outline:hover {
  background: #d9d9d9;
  color: #000;
}

/* Services */
.services {
  padding: 80px 20px;
  background: #111;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #d9d9d9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d4af37;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, #928dab, #1f1c2c);
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* RESPONSIVE DESIGN */
/* Responsive Layout */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (min-width: 390px) and (max-width: 480px) {

  /* iPhone 12+ specific */
  .logo {
    width: 200px;
  }
}

@media (min-width: 481px) {
  .logo {
    width: 250px;
  }
}

/* 
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px 50px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin: 8px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px 15px;
  }

  .logo {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .logo {
    width: 100px;
  }
} 
*/