* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #111;
  background-color: #fdfdfd;
  line-height: 1.6;
}

.navbar {
  background-color: #003049;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 12px;
}

.brand {
  font-weight: 700;
  color: white;
  font-size: 22px;
  text-decoration: none;
}

.navbar-right a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar-right a:hover {
  color: #ffd700;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.hero {
  background: url('./BG/I1.jpeg') center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 20px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 60px 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-overlay h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-overlay .highlight {
  color: #ffcc00;
  font-weight: bold;
  font-size: 24px;
}

section {
  padding: 40px 20px; /* Reduced padding */
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose,
.products {
  margin-bottom: 10px; /* Reduced space between sections */
}

.why-choose h2,
.products h2 {
  color: #f60000;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.why-choose h3,
.products h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: left;
}

.why-choose p,
.products p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
  color: #333;
}

ul {
  list-style: none;
  padding-left: 0;
}

li::before {
  content: '\2022';
  color: #f60000;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

li {
  margin-bottom: 10px;
  font-size: 16px;
  padding-left: 10px;
  transition: all 0.3s ease;
}

li:hover {
  background-color: #ffeaea;
  border-left: 4px solid #f60000;
  padding-left: 16px;
}

.footer {
  background-color: #003049;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 30px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-logo {
  height: 75px;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

.footer h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: white;
  margin-top: 6px;
}

.footer p,
.footer a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
}

.footer a:hover {
  text-decoration: underline;
}

.tagline {
  font-size: 14px;
  margin-top: 10px;
  font-style: italic;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar-right a {
    display: none;
  }

  .menu-icon {
    display: inline-block;
  }

  .hero-overlay h2 {
    font-size: 26px;
  }

  .hero-overlay .highlight {
    font-size: 18px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin: 15px 0;
  }

  section {
    padding: 30px 15px;
  }
}

/* Mobile Navigation Toggle */
/* Responsive Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #003049;
}

.mobile-menu a {
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

.mobile-menu a:hover {
  background-color: #002233;
}

@media (max-width: 768px) {
  .navbar-right {
    display: none;
  }

  .menu-icon {
    display: inline-block;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }

  .mobile-menu.show {
    display: flex;
  }
}
