    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f0f4f8;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* HEADER */
    header {
      background: linear-gradient(135deg, #1a148e, #3658f7);
      color: #fff;
      padding: 12px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      position: relative;
      z-index: 1000;
    }

    .logo-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }

    .logo {
      max-width: 65px;
      height: auto;
    }

    .logo-header h2 {
      font-size: 22px;
      font-weight: 600;
    }
nav {
  display: flex;
  align-items: center;
}

/* Uniform link/button style */
nav a,
.dropbtn {
  padding: 8px 14px;          /* uniform spacing */
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover effect */
nav a:hover,
.dropbtn:hover {
  color: #ffd700;
}

/* DROPDOWN WRAPPER */
.dropdown {
  position: relative;
}

/* Dropdown Button */
.dropbtn {
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  z-index: 999;
}

/* Dropdown items */
.dropdown-content a {
  color: #1a148e;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #bfa303;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* LOGIN BUTTON */
.login-btn {
  background-color: #fff;
  color: #1a148e !important;
  padding: 8px 16px;        /* same vertical height as others */
  border-radius: 20px;
  font-weight: 600;
}

.login-btn:hover {
  background-color: #ffd700;
  color: #1a148e !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a, .dropbtn {
    width: 100%;
  }

  .dropdown-content {
    position: relative;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-content a {
    padding-left: 20px;
  }
}
    /* HERO SECTION WITH PARALLAX + FADE */
    .hero {
      position: relative;
      background: url('./images/pawpath.jpg') center/cover no-repeat fixed;
      color: #fff;
      text-align: center;
      padding: 110px 20px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 20, 142, 0.85), rgba(54, 88, 247, 0.8));
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .hero p {
      font-size: 1.1rem;
      color: #e0e8ff;
    }

    /* ABOUT CONTAINER */
    .about-container {
      max-width: 1000px;
      margin: 60px auto;
      padding: 40px;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      animation: fadeIn 1s ease;
    }

    .about-section {
      margin-bottom: 40px;
      animation: slideUp 0.8s ease forwards;
    }

    .about-section h2 {
      color: #1a148e;
      margin-bottom: 10px;
      font-size: 1.4rem;
      position: relative;
    }

    .about-section h2::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: #4b73ff;
      bottom: -6px;
      left: 0;
      border-radius: 3px;
    }

    .about-section ul {
      list-style: none;
      padding-left: 0;
    }

    .about-section li {
      padding-left: 25px;
      margin-bottom: 8px;
      position: relative;
    }

    .about-section li::before {
      content: '🐾';
      position: absolute;
      left: 0;
      top: 0;
    }

    .intro, .closing {
      text-align: center;
      font-style: italic;
      color: #555;
      margin-bottom: 30px;
    }

    /* TEAM SECTION */
    .team-section {
      text-align: center;
      padding: 60px 20px 80px;
      background: linear-gradient(135deg, #f8faff, #e9efff);
    }

    .team-section h2 {
      color: #1a148e;
      font-size: 2rem;
      margin-bottom: 40px;
      position: relative;
    }

    .team-section h2::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 3px;
      background: #4b73ff;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
    }

    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .team-card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 260px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(26,20,142,0.25);
    }

    .team-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .team-info {
      padding: 20px;
    }

    .team-info h3 {
      font-size: 18px;
      color: #1a148e;
      margin-bottom: 5px;
    }

    .team-info p {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
    }

    .team-social {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .team-social a {
      color: #4b73ff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .team-social a:hover {
      color: #1a148e;
    }
/* FLIP CARD EFFECT */
.team-card {
  perspective: 1000px;
  width: 260px;
  height: 360px;
}

.team-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.team-card:hover .team-inner {
  transform: rotateY(180deg);
}

.team-front, .team-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.team-front {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.team-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-back {
  background: linear-gradient(135deg, #1a148e, #3658f7);
  color: #fff;
  transform: rotateY(180deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.team-back h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffd700;
}

.team-back p {
  font-size: 14px;
  line-height: 1.5;
  color: #f5f5f5;
}
.map-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #f9faff 0%, #eef1ff 100%);
  position: relative;
  overflow: hidden;
}

.map-section h2 {
  color: #1a148e;
  font-size: 30px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  animation: fadeInDown 1s ease;
}

.map-section h2 i {
  font-size: 32px;
  color: #ff9800;
  animation: bounce 2s infinite;
}

.map-section p {
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(26, 20, 142, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(26, 20, 142, 0.35);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.map-section a {
  display: inline-block;
  margin-top: 25px;
  background: #1a148e;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.map-section a:hover {
  background: #2b21c5;
  transform: translateY(-3px);
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

    /* ANIMATIONS */
    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes slideUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .about-container {
        width: 90%;
        padding: 25px;
      }

      .hero {
        background-attachment: scroll;
        padding: 90px 20px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .team-card {
        width: 90%;
      }
    }