* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display:inline-block;
  transition: 0.3s ease;
}


.nav-links a:hover {
  transform: scale(1.1);
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 20;
}

.dropdown-content a{
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-content a:hover{
    background: rgba(255,255,255,0.12);
}

.dropdown:hover .dropdown-content{
    display: block;
}


.MMUNC {
  padding: 10px 20px;
  border-radius: 12px;
  background: white;
  color: #364077 !important;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.MMUNC:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}


.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 20px; 
  background:
  linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8)),
    url('9965C91C-561B-455E-8E0C-EB4768916483IMG_4596.JPG');
  background-size: cover;
  background-position: center;
  text-align: center;
  position:relative;
}

.hero h1{
  font-size: 70px;
  margin-top: 20px;
  margin-bottom:300px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  color:white;
}

    .section-label { 
        text-align: center; 
        padding: 2.6rem 1rem 0; 
    }
    .section-label p { 
        font-size: 0.68rem; 
        letter-spacing: 0.24em; 
        text-transform: uppercase; 
        color: #003262; 
        opacity: 0.4; 
        margin-bottom: 6px;
     }

    .section-label h2 { 
        font-size: 1.75rem; 
        font-weight: 700; 
        color: #003262; 
    }

    .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

    .rcard {
      background: #e3e3e4; border-radius: 16px;
      box-shadow: 0 2px 16px rgba(0,31,63,0.06);
      padding: 1.6rem 1.5rem;
      display: flex; flex-direction: column; gap: 0.75rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none; color: inherit; position: relative; overflow: hidden;
    }
    .rcard::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 3px; height: 100%; 
      transform: scaleY(0); transform-origin: bottom;
      transition: transform 0.28s ease; border-radius: 3px 0 0 3px;
    }
    .rcard:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,31,63,0.13); }
    .rcard:hover::before { transform: scaleY(1); }
    .rcard h3 { font-size: 1rem; font-weight: 700; color: #003262; line-height: 1.3; }
    .rcard p { font-size: 0.82rem; line-height: 1.65; color: rgba(0,31,63,0.5); font-weight: 300; }
    .rcard-link {
      margin-top: auto; display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: #003262; text-decoration: none;
      transition: gap 0.2s, color 0.2s;
    }

    .tip-box { max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem 0; }
    .tip-inner {
      background:#003262; border-radius: 16px; padding: 2rem 2.2rem;
      display: flex; align-items: flex-start; gap: 1.2rem;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .tip-inner h4 { font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 5px; }
    .tip-inner p { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.75); font-weight: 300; }


footer {
  text-align: center;
  padding: 30px;
  color: white;
  background-color: #003262;
}

.icons {
  margin-top: 10px;
}

.icons a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.icons a:hover {
  color: #ddd;
}























/* ===== RESPONSIVE: resources.css ===== */
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}