/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Navbar *//* Basic styling for the navbar */
/* Basic styling for the navbar */

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: white;
    position: sticky;
    top: 0; /* This ensures the navbar stays at the top */
    z-index: 1000; /* Keeps the navbar on top of other content when scrolling */
}

.navbar-left a {
    font-size: 18px;
    font-weight: bold;
    color: #FF7518;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navbar-left a:hover {
    background-color: #FF6600;
}

.location {
    margin-top: 5px;
    font-size: 18px;
    color: white;
    display: flex;
    align-items: center;
}

.location i {
    margin-right: 8px;
    font-size: 18px;
    color: #FF7518;
}

.navbar-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-right ul li {
    margin-left: 20px;
}

.navbar-right ul li a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}

.navbar-right ul li a:hover {
    color: #FF7518;
}

  
  /* Mobile toggle button */
  .navbar-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
  
  /* Media Query for Small Screens (Mobile) */
  @media screen and (max-width: 768px) {
    .navbar-left a {
      font-size: 16px; /* Reduce font size on mobile */
    }
  
    .navbar-right ul {
      display: none;
      width: 100%;
      text-align: center;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
      flex-direction: column;
      z-index: 1;
    }
  
    .navbar-right ul li {
      margin: 10px 0;
    }
  
    .navbar-toggle {
      display: block; /* Show toggle button on mobile */
    }
  
    .navbar-right.active {
      display: flex; /* Show the menu when toggle is clicked */
    }
  }
  
  
  /* Hero Section */
  .hero {
    display: flex;
    align-items: center;
    padding: 40px 0;
    gap: 20px;
  }
  
  .hero-container {
    display: flex;
    gap: 20px;
  }
  
  .hero-slider {
    flex: 0 0 40%;
    max-width: 450px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  
  .hero-content {
    flex: 0 0 60%;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FF6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  /*media for slider and contewnt 
  /* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    .hero {
      flex-direction: column; /* Stack items vertically */
      padding: 20px 0; /* Reduced padding */
    }
  
    .hero-container {
      flex-direction: column; /* Stack the content and slider vertically */
    }
  
    .hero-slider {
      flex: 0 0 100%; /* Take up full width */
      max-width: 100%; /* No max-width */
      height: 300px; /* Adjust height for mobile */
    }
  
    .hero-content {
      flex: 0 0 100%; /* Full width */
      text-align: center; /* Center content */
    }
  
    .hero-content h1 {
      font-size: 1.5rem; /* Smaller heading size */
      margin-bottom: 10px;
    }
  
    .hero-content p {
      font-size: 0.9rem; /* Smaller paragraph text */
      margin-bottom: 15px;
    }
  
    .hero-content .btn {
      padding: 8px 16px; /* Smaller button */
    }
  }
  
  /* Tablets (max-width: 1024px) */
  @media (max-width: 1024px) {
    .hero {
      flex-direction: column; /* Stack items vertically */
      padding: 30px 0;
    }
  
    .hero-container {
      flex-direction: column;
    }
  
    .hero-slider {
      flex: 0 0 80%; /* Adjust width for tablets */
      max-width: 100%;
      height: 350px; /* Adjust height for tablets */
    }
  
    .hero-content {
      flex: 0 0 100%;
      text-align: center;
    }
  
    .hero-content h1 {
      font-size: 1.75rem; /* Adjust heading size */
      margin-bottom: 12px;
    }
  
    .hero-content p {
      font-size: 1rem;
      margin-bottom: 18px;
    }
  
    .hero-content .btn {
      padding: 10px 18px; /* Adjust button size */
    }
  }
  /*about us about us about us about us about us about us about */
  /* About Us Section */
/* About Us Section */
.about-us {
    background-color: #f9f9f9;
    padding: 20px 10px;
}

.about-us h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Description Style */
.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* About Items Container - Flexbox */
.about-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures it wraps in smaller screens */
}

/* Individual About Item */
.about-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
    margin-right: 30px; /* Space between items */
}

.about-item i {
    font-size: 24px;
    color: #ff6600; /* Icon color */
    margin-right: 10px; /* Space between icon and text */
}


