* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  body { background: #fff; color: #111; line-height: 1.6; }
  header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 10%; border-bottom: 1px solid #eee; flex-wrap: wrap;
  }
  header nav { display: flex; gap: 15px; flex-wrap: wrap; }
  header nav a {
    text-decoration: none; color: #333; font-size: 0.95rem;
  }
  header .contact-btn {
    padding: 10px 20px; border: 1px solid #000; border-radius: 25px;
    text-decoration: none; color: #000; transition: background 0.3s; margin-top: 10px;
  }
  header .contact-btn:hover { background: #000; color: #fff; }
  .hero {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 60px 10%; gap: 60px;
  }
  .hero-text h1 { font-size: 2.5rem; margin-bottom: 20px; }
  .hero-text p { font-size: 1rem; color: #666; margin-bottom: 30px; }
  .hero-text .contact-project {
    display: inline-block; padding: 12px 24px; background: #c7ebf6;
    border-radius: 25px; text-decoration: none; color: #000;
  }
  .hero-text .contact-project:hover { background: #8ad2ed; }
  .hero-image img {
    width: 100%; max-width: 400px; border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); display: block; margin: 0 auto;
  }
  
  /* Products Dropdown */
  .dropdown { position: relative; display: inline-block; }
  .dropdown-content {
    display: none; position: absolute; background-color: #f9f9f9;
    min-width: 160px; box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content a {
    color: black; padding: 12px 16px; text-decoration: none; display: block;
  }
  .dropdown-content a:hover { background-color: #f1f1f1; }
  .dropdown:hover .dropdown-content { display: block; }
  
  .products { padding: 60px 10%; background: #f9f9f9; }
  .products-container h2 {
    text-align: center; font-size: 2.2rem; margin-bottom: 40px;
  }
  .product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px;
  }
  .product-card {
    background: #fff; border-radius: 10px; padding: 20px; text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
  }
  .product-card img {
    width: 80px; height: 80px; object-fit: cover; margin-bottom: 15px; border-radius: 10px;
  }
  .product-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
  .product-card p { font-size: 0.95rem; color: #666; }
  
  .service {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 60px 10%; gap: 70px;
  }
  .service:nth-child(even) {
    /* grid-template-columns: 1fr 1fr; direction: rtl; */
    background-color: #f1f1f1;
  }
  .service-text h1 { font-size: 2.2rem; margin-bottom: 20px; }
  .service-text p { font-size: 0.95rem; color: #666; margin-bottom: 10px; }
  .service-text .price { font-weight: bold; margin-bottom: 20px; }
  .service-image img {
    width: 100%; max-width: 400px; border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .service-text .contact-project {
    display: inline-block; padding: 12px 24px; background: #a0a0a0;
    border-radius: 25px; text-decoration: none; color: #ffffff;
  }
  .service-text .contact-project:hover { background: #000000; }
  
  .contact {
    padding: 60px 10%; background: white; text-align: center;
  }
  .contact-container h2 {
    font-size: 2.2rem; margin-bottom: 20px;
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; text-align: left;
  }
  .contact-container input,
  .contact-container textarea {
    width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px;
  }
  .contact-container button {
    background: #333; color: #fff; padding: 10px 20px; border: none; border-radius: 25px; cursor: pointer;
  }
  .contact-details {
    background: #f9f9f9; padding: 20px; border-radius: 10px;
  }
  .contact-details h3 { margin-bottom: 15px; }
  .contact-details p { margin-bottom: 10px; }

  .contact-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    color: #333;
  }  
  
  .about {
    padding: 60px 10%; background: white; text-align: center;
  }
  .about-container h2 {
    font-size: 2.2rem; margin-bottom: 20px;
  }
  .about-container p {
    font-size: 1rem; color: #555; max-width: 800px; margin: 0 auto;
  }
  
  .team {
    padding: 60px 10%; background: #f1f1f1; text-align: center;
  }
  .team-container h2 {
    font-size: 2.2rem; margin-bottom: 40px;
  }
  .team-slider { overflow: hidden; position: relative; }
  .team-slide-track {
    display: flex; width: calc(250px * 8);
    animation: scroll 40s linear infinite;
  }
  .team-slide {
    width: 250px; flex-shrink: 0; text-align: center; padding: 20px;
  }
  .team-slide img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 10px;
  }
  .team-slide h3 {
    font-size: 1.2rem; margin-bottom: 5px;
  }
  .team-slide p {
    font-size: 0.95rem; color: #666;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  footer {
    background: #333; color: #fff; text-align: center; padding: 20px 10%;
  }
  
  /* ✅ Responsive adjustments */
  @media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .service { grid-template-columns: 1fr; text-align: center; direction: ltr !important; }
  }
  @media (max-width: 768px) {
    header { flex-direction: column; align-items: flex-start; }
    .hero-text h1 { font-size: 1.8rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-slide { width: 200px; }
    .team-slide-track {
      width: calc(200px * 8);
      animation: scroll 60s linear infinite;
    }
  }
  @media (max-width: 480px) {
    .hero-text h1 { font-size: 1.5rem; }
    .hero-text p, .service-text p, .about-container p { font-size: 0.9rem; }
    .hero-text .contact-project, header .contact-btn, .service-text .contact-project {
      padding: 10px 20px; font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
  .service {
    flex-direction: column;
    text-align: center;
  }
  .service-image {
    display: none; /* if you want to hide image on mobile */
  }
}
@media (max-width: 768px) {
  .team-slider {
    overflow-x: auto; /* enables horizontal scroll */
  }
  .team-slide-track {
    display: flex;
    width: auto; /* adjusts width to content */
    animation: none; /* disable infinite scroll animation on mobile */
  }
  .team-slide {
    flex: 0 0 auto; /* prevent shrinking, auto width */
    width: 200px; /* fixed width for each card */
    margin-right: 15px; /* spacing between cards */
  }
}
/* ✅ Hamburger Menu Styles */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* ✅ Responsive Navbar */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .logo{
    align-items: end;
  }

  .menu-toggle {
    display: block; /* show hamburger on mobile */
  }

  nav {
    display: none !important; /* ensure nav is hidden by default */
    flex-direction: column;
    width: 100%;
  }

  nav.show {
    display: flex !important; /* show when toggled */
  }

  nav a {
    padding: 10px 0;
  }

  header .contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
