/* ---------------------------
   MOBILE NAVIGATION (Hamburger)
--------------------------- */
.partners-strip {
  left: 43.5%; /* ← THIS */
  transform: translateX(var(--offset, -50%));
}

.mobile-nav,
.mobile-menu-btn {
  display: none;
}

/* Hide hamburger on desktop */
.mobile-menu-btn {
  display: none;
}

.carousel-description {
  margin-top: 59px;
}

/* Mobile styles */
@media (max-width: 768px) {

.carousel-description {
  display: none;
}

  /* Show hamburger button */
  .mobile-menu-btn {
    display: block;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }

  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }

  /* Mobile nav dropdown */
  .mobile-nav {
    display: none; /* toggled via JS */
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 10px 10px;
    z-index: 99;
  }

  .mobile-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    color: #000;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  /* Ensure LOGO stays left */
  .nav-brand {
    display: flex;
    align-items: center;
  }
}
/* .CAROUSEL STYLING. */


/*the about section and Video file index */
/* ================================
   ABOUT SECTION – MOBILE STYLES
   ================================ */
@media (max-width: 768px) {

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 16px;
  }

  /* LOGO BOX */
  .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-box img {
    width: 90px;
    max-width: 100%;
    height: auto;
  }

  /* VIDEO / CONTENT BOX */
  .video-box {
    width: 100%;
  }

  /* HEADER AREA */
  .about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-align: center;
  }

  .about-header h3 {
    font-size: 20px;
    margin: 0;
  }

  .about-header img {
    width: 180px;
    max-width: 100%;
    height: auto;
  }

  /* PRESENTER TEXT */
  .video-box p {
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
    color: #555;
  }

  /* VIDEO CONTAINER */
  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .home-updates {
 width: 20%;
}
}


@media (max-width: 398) { 


  .home-updates {
 width: 23%; }
}