*, *::before, *::after {
    box-sizing: border-box;
  }
  body, html {
    margin: 0; padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
  }
  a {
    color: #a78159;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  a:hover, a:focus {
    color: #d49e0a;
    outline: none;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.6em;
    color: #222;
  }
  h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  h2 {
    font-size: 2.25rem;
    font-weight: 700;
  }
  p {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
  }
  button {
    cursor: pointer;
  }

  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #222;
  }
  .navbar-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .navbar-nav .btn-primary{
    padding: 6px 25px;
    margin: 0px;
    font-size: 14px;
  }
  .nav-link {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.25rem 0;
    position: relative;
  }
  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    color: #a78159;
  }

  /* Mobile Navbar */
  @media (max-width: 768px) {
    .navbar-toggler {
      display: block;
    }
    .navbar-nav {
      position: fixed;
      top: 0px;
      left: -100%;
      width: 70%;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      padding: 2rem 1.5rem;
      box-shadow: 2px 0 12px rgba(0,0,0,0.1);
      gap: 1.5rem;
      transition: left 0.3s ease;
      overflow-y: auto;
    }
    .navbar-nav.show {
      left: 0;
    }
    .features .next{
      right: 10px !important;
      color: #fff;
    }
    .features .prev{
      left: 10px !important;
      color: #fff;
    }
  }

  /* Hero */
  .hero {
    height: 90vh;
    background: url('../img/hero.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #00000045;
    z-index: 0;
  }
  .hero .container {
    position: relative;
    z-index: 1;
    max-width: 650px;
  }
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    color: #fff;
  }

  /* Buttons with hover scale and shadow */
  .btn {
    display: inline-block;
    font-weight: 700;
    border-radius: 30px;
    padding: 0.75rem 2.25rem;
    font-size: 1.1rem;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease,
      transform 0.25s ease, box-shadow 0.25s ease;
    margin: 0 0.5rem 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    user-select: none;
  }
  .btn:hover,
  .btn:focus {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(244, 180, 26, 0.5);
    outline: none;
  }
  .btn-primary {
    background-color: #a78159;
    color: #fff;
  }
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: #d49e0a;
    color: #fff;
  }
  .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }
  .btn-outline:hover,
  .btn-outline:focus {
    background-color: #fff;
    color: #222;
  }

  /* Features with slider */
  .features {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1rem;
  }

  .features-slider {
    display: flex;
    gap: 1.5rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .feature-card {
    scroll-snap-align: start;
    flex: 0 0 320px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    will-change: transform;
  }
  .feature-card:hover,
  .feature-card:focus-within {
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
    transform: translateY(-6px);
    outline: none;
  }
  .feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: #222;
  }
  .feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
  }

  .slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #a78159;
    border: none;
    border-radius: 50%;
    color: #222;
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
    z-index: 10;
  }
  .slider-btn:hover,
  .slider-btn:focus {
    background-color: #d49e0a;
    outline: none;
  }

  .slider-btn.prev {
    left: -20px;
  }

  .slider-btn.next {
    right: -20px;
  }

  /* Show slider buttons on mobile */
  @media (max-width: 768px) {
    .features-slider {
      overflow-x: auto;
    }
    .slider-btn {
      display: block;
    }
  }

  /* On wider screens, show cards normally without slider */
  @media (min-width: 769px) {
    .features-slider {
      display: flex;
      overflow: visible;
      scroll-snap-type: none;
    }
    .feature-card {
      flex: 1 1 300px;
      scroll-snap-align: none;
    }
    .slider-btn {
      display: none;
    }
  }

  /* About Section */
  .about {
    max-width: 1100px;
    margin: 5rem auto;
    display: flex;
    gap: 3rem;
    padding: 0 1rem;
    align-items: center;
  }
  .about-text {
    flex: 1;
  }
  .about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }
  .about-text p {
    font-size: 1.1rem;
    color: #555;
    max-width: 550px;
  }
  .about-img {
    flex: 1;
  }
  .about-img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-height: 400px;
  }

  @media (max-width: 900px) {
    .about {
      flex-direction: column;
      text-align: center;
    }
    .about-text, .about-img {
      max-width: 100%;
    }
    .about-img img {
      max-height: 350px;
    }
  }

  /* Contact CTA */
  .contact-cta {
    background: #a78159;
    color: #222;
    padding: 4rem 1rem;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 5rem auto;
    box-shadow: 0 10px 30px #a7815866;
  }
  .contact-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #f9f9f9;
  }
  .contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e0dede;
  }
  .contact-cta .btn-dark {
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  }
  .contact-cta .btn-dark:hover,
  .contact-cta .btn-dark:focus {
    background-color: #111;
    color: #d49e0a;
    outline: none;
  }
  .logo{
    width: 65px;
  }

  /* Footer */
  .footer {
    background: #525252;
    color: #aaa;
    padding: 3rem 1rem;
    font-size: 0.9rem;
  }
  .footer .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo h4 {
    color: #a78159;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
  }
  .footer-logo p {
    margin: 0;
        color: #ffffffb5;
  }
  .footer ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
  }
  .footer ul li a {
    color: #aaa;
    text-decoration: none;
  }
  .footer ul li a:hover,
  .footer ul li a:focus {
    color: #a78159;
    outline: none;
  }
  .social-icons a {
    color: #aaa;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.25s ease;
  }
  .social-icons a:hover,
  .social-icons a:focus {
    color: #a78159;
    outline: none;
  }

  /* Scroll Reveal Animations */
  .fade-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .fade-slide-up--visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Modal background */
    .modal {
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
    }

    /* Modal content */
    .modal-content {
      background-color: #fff;
      padding: 25px 30px;
      border-radius: 8px;
      max-width: 800px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      animation: fadeIn 0.3s ease-out;
      font-family: Arial, sans-serif;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .modal h2 {
      margin-top: 0;
      font-size: 1.4rem;
    }

    .modal p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 20px;
    }

    .modal-footer {
      text-align: right;
      margin-top: 20px;
    }

    .modal button {
      padding: 8px 16px;
      font-size: 16px;
      border: none;
      border-radius: 4px;
      background-color: #28a745;
      color: white;
      cursor: pointer;
    }

    .modal button:hover {
      background-color: #218838;
    }

    /* Hide modal */
    .hidden {
      display: none;
    }