/* ===== Base Reset ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0a0f1a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Glass Effect Card ===== */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

/* ===== Hero Section (50% Height) ===== */
.hero-design {
  position: relative;
  background: url('https://images.unsplash.com/photo-1673794864945-03de0b644a73?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  height: 50vh; /* Reduced from 90vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  animation: slideUp 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  background: #ffffff22;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-btn:hover {
  background: #ffffff33;
  transform: scale(1.05);
}

/* ===== Services Section ===== */
.services-section {
  padding: 80px 20px;
  text-align: center;
}
.services-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #90caf9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-box i {
  color: #ffc107;
  margin-bottom: 12px;
}

/* ===== Why Choose Us Section ===== */
.why-choose {
  background: #111827;
  padding: 80px 20px;
  text-align: center;
}
.why-choose h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #7dd3fc;
}
.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
}
.why-choose ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  padding-left: 20px;
  position: relative;
}
.why-choose ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
}

/* ===== Portfolio Section ===== */
.portfolio-preview {
  padding: 80px 20px;
  text-align: center;
}
.portfolio-preview h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #86efac;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.portfolio-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.portfolio-grid img:hover {
  transform: scale(1.05);
}

/* ===== Contact CTA Section ===== */
.contact-cta {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.contact-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  margin-top: 25px;
  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);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
/* ✅ Menu Text Color Black */
nav a, 
.menu a, 
.navbar a, 
ul.menu li a {
  color: black !important;
}


.navbar {
  background: white;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}