* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Geologica", sans-serif;
    }

    body {
      background: #f7f7f7;
    }

    /* --- TOPBAR --- */
    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      color: #fff;
      font-size: 14px;
      flex-wrap: wrap;
      background: #fe3030;
    }

    .topbar-left {
      background-color: #fe3030;
      flex: 1;
      padding: 8px 30px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .topbar-right {
      background-color: #fe3030;
      flex: 1;
      padding: 8px 30px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .topbar-left span {
      margin-right: 25px;
    }

    .topbar-left i {
      margin-right: 6px;
    }

    .topbar-right a {
      color: #fff;
      margin-left: 15px;
      transition: 0.3s;
      font-size: 15px;
      text-decoration: none;
    }

    .topbar-right a:hover {
      opacity: 0.8;
    }

    /* --- NAVBAR --- */
    header.navbar {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .navbar .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 180px;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      display: block;
      padding: 10px 18px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      text-transform: uppercase;
      transition: 0.3s;
      font-size: 15px;
    }

    nav ul li a:hover {
      color: #fe3030;
    }

    /* Dropdowns */
    .submenu, .subsubmenu {
      display: none;
      position: absolute;
      background: #fff;
      top: 42px;
      left: 0;
      min-width: 200px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      border-top: 3px solid #fe3030;
      z-index: 9999;
    }

    .submenu li, .subsubmenu li {
      position: relative;
    }

    .submenu li a, .subsubmenu li a {
      padding: 10px 15px;
      display: block;
      color: #333;
      transition: 0.3s;
    }

    .submenu li a:hover, .subsubmenu li a:hover {
      background: #f4f4f4;
      color: #fe3030;
    }

    .submenu li:hover .subsubmenu {
      display: block;
      left: 200px;
      top: 0;
    }

    .dropdown:hover > .submenu {
      display: block;
    }

    /* Join Button */
    .join-btn {
      background-color: #fe3030;
      color: #fff !important;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      text-transform: uppercase;
      transition: 0.3s ease;
    }

    .join-btn:hover {
      background-color: #d92424;
    }

    /* Mobile Toggle */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: #fe3030;
    }

    /* --- Responsive --- */
    @media (max-width: 900px) {
      .menu-toggle {
        display: block;
      }

      nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-top: 3px solid #fe3030;
      }

      nav ul.active {
        display: flex;
      }

      nav ul li {
        width: 100%;
      }

      nav ul li a {
        border-bottom: 1px solid #eee;
        padding: 14px;
      }

      .submenu, .subsubmenu {
        position: static;
        box-shadow: none;
        border-top: none;
      }

      .dropdown.open > .submenu {
        display: flex;
        flex-direction: column;
      }

      .submenu li:hover .subsubmenu {
        left: 0;
      }

      .dropdown:hover .submenu {
        display: none;
      }

      /* Hide extra links in mobile topbar */
      .topbar-right a:not(:has(i)) {
        display: none;
      }

      /* Keep only phone & social icons in topbar */
      .topbar-left span:last-child {
        display: none;
      }
    }
.hero-banner {
  background: url('../images/logo/banner.webp') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 200px 20px;
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tablets */
@media screen and (max-width: 992px) {
  .hero-banner {
    padding: 150px 20px;
    height: 450px;
    background-position: center top;
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  .hero-banner {
    padding: 100px 15px;
    height: 350px;
    background-position: center top;
  }
  .hero-banner h1 {
    font-size: 1.8rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
}

/* Small mobile (under 480px) */
@media screen and (max-width: 480px) {
  .hero-banner {
    padding: 80px 10px;
    height: 400px;
  }
  .hero-banner h1 {
    font-size: 1.5rem;
  }
  .hero-banner p {
    font-size: 0.9rem;
  }
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.join-btn {
  background: #fe3030;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.join-btn:hover {
  background: #c32222;
}

/* Key Points */
.banner-points {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.point {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.point:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.point i {
  font-size: 32px;
  color: #fe3030;
  margin-bottom: 12px;
}

.point h3 {
  margin-bottom: 8px;
  color: #333;
}

.point p {
  color: #555;
  font-size: 15px;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 18px;
  }
  .banner-content p {
    font-size: 14px;
  }
}
.news-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #fe3030;
  margin: 12px auto 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content .date {
  font-size: 13px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}

.news-content h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #fe3030;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  text-decoration: underline;
}

.view-all {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.view-all-btn {
  background: #fe3030;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #c32222;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}
.cta-section {
  background-color: #3994b4; /* UCWA blue tone */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  background-color: #fe3030;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  color: #fe3030;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

.about-subscribe {
  padding: 80px 20px;
  background-color: #f7f9fc;
}

.about-subscribe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  color: #3994b4;
  margin-bottom: 15px;
}

.about-content p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  background-color: #3994b4;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background-color: #fe3030;
}

/* Subscribe box */
.subscribe-box {
  flex: 1;
  min-width: 300px;
  background: #fe3030;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.subscribe-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.subscribe-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.subscribe-form button {
  background-color: #fff;
  color: #3994b4;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #3994b4;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-subscribe-container {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-box {
    margin-top: 30px;
  }
}
.countup-section {
  position: relative;
  background: url('../images/logo/b1.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.countup-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  z-index: 2;
}

.count-box h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.count-box p {
  font-size: 1.1rem;
  color: #dfe9f3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .countup-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .count-box h3 {
    font-size: 2.2rem;
  }

  .count-box p {
    font-size: 1rem;
  }
}
.site-footer {
  background: #111;
  color: #ddd;
  font-family: "Geologica", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #fe3030;
}

.footer-column p {
  line-height: 1.7;
  font-size: 15px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 15px;
}

.footer-social a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fe3030;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #fe3030;
}

.join-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fe3030;
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.join-btn:hover {
  background: #d62b2b;
}

.footer-bottom {
  background: #0b0b0b;
  text-align: center;
  padding: 15px 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.footer-bottom a {
  color: #fe3030;
  text-decoration: none;
  margin-left: 6px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;

  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social a {
    margin-right: 8px;
  }
}