
    :root {
      --primary-color: #0d6efd;
      --secondary-color: #f8f9fa;
      --accent-color: #ff5722;
      --text-color: #333;
      --light-gray: #f1f1f1;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      background-color: #BF9264;
    }

    header {
      background: #B70404;
      color: #fff;
      padding: 20px 30px;
      position: relative;
      top: 0;
      z-index: 1000;
      text-align: center;
    }

    header h1 {
      font-size: 24px;
    }

    
    nav a {
      color: #fff;
      text-decoration: none;
      margin-right: 20px;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--accent-color);
    }

    section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    section h2 {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 32px;
    }

    .about, .projects, .contact {
      background: var(--light-gray);
      border-radius: 8px;
      padding: 40px;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .about.show, .projects.show, .contact.show {
      opacity: 1;
      transform: translateY(0);
    }

    .values-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .values-list li {
      background: #fff;
      padding: 15px;
      border-left: 5px solid var(--accent-color);
      border-radius: 4px;
    }

    .projects .project {
      background: #fff;
      padding: 20px;
      margin-bottom: 20px;
      border-left: 5px solid var(--primary-color);
      border-radius: 4px;
    }

    .social-icons a {
      color: var(--primary-color);
      font-size: 24px;
      margin-right: 15px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: var(--accent-color);
    }

    footer {
      background-color: var(--primary-color);
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }

    @media (max-width: 768px) {
      header {
        text-align: center;
      }

      nav {
        margin-top: 10px;
      }

      nav a {
        display: block;
        margin: 10px 0;
      }
    }


.gallery-grid img {
     width: 200px;
     height: 200px;
     object-fit: cover;
     border-radius: 4px;
     border: 2px solid #fff;
     box-shadow: 0 2px 8px rgba(0,0,0,0.2);
     transition: transform 0.3s;
     display: inline-block;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

#gallery h2 {
    color: whitesmoke;
}

.project img {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  max-width: 300px;
  height: auto;
  content: "";
  display: table;
  clear: both;
  
}

.hero {
  background-image: url('./assets/images/g.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

#partners {
  background-color: #8A0000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 10px;
}
#partners div img {
  border-radius: 10px;
}
#partners h2 {
  color: whitesmoke;
}