:root {
      --accent: #0b6e4f;
      --accent-2: #115e9b;
      --muted: #666;
      --card: #fff;
      --bg: #f6fbf9;
      --radius: 12px;
    }
html {
      scroll-behavior: smooth;
    }
    * {
      box-sizing: border-box;
    }
.logo img {
  height: 80px;   
  width: auto;    /* keeps proportions */
  display: block;
    border-radius: 50%; /* makes it circular */
    object-fit: cover;
}

    body {
      font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
      margin: 0;
      background: var(--bg);
      color: #111;
      line-height: 1.5;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* Header */
    header.site-header {
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
      color: #fff;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
    }

    .brand {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .logo {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 20px;
    }

    nav.main-nav {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    nav.main-nav a {
      color: #fff;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 8px;
      transition: background-color 0.3s;
    }

    nav.main-nav a:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .cta {
      background: #21caae;
      color: var(--accent-2);
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 600;
    }

    /* Mobile Navigation */
    .nav-toggle {
      display: none;
      background: transparent;
      border: 0;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      padding: 8px;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, var(--accent), var(--accent-2));
      flex-direction: column;
      padding: 16px;
      z-index: 999;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
      display: flex;
    }

    .mobile-nav a {
      color: #fff;
      text-decoration: none;
      padding: 12px 16px;
      border-radius: 8px;
      margin-bottom: 8px;
      transition: background-color 0.3s;
    }

    .mobile-nav a:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      padding: 48px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 24px;
      align-items: center;
    }

    .hero h1 {
      font-size: 28px;
      margin: 0 0 8px;
      line-height: 1.3;
    }

    .tagline {
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .welcome {
      background: var(--card);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(10, 10, 10, 0.05);
      margin-bottom: 16px;
    }

    .hero .actions {
      margin-top: 16px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Sections */
    section {
      padding: 48px 0;
    }

    h2 {
      margin: 0 0 16px;
      font-size: 24px;
      color: var(--accent);
    }

    h3 {
      font-size: 20px;
      margin: 0 0 12px;
    }

    p.lead {
      color: var(--muted);
      margin: 0 0 20px;
      font-size: 18px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background: var(--card);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(10, 10, 10, 0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(10, 10, 10, 0.1);
    }

    .small {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px;
    }

    .member {
      background: linear-gradient(180deg, #ffffff, #fbfff9);
      padding: 16px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s;
    }

    .member:hover {
      transform: translateY(-5px);
    }

    .member img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 12px;
      border: 3px solid var(--accent);
    }

    .member h4 {
      margin: 0 0 6px;
      color: #222;
      font-size: 16px;
    }

    .member p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    /* Programs */
    ul.programs {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    ul.programs li {
      background: #fff;
      padding: 16px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(10, 10, 10, 0.05);
      transition: transform 0.3s;
    }

    ul.programs li:hover {
      transform: translateX(5px);
    }

    /* News Carousel */
    .carousel-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 12px;
    }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.6);
      border-radius: 8px;
      padding: 15px;
    }

    /* Join Modal */
    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s;
      z-index: 1001;
      padding: 16px;
    }

    .modal.open {
      visibility: visible;
      opacity: 1;
    }

    .modal .panel {
      background: #fff;
      padding: 24px;
      border-radius: 12px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
    }

    .form-row {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }

    .form-row .field {
      flex: 1;
    }

    input, textarea, select {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-family: inherit;
      font-size: 16px;
    }

    input:focus, textarea:focus, select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(11, 110, 79, 0.2);
    }

    .btn {
      background: var(--accent);
      color: #fff;
      border: 0;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn:hover {
      background: #095c43;
    
    }

    .btn.alt {
      background: #fff;
      color: var(--accent);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .btn.alt:hover {
      background: #f5f5f5;
    }

    /* Footer */
    footer {
  background: #002b5b; /* deep blue */
  color: #fff;
  text-align: center;
  padding: 40px 10%;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-container strong {
  font-size: 1.3rem;
  color: #ffb703;
}

.footer-tagline {
  margin: 10px 0 20px;
  font-size: 1rem;
  color: #ddd;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1rem;
}

.footer-contact a {
  color: #ffb703;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  font-size: 24px;
  margin: 0 12px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ffb703;
  transform: scale(1.2);
}

footer .copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}
    .muted-block {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      margin-top: 8px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-grid {
      grid-template-columns: 1fr;
      }
      
      .hero aside {
        order: -1;
      }
      footer .container .div{
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 16px;
      }
      
      section {
        padding: 36px 0;
      }
      
      .hero {
        padding: 36px 0;
      }
      
      .hero h1 {
        font-size: 24px;
      }
      
      .form-row {
        flex-direction: column;
        gap: 12px;
      }
      
      .carousel-img {
        height: 300px;
      }
      
      footer .container {
        flex-direction: column;
        text-align: center;
      }
      
      .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
      
      .member img {
        width: 100px;
        height: 100px;
      }
    }

    @media (max-width: 576px) {
      .site-header .container {
        padding: 0 12px;
      }
      
      .nav-toggle {
        display: block;
      }
      
      nav.main-nav {
        display: none;
      }
      
      .hero .actions {
        flex-direction: column;
      }
      
      .hero .actions .btn {
        width: 100%;
        text-align: center;
      }
      
      .cards {
        grid-template-columns: 1fr;
      }
      
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .carousel-img {
        height: 250px;
      }
      
      .modal .panel {
        padding: 20px;
      }
    }

    @media (max-width: 400px) {
      .team-grid {
        grid-template-columns: 1fr;
      }
      
      .member {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #contact{
       display: list-item; 
      }
    }
footer {
  
  padding: 16px 0;
  text-align: center;
}

footer .container {
  max-width: 900px;
  margin: auto;
  padding: 0 16px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer-contact {
  margin-top: 8px;
  display: flex;
  flex-direction: column; /* Ensure the items are stacked vertically */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Ensure text is centered */
}

.footer-contact p {
  margin: 4px 0; /* Add some space between the paragraphs */
}

#OurGallery {
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 0 20px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.scout {
  background-color: orange;
  height: 100vh;
}
.scout {
  display: flex;
  justify-content: center;  /* centers horizontally */
  align-items: center;      /* centers vertically */
  min-height: 100vh; 
  padding-bottom: 150px;      
}

.scout section {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  margin-top: 0%;
}

.links {
  display: flex;
  flex-direction: column; 
  gap: 10px;
  margin-top: 15px;
    align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: rgb(218, 87, 22);
}
.links a:nth-of-type(1) {
  background-color:rgb(218, 87, 22);
  color: white;
  margin-top: 30px;
  
}

.links a:nth-of-type(2) {
  background-color: rgb(from color r g b);
  color: white;
  margin-top: 70px;
  background-color: rgb(218, 87, 22);
}

.links a:nth-of-type(3) {
  background-color: rgb(218, 87, 22);
  margin-top: 10px;
  color: white;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-contact {
    text-align: right;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .scout h1{
    font-size: 30px;
    max-width: 100%;
    padding-top: 80px;
    margin-top: 50px;
  }
}
