/* CSS */
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

/* Global responsive helpers */
html {
  font-size: 16px;
}

/* Fluid typography for better scaling on small/large screens */
body {
  font-size: clamp(14px, 1.4vw, 18px);
}

/* Make all images and media scale to their containers */
img, picture, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe, embed, video {
  max-width: 100%;
  height: auto;
}

/* Helper to make tables scrollable on small screens */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Ensure form controls scale */
input, textarea, select, button {
  font-size: 1rem;
}
  
  /* Header Styles */
  /* Header Styles */
.site-header {
  background: #ff6600;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.navbar > :first-child {
  order: unset;
}

.hamburger {
  order: unset;
  margin-left: unset;
}

.nav-links {
  order: unset;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-links li a.active {
  background: #fff;
  color: #ff6600;
}

.nav-links li a:hover {
  background: #ffd699;
  color: #333;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

  
  /* Hero Section Styles */
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    background: linear-gradient(to right, #ff6600, #ff944d);
    color: #fff;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content .btn-order {
    display: inline-block;
    background: #fdd835;
    color: #ff6600;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .hero-content .btn-order:hover {
    background: #fff;
    transform: scale(1.05);
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Features Section */
.features-section {
  padding: 4rem 0;
  background-color: #f8f8f8;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 2rem;
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

  
  /* Contact Section Styles */
  .contact-section {
    padding: 3rem 0;
    background: #ff944d;
    color: #fff;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  /* Button Styles */
/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #ff6600, #ff944d);
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-image-slider {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.slide-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

  

.image-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px; /* Square size */
  height: 200px;
  overflow: hidden;
  border-radius: 10px; /* Rounded corners */
  transition: transform 0.3s ease-in-out;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container:hover {
  transform: translateY(-50%) scale(1.1); /* Hover effect */
}


  
  /* Footer Styles */
  .site-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  .site-footer p {
    font-size: 0.9rem;
  }
  
  /* Mobile Responsive - Small Screens (below 900px) */
  @media (max-width: 899px) {
    .hamburger {
      display: flex;
      order: 2;
      margin-left: auto;
    }

    .navbar {
      position: relative;
      flex-direction: row;
      gap: 0;
      flex-wrap: wrap;
    }

    .logo {
      order: 1;
    }

    .nav-links {
      order: 3;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #ff6600;
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      width: 100%;
    }

    .nav-links.active {
      max-height: 300px;
    }

    .nav-links li {
      width: 100%;
    }

    .nav-links li a {
      display: block;
      padding: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 1rem;
    }

    .logo {
      font-size: 1.3rem;
    }

    .hero-section {
      flex-direction: column;
      padding: 1rem 0;
      text-align: center;
    }

    .hero-content h2 {
      font-size: 1.8rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .image-container {
      width: 150px;
      height: 150px;
      position: static;
      transform: none;
      margin: 1rem auto 0;
    }

    .image-container:hover {
      transform: scale(1.1);
    }

    .features-section h2 {
      font-size: 1.8rem;
    }

    .features {
      flex-direction: column;
      gap: 1rem;
    }

    .feature {
      min-width: 100%;
      max-width: 100%;
    }

    .feature img {
      height: 120px;
    }

    .contact-section {
      padding: 1.5rem 0;
    }

    .contact-section h2 {
      font-size: 1.5rem;
    }

    .contact-section p {
      font-size: 1rem;
    }

    .contact-form {
      width: 100%;
    }

    .btn-primary {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }
  }

  /* Desktop Responsive - Large Screens (900px and above) */
  @media (min-width: 900px) {
    .hamburger {
      display: none;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row;
      gap: 1.5rem;
    }

    .nav-links {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      position: static;
      max-height: none;
      background: none;
    }

    .nav-links li a {
      font-size: 1rem;
      padding: 0.5rem 1rem;
      border: none;
    }

    .image-container {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  