body {
      margin: 0;
      font-family: "Segoe UI", sans-serif;
      background: linear-gradient(180deg, #000814, #001d3d);
      color: #fff;
    }

    
    /* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

/* Mobile First - Base styles for mobile */
@media (min-width: 480px) {
  header {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  header {
    padding: 20px 50px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 480px) {
  .logo {
    gap: 10px;
  }
}

.logo img {
  height: 35px;   /* Smaller on mobile */
  width: auto;
  display: block;
  filter: invert();
}

@media (min-width: 480px) {
  .logo img {
    height: 40px;
  }
}

@media (min-width: 768px) {
  .logo img {
    height: 50px;
  }
}

/* Menu Button (3 dots) */
.menu-btn {
  font-size: 22px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  /* Ensure button is touch-friendly */
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .menu-btn {
    font-size: 24px;
    padding: 6px 10px;
    border-radius: 7px;
  }
}

@media (min-width: 768px) {
  .menu-btn {
    font-size: 28px;
    padding: 5px 10px;
    border-radius: 8px;
  }
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Overlay Container */
.overlay {
  margin: 15px auto;
  width: 95%;
  max-width: 900px;
  background: rgba(70, 70, 70, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px 15px;
  /* Mobile: Single column layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  /* hidden by default */
  display: none;
  position: relative;
  box-sizing: border-box;
}

/* Small Mobile - 2 columns */
@media (min-width: 400px) {
  .overlay {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    padding: 20px;
  }
}

/* Medium Mobile - Still 2 columns but more spacing */
@media (min-width: 480px) {
  .overlay {
    margin: 20px auto;
    width: 90%;
    gap: 20px 40px;
    padding: 25px 25px;
    border-radius: 10px;
  }
}

/* Tablet - 3 columns */
@media (min-width: 768px) {
  .overlay {
    grid-template-columns: repeat(3, auto);
    gap: 25px 50px;
    padding: 25px 35px;
    width: 85%;
  }
}

/* Desktop - 4 columns (original layout) */
@media (min-width: 1024px) {
  .overlay {
    grid-template-columns: repeat(4, auto);
    gap: 25px 70px;
    padding: 25px 40px;
    width: fit-content;
  }
}

/* Large Desktop - More spacing */
@media (min-width: 1200px) {
  .overlay {
    gap: 30px 80px;
    padding: 30px 50px;
  }
}

.overlay a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  /* Ensure links are touch-friendly */
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (min-width: 480px) {
  .overlay a {
    padding: 12px 18px;
    border-radius: 7px;
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .overlay a {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
  }
}

.overlay a:hover,
.overlay a.active {
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  transform: translateY(-1px);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  display: none; /* hidden initially */
  transition: all 0.3s ease;
}

@media (min-width: 480px) {
  .close-btn {
    top: 20px;
    right: 20px;
    width: 33px;
    height: 33px;
    border-radius: 7px;
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .close-btn {
    top: 25px;
    right: 35px;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .close-btn {
    right: 50px;
  }
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Additional responsive utilities */
@media (max-width: 479px) {
  /* Very small screens - ensure no horizontal scroll */
  .overlay {
    margin: 10px;
    width: calc(100% - 20px);
    padding: 15px 10px;
  }
  
  .overlay a {
    font-size: 13px;
    padding: 10px 12px;
    min-height: 40px;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .overlay {
    margin: 10px auto;
    padding: 15px 20px;
    gap: 15px 25px;
  }
  
  .overlay a {
    padding: 8px 12px;
    min-height: 36px;
    font-size: 13px;
  }
  
  .close-btn {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* High DPI/Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .menu-btn,
  .close-btn,
  .overlay a {
    /* Slightly thicker borders for crisp rendering on high DPI */
    border-width: 0.5px;
  }
}

/* Ensure overlay doesn't break on very wide screens */
@media (min-width: 1400px) {
  .overlay {
    max-width: 1200px;
  }
}

/* Animation classes for smooth show/hide */
.overlay.show {
  display: grid;
  animation: fadeInScale 0.3s ease-out;
}

.overlay.hide {
  animation: fadeOutScale 0.2s ease-in;
}

.close-btn.show {
  display: flex;
  animation: fadeIn 0.3s ease-out 0.1s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

    

    /* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("images/bg.png") no-repeat center/cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
}

.hero h1 span {
  color: #2ec4f1;
}

.hero p {
  margin: 1rem auto 2rem;
  font-size: 1.05rem;
  max-width: 720px;
  color: #cfd8dc;
}

/* Stats Section */
.stats {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  min-width: 120px;
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
}

.icon-box img {
  width: 28px;
  height: 28px;
}

.stat h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.stat p {
  font-size: 0.95rem;
  color: #b0bec5;
}

/* Button */
.btn {
  padding: 0.9rem 2.2rem;
  background: #2ec4f1;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: #1aa5cc;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
}
  .about-container {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .about-container h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #1e9bff;
      margin-bottom: 15px;
    }

    .about-container > p {
      font-size: 1rem;
      color: #cfcfcf;
      max-width: 900px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    /* Layout grid */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Glass box */
    .glass-box {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 20px;
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      text-align: left;
    }

    .glass-box h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }

    .glass-box p {
      font-size: 0.95rem;
      color: #cfcfcf;
      line-height: 1.5;
    }

    /* Highlights box */
    .highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 15px;
    }

    .highlight-item {
      background: rgba(255, 255, 255, 0.08);
      padding: 44px;
      border-radius: 10px;
      text-align: center;
      font-size: 0.9rem;
      margin-top: 20px;
    }

    .highlight-item span {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
      color: #1e9bff;
      margin-bottom: 4px;
    }

    .key-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1e9bff;
      margin-bottom: 12px;
    }

    /* Bottom features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .feature-box {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 25px;
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
    }

    .feature-box .icon {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .feature-box .title {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 6px;
    }

    .feature-box .desc {
      font-size: 0.9rem;
      color: #cfcfcf;
      line-height: 1.4;
    }
/* ✅ Responsive Media Queries */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-container h2 {
    font-size: 1.8rem;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .feature-box {
    padding: 20px;
  }

  .highlight-item {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .about-container h2 {
    font-size: 1.5rem;
  }

  .about-container > p {
    font-size: 0.9rem;
  }

  .glass-box {
    padding: 15px;
  }

  .feature-box {
    padding: 18px;
  }

  .highlight-item {
    padding: 20px;
  }
}
    .stats-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .stats-section h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #8be9fd;
    }

    .stats-section p {
      max-width: 700px;
      margin: 0 auto 50px;
      font-size: 1rem;
      line-height: 1.6;
      color: #cfd8dc;
    }

    /* Top Numbers Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .card {
      padding: 35px 20px;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .card h3 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #00e0ff;
    }

    .card span {
      font-size: 0.95rem;
      color: #d0d0d0;
    }

    /* Bottom Feature Grid */
    .bottom-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .icon-card {
      padding: 30px 20px;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .icon {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
      font-size: 1.5rem;
      color: #8be9fd;
    }

    .icon-card h4 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: #fff;
    }

    .icon-card p {
      font-size: 0.9rem;
      line-height: 1.5;
      color: #cfd8dc;
    }
    .abc{
       background: linear-gradient(to bottom, #0b1a2a, #000);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      flex-direction: column;
      padding: 40px 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 15px;
      font-size: 2.2rem;
      font-weight: 700;
      color: #4fd1c5;
    }

    .section-subtitle {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1rem;
      font-weight: 400;
      color: #ccc;
    }

    .sites-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      max-width: 1100px;
      width: 100%;
    }

    .site-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #fff;
      padding: 20px;
      min-height: 220px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .site-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .site-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: -1;
      filter: brightness(0.6);
    }

    /* Individual Card Backgrounds */
    .north-tonawanda::before {
      background-image: url("images/proj1.png");
    }
    .buffalo::before {
      background-image: url("images/proj2.png");
    }
    .alabama::before {
      background-image: url("images/proj3.png");
    }
    .north-carolina::before {
      background-image: url("images/proj4.png");
    }

    .site-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #4fd1c5;
      margin-bottom: 8px;
    }

    .site-location {
      font-size: 0.95rem;
      font-weight: 400;
      margin-bottom: 10px;
    }

    .site-capacity {
      display: inline-block;
      background: rgba(0, 0, 0, 0.6);
      padding: 5px 10px;
      border-radius: 5px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .site-description {
      font-size: 0.9rem;
      line-height: 1.4;
      margin-bottom: 10px;
      color: #ddd;
    }

    .learn-more {
      font-size: 0.9rem;
      color: #4fd1c5;
      font-weight: 500;
      text-decoration: none;
    }

    .learn-more:hover {
      text-decoration: underline;
    }

    @media(max-width: 768px) {
      .sites-grid {
        grid-template-columns: 1fr;
      }
    }
       .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header1 {
            text-align: center;
            margin-bottom: 60px;
        }

        .header1 h1 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .header1 p {
            color: #b0b8c4;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-title1 {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(64, 192, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 20px;
            height: 20px;
            fill: #40c0ff;
        }

        .contact-details h4 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 5px;
            color: #ffffff;
        }

        .contact-details p {
            font-size: 0.9rem;
            color: #b0b8c4;
        }

        .business-hours {
            margin-top: 40px;
        }

        .hours-grid {
            display: grid;
            gap: 12px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .hours-row .day {
            color: #b0b8c4;
            font-size: 0.9rem;
        }

        .hours-row .time {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-grid {
            display: grid;
            gap: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        label {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: #ffffff;
        }

        input, select, textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 12px 15px;
            color: #ffffff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #40c0ff;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(64, 192, 255, 0.1);
        }

        input::placeholder, textarea::placeholder {
            color: #7a8390;
        }

        select {
            cursor: pointer;
        }

        select option {
            background: #1a1a2e;
            color: #ffffff;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .submit-btn {
            background: linear-gradient(135deg, #40c0ff 0%, #0099cc 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #0099cc 0%, #007399 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(64, 192, 255, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .header1 h1 {
                font-size: 2rem;
            }

            .contact-info, .form-section {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 15px;
            }

            .contact-info, .form-section {
                padding: 25px;
            }

            .header1 h1 {
                font-size: 1.8rem;
            }
        }

         /* footer */
    footer {
       background-color: #000000;
      color: #fff;
      padding: 60px 10%;
      margin-top: 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-left {
      flex: 1;
      min-width: 260px;
    }

    .footer-left img {
      height: 40px;
      margin-bottom: 20px;
      filter:invert();
    }

    .footer-left p {
      font-size: 15px;
      line-height: 1.6;
      color: #cfcfcf;
    }

    .footer-left a {
      color:#0088cc;
      text-decoration: none;
      display: block;
      margin-top: 10px;
    }

    .footer-columns {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      flex: 2;
      justify-content: space-between;
    }

    .footer-column h4 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 15px;
    }

    .footer-column ul li a:hover {
      color: #58a6ff;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 40px;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom p a {
      color: #58a6ff;
      text-decoration: underline;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .social-icons a {
      background-color: #24262d;
      color: #fff;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
      }

      .footer-columns {
        flex-direction: column;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }
    
    .video-bg-section {
  position: relative;
  height: 100vh;   /* full screen section */
  overflow: hidden;
}

/* Background video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Content on top of video */
.video-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 40%;
}

.video-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.video-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.video-content button {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  background: #00bcd4;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.video-content button:hover {
  background: #0097a7;
}