body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
  color: #111827;
}

.hero {
  background: #ffd700;
  padding: 40px; 
  text-align: center;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: #f8fafc;
}


.hero-content {
  max-width: 850px;
  margin: auto;
  animation: fadeUp 1s ease forwards;
}

.hero-content h2 {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
}



.services, .contact, .gallery {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.gallery img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 5px;
}
nav a {
  color: #222;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffd700;
}
header nav a {
  color: #fff;
}

header nav a:hover {
  color: #ffd700;
}
header.banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1e3a8a;
  padding: 18px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo-title img {
  height: 120px;
  width: auto;
  animation: fadeUp 1s ease forwards;
}


.logo-title h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;   /* dark grey */
  letter-spacing: 1px;
}
.banner nav a {
  color: #ffffff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner nav a:hover {
  color: #93c5fd;
}

.banner nav a.active {
  color: #facc15;
}

.banner nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2563eb;
   transition: width 0.3s ease;
}


.banner nav a:hover::after {
  width: 100%;
}

/* Fade In Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to hero section */
.hero-text {
  animation: fadeUp 1s ease forwards;
}


.banner nav a:hover {
  color: #2563eb;
}
.footer {
  background: #111827;
  color: #ffffff;
  padding: 40px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-content img {
  height: 55px;
}

.footer-content h3 {
  margin: 0;
  font-weight: 600;
}

.footer-content p {
  margin: 0;
  color: #9ca3af;
}
.company-name {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.company-name::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #2563eb;
  margin: 20px auto;
}
.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  background: linear-gradient(45deg, #2563eb, #1e3a8a);
  color: white;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}
.badge {
  margin-top: 20px;
  display: inline-block;
  padding: 6px 14px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-card,
.service-card,
.project-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-top: 4px solid #2563eb;
  transition: all 0.3s ease;
}

.contact-card:hover,
.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
}
/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Default nav layout (desktop) */
.nav-links {
  display: flex;
  align-items: center;
}

/* Mobile styles */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #dbe3ea;
    width: 220px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-links a {
    margin: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }
}
.menu-toggle {
  font-size: 30px;
  font-weight: bold;
}
.top-bar {
  background: #111827;
  color: #ffffff;
  font-size: 0.9rem;
}

.top-bar-content {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  text-decoration: underline;
}
.testimonials {
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 50px;
}

.testimonial-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-top: 4px solid #2563eb;
}

.testimonial-card p {
  font-style: italic;
  color: #374151;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  margin: 0;
  color: #1e3a8a;
  font-weight: 600;
}
.alt-bg {
  background: #eef2ff;
}
