
  .hero {
  position: relative; /* ⭐ THIS IS IMPORTANT */
  background: url('../images/WAREHOUSE.png');
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}
    
    /* black overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness */
  z-index: 1;
}
    
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
       position: relative;
  z-index: 2;
  
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
       position: relative;
  z-index: 2;
    }

    /* Intro */
    .intro {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      max-width: 1100px;
      margin: auto;
    }
    .intro img {
      width: 280px;
      border-radius: 12px;
      margin: 20px;
    }
    .intro-text {
      flex: 1;
      min-width: 280px;
      margin: 20px;
    }
    .intro-text h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #072f44;
    }

    /* Timeline */
    .timeline {
      background: #f9f9f9;
      padding: 60px 20px;
    }
    .timeline h2 {
      text-align: center;
      margin-bottom: 40px;
      color: #072f44;
    }
    .timeline-line {
      max-width: 800px;
      margin: auto;
      border-left: 3px solid #072f44;
      padding-left: 20px;
    }
    .timeline-item {
      margin-bottom: 30px;
       position: relative;
  padding-left: 25px;
    }
    
    .timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #072f44;
  border-radius: 50%;
}
    
    .timeline-item h3 {
      margin: 0;
      font-size: 1.2rem;
      color: #333;
    }
    .timeline-item p {
      margin: 5px 0 0;
      color: #555;
    }

    /* Vision */
    .vision {
      padding: 60px 20px;
      text-align: center;
      background: #fff;
    }
    .vision blockquote {
      font-size: 1.4rem;
      font-style: italic;
      color: #072f44;
      margin: 0 auto 30px;
      max-width: 700px;
    }

    /* Media Section */
    .media {
      background: #f1f1f1;
      padding: 60px 20px;
      text-align: center;
    }
    .media h2 {
      color: #072f44;
      margin-bottom: 20px;
    }
    
    .media-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

    .media-logos img {
      max-width: 150px;
      margin: 15px;
      filter: grayscale(100%);
      transition: 0.3s;
    }
    .media-logos img:hover {
      filter: grayscale(0);
    }

    /* CTA */
    .cta {
      background: #072f44;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .cta h2 {
      margin-bottom: 20px;
    }
    .cta a {
      display: inline-block;
      background: #fff;
      color: #072f44;
      padding: 12px 28px;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }
    .cta a:hover {
      background: #f4c542;
      color: #072f44;
    }



    /* Responsive */
    @media (max-width: 768px) {
      .intro {
        flex-direction: column;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .hero p { font-size: 1rem; }
    }


/* Founder Image with Name Overlay */
.founder-image {
  position: relative;
  margin: 20px;
}

.founder-image img {
  width: 280px;
  border-radius: 12px;
  display: block;
}

/* Caption overlay */
.founder-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 88%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 10px;
  border-radius: 12px 12px 12px 12px;
  text-align: center;
}

.founder-caption h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.founder-caption span {
  font-size: 0.9rem;
  opacity: 0.9;
}
