body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #2d1b0c;
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .contact-section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff8f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #5c3b1d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #8b5c2c;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

.contact-form button {
  padding: 0.75rem;
  background-color: #e0bc76;
  color: #2d1b0c;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d1a95e;
}

.contact-form .thank-you {
  text-align: center;
  color: green;
  font-weight: bold;
  margin-top: 1rem;
}

    header, footer {
      background-color: #5c3b1d;
      color: white;
      padding: 1rem 2rem;
    }
    header .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 50px;
      margin-right: 0.75rem;
    }
    .logo-text {
      font-size: 2.625rem;
      font-family: 'Times New Roman', serif;
      color: #ffffff;
      font-style: italic;
      font-weight: bold;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    nav a.button {
      background-color: #e0bc76;
      color: #2d1b0c;
      padding: 0.5rem 1rem;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.125rem;
      transition: all 0.3s ease;
    }
    nav a.button:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    nav a.button.call-now {
      background-image: url("gallery/redMah.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
      font-weight: bold;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(125, 44, 10, 0.3);
      font-size: 1.175rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    nav a.button.call-now:hover {
      background-image: url("gallery/redMah.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1.08);
      box-shadow: 0 4px 12px rgba(125, 44, 10, 0.4);
      filter: brightness(1.1);
    }
    nav a.link {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.125rem;
      transition: color 0.3s ease;
    }
    nav a.link:hover {
      color: #e0bc76;
    }

    .hero {
      background-image: url("images/hero1.png");
      background-size: cover;
      color: white;
      text-align: center;
      padding: 4rem 2rem;
      animation: fadeInUp 1s ease;
    }
    .hero h1 {
      font-size: 2.75rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.25rem;
    }
    .hero a {
      background-color: #e0bc76;
      color: #2d1b0c;
      padding: 0.75rem 1.5rem;
      text-decoration: none;
      border-radius: 6px;
      display: inline-block;
      margin-top: 1rem;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .hero a:hover {
      transform: scale(1.05);
    }

    .section {
      padding: 2rem 1rem;
      max-width: 1000px;
      margin: auto;
      color: #8b5c2c;
      animation: fadeInUp 1.5s ease;
    }
    .section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .services {
      text-shadow: none;
    }
    .service-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }
    .service-box {
      cursor: pointer;
      background-image: url("images/hero1.png");
      border: 1px solid #ccc;
      padding: 4rem;
      width: 320px;
      min-height: 80px;
      text-align: center;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      color: #fff;
      font-weight: bold;
      font-size: 1.25rem;
      animation: fadeInUp 2s ease;
      transition: all 0.3s ease;
    }

    .cta {
      background-color: #8b5c2c;
      color: white;
      text-align: center;
      padding: 3rem 1rem;
      animation: fadeInUp 2.5s ease;
    }
    .ctaTxt {
      max-width: 800px;
      margin: 0 auto;
    }
    .cta a {
      background-color: #e0bc76;
      color: #2d1b0c;
      padding: 0.75rem 1.5rem;
      text-decoration: none;
      border-radius: 6px;
      display: inline-block;
      margin-top: 1rem;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .cta a:hover {
      transform: scale(1.05);
    }

    main {
      flex: 1;
    }
    
    footer {
      text-align: center;
      padding: 2rem 1rem;
      margin-top: auto;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icons a {
      text-decoration: none !important;
      border: none !important;
      outline: none !important;
      transition: transform 0.3s ease;
    }

    .social-icons a:link,
    .social-icons a:visited,
    .social-icons a:hover,
    .social-icons a:active {
      text-decoration: none !important;
      border: none !important;
      outline: none !important;
    }

    .social-icons a:hover {
      transform: scale(1.1);
    }



    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      padding-top: 60px;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
      animation: fadeIn 0.3s ease-out;
    }
    .modal-content {
      background-color: #fff;
      margin: auto;
      padding: 2rem;
      border-radius: 8px;
      width: 90%;
      max-width: 500px;
      color: #2d1b0c;
      text-align: left;
      position: relative;
    }
    .modal-content h2 {
      margin-top: 0;
    }
    .modal-content input,
    .modal-content textarea {
      width: 100%;
      padding: 0.75rem;
      margin: 0.5rem 0;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .modal-content button {
      background-color: #e0bc76;
      color: #2d1b0c;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .modal-content button:hover {
      transform: scale(1.05);
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 24px;
      color: #888;
      cursor: pointer;
    }
    .thank-you {
      display: none;
      margin-top: 1rem;
      color: green;
      font-weight: bold;
      text-align: center;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
      .service-boxes {
        flex-direction: column;
        align-items: center;
      }
      
      .service-box {
        width: 90%;
        max-width: 350px;
        font-size: 1.1rem;
        padding: 1.25rem;
      }
      
      .hero h1 {
        font-size: 2.25rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .section {
        padding: 1.5rem 0.75rem;
      }
      
      .logo-text {
        font-size: 2rem;
      }
      
      nav {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .nav-container {
        flex-direction: column;
        gap: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .service-box {
        width: 95%;
        font-size: 1rem;
        padding: 1rem;
      }
      
      .hero h1 {
        font-size: 1.75rem;
      }
      
      .section h2 {
        font-size: 1.5rem;
      }
    }