    /* General Reset & Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0a0f1a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glassmorphism Card */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* 🔷 Hero Section with Background */
.hero-web {
  position: relative;
  height: 25vh;
  background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1172&auto=format&fit=crop&ixlib=rb-4.1.0') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 26, 0.6);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* 💡 Why Choose Us */
.why-us {
  padding: 60px 20px;
  text-align: center;
}
.why-us h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-box h3 {
  color: #90caf9;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 0.95rem;
}

/* 🖼️ Portfolio Section */
.portfolio-section {
  padding: 60px 20px;
  text-align: center;
}
.portfolio-section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.portfolio-item img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item h4 {
  margin-top: 10px;
  color: #bbdefb;
}

/* 📞 Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: white;
  text-align: center;
  padding: 70px 20px;
}
.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.contact-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

/* 📱 Responsive Typography */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .why-us h2,
  .portfolio-section h2,
  .contact-cta h2 {
    font-size: 1.5rem;
  }
}
nav a, nav a:visited {
  color: #000 !important; /* black text */
}
.navbar {
  background: white;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.feature-icon {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 12px;
  display: inline-block;
}