/* about.css */

/* Background video setup */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Optional overlay for contrast */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity */
  z-index: -1;
}

/* Ensure body content stays above video and overlay */
body {
  position: relative;
  z-index: 0;
  color: #fff;
}

/* About content section styling */
.about-section {
  max-width: 900px;
  margin: 100px auto 60px; /* Center the section horizontally */
  padding: 30px; /* Add padding for better spacing */
  text-align: justify; /* Justify the text for clean alignment */
  color: #ffffff; /* Ensure text color contrasts with the background */
  background-color: rgba(255, 255, 255, 0.05); /* Subtle transparent background */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add a shadow for depth */
}

.about-section h1,
.about-section h2,
.about-section p,
.about-section li {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

  .about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #64ffda; /* Highlight the heading with a distinct color */
    text-align: center; /* Center-align the heading */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Add a stronger shadow for headings */
  }
  
  .about-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #64ffda; /* Use the same highlight color for subheadings */
    text-align: center; /* Center-align the subheadings */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Add a stronger shadow for subheadings */
  }
  
  .about-section p,
  .about-section ul {
    font-size: 1.2rem;
    line-height: 1.8; /* Increase line height for better readability */
    margin-bottom: 20px;
  }
  
  .about-section ul {
    list-style-type: disc; /* Use a disc for list items */
    padding-left: 40px; /* Add padding to align the list properly */
  }
  
  .about-section ul li {
    margin-bottom: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-section {
      width: 90%;
      padding: 20px;
    }
    .about-section h1 {
      font-size: 2rem;
    }
    .about-section h2 {
      font-size: 1.5rem;
    }
  }
  

  /* footer */
  
/* footer  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer {
  background: #0a192f;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  text-align: center;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #64ffda;
}

.footer-section ul {
  list-style: none;
  margin-top: 10px;
}

.footer-section ul li {
  margin: 10px 0;
  font-size: 1rem;
}

.footer-section ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #64ffda;
}

.footer-section p {
  margin: 8px 0;
  font-size: 1rem;
}

.footer-section a {
  color: #64ffda;
  text-decoration: none;
}

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

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-icons a {
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s, color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #1d3557;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-branch h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #64ffda;
}

.footer-branch p {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section ul li a {
    justify-content: center;
  }
}

/* Ensure footer is properly aligned */
footer.footer {
    margin-top: auto; /* Push footer to the bottom */
}

/* Layout wrapper to separate content from video/overlay */
.about-wrapper {
  position: relative;
  z-index: 1; /* keep above video & overlay */
  padding: 80px 20px;
}

/* Two-column grid: text + image */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 36px;
}

/* Intro text block */
.about-intro h1 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  color: #64ffda;
  text-align: left;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.about-intro p {
  color: #eaf6ff;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: justify;
}

.about-bullets {
  margin-top: 6px;
  padding-left: 20px;
  color: #dbeeff;
  list-style: disc;
  line-height: 1.7;
}

/* Image placeholder / inauguration photo */
.about-image {
  display: flex;
  justify-content: center;
  align-items: start;
  /* keep container above video */
  z-index: 1;
}

.about-images {
  display: flex;
  flex-direction: column; /* stack images vertically */
  gap: 18px;
  width: 100%;
  max-width: 420px;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(100,160,255,0.06);
  object-fit: cover;
}

/* Responsive: ensure images shrink nicely on small screens */
@media (max-width: 900px) {
  .about-images { gap: 12px; }
  .about-image img { border-radius: 8px; }
}

/* What we do section */
.what-we-do {
  max-width: 1100px;
  margin: 12px auto 80px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(10,20,36,0.06), rgba(10,20,36,0.03));
  border-radius: 12px;
  color: #eaf6ff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.what-we-do h2 {
  color: #64ffda;
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: left;
}

.what-we-do p {
  color: #dbeeff;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: justify;
}

.do-list {
  list-style: disc;
  padding-left: 22px;
  color: #dbeeff;
  line-height: 1.6;
}

/* Responsive rules */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .about-wrapper {
    padding: 40px 16px;
  }

  .what-we-do {
    margin: 20px 12px 60px;
    padding: 18px;
  }
}

/* Keep footer pushed down */
footer.footer { margin-top: auto; }
