/* Global Resets & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
    border-radius: 6px;
  }
  
  h1, h2, h3 {
    font-weight: 700;
  }
  
  /* Utility Classes */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
  }
  
  .btn-primary {
    background-color: #0079a1;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #005e78;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: relative;
  }
  
  .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0079a1;
    text-decoration: none;
  }
  
  .logo span {
    color: #ff9f43; /* accent color */
  }
  
  .menu a {
    margin-left: 1rem;
    text-decoration: none;
    font-weight: 500;
    color: #333;
  }
  
  .menu a:hover {
    color: #0079a1;
  }
  
  .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #333;
    transition: 0.3s;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 70vh;
    background: url("https://via.placeholder.com/1600x800") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }
  
  .hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  /* Services Section */
  .services-section {
    padding: 3rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .section-intro {
    color: #777;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-item {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  
  .service-item h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
  
  /* About Section */
  .about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-content {
    flex: 1 1 400px;
  }
  
  .about-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  .about-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .about-content ul {
    margin-top: 1rem;
    list-style: inside disc;
  }
  
  .about-image {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 8px;
  }
  
  /* Reviews Section */
  .reviews-section {
    padding: 3rem 2rem;
    background-color: #fff;
    text-align: center;
  }
  
  .reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
  }
  
  .review-card {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    text-align: left;
  }
  
  .review-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 3rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
  }
  
  .form-group {
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font: inherit;
  }
  
  /* Footer */
  footer {
    background-color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.1);
  }
  
  footer p {
    color: #666;
  }
  
  /* Responsive - Mobile Menu */
  @media screen and (max-width: 768px) {
    .menu {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .navbar.open .menu {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 2rem;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      border-radius: 6px;
      padding: 1rem;
    }
    .navbar.open .menu a {
      margin: 0.5rem 0;
    }
  }
  