  #hero {
  background: url('https://invisiblegrillbalcony.com/wp-content/uploads/2024/11/Resize-5.jpg') no-repeat center center;
  background-size: cover;
  height: 200px;
  position: relative;
  color: #fff;
  text-align: center;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}
/* Navigation List */
#navmenu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  flex-wrap: wrap;
  text-align: center;
}

/* Navigation Links */
#navmenu ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

#navmenu ul li a:hover,
#navmenu ul li a.active {
  color: #3498db;
}

/* CTA Button */
.btn-getstarted {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;

}

.btn-getstarted:hover {
  background-color: #0097a7;
}

/* Mobile Toggle Icon */
.mobile-nav-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 10px;
  color: #111;
}

/* Mobile Menu Responsive */
@media (max-width: 991px) {
  #navmenu {
    display: none;
  }

  #navmenu.active {
    display: block;
   
    padding: 20px 0;
  }

  #navmenu ul {
    flex-direction: column;
    gap: 1rem;
  } .desktop-only {
    display: none !important;
  }

  .btn-getstarted {
    display: block;
    margin: 10px auto 0;
  }
}
.overlay-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.overlay-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.overlay-text p {
  font-size: 18px;
    color: #fff;
}
      /* Service Section */
      #service-details h2 {
        font-size: 32px;
        font-weight: 700;
        color: #222;
      }

      #service-details .overview-text {
        font-size: 18px;
        color: #555;
        line-height: 1.8;
        text-align: left;
      }
#service-details .overview-text {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  text-align: left;
  margin-top: 20px;
}


      /* Features Section */
      .features-section {
        background-color: #f4faff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      }

      .features-section .features-title {
        font-size: 28px;
        font-weight: 700;
        color: #333;
      }

      .features-section .feature-list {
        list-style: none;
        padding-left: 0;
        font-size: 18px;
        color: #333;
      }

      .features-section .feature-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }

      .features-section .feature-list li i {
        color: #28a745;
        margin-right: 10px;
        font-size: 20px;
      }
      .cta-section {
  background-color: #3498db;
  color: #fff;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.cta-section p {
  font-size: 18px;
  color: #fff;
}

.cta-section .btn {
  background-color: #fff;
  color: #3498db;
  border: none;
  font-weight: 600;
}

.cta-section .btn:hover {
  background-color: #e6e6e6;
}



/* === Portfolio Page Styles === */
.portfolio-page {
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

/* Section header */
.section-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
}

.section-header p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Portfolio grid items */
.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-item img {
  transition: transform 0.3s ease;
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item h5 {
  font-size: 1rem;
  color: #333;
  padding: 10px 15px;
  margin: 0;
}

/* Responsive spacing */
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
}
.portfolio-call {
  padding: 15px;
  text-align: center;
}

.portfolio-call .btn {
  border-radius: 25px;
  font-weight: 600;
  background-color: #3498db;
  border: none;
  transition: background-color 0.3s ease;
}

.portfolio-call .btn:hover {
  background-color: #217dbb;
}
