/* industries.css */

/* Reset default body margin and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* 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 */
}

.industries-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
    color: #fff;
}

.industry-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
}

.industry-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff8c00;
    font-weight: 600;
}

.industry-card p {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
}

/* 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) {
    .industries-section h2 {
        font-size: 2rem;
    }

    .industry-card {
        margin-bottom: 20px;
    }

    .industry-card h3 {
        font-size: 1.3rem;
    }

    .industry-card p {
        font-size: 0.9rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
