











/* VIDEO SECTION */
.video-section {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

/* Dimmed Video Background */
.video-background {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25); /* slightly brighter so details are visible */
  z-index: -1;
}

/* Overlay centered */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  padding: 0 1rem;
  width: 100%;
  max-width: 1200px;
}

/* Logo above SenpaiWorks */
.video-overlay-logo {
  width: 120px;  
  height: auto;
  filter: brightness(0) invert(1); /* make logo fully white */
  margin-bottom: 0rem;
}

/* SenpaiWorks styled, very big */
.video-logo-wrapper {
  margin-bottom: 2rem;
}

.video-logo-text {
  margin: 0;
  font-family: 'BankGothic Lt BT', sans-serif;
  font-weight: bold;
  font-size: clamp(1.5rem, 3vw, 3rem); /* main text smaller */
  color: rgba(255, 255, 255, 0.9); /* blue color */
  white-space: nowrap;
  line-height: 1.1;
  text-shadow: none;
}

.video-big {
  font-size: clamp(2.5rem, 4vw, 4rem); /* emphasized letters slightly bigger */
  color: rgba(255, 255, 255, 0.9); /* ensure big letters are blue too */
}


/* Paragraph below logo */
.video-overlay-description {
  font-size: 1.0rem;
  font-weight: 400;
  max-width: 900px;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* CTA button */
.video-cta-button {
  background: rgba(0, 102, 204, 0.9);
  color: #fff;
  padding: 18px 36px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.3s;
}

.video-cta-button:hover {
  background: #4d9dff;
}





  .why-senpaiworks {
    background: #f9f9f9;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .why-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .why-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-card h3 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 10px;
  }

  .feature-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .cta-button-wrap {
    margin-top: 50px;
  }

  .btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #111;
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .btn-cta:hover {
    background-color: #333;
  }





  .tools-used {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
  }

  .tools-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .tools-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #111;
    font-weight: 700;
  }

  .tools-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }

  .tool-category {
    margin-bottom: 50px;
  }

  .tool-category h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .tool-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
  }

  .tool img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .tool span {
    font-size: 0.9rem;
    color: #333;
  }
