/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f7f7f7;
}
    .hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 5%;
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

 .hero h1 {
      font-size: 3.5rem;
      max-width: 650px;
      animation: slideInLeft 1.2s ease-out;
    }

    .hero p {
      font-size: 1.2rem;
      margin: 25px 0;
      max-width: 550px;
      animation: slideInLeft 1.5s ease-out;
    }

    .buttons {
      display: flex;
      gap: 20px;
      animation: fadeInUp 2s ease;
    }

    .btn {
      background-color: #e60023;
      color: white;
      padding: 14px 26px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .btn:hover {
      transform: translateY(-3px);
      background-color: #c1001c;
    }

    .btn.video-btn {
      background-color: transparent;
      color: #fff;
      border: 2px solid white;
    }

#message {
  background: #f8f9fb;
  padding: 4rem 2rem;
}

.message-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.president-img img {
  max-width: 300px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content {
  flex: 1;
  min-width: 280px;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #0077cc;
  display: block;
  margin-top: 0.5rem;
}

.content .quote {
  font-style: italic;
  border-left: 4px solid #0077cc;
  padding-left: 1rem;
  color: #000000;
  margin: 1rem 0;
}

.content p {
  line-height: 1.6;
  color: #000000;
  margin: 0.8rem 0;
}

.signature {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #000;
}

    .video-popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .video-popup iframe {
      width: 80%;
      height: 70%;
      border: none;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(255,255,255,0.4);
    }

    .video-popup.show {
      display: flex;
    }

    .close-btn {
      position: absolute;
      top: 25px;
      right: 35px;
      font-size: 32px;
      color: #fff;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from { opacity: 0 }
      to { opacity: 1 }
    }

    @keyframes slideInLeft {
      from { transform: translateX(-100px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    @keyframes fadeInUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

@media (max-width: 768px) {
  .message-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
  }

  .president-img {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .president-img img {
    max-width: 90%;
    width: 100%;
  }

  .content h2 {
    font-size: 1.75rem;
  }

  .content h2::after {
    margin: 0.5rem auto;
  }

  .content p {
    font-size: 1rem;
  }

  .signature {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.95rem;
  }

  .message-container {
    padding: 1rem;
  }
}
