/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.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;
  }
}



/* === 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: 6px;
  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-icons-products a {
  padding: 0;
  margin: 0;
}
.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: 6px;
  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;
  }
}

/* ===== 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;
  }
}


/* ===== Dropdown ===== */
.dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  top: 100%;
  left: 0;
  z-index: 999;
}

.dropdown-content a {
  color: #002060;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(to right, #004080, #007bff);
  color: white;
  text-align: center;
  padding: 120px 40px 100px;
  margin-top: 80px;
}

.hero-section h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero-section p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ===== Applications Section Styling ===== */
.application-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.application-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.application-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  gap: 30px;
  transition: transform 0.3s ease;
}

.application-box:hover {
  transform: translateY(-5px);
}

/* Reduce image size to fit nicely beside content */
.application-box img {
  width: 200px;  /* Reduced size */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Reverse layout for alternating sections */
.application-box.reverse {
  flex-direction: row-reverse;
}

/* Content styling */
.application-box .app-content {
  flex: 1;
}

.application-box h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #003366;
}

.application-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.application-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.application-box ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Responsive for tablets & mobiles */
@media (max-width: 768px) {
  .application-box {
    flex-direction: column;
    text-align: center;
  }

  .application-box.reverse {
    flex-direction: column;
  }

  .application-box img {
    width: 180px;
    margin-bottom: 15px;
  }
}


/* ===== Application Section ===== */
.application-section {
  padding: 80px 40px;
}

.application-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

.application-box.reverse {
  flex-direction: row-reverse;
}

.application-box img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-content {
  width: 50%;
}

.app-content h3 {
  color: #004080;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.app-content p {
  line-height: 1.7;
  color: #444;
}

.app-content ul {
  margin-top: 10px;
  padding-left: 20px;
  line-height: 1.8;
}


/* ===== 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.9rem;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,0.2);
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
  .application-box {
    flex-direction: column;
    text-align: center;
  }
  .application-box img {
    width: 90%;
  }
  .app-content {
    width: 100%;
  }
}


/* ================================
   Floating Enquiry Button
================================ */
.floating-enquiry-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #007BFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.floating-enquiry-btn:hover {
  transform: scale(1.1);
}

.floating-enquiry-btn img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.floating-enquiry-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
/* ================================
   Enquiry Slide Form
================================ */
/* ================================
   Enquiry Slide Form (MOVES WITH PAGE)
================================ */
.enquiry-form-container {
  position: fixed;        /* moves with scroll */
  bottom: 20px;              /* stays above bottom */
  right: -500px;             /* hidden by default */
  width: 500px;              /* proper desktop width */
  max-width: 75%;            /* responsive but same size feel */
  height: auto;              /* auto height */
  max-height: 80vh;          /* prevents large white bottom */
  background: #ffffff;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 9998;
  padding: 25px;
  overflow-y: auto;          /* form scrolls inside */
}

.enquiry-form-container.active {
  right: 0;                  /* Slide in */
}

.enquiry-form h2 {
  margin-bottom: 15px;
  color: #007BFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.enquiry-form label {
  font-weight: 600;
  margin: 10px 0 5px;
  display: block;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
}

.enquiry-form textarea {
  resize: none;
}

.submit-btn {
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 16px;
}

.submit-btn:hover {
  background: #0056c1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #007BFF;
}

/* ================================
   Mobile Responsive
================================ */
@media (max-width: 480px) {
  .floating-enquiry-btn {
    width: 50px;
    height: 50px;
  }

  .floating-enquiry-btn img {
    width: 24px;
  }

  .enquiry-form-container {
    width: 90%;
  