  /* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'proxima-nova', Arial, Arial, Helvetica, sans-serif;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23222b;
    padding: 10px 20px;
    position: relative;
    border-bottom: 2px solid #07041a;
    z-index: 100;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    margin-left: 20px;
}

.nav-links li {
    margin-right: 10px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 8px;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.nav-links a:hover {
    background: #EAAF0F;
    color: black;
    border-radius: 0;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Hover effect for social icons */
.social-icons img:hover {
    filter: brightness(0) invert(52%) sepia(100%) saturate(500%) hue-rotate(10deg);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
    z-index: 150;
}

/* Hero Banner */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background: url('/NSU/media/Media-Library/2025/phi/banner/videography-01.png') no-repeat center center/cover;
    overflow: hidden;
}

/* Multiple Spotlights (Smaller, Less Opaque) */
.spotlight, .spotlight.second, .spotlight.third, .spotlight.fourth {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

/* Spotlights with Different Colors */
.spotlight {
    background: radial-gradient(circle, rgba(249, 162, 120, 0.5) 20%, transparent 90%);
    animation: moveSpotlight1 8s infinite alternate ease-in-out;
}

.spotlight.second {
    background: radial-gradient(circle, rgba(180, 225, 251, 0.5) 20%, transparent 90%);
    animation: moveSpotlight2 10s infinite alternate ease-in-out;
}

.spotlight.third {
    background: radial-gradient(circle, rgba(165, 27, 173, 0.5) 20%, transparent 90%);
    animation: moveSpotlight3 12s infinite alternate ease-in-out;
}

.spotlight.fourth {
    background: radial-gradient(circle, rgba(7, 4, 26, 0.5) 20%, transparent 90%);
    animation: moveSpotlight4 14s infinite alternate ease-in-out;
}

/* Different Spotlight Movements */
@keyframes moveSpotlight1 {
    0% { top: 10%; left: 5%; }
    50% { top: 40%; left: 50%; }
    100% { top: 20%; left: 80%; }
}

@keyframes moveSpotlight2 {
    0% { top: 70%; left: 10%; }
    50% { top: 30%; left: 75%; }
    100% { top: 60%; left: 5%; }
}

@keyframes moveSpotlight3 {
    0% { top: 20%; left: 15%; }
    50% { top: 50%; left: 60%; }
    100% { top: 10%; left: 90%; }
}

@keyframes moveSpotlight4 {
    0% { top: 60%; left: 30%; }
    50% { top: 25%; left: 70%; }
    100% { top: 50%; left: 20%; }
}

/* Hero Text */
.hero-text {
    position: absolute;
    top: 25%;
    left: 5%;
    color: white;
    text-transform: uppercase;
    z-index: 10;
}

/* Adjusted Text Sizes */
.hero-text h1 {
    font-size: 50px; 
    font-weight: 900;
    line-height: 1;
    color: #FFFFFF;
}

.hero-text .internship {
    font-size: 40px; 
    font-weight: 400;
    position: relative;
    left: 0;
    top: 10px;
}


/* Desktop View */
@media (min-width: 1024px) {
    .social-icons img {
        width: 18px;
        height: 18px;
        margin-right: 15px;
    }

    .social-icons {
        gap: 12px;
    }
}

/* Mobile View  */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #23222B;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        width: 100vw;
        z-index: 200;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 20px;
        display: block;
        width: 100%;
    }

    /* Fixing .hero section */
    .hero {
        width: 100vw;
        max-width: 100%;
        height: 450px;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .hero-text h1 {
      font-size: 32px;
      font-weight: 700;
}
    .hero-text .internship {
    font-size: 22px;
    }
}

/* ///////////////////////////////////////////////////   */

/* About Section */
.content-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
}

.about {
    text-align: left;
}

.about-heading {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 5px;
  color: #282727;
}

.about p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-heading {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .about p {
        font-size: 16px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about p {
        font-size: 16px;
    }
}

/* ///////////////////////////////////////////////////////  */

 /* Video Section */
    .video-section {
      width: 100%;
      padding: 60px 5%;
      background: url('/NSU/media/Media-Library/2025/phi/banner/videography-02.png') no-repeat center center/cover;
      background-size: cover;
      position: relative;
    }

    .video-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.44);
      z-index: 1;
    }

    .video-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 35px;
      margin-bottom: 50px;
      position: relative;
      z-index: 2;
    }

    .video-block {
      width: 735px;
      height: 437px;
      border-radius: 8px;
      overflow: hidden;
    }

    .video-block iframe {
      width: 100%;
      height: 100%;
    }

    .video-card {
      width: 385px;
      height: 437px;
      background: white;
      padding: 25px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .video-card h2 {
      font-size: 24px;
      margin-bottom: 5px;
      margin-top: 5px;
    }

    .video-card p {
      font-size: 18px;
      line-height: 1.6;
      color: #444;
      margin-top: 5px;
      margin-bottom: 10px;
    }

    .gradient-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(45deg, #333, #555);
      border: none;
      color: white;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease-in-out;
      text-decoration: none;
      text-align: center;
    }

    .gradient-btn:hover {
      background: linear-gradient(45deg, #555, #222);
      transform: scale(1.05);
      color: #EAAF0F;
    }

    /* Service Requests Section */
    .content-region {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      background-color: white;
    }

    .content-region h1 {
      font-size: 32px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 30px;
      text-align: left;
        color: #282727;
    }

    .content-region p {
      font-size: 18px;
      line-height: 1.5;
      color: #333;
      margin-bottom: 24px;
      text-align: left;
    }

    .service-btn-container {
      display: flex;
      justify-content: flex-end;
    }

    .service-btn {
      display: inline-block;
      padding: 12px 20px;
      background: linear-gradient(45deg, #222, #444);
      color: white;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      border-radius: 5px;
      text-decoration: none;
      transition: all 0.3s ease-in-out;
    }

    .service-btn:hover {
      background: linear-gradient(45deg, #444, #111);
      transform: scale(1.05);
      color: #EAAF0F;
    }

    @media (max-width: 768px) {
      .service-btn-container {
        justify-content: center;
      }

      .service-btn {
        width: 95%;
      }
    }

    /* Sticky Footer */
    footer {
      background-color: #23222b;
      color: #fff;
      padding: 20px 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      position: sticky;
      bottom: 0;
      width: 100%;
      z-index: 1000;
    }

    footer a {
      color: #EAAF0F;
      text-decoration: none;
      margin-right: 15px;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-left,
    .footer-right {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-left {
      gap: 20px;
    }

    .footer-right {
      gap: 10px;
    }

    .footer-right img {
      width: 18px;
      height: 18px;
      filter: brightness(0) invert(1);
      transition: 0.3s;
    }

    .footer-right img:hover {
      filter: brightness(0) invert(52%) sepia(100%) saturate(500%) hue-rotate(10deg);
    }

    @media (max-width: 600px) {
      footer {
        flex-direction: column;
        text-align: center;
      }

      .footer-left,
      .footer-right {
        justify-content: center;
        margin-top: 10px;
      }

      .footer-left {
        flex-direction: column;
        gap: 10px;
      }
    }
