/* ===================================================================
   RESET & GLOBAL
=================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* ===================================================================
   SOCIAL MEDIA ICONS
=================================================================== */
.social-icons-products {
  position: fixed;
  top: 100px;
  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-products a {
  color: #0056b3;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons-products a:hover {
  color: #007bff;
  transform: scale(1.2);
}

.social-icons-products.hide {
  right: -80px;
  opacity: 0;
}

@media (max-width: 768px) {
  .social-icons-products {
    right: 10px;
    padding: 8px;
    gap: 10px;
  }
}

/* ===================================================================
   NAVBAR
=================================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  color: #002060;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  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 a {
  color: #002060;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: 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: 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===================================================================
   RESPONSIVE NAVBAR
=================================================================== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-content a {
    padding-left: 40px;
  }
}

/* ===================================================================
   PRODUCTS SECTION
=================================================================== */
.products-section {
  padding: 70px 50px 40px;
  background: #f4f8fb;

}

.products-section h2 {
  text-align: center;
  color: #004080;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2em;
}

.product-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-box:last-child {
  margin-bottom: 0;
}

.product-info {
  flex: 1;
}

.product-image img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-box h3 {
  color: #004080;
  margin-bottom: 10px;
}

.product-box h4,
.product-box p,
.product-box ul {
  text-align: left;
font-size: 1.35em;
}

.product-box ul {
  list-style: disc;
  margin-left: 30px;
}

/* ===================================================================
   APPLICATIONS LIST
=================================================================== */
.app-heading {
  margin-top: 25px;
  color: #004080;
  font-size: 1.2rem;
  border-left: 4px solid #007bff;
  padding-left: 10px;
}

.applications-list {
  list-style: none;
  margin-top: 10px;
}

.applications-list li {
  padding: 8px 0;
  font-size: 23px;
  display: flex;
  align-items: center;
}

.applications-list i {
  color: #007bff;
  margin-right: 10px;
}

/* ===================================================================
   WHY AMMONIA SECTION
=================================================================== */
.why-ammonia-section {
  background: #f8f9fa;
  padding: 60px 40px;
  text-align: center;
}

.why-ammonia-section h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 20px;
}

.why-ammonia-section .intro {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 0.8rem;
  line-height: 1.6;
}

.why-ammonia-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.why-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 450px;
  text-align: left;
font-size: 1.5rem;
  transition: 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
}

.why-box h3 {
  color: #007bff;
  margin-bottom: 15px;
}


.why-box ul {
  margin-top: 15px;
  padding-left: 20px;
}

/* ===================================================================
   TRANSPORT SECTION
=================================================================== */
.transport-section {
  background: #ffffff;
  padding: 60px 40px;
  text-align: center;
}

.transport-section h2 {
  color: #004080;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.transport-section .intro {
  max-width: 850px;
  margin: 0 auto 40px;
font-size: 0.7rem;
}

.transport-content {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.transport-box {
  background: #f4f8fb;
  border-radius: 12px;
  padding: 30px;
  max-width: 450px;
  text-align: left;
font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.transport-box:hover {
  transform: translateY(-6px);
}

.transport-box ul {
  list-style: none;
  padding-left: 20px;
  line-height: 1.8;
}

.transport-box ul li::before {
  content: "• ";
  color: #007bff;
  font-weight: bold;
}
.note {
  background: #e8f4ff;              /* Soft blue background */
  border-left: 5px solid #007bff;   /* Highlighted left border */
  padding: auto;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.6;
  color: #003d66;
  display: center;
  align-items: center;
  gap: 10px;
}

.note i {
  font-size: 22px;
  color: #007bff;                  /* Icon color */
}

/* ===================================================================
   FOOTER
=================================================================== */
footer {
  background: #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 {
  padding-left: 0;
}

.quick-links li {
  margin: 10px 0;
}

.quick-links a {
  color: #e0e0e0;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.quick-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-bottom {
  background: #003580;
  text-align: center;
  padding: 15px;
font-size: 0.5rem;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,0.2);
}


