/* media.css */

/* Reset default body margin and padding */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    height: 100%;
}

/* Background Video Styles */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: brightness(50%); /* Dark overlay for readability */
}

/* Main Content Styles */
.overlay {
    position: relative;
    z-index: 1;
    color: white;
    padding-top: 70px; /* Adjust as needed to prevent content from hiding under navbar */
    padding-bottom: 70px; /* Adjust as needed to prevent content from hiding under footer */
}

.media-section {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 40px;
    border-radius: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #ffffff;
}

.section-description {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #f0f0f0;
}

.video-container {
    margin-bottom: 50px;
}

.video-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.custom-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: left;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    margin: 10px;
  }
  
  .footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section a:hover {
    color: #ff8c00;
  }
  
  .footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ff8c00;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  }
  

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .video-container iframe {
        height: 200px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


