/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding-top: 80px; /* Adds space below the fixed header */
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #003366;
}

.scrollable-nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ffffff;
  background-color: #66b2ff;
  border-radius: 5px;
  padding: 5px 10px;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.dropdown-content a {
  color: #003366;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #66b2ff;
  color: #ffffff;
}

.dropdown-content a.active {
  background-color: #66b2ff;
  color: #ffffff;
}

.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Active Link Styling */
.nav-links a.active {
  color: #ffffff;
  background-color: #66b2ff;
  border-radius: 5px;
  padding: 5px 10px;
}

/* About Us Section */
.about-us {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}

.company-title {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}

.product-title {
  font-size: 1.5rem;
  color: #003366;
  margin-top: 20px;
}

.product-list {
  list-style-type: disc;
  margin-left: 40px;
  margin-top: 10px;
}

.product-list li {
  margin-bottom: 10px;
}

/* Vision & Strength Section - Themed Cards */
.vision-strength {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.vision-box, .strength-box {
  background-color: #ffffff; /* White background for cards */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #003366; /* Dark blue border */
}

.vision-box:hover, .strength-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.vision-icon, .strength-icon {
  font-size: 2rem;
  color: #003366; /* Dark blue for icons */
  margin-bottom: 10px;
}

.vision-box h2, .strength-box h2 {
  font-size: 1.8rem;
  color: #003366; /* Dark blue for headings */
  margin-bottom: 10px;
}

.vision-box p, .strength-box ul {
  color: #333; /* Dark gray for text */
  line-height: 1.6;
}

.strength-box ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Add a subtle gradient background for the cards */
.vision-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%); /* Light blue gradient */
}

.strength-box {
  background: linear-gradient(135deg, #ffffff 0%, #e6f2ff 100%); /* Slightly darker blue gradient */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .vision-strength {
    grid-template-columns: 1fr; /* Stack cards vertically on mobile */
  }

  .vision-box, .strength-box {
    flex: 1 1 100%; /* Full width for mobile */
  }

  .vision-box h2, .strength-box h2 {
    font-size: 1.5rem;
  }

  .vision-icon, .strength-icon {
    font-size: 1.8rem;
  }

  .strength-box ul {
    margin-left: 20px;
  }
}
/* Footer */
footer {
  background-color: #003366;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-info p {
  margin: 10px 0;
}

.follow-us {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  background-color: #0033ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  color: #fff;
}

.social-icon.instagram {
  background-color: #ffffff; /* Dark blue background for Instagram */
}

.social-icon.instagram i {
  color: hsl(349, 75%, 57%); /* Instagram's actual icon color */
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #66b2ff;
}

.social-icon.instagram:hover {
  background-color: #005b8e; /* Dark blue hover effect for Instagram */
}

/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.whatsapp-link i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.whatsapp-link span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show the hamburger menu */
  }

  .scrollable-nav {
    display: none; /* Hide the nav by default */
    flex-direction: column;
    position: absolute;
    top: 80px; /* Adjust based on header height */
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .scrollable-nav.open {
    display: flex; /* Show the nav when toggled */
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .dropdown-content {
    position: static; /* Make dropdown content flow naturally */
    box-shadow: none;
    background-color: #f4f4f4;
    margin-top: 10px;
  }

  .dropdown-content a {
    padding: 10px;
    color: #003366;
  }

  .dropdown-content a:hover {
    background-color: #82b9ec;
  }

  /* About Us Section - Mobile Responsiveness */
  .about-us {
    padding: 20px 10px;
  }

  .about-title {
    font-size: 2rem;
  }

  .company-title {
    font-size: 1.8rem;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .product-list {
    margin-left: 20px;
  }

  .vision-strength {
    grid-template-columns: 1fr; /* Stack cards vertically on mobile */
  }

  .vision-box, .strength-box {
    flex: 1 1 100%; /* Full width for mobile */
  }

  .vision-box h2, .strength-box h2 {
    font-size: 1.5rem;
  }

  .vision-icon, .strength-icon {
    font-size: 1.8rem;
  }

  .strength-box ul {
    margin-left: 20px;
  }
}