* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px; 
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  list-style: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif; /* Use a premium font */
  background-color: #f8f9fa; /* Light background for a clean look */
  color: #333;
  line-height: 1.6;
}

h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #222;
  font-weight: 700;
}

p {
  font-size: 18px;
  color: #00ff95;
}
/* Top Bar */
/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar p {
  margin: 0; /* Remove unnecessary margins */
  text-align: center;
  flex: 1 1 auto; /* Allow the text to adjust dynamically */
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Add ellipsis for overflowed text */
}

.lang-toggle {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex: 0 0 auto; /* Prevent the language toggle from stretching */
}

.lang-toggle button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-toggle button:hover {
  background-color: white;
  color: #0072ff;
}

/* Navigation Bar */
nav {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative; /* Remove fixed position for better responsiveness */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: #0072ff;
  color: white;
}


.logo img {
  max-height: 50px;
}

.logo {
  display: flex;
  align-items: center; /* Center the logo vertically */
}

h1 { 
  font-size: 40px; 
  line-height: 64px; 
  color: #222; 
  }

.logo img {
    max-width: 250px;
    height: auto;
    margin-right: 10px;
    margin-left:10px;
}

nav ul {
  list-style: ;
  display: flex;
  gap: 20px;
  margin-left: auto; /* Push the navigation links to the right */
}

nav a {
  text-decoration: none;
  color: #333;
}


.hero {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 56px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero button {
  background: white;
  color: #0072ff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero button:hover {
  background-color: #005bb5;
  color: white;
  transform: scale(1.1);
}


.categories {
  padding: 40px 20px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.category-grid img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}


.products {
  padding: 40px 20px;
  text-align: center;
}

.dropdown {
  margin: 20px 0;
}

.dropdown select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: scale-down;
}

