/* * {
  outline: 1px solid red
} */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;    
}

:root{
  --primary-color: #50d050;
  --primary-color-dark: #006400;
  --text-dark: #333333;
  --text-light: #767268;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Bebas Neue", sans-serif;
}

.introduction-section {
    width: 100%;
    height: 100vh;
}

.company-introduction {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.company-introduction .content {
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    
}

/* @media (max-width: 995px) {
  .company-introduction {
      flex-direction: column;
      text-align: center;
      padding-left: 10px;
      padding-right: 10px;
      height: 100%;
  }
  .company-logo {
      margin-bottom: 20px;
  }
} */


.description {
  flex: -1;
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: bold;
  line-height: 3;
}


/* #carousel_section{
    background: linear-gradient(to right, #3e413e, #006400);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
} */

.carousel-container {
    width: 100%;
    margin: auto;
    height: 100%;
    /* background: linear-gradient(to right, #67d567 ,#157615,#67d567); */
}

.carousel-inner {
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: 1400px;
}

.carousel-inner img {
    width: 100%;
    height: auto; /* Ensures the aspect ratio is maintained */
    object-fit: contain; /* Prevents cropping */
}

.video-section .card{
    width: 100%;
    height: auto;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 16px;
  }

  .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 250px);
      gap: 15px;
  }

  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .gallery-item:hover {
      transform: scale(1.02);
  }

  .gallery-item-1 {
      min-width: 600px;
      grid-column: 1 / 2;
      grid-row: 1 / 3;
  }

  .gallery-item-2 {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
  }

  .gallery-item-3 {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
  }

  .gallery-item-4 {
      grid-column: 3 / 3;
      grid-row: 1 / 2;
  }

  .gallery-item-5 {
      grid-column: 3 / 3;
      grid-row: 2 / 2;
  }

  .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      color: white;
  }

  .category-tag {
      background: #007bff;
      padding: 6px 14px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      align-self: flex-start;
      text-transform: uppercase;
  }

  .content {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .time {
      font-size: 13px;
      opacity: 0.9;
  }

  .content .title {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.3;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }

  .gallery-item-1 .title {
      font-size: 28px;
  }

  @media (max-width: 768px) {
      .gallery {
          grid-template-columns: 1fr;
          grid-template-rows: repeat(5, 300px);
      }

      .gallery-item-1,
      .gallery-item-2,
      .gallery-item-3,
      .gallery-item-4,
      .gallery-item-5 {
          grid-column: 1 / 2;
      }

      .gallery-item-1 { grid-row: 1 / 2; }
      .gallery-item-2 { grid-row: 2 / 3; }
      .gallery-item-3 { grid-row: 3 / 4; }
      .gallery-item-4 { grid-row: 4 / 5; }
      .gallery-item-5 { grid-row: 5 / 6; }
  }

.video-label {
      background-color: #7f83bf;
      color: white;
      font-weight: 600;
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 0.25rem;
      position: absolute;
      top: 1rem;
      left: 1rem;
      z-index: 10;
    }
    .video-title {
      font-weight: 700;
      font-size: 1.25rem;
      color: white;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
      position: absolute;
      bottom: 1.25rem;
      left: 1rem;
      right: 1rem;
      line-height: 1.2;
      z-index: 10;
    }
    .video-meta {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      color: white;
      font-size: 0.75rem;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
      display: flex;
      gap: 1rem;
      align-items: center;
      z-index: 10;
    }
    .video-meta > div {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .video-meta i {
      font-size: 14px;
    }
    .section-header {
      color: #7f83bf;
      font-weight: 600;
      font-size: 16px;
    }
    .btn-nav {
      width: 32px;
      height: 32px;
      border: 1px solid #dee2e6;
      border-radius: 0.25rem;
      color: #6c757d;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
    }
    .btn-nav:hover {
      background-color: #f8f9fa;
      color: #495057;
    }
    .sidebar-section h3 {
      font-weight: 600;
      font-size: 14px;
      color: #212529;
    }
    .sidebar-section hr {
      border-color: #dee2e6;
      margin-top: 0.25rem;
      margin-bottom: 1rem;
    }
    .sidebar-icon {
      color: #adb5bd;
      font-size: 1.25rem;
    }
    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }
    .video-thumb {
      border-radius: 0.375rem;
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .main-video {
      border-radius: 0.375rem;
      width: 100%;
      height: 350px;
      object-fit: cover;
      position: relative;
    }
    @media (max-width: 991.98px) {
      .main-row {
        flex-direction: column !important;
      }
      .sidebar {
        max-width: 100% !important;
      }
    }
    
.title{
  padding-top: 50px;
  justify-content: center;
  text-align: center;
  font-family: 'Bebas Neue',sans-serif;
  color: white;
  font-size: 55px;
  font-weight: 100;
}

.profile-button{
  font-size: 20px; 
  outline: 2px solid black; 
  border-radius: 40px;
}

#content{
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#aboutus{  
  display: flex;
  min-height: 100vh;
  width: 100%;
  background-color: var(--primary-color);
  padding: 50px 0;
  justify-content: center;
}

#aboutus h1{
  top: 0;
  font-family: var(--header-font);
  font-size: 100px;
}

.aboutus-content{
  display: flex;
  justify-content: center;
  align-items: center;
}

#aboutus .card {
  height: 70vh; 
  border: 2px; 
  border-radius: 10px;       
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  padding: 20px;            
  background-color: #f8f9fa; 
  width: 80%;
}

#aboutus button{
  width: 150px;
  height: 40px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.1); 
}

#aboutus button:hover{
  color: black;
  background-color: greenyellow;
  transition: smooth 1.3s ease;
}

.media-section {
  padding: 60px 20px;
  background: #23304d; /* dark background */
}

.media-container {
  max-width: 1200px;
  margin: auto;
}

.media-title {
  color: white;
  font-size: 2rem;
  text-align: center;
  text-decoration: underline;
}

.media-subtitle {
  color: gray;
  text-align: center;
  margin-bottom: 40px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.media-item {
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-item:hover img {
  transform: scale(1.08);
}


.profile-button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 10rem;
    z-index: 1;
}
  
.profile-button:hover {
    background: #0056b3;
}
  

.video-container{
  background: url('../images/landing/header-bg.jpg') no-repeat;
  background-size: cover;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}

.video-container .title{
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
}

.video-desc {
    font-size: 30px;
    font-weight: bold;

}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgb(136, 136, 235);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.3s ease-in-out;
}

.play-button::after {
    color: white;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
}

.play-button:hover::before {
    opacity: 1;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.6), 0 0 50px rgba(0, 123, 255, 0.6), 0 0 100px rgba(0, 123, 255, 0.6);
}

.play-button:hover {
    background-color: darkblue;
}

.modal button {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 5px; /* Adjust as needed */
    margin-right: 10px;
    cursor: pointer;
    background-color: white;
}

.modal button:hover {
    color: white;
    background-color: gray;
}

/* #offcanvasAboutUs {
    top: 160px;
} */