#about-us {
  width: 100%;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-us-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #002147 0%, #004080 100%);
  overflow: hidden;
}

.about-us-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-hero .text-background {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 50px;
  border-radius: 12px;
  max-width: 900px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.about-us-hero .text-background h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #002147;
  font-weight: 700;
}

.about-us-hero .text-background p {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8;
}

/* Container for the four info sections */
.about-us-sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0 auto;
  gap: 30px;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Individual section styling */
.about-us-section {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Accent borders */
.about-us-mission { border-top: 5px solid rgba(231, 76, 60, 0.8); }
.about-us-services { border-top: 5px solid rgba(241, 196, 15, 0.8); }
.about-us-why { border-top: 5px solid rgba(52, 152, 219, 0.8); }
.about-us-promise { border-top: 5px solid rgba(46, 204, 113, 0.8); }

/* Section title styling */
.about-us-section h2 {
  font-size: 2.5rem;
  color: #002147;
  margin-bottom: 25px;
  font-weight: 600;
}

.about-us-section p, .about-us-section ul {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
}

.about-us-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.about-us-section ul li::before {
  content: '✔';
  color: #28a745;
  font-size: 1.3rem;
  line-height: 1.2;
}

/* Why Choose Us - Two-column layout */
.about-us-why ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-us-why ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-us-why ul li strong {
  font-size: 1.3rem;
  color: #002147;
  font-weight: 600;
  margin-right: 5px;
}

/* Team Page Section */
.team-page {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Team Intro Section */
.team-page__intro {
  text-align: center;
  margin: 0 auto 60px auto;
}

.team-page__intro h1 {
  font-size: 3.5rem;
  color: #002147;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-page__intro p {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8;
}

/* Slideshow Container */
.team-slideshow-container {
  width: 100%;
  height: 400px;
  margin: 40px auto 60px auto;
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 20%;
}

/* Team Container */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

/* Team Member Card */
.team-member {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  max-width: 100%;
  opacity: 0;
}

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

/* Member Photo */
.member-photo {
  width: 100%;
  max-width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Member Info */
.member-info {
  padding: 0 20px 20px 20px;
}

.member-name {
  font-size: 2rem;
  color: #002147;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-title {
  font-size: 1.5rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-info p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
}

/* Fade In and Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add colored gradient side borders to team member cards */
.team-member:nth-child(1) {
  border-left: 5px solid #aed6f1;
  background: linear-gradient(to top, #ebf5fb, #ffffff 20%);
}

.team-member:nth-child(2) {
  border-left: 5px solid #a9dfbf;
  background: linear-gradient(to top, #eafaf1, #ffffff 20%);
}

.team-member:nth-child(3) {
  border-left: 5px solid #f9e79f;
  background: linear-gradient(to top, #fef9e7, #ffffff 20%);
}

.team-member:nth-child(4) {
  border-left: 5px solid #f5b7b1;
  background: linear-gradient(to top, #fdecea, #ffffff 20%);
}

.team-member:nth-child(5) {
  border-left: 5px solid #aed6f1;
  background: linear-gradient(to top, #ebf5fb, #ffffff 20%);
}

.team-member:nth-child(6) {
  border-left: 5px solid #a9dfbf;
  background: linear-gradient(to top, #eafaf1, #ffffff 20%);
}

.team-member:nth-child(7) {
  border-left: 5px solid #f9e79f;
  background: linear-gradient(to top, #fef9e7, #ffffff 20%);
}

.team-member:nth-child(8) {
  border-left: 5px solid #f5b7b1;
  background: linear-gradient(to top, #fdecea, #ffffff 20%);
}

.team-member:nth-child(9) {
  border-left: 5px solid #aed6f1;
  background: linear-gradient(to top, #ebf5fb, #ffffff 20%);
}

/* Team member animation */
.team-member {
  opacity: 0;
  transform: translateY(80px);
  transition: 
    opacity 1.5s ease-out var(--delay, 0s),
    transform 0.6s ease-out var(--delay, 0s);
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-us-hero {
    height: 350px;
  }

  .about-us-hero .text-background h1 {
    font-size: 2.8rem;
  }

  .about-us-hero .text-background p {
    font-size: 1.2rem;
  }

  .team-slideshow-container {
    height: 500px;
  }

  .team-page__intro h1 {
    font-size: 2.8rem;
  }

  .team-page__intro p {
    font-size: 1.2rem;
  }

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

@media (max-width: 768px) {
  .about-us-hero {
    height: 300px;
  }

  .about-us-hero .text-background {
    padding: 20px 30px;
  }

  .about-us-hero .text-background h1 {
    font-size: 2.2rem;
  }

  .about-us-hero .text-background p {
    font-size: 1.1rem;
  }

  .about-us-sections {
    padding: 40px 20px;
  }

  .about-us-section {
    padding: 30px 20px;
  }

  .team-page {
    padding: 40px 20px;
  }

  .team-slideshow-container {
    height: 400px;
  }

  .team-page__intro h1 {
    font-size: 2.2rem;
  }

  .team-page__intro p {
    font-size: 1.1rem;
  }

  .team-member {
    padding: 15px;
  }

  .member-photo {
    max-width: 150px;
    height: 150px;
  }

  .member-name {
    font-size: 1.8rem;
  }

  .member-title {
    font-size: 1.3rem;
  }
}


/* Document Security Page Styles */
.document-security-wrapper {
  position: relative;
  overflow: hidden;    /* so bg never spills out */
  background-color: #f8f9fa;   /* same fallback as content */
  padding: 20px 20px;  /* match your original spacing */
}

.document-security-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;  /* allow clicks through */
  z-index: 0;
}

.document-security-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;          /* adjust opacity to taste */
}

.document-security-content {
  position: relative;
  z-index: 1;            /* sit above the bg */
}

.document-security {
    background-color: transparent;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}

.document-security h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000000;
  font-weight: normal;
}

.document-security p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px;
}
.document-security ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}
.document-security ul li {
    font-size: 1.3rem;
    line-height: 1.8;
    background: #fff;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .document-security h2 {
        font-size: 2rem;
    }
    .document-security p,
    .document-security ul li {
        font-size: 1rem;
    }
}

/* Document Security PDF Embed */
.document-security-pdf {
    padding: 40px 0;
    background-color: transparent;
  }
  
  .document-security-pdf .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .document-security-pdf h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
  }
  
  .document-security-pdf iframe {
    width: 100%;
    height: 1000px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .document-security-pdf iframe:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  
  /* Make iframe height more flexible on smaller screens */
  @media (max-width: 768px) {
    .document-security-pdf iframe {
      height: 400px;
    }
  }
  


/* Eco Policy Page Styles */

.eco-policy-wrapper {
  position: relative;
  overflow: hidden;    /* so bg never spills out */
  background-color: #f8f9fa;   /* same fallback as content */
  padding: 10px 20px;  /* match your original spacing */
}

.eco-policy-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;  /* allow clicks through */
  z-index: 0;
}

.eco-policy-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;          /* adjust opacity to taste */
}

.eco-policy-content {
  position: relative;
  z-index: 1;            /* sit above the bg */
}

.eco-policy {
    background-color: transparent;
    color: #333;
    padding: 60px 0;
    text-align: center;
}
.eco-policy h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
    font-weight: normal;
}
.eco-policy h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: normal;
    padding-left: 40px;
    padding-right: 30px;
}
.eco-policy p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    max-width: 780px;
    margin: 0 auto 20px;
}
.eco-policy ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}
.eco-policy ul li {
    font-size: 1.3rem;
    line-height: 1.8;
    background: #fff;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}
/* Content Wrapper for image and text */
.eco-policy .content-wrapper {
    display: block;
    padding: 0;
    background: none;
}
.eco-policy .tutorial-container {
    margin: 20px auto;
    text-align: center;
}
.eco-policy img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
    .eco-policy .content-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
    }
    .eco-policy .text-content,
    .eco-policy .image-container {
        flex: 1;
    }
    .eco-policy .text-content {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .eco-policy h2 {
        font-size: 2rem;
    }
    .eco-policy p,
    .eco-policy ul li {
        font-size: 1rem;
    }
}