.product-item p {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.product-item button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.product-item button:hover {
  background: #e05500;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}

.top-bar {
  background: #ff4d6d;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center; /* Center the items vertically */

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
  transition: background 0.3s ease; /* Smooth transition for background color change */
 
}

span {
  font-size: 20px; /* Adjust font size for better visibility */
  font-weight: bold; /* Make the text bold */
  color: #333; /* Change text color to a darker shade */
}
.lang-toggle {
  display: flex;
  align-items: center; /* Center the items vertically */
}
  gap: 10px; /* Space between the language toggle and the button */
}
.lang-toggle button {
  background: transparent;
  border: 1px solid #fff; /* Change border color to white */
  color: #fff; /* Change text color to white */
  padding: 4px 10px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}
.lang-toggle button:hover {
  background-color: #fff; /* Change background color on hover */
  color: #00ff95; /* Change text color on hover */
}
.lang-toggle button.active {
  background-color: #fff; /* Change background color for active button */
  color: #00ff95; /* Change text color for active button */
  font-weight: bold; /* Make the active button text bold */
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.top-bar p {
  display: inline-block;
  white-space: nowrap; /* Prevent text from wrapping */
  animation: marquee 10s linear infinite; /* 10s for one full scroll, adjust as needed */
}

/* Responsive Slider */
.image-slider {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Navigation Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #0072ff;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.companies {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.company-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.company {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
}

.company img {
  max-width: 100px;
  margin-right: 15px;
}

.company span {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.company:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Hero Section for About Us */
.hero {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.about-box {
  position: relative; /* Set relative positioning for the parent */
  background-color: #f5f5f5;
  padding: 60px 40px;
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
}

.company-name {
  font-size: 48px;
  font-weight: 800;
  color: #f2a833; /* Goldish color */
  display: block;
  margin-top: -10px;
}

.about-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: #000;
  margin-top: 20px;
}

.learn-more {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #333;
  font-weight: 600;
}

.dots {
  font-size: 24px;
  color: #000;
  margin-left: 5px;
}

/* About Us Section */
.about-us {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-us .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-us h2, .about-us h3 {
  color: #222;
  margin-bottom: 20px;
}

.about-us p, .about-us ul {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.highlight {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.highlight img {
  max-width: 80px;
  margin-bottom: 15px;
}

.highlight h3 {
  margin-bottom: 10px;
  color: #9000ff;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.team h2 {
  margin-bottom: 30px;
  font-size: 40px;
  color: #222;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.team-member {
  text-align: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  margin-bottom: 5px;
  font-size: 20px;
  color: #333;
}

.team-member p {
  color: #777;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* About Box Section */
about-box {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 60px 20px;
  text-align: center;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
}

.about-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.about-box p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.learn-more-btn {
  display: inline-block;
  background-color: #0072ff;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #005bb5;
  transform: scale(1.1);
}

/* Navigation Links */
nav a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff4d6d;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero button {
  margin-top: 20px;
  background: #ff4d6d;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero button:hover {
  background-color: #e63950;
  transform: scale(1.1);
}

/* Companies Section */
.companies {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fdfdfd, #ffe6e9);
  text-align: center;
}

.company-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.company {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
}

.company img {
  max-width: 100px;
  margin-right: 15px;
}

.company span {
  font-size: 18px;
  font-weight: bold;
  color: #ff4d6d;
}

.company:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Scroll Down Button */
.scroll-down-btn {
  position: absolute; /* Position it relative to the parent container */
  bottom: 20px; /* Adjust the distance from the bottom of the parent */
  left: 50%; /* Center it horizontally */
  transform: translateX(-50%); /* Center alignment */
  background: none;
  border: 2px solid #f2a833; /* Goldish color */
  color: #f2a833;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  z-index: 10; /* Ensure it stays above other elements */
}

.scroll-down-btn:hover {
  background-color: #f2a833;
  color: white;
  transform: scale(1.1);
}

/* Subcategory Buttons */
.subcategory-buttons {
  margin: 20px 0;
  text-align: center;
}

.subcategory-buttons button {
  background-color: #0072ff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.subcategory-buttons button:hover {
  background-color: #005bb5;
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0072ff;
}

.service-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  text-align: center;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.contact-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.contact-button.whatsapp {
  background-color: #25d366;
  color: white;
}

.contact-button.facebook {
  background-color: #3b5998;
  color: white;
}

.contact-button.email {
  background-color: #0072ff;
  color: white;
}

/* Location Section */
.location {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.location h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.map-container {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

/* Go to Top Button */
#goToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #0072ff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#goToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Adjustments for smaller screens */

  @media (max-width: 768px) {
    nav {
      display: flex;
      flex-direction: column; /* Stack logo and links vertically */
      align-items: center; /* Center-align items */
      padding: 10px 20px;
    }
  
    nav ul {
      display: flex; /* Display links horizontally */
      justify-content: center; /* Center-align links */
      gap: 10px; /* Add spacing between links */
      list-style: none; /* Remove bullet points */
      padding: 0;
      margin: 0;
      width: 100%; /* Ensure the links span the full width */
    }
  
    nav a {
      text-align: center;
      padding: 8px 12px; /* Adjust padding for better spacing */
      font-size: 14px; /* Adjust font size for readability */
      text-decoration: none; /* Remove underline */
      color: #333; /* Default text color */
      transition: color 0.3s ease, background-color 0.3s ease;
    }
  
    nav a:hover {
      background-color: #0072ff; /* Add hover background */
      color: white; /* Change text color on hover */
      border-radius: 5px; /* Add rounded corners */
    }
  
    .logo {
      text-align: center;
      margin-bottom: 10px; /* Add spacing below the logo */
    }
  
  
    .top-bar {
      flex-direction: column; /* Stack items vertically */
      text-align: center;
    }
  
    .top-bar p {
      margin-bottom: 10px; /* Add spacing between elements */
      white-space: normal; /* Allow text to wrap on smaller screens */
      text-overflow: clip; /* Remove ellipsis for smaller screens */
    }
  
   
  .hero {
    padding: 50px 10px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .image-slider {
    margin: 10px auto;
  }

  .slide img {
    max-height: 300px;
  }

  .scroll-down-btn {
    bottom: 10px; /* Reduce the distance from the bottom */
    width: 40px; /* Reduce the size of the button */
    height: 40px;
    font-size: 20px; /* Adjust font size */
  }
}

/* Add or update these styles for tablet slider optimization */

@media (max-width: 1024px) and (min-width: 600px) {
  .image-slider {
    max-width: 95vw;
    margin: 10px auto;
    border-radius: 8px;
  }
  .slide img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  .dots {
    bottom: 10px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column; /* Stack items vertically */
    text-align: center;
  }

  .top-bar p {
    margin-bottom: 10px; /* Add spacing between elements */
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .team-member img {
    width: 80px;
    height: 80px;
  }

  .about-box {
    padding: 20px;
  }

  footer {
    font-size: 12px;
  }

  .slide img {
    max-height: 200px;
  }
  nav ul {
    gap: 5px; /* Reduce spacing between links */
  }

  nav {
    padding: 5px 10px; /* Further reduce padding for very small screens */
  }

  nav a {
    font-size: 12px; /* Reduce font size for smaller screens */
    padding: 6px 8px; /* Adjust padding for compact spacing */
  }

  .scroll-down-btn {
    bottom: 5px; /* Further reduce the distance from the bottom */
    width: 35px; /* Further reduce the size of the button */
    height: 35px;
    font-size: 18px; /* Adjust font size */
  }
}

/* Adjustments for larger screens */
@media (min-width: 1024px) {
  .image-slider {
    max-width: 70%; /* Reduce width for larger screens */
  }

  .slide img {
    max-height: 500px; /* Limit image height for PC view */
  }
}

