/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.5;
}
/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* First Header: Logo and Contact Info */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 10px 10px; /* Reduced padding to make it smaller */
  height: 40px

}

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info i {
  margin-right: 5px;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Adjusted closer to the bottom */
  right: 20px;  /* Adjusted closer to the right */
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
}

/* Hero Section */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  z-index: 10;
  position: relative;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero button {
  background-color: #ff6347;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #e05c43;
}

/* Catalogue Section */
.catalogue {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.catalogue-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.catalogue-item {
  margin: 10px;
  padding: 10px;
  background-color: white;
  border: 1px solid #ddd;
  text-align: center;
  width: calc(50% - 20px); /* Adjusted to 50% width for two columns */
  box-sizing: border-box;
}

.catalogue-item img {
  max-width: 100%;
  height: auto;
}

/* Companies Section */
.companies {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.companies img {
  width: 100px;
  margin: 0 10px;
}

/* About Section */
.about {
  padding: 20px;
  text-align: center;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}


/* menu compatibility for mobile*/



/* Hamburger Icon */
.hamburger {
  display: none; /* Hide by default on desktop */
}
/* Image Content Navigation Styles */
.image-content-nav {
  background-color: #f4f4f4; /* Light gray background */
  padding: 10px 0;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between links */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.nav-links a {
  text-decoration: none;
  color: #333; /* Dark gray text */
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6347; /* Change color on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-links {
    gap: 10px; /* Reduce gap on smaller screens */
  }

  .nav-links a {
    font-size: 1rem; /* Smaller font size for mobile */
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Navigation */
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }

  nav ul li .dropdown-content {
    position: static;
    background-color: transparent;
    box-shadow: none;
  }

  nav ul li:hover .dropdown-content {
    display: none;
  }

  /* Hero Section */
  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Catalogue Section */
  .catalogue-item {
    width: calc(100% - 20px); /* Full width on mobile */
  }

  /* Companies Section */
  .companies {
    flex-wrap: wrap;
  }

  .companies img {
    width: 80px;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  /* Hero Section */
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Companies Section */
  .companies img {
    width: 60px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-info {
    margin-right: 30px;
    font-size: 0.9rem;
  }

  .catalogue-item {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .contact-info {
    margin-right: 0;
    font-size: 0.85rem;
	white-space: nowrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .catalogue-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.companies {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5; /* Light gray background */
}

.companies h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.companies img {
  width: 120px; /* Set a uniform width */
  height: 120px; /* Set a uniform height */
  object-fit: contain; /* Ensures the full logo is visible */
  margin: 0 15px; /* Space between images */
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  vertical-align: middle; /* Aligns images properly */
}

.companies img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}
.about{
  padding: 20px;
  background-color: #fad682; /* Light gray background */
  
  text-align: center;
}

@media (max-width: 480px) {
  .company-name h1 {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .catalogue-item h3 {
    font-size: 1rem;
  }

  .catalogue-item p {
    font-size: 0.9rem;
  }
}