:root {
    --primary-color: #5a3b1f;
    --background-color: #ffffff;
    --text-color: #333;
    --accent-color: #d7b899;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  header {
    width: 100%;
    background-color: #fff;
    color: #5e3c1b;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5e3c1b;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav a {
    text-decoration: none;
    color: #5e3c1b;
    font-weight: bold;
    transition: color 0.2s ease;
  }
  
  nav a:hover {
    color: #3e2710;
  }
  
  /* header.scrolled {
    background-color: #fff;
    padding: 10px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  } */
  
  header h1 {
    float: left;
    margin-left: 20px;
  }
  
  nav ul {
    list-style: none;
    float: right;
    margin-right: 20px;
  }
  
  nav ul li {
    display: inline-block;
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-align: center;
    padding: 60px 20px;
  }
  .hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* overlay for readability */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  .btn {
    background-color: #5e3c1b;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #3e2710;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    color: #5e3c1b;
  }
  
  .service-card {
    flex: 1 1 250px;
    background: #f8f3ef;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    text-align: center;
  }
  .card-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #5e3c1b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .card-btn:hover {
    background-color: #3e2710;
  }
  
  .service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
  }
  
  input, textarea {
    padding: 10px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
  }
  
  button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  footer {
    background-color: #5e3c1b;
    color: #fff;
    text-align: center;
    padding: 40px 20px 20px;
  }
  
  .footer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .footer-content p {
    margin: 0 0 20px;
    font-size: 1rem;
  }
  
  .socials a {
    color: #fff;
    font-size: 22px;
    margin: 0 12px;
    transition: color 0.3s ease;
  }
  
  .socials a:hover {
    color: #f4d6b0;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #e0cfc2;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      float: none;
      text-align: center;
      margin: 10px 0 0;
    }
  
    nav ul li {
      display: block;
      margin: 10px 0;
    }
  
    header h1 {
      float: none;
      text-align: center;
    }
  }
  form label {
    margin-top: 10px;
    font-weight: bold;
  }
  
  form select {
    padding: 10px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
  }
  
  .testimonials blockquote {
    background: #f9f5f2;
    border-left: 5px solid var(--accent-color);
    margin: 20px 0;
    padding: 15px 20px;
    font-style: italic;
    border-radius: 5px;
  }
  
  .testimonials cite {
    display: block;
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
    color: var(--primary-color);
  }
  
  .map-container iframe {
    width: 100%;
    border-radius: 8px;
  }
  /* image */
  .section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: #6c6868;
    position: relative;
  }
  
  .section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
  }
  
  .section > * {
    position: relative;
    z-index: 2;
  }
  .floating-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background-color: #5e3c1b;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .floating-btn:hover {
    background-color: #3e2710;
    transform: scale(1.05);
  }
  /* Existing nav styles here (as given before), add below this */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #5e3c1b;
    border-radius: 2px;
    transition: 0.3s;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    nav ul.nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      background: #fff;
      flex-direction: column;
      align-items: center;
      display: none;
      padding: 20px 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
  
    nav ul.nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5e3c1b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 40px;  /* Adjust logo size as needed */
    height: auto;   /* Maintain aspect ratio */
    margin-right: 5px;  /* Space between logo and text */
    border-radius: 50px;
}
