/* =====================================
   GLOBAL STYLES
   ===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #fff;
}

/* =====================================
   NAVIGATION BAR (STICKY + RESPONSIVE)
===================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 80px;
  background-color: #0f4c81;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /*font-family: "Poppins", sans-serif;*/
}

/* ---------- LOGO ---------- */
.logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

/* ---------- NAV LINKS ---------- */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.8px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #cde7ff;
  opacity: 0.85;
}

/* ---------- BUTTON ---------- */
.btn-outline {
  border: 1px solid #ffffff;
  padding: 6px 16px;
  border-radius: 3px;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #0f4c81;
}

/* ---------- NAV BUTTON ---------- */
.nav-button {
  text-align: right;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none; /* hidden by default for desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */
@media (max-width: 950px) {
  .navbar {
    padding: 14px 30px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0f4c81;
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .hamburger {
    display: flex; /* show hamburger on small screens */
    margin-left: auto; /* push to right edge */
  }

  .nav-button {
    display: none; /* hide desktop button */
  }

  /* Button inside dropdown */
  .mobile-btn {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    height: 35px;
  }
}

/* Hide mobile quote on desktop */
@media (min-width: 951px) {
  .mobile-btn {
    display: none !important;
  }
}


/* ==========================
   ABOUT US HERO SECTION STYLE
========================== */
.about-hero {
  position: relative;
  width: 100%;
  height: 50vh; /* Half of the desktop screen height */
  background: url("environmental-pollution-factory-exterior-night.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Optional overlay to darken the image for better text visibility */
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.5); /* semi-transparent blue overlay */
  z-index: 1;
}

/* Text styling */
.about-overlay {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 20PX;
  text-align: center;
}

.about-overlay h1 {
  font-size: 3rem;
 
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-hero {
    height: 40vh; /* slightly smaller for tablets */
  }

  .about-overlay h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 35vh; /* smaller for mobile */
  }

  .about-overlay h1 {
    font-size: 1.8rem;
  }
}





/* ================================
   WHO WE ARE SECTION
================================ */
/* ============================
   WHO WE ARE SECTION (FIXED)
============================ */

/* SNAPS ENTIRE SECTION TO CORRECT WIDTH */
.who-we-are {
    padding: 70px 0;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    
}

.who-we-are .container {
    width: 1200px;        /* FIXED WIDTH LIKE REFERENCE */
    max-width: 90%;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;   /* aligns left and right vertically */
}


/* LEFT SIDE */
.left-content {
    width: 50%;         /* EXACT MATCH */
}

.label {
    color: #2c83f5;
    font-weight: 700;
    font-size: 18px;
}

.left-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f4c81;
    line-height: 1.1;
    margin-bottom: 20px;
}

.description {
    width: 90%;
    color: #555;
    margin-bottom: 35px;
}

/* BUTTON FIX */
.learn-more {
    
    
    color: #151515;
    font-weight: bold;
    font-size: 18px;
    
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.learn-more .circle {
    background: #002c90;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


/* RIGHT SIDE */
.right-content {
    width: 40%;        /* REDUCED WIDTH TO MATCH YOUR SCREENSHOT */
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* IMAGE */
.experience-image {
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 120px;     /* PERFECT SIZE FOR YOUR IMAGE */
    object-fit: cover;
    border-radius: 25px;
    
}

/* BADGE */
.experience-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #2c83f5;
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
}

/* MISSION BOX */
.mission-box {
    background: #0f4c81;
    color: #fff;
    padding: 20px;
    border-radius: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.mission-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-label {
    font-size: 18px;
    color: #2c83f5;
    font-weight: bold;
}

.mission-btn {
    background: #2c83f5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}



/* ================================
   WORKFLOW SECTION
================================ */
.workflow-section {
  background: #0f4c81;
  padding: 80px 12%;
  /*padding: 80px 8%;*/
  display: flex;
  gap: 50px;
  color: #fff;
  margin-top: -20PX;
 
}

.workflow-left h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.workflow-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards in one row */
  gap: 35px;
  flex: 1;
}

.workflow-card {
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.workflow-card:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.workflow-card img {
  width: 50px;
  margin-bottom: 15px;
}

.workflow-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.workflow-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Tablet */
@media (max-width: 992px) {
  .workflow-section {
    flex-direction: column;
    text-align: center;
  }

  .workflow-left h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .workflow-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .workflow-right {
    grid-template-columns: 1fr;
  }
}


/* =====================================
 
===================================== */

/* ============================
   PRODUCT LIST SECTION STYLE
============================ */
.product-list-section {
  padding: 10px 10%;
  background: #ffffff;
  margin-top: 20PX;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 18px;
  background: #fff;
  position: relative;
}

.product-category {
  background: #0f4c81;
  color: #fff;
  padding: 5px 12px;
  font-size: 13px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.product-btn {
  background: #ffcc00;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  text-decoration: none;
}

.product-btn .arrow {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}





/* =========================
   FOOTER SECTION STYLE
========================= */

.footer {
  background: linear-gradient(135deg, #0a3b66 0%, #0f4c81 100%);
  color: #d4e1f5;
  padding: 60px 100px 20px;
  /*font-family: 'Poppins', sans-serif;*/
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 2px;
  background: #4dd1f9;
  border-radius: 2px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a {
  color: #c6d4e9;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li:hover {
  color: #4dd1f9;
  transform: translateX(3px);
}

.footer-line {
  margin-top: 20px;
  width: 60px;
  height: 3px;
  background: #4dd1f9;
  border-radius: 2px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background:#4dd1f9 ;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #b8c8dd;
}

.footer-bottom span {
  color: #eef1f2;
  font-weight: 600;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}


