/* about.css */

/* Reset default body margin and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

/* 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%); /* Add a dark overlay to the video */
}

/* 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 */
}

.about-section h2, .about-section h3 {
    color: #fff;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-section h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
    font-weight: 400;
}

.animated-heading {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.animated-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff8c00;
    transition: all 0.5s ease;
}

.animated-heading:hover::after {
    left: 0;
    width: 100%;
}

/* 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 Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 0 15px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