/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    .about-us {
        padding: 15px; /* Adjust padding for mobile */
    }

    .about-us h2 {
        font-size: 24px; /* Smaller heading */
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 16px; /* Adjust description text size */
        margin-bottom: 20px;
    }

    .about-items {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align the items */
    }

    .about-item {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 15px; /* Space between items vertically */
    }

    .about-item i {
        font-size: 20px; /* Adjust icon size */
    }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .about-us h2 {
        font-size: 28px; /* Slightly smaller heading */
    }

    .about-description {
        font-size: 17px;
    }

    .about-items {
        justify-content: center; /* Center items for tablets */
    }

    .about-item {
        margin-right: 20px; /* Adjust margin for spacing */
    }
}

  /* Optional: Add a border-top for a cleaner look */
  .about-us {
    border-top: 3px solid #fff; /* White border for separation */
  }
  
  /* Products Section */
  .products-section {
    padding: 40px 0;
    background: #f9f9f9;
  }
  
  .products-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    text-align: center;
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .product-card h3 {
    margin: 10px 0 0;
  }
  /* For tablets and small screens (max-width: 768px) */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .product-card {
    padding: 10px;
  }

  .product-card h3 {
    font-size: 16px;
  }
}

/* For mobile screens (max-width: 420px) */
@media (max-width: 420px) {
  .products-section {
    padding: 20px 0;
  }

  .products-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .products-grid {
    gap: 10px;
  }

  .product-card {
    padding: 8px;
  }

  .product-card img {
    border-radius: 3px;
  }

  .product-card h3 {
    font-size: 14px;
  }
}
  /* contact us contaCT US  */
  /* Contact Details Section */
/* Contact Details Section */
.contact-details {
    background-color: #FF7518;
    padding: 0px 0; /* Increased padding for more height */
    /* margin-top: 30px; */
    color: white;
  }
  
  .contact-details .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center heading and make it stand out */
    justify-content: center; /* Center the section vertically */
  }
  
  .contact-details h2 {
    font-size: 32px; /* Larger heading for emphasis */
    font-weight: bold;
    margin-bottom: 20px; /* Increase space below the heading */
    text-align: center; /* Keep heading centered */
  }
  
  .contact-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px; /* Space between description and contact items */
    max-width: 800px; /* Limit width to keep text readable */
    text-align: center; /* Center the description text */
  }
  
  .contact-item {
    display: flex;
    justify-content: flex-start; /* Align contact details to the left */
    align-items: center;
    font-size: 15px; /* Slightly larger text */
    margin: 15px 0; /* Space between items */
    width: 100%; /* Make sure the contact items span the entire width */
    max-width: 600px; /* Limit the width to avoid stretching too wide */
    padding: 0 15px; /* Add padding on the sides for spacing */
  }
  
  .contact-item i {
    margin-right: 15px; /* More space between icon and text */
    font-size: 28px; /* Larger icons for better visibility */
  }
  
  .contact-item span {
    font-size: 16px;
  }
  
  /* Optional: Add a border-top for the section for a cleaner look */
  .contact-details {
    border-top: 3px solid #fff;
  }
  /* Default styles for desktop are already defined */

/* For tablets and small screens (max-width: 768px) */
@media (max-width: 768px) {
  .contact-details h2 {
    font-size: 28px; /* Slightly smaller heading */
    margin-bottom: 15px;
  }

  .contact-description {
    font-size: 14px; /* Reduce text size for readability */
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px; /* Add padding for text */
  }

  .contact-item {
    font-size: 14px;
    margin: 10px 0;
    max-width: 90%; /* Reduce max-width for better fit */
  }

  .contact-item i {
    font-size: 24px; /* Reduce icon size */
    margin-right: 10px;
  }

  .contact-item span {
    font-size: 14px; /* Match text size to smaller layout */
  }
}

/* For mobile screens (max-width: 420px) */
@media (max-width: 420px) {
  .contact-details {
    padding: 20px 0;
  }

  .contact-details h2 {
    font-size: 24px; /* Further reduce heading size */
    margin-bottom: 10px;
  }

  .contact-description {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 0 5px; /* Narrower padding */
  }

  .contact-item {
    font-size: 13px;
    max-width: 100%; /* Use full width on smaller screens */
    margin: 8px 0;
    padding: 0 10px;
  }

  .contact-item i {
    font-size: 20px; /* Smaller icons for compact design */
    margin-right: 8px;
  }

  .contact-item span {
    font-size: 13px;
  }
}

  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  footer a  {
    color:#fff;
  }