
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Roboto', sans-serif;
    }

    

    header {
  background-color: #4b2c1e;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

    .nav-links {
      display: flex;
      gap: 40px;
    }

    .nav-links a {
      color: #FFFFFF;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      position: relative;
      padding-bottom: 5px;
      fill: #FFFFFF;
      font-family: 'Roboto', sans-serif;
    }
    .nav-links a:hover{
      color: rgb(209, 209, 209);
    fill: rgb(209, 209, 209);
    }
    .nav-links a:active{
      color: rgb(209, 209, 209);
    fill: rgb(209, 209, 209);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      color: rgb(209, 209, 209);
    fill: rgb(209, 209, 209);
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background: white;
      
    }

    .social-icons {
      position: absolute;
      right: 40px;
      top: 20px;
      display: flex;
      gap: 20px;
    }

    .social-icons a {
      color: white;
      font-size: 16px;
      text-decoration: none;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: white;
      padding-bottom: 300px;

    }
    .hero-content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
  z-index: 1;
}
    .hero-content h1 {
      font-size: 60px;
      font-weight: 700;
      
      padding: 10px 20px;
    }

    .hero-content p {
      margin-top: 10px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .hero-content .btn {
      margin-top: 20px;
      padding: 12px 30px;
      background: transparent;
      color: white;
      border: 2px solid white;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero-content .btn:hover {
      background: white;
      color: #4b2c1e;
    }

    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      line-height: 0;
      z-index: 2;
    }

    .wave svg {
      display: block;
      width: 100%;
      height: 100px;
    }
    

    .pricing-section {
      background-color: rgba(0, 0, 0, 0.5);
      padding: 80px 20px;
      text-align: center;
      color: white;
    }

    .pricing-section h2 {
      font-size: 48px;
      margin-bottom: 10px;
    }

    .pricing-section p.subtitle {
      font-size: 18px;
      margin-bottom: 40px;
      opacity: 0.8;
    }

    .cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .card {
      background: rgba(255, 255, 255, 0.85);
      color: #3a1e17;
      padding: 30px 20px;
      border-radius: 12px;
      width: 300px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .card h3 {
      font-size: 36px;
      margin: 0;
    }

    .card span {
      font-size: 16px;
      margin-left: 8px;
      opacity: 0.7;
    }

    .divider {
      width: 100%;
      height: 1px;
      background-color: #3a1e17;
      margin: 20px 0;
    }

    .card p {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .card button {
      background-color: #6d4c41;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .card button:hover {
      background-color: #4e342e;
    }
    .why-section {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
      color: #3a1e17;
    }

    .why-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 30px;
    }

    .why-section h2 {
      text-align: center;
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 60px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .feature-box {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .feature-box img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .feature-text {
      text-align: center;
    }

    .feature-text h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #4b2e1e;
    }

    .feature-text p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background: #fff;
      color: #333;
    }

    

    .staff-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .staff-hero .content {
      position: relative;
      z-index: 1;
      max-width: 850px;
      margin-left: auto;
      text-align: right;
    }

    .staff-hero h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .staff-hero p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .staff-hero .btn {
      display: inline-block;
      padding: 10px 24px;
      font-size: 16px;
      color: white;
      border: 2px solid white;
      border-radius: 6px;
      background: transparent;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }

    .staff-hero .btn:hover {
      background: white;
      color: black;
    }

    .staff-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      gap: 40px;
      background-color: #fff;
    }

    .staff-card {
      text-align: center;
      max-width: 240px;
    }

    .staff-card img {
      width: 100%;
      border-radius: 8px;
    }

    .staff-card h4 {
      margin-top: 15px;
      font-size: 18px;
      font-weight: 700;
      color: #4b2e1e;
    }

    .staff-card p {
      margin-top: 10px;
      font-size: 14px;
      color: #666;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .staff-hero .content {
        text-align: center;
        margin: 0 auto;
      }
    }
    h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 30px;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      
    }

    .services {
      flex: 1 1 300px;
      max-width: 450px;
    }

    .services .service-item {
      border: 2px solid #333;
      border-radius: 8px;
      padding: 15px 20px;
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 500;
      background: white;
      cursor: default;
    }

    .map-info {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .map-info iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 8px;
    }

    .address {
      margin-top: 10px;
      font-size: 14px;
    }

    .hours {
      margin-top: 20px;
    }

    .hours h3 {
      font-size: 20px;
      font-weight: 700;
      color: #5a2c16;
      margin-bottom: 10px;
    }

    .hours p {
      margin: 4px 0;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      h1 {
        text-align: center;
      }
    }
    .footer {
      background-color: #5d2e1d;
      color: white;
      padding: 40px 20px 20px;
      text-align: center;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: flex-start;
      max-width: 1100px;
      margin: 0 auto 20px;
      text-align: left;
    }

    .footer-column {
      flex: 1 1 200px;
      margin: 10px;
    }

    .footer-column h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .footer-column p, .footer-column a {
      font-size: 15px;
      color: white;
      text-decoration: none;
    }

    .social-icons a {
      color: white;
      font-size: 20px;
      margin-right: 15px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #ccc;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 15px;
      font-size: 14px;
    }

    .footer-bottom a {
      color: #00c9a7;
      font-weight: bold;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        text-align: center;
      }

      .footer-column {
        margin-bottom: 20px;
      }
    }
    .hero-des{
      position:absolute;
      top:25%;
    }
    /* --- Additional Mobile Responsiveness --- */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
  }

  .social-icons {
    position: static;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 12px;
    text-align: center;
  }

  .hero-content .btn {
    font-size: 14px;
    padding: 10px 24px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-section h2 {
    font-size: 32px;
  }

  .staff-hero h2 {
    font-size: 28px;
  }

  .staff-hero p {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .hero-section {
    padding: 40px 10px;
    text-align: center;
  }

  .hero-des {
    top: 20%;
    left: 5%;
    right: 5%;
  }
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1100;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    background-color: #4b2c1e;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 10px; /* reduce spacing */
    text-align: center;
  }

  .footer-column {
    padding: 10px 0;
    margin: 0;
    width: 100%;
  }

  .footer-column h4 {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .footer-column p {
    font-size: 14px;
    line-height: 1.4;
    margin: 4px 0;
  }

  .social-icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
  }

  .footer-bottom {
    padding-top: 10px;
    font-size: 12px;
    line-height: 1.4;
  }
}


