html {
  scroll-behavior: smooth;
}

/* ====== Global Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
/* ===========================================================
   HERO SECTION
=========================================================== */
.about-hero {
  background: url('images/FINAL MAP.png') center/cover no-repeat;
  color: black;
  padding: 180px 40px;
  text-align: center;
  background-attachment: fixed;
}

.about-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
}


/* === Social Media Icons on Hero Page === */
.social-hero-icons {
  position: fixed;
  top: 12%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 10px;
  border-radius: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.social-hero-icons a {
  color: #0056b3;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-hero-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Hide icons when scrolling down (slide right) */
.social-hero-icons.hide {
  right: -100px;
  opacity: 0;
}
/* ===== Social Media Icons - Homepage Only ===== */
.social-icons-homepage {
  position: fixed;
  top: 100px; /* right below navbar */
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.social-icons-homepage a {
  color: #0056b3;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons-homepage a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Slide right when hidden */
.social-icons-homepage.hide {
  right: -80px;
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-hero-icons {
    right: 10px;
    padding: 8px;
    gap: 10px;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white; /* or your chosen color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.4s ease-in-out; /* Smooth transition */
}

/* When user scrolls down */
.navbar.hide {
  transform: translateY(-100%); /* Moves navbar up smoothly */
}

/* ===== Navigation Bar Styling ===== */
.navbar {
  position: fixed;
  top: -20;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 50, 0.1);
  z-index: 1000;
  transition: top 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

/* When hidden */
.navbar.hide {
  top: -100px;
  opacity: 0;
}

/* Logo */
.navbar .logo img {
  height: 55px;
  width: auto;
}

/* Navigation Links */
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #002060;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-bottom: 4px;

}

.navbar .nav-links a:hover {
  color: #007bff;

}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
  .navbar .nav-links {
    gap: 20px;
    font-size: 0.9rem;
  }
  .navbar .logo img {
    height: 45px;
  }
}
/* ===== Navigation Bar ===== */
.navbar {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  transition: top 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 150px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #002060;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* ===== Dropdown Menu ===== */
.dropdown .dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: 100%;
  left: 0;
  z-index: 999;
  padding: 10px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #002060;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown-content a {
    padding-left: 40px;
  }
}


section,
.products-section,
.product-details {
  padding-top: 120px;
}


/* ===========================================================
   COMPANY OVERVIEW
=========================================================== */
.company-overview {
  background: #f9fafc;
  padding: 80px 10%;
  border-top: 2px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
}

.company-overview h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 3px solid #005baa;
  padding-bottom: 8px;
}

.company-overview p {
  font-size: 0.6rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

/* ===========================================================
   INFO CARDS
=========================================================== */
.info-cards-section {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  background: linear-gradient(to bottom, #f7faff, #ffffff);
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 50px;
  width: 320px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #004aad;
}

.info-card i {
  font-size: 3rem;
  color: #004aad;
}

.info-card p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0073e6;
}

/* ===========================================================
   TRANSPORT SECTION
=========================================================== */
.transport {
  background: #f9fafc;
  padding: 60px 10%;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.transport p {
  font-size: 0.6rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}
.transport h2 {
  font-size: 1.5rem;
  color: #003366;
  border-bottom: 3px solid #005baa;
  padding-bottom: 8px;
  width: fit-content;
}

.transport-container {
  display: flex;
 
  flex-direction: column;
  gap: 30px;
}

.transport-box {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.transport-box p{
  font-size: 0.9rem;
}
.transport-list {
  margin-left: 20px;
  list-style: disc;
}

/* ===========================================================
   CERTIFICATIONS
=========================================================== */
.certifications {
  padding: 50px 10%;
  background: #f9fcff;
}

.certifications h2 {
  font-size: 2rem;
  color: #003366;
  border-bottom: 3px solid #005baa;
  width: fit-content;
  padding-bottom: 8px;
}

.cert-list a {
  color: #005baa;
  text-decoration: none;
  position: relative;
font-size: 0.7rem;

}

.cert-list a:hover {
  color: #007bff;
}

/* ===========================================================
   AWARDS
=========================================================== */
#awards {
  padding: 60px 0;
  background: #f9f9f9;
}

.award-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.award-image img {
  width: 100%;
  border-radius: 10px;
}

/* ===========================================================
   FOOTER
=========================================================== */
/* ===== Footer ===== */
footer {
  background-color: #003580;
  color: white;
  padding-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10% 40px;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-left h3, .footer-right h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-left: 4px solid #00c2ff;
  padding-left: 10px;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin: 10px 0;
}

.quick-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.quick-links a i {
  margin-right: 10px;
  color: #00c2ff;
}

.quick-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-right p {
  font-size: 0.95rem;
  color: #d6d6d6;
  line-height: 1.7;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  background-color: #003580;
  padding: 15px;
  font-size: 0.3rem;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,0.2);
}

@media only screen and (max-width: 1280px) {
  * {
    zoom: 1 !important;
  }
}
