/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Poppins:wght@400;500;600&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #fff;
}

/* HEADER */
header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -30px;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-text {
  color: #003DA5;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #003DA5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0096C7;
}

/* HERO SECTION */
.hero {
  margin-top: 70px;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Top blue section */
.top-section {
  background: linear-gradient(160deg, #0046C2 0%, #002F7A 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  flex: 1;
}

.top-section h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 2;
}

/* Bottom white section */
.bottom-section {
  position: relative;
  background: #ffffff;
  text-align: center;
  padding: 100px 20px 60px;
  flex: 1;
  margin-top: -4px;
  overflow: hidden;
  color: #003DA5;
}

#bubbleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.text-content {
  position: relative;
  z-index: 2;
}

/* Updated paragraph styling */
.bottom-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #0044a3;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Button */
.btn {
  background: #00B4D8;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,180,216,0.3);
}

.btn:hover {
  background: #0096C7;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,150,199,0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .top-section h1 {
    font-size: 2.5rem;
  }

  .bottom-section p {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

/* ABOUT SECTION */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding: 100px 10%;
    text-align: center;
    color: #002F7A;
    position: relative;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.8rem;
    color: #002f7a;
    margin-bottom: 20px;
  }
  
  .about h2 span {
    color: #00B4D8;
  }
  
  .about-description,
  .mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 850px;
    margin: 0 auto 40px;
  }
  
  .about h3 {
    font-size: 1.8rem;
    color: #003DA5;
    margin: 40px 0 15px;
    font-weight: 700;
  }
  
  .about-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
    flex-wrap: wrap;
  }
  
  .about-gallery img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .about-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }
  
  /* Stats Section */
  .about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .stat {
    background: #f0f6ff;
    border-radius: 12px;
    padding: 25px 40px;
    box-shadow: 0 4px 15px rgba(0, 61, 165, 0.1);
    transition: transform 0.3s ease;
  }
  
  .stat:hover {
    transform: translateY(-5px);
  }
  
  .stat h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #003DA5;
    margin-bottom: 10px;
  }
  
  .stat p {
    font-size: 2rem;
    font-weight: 800;
    color: #00B4D8;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-gallery img {
      width: 90%;
      height: auto;
    }
  
    .about-stats {
      flex-direction: column;
      gap: 25px;
    }
  }


  /* PRODUCTS SECTION */
.products {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    padding: 100px 10%;
    text-align: center;
    color: #002F7A;
    position: relative;
  }
  
  .products-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .products h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.8rem;
    color: #002f7a;
    margin-bottom: 20px;
  }
  
  .products h2 span {
    color: #00B4D8;
  }
  
  .products-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 61, 165, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 25px;
    max-width: 360px;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 61, 165, 0.2);
  }
  
  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .product-card h3 {
    color: #003DA5;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .product-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .product-card .btn {
    background: #00B4D8;
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .product-card .btn:hover {
    background: #0096C7;
  }

  /* Background Network Canvas for About & Products */
.bg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
  }
  
  .about, .products {
    position: relative;
    overflow: hidden;
  }

  /* --- MOBILE FIXES --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .logo-area {
    margin-left: 0; /* Removes the negative margin */
  }

  .logo-img {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .top-section {
    padding: 80px 15px 40px;
  }

  .top-section h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .bottom-section {
    padding: 70px 15px 50px;
  }

  .about, .products {
    padding: 60px 5%;
  }
}


  /* FOOTER */
footer {
    background: linear-gradient(160deg, #002F7A 0%, #001B4D 100%);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Nunito', sans-serif;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  footer a {
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #90E0EF;
  }
  
  footer p {
    margin: 10px 0;
    font-size: 1rem;
  }
  
  .copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
  }