
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #E4E4E4;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: 600;
  background-color: #1F1F1F;
  color: #3A86FF;
  letter-spacing: 2px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #1F1F1F;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #E4E4E4;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background-color: #3A86FF;
  color: #121212;
}

.menu-toggle {
  display: none;
}

/* About Us Section */
.about-us {
  padding: 50px 20px;
  text-align: center;
}

.about-container {
  background-color: #1F1F1F;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease;
}

.about-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-container .intro {
  font-size: 18px;
}

.highlight {
  color: #3A86FF;
  font-weight: bold;
}

/* Gallery Section */
#gallery {
  padding: 50px 20px;
}

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

.photo-card {
  position: relative;
  background: #FFFFFF;
  padding: 10px;
  border: 5px solid #FFFFFF;
  border-bottom-width: 25px;
  text-align: center;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card img {
  width: 100%;
  display: block;
  height: auto;
}

.photo-card .caption {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: #121212;
  font-weight: 600;
  margin-top: 8px;
}

.photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

/* About FIRST Section */
.about-first {
  padding: 50px 20px;
  text-align: center;
  background-color: #1F1F1F;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease;
}

.about-first h1, .about-first h2 {
  color: #3A86FF;
  margin-bottom: 20px;
}

.about-first p {
  margin-bottom: 20px;
  font-size: 18px;
}

.core-values {
  margin-top: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.value-card {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  color: #121212;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card h3 {
  font-size: 20px;
  color: #3A86FF;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
}

.value-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.gracious-professionalism {
  margin-top: 50px;
  text-align: left;
  font-size: 18px;
}

.gracious-professionalism p {
  margin-bottom: 20px;
}

.gracious-professionalism strong {
  color: #D4AF37;
}

/* Mobile View */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Contact Us Section */
#contact {
  padding: 50px 20px;
  text-align: center;
}

.contact-info {
  margin-top: 30px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info a {
  text-decoration: none;
  color: #3A86FF;
  font-weight: 600;
}

.contact-info a:hover {
  color: #D4AF37;
}

/* Header */
.header {
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: 600;
  background-color: #1F1F1F;
  color: #E4E4E4;
  letter-spacing: 2px;
}

.header span {
  color: #4e4b86; /* Royal Blue */
}
