/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
}

.top-bar .social-icons i {
  margin: 0 10px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease;
}

.top-bar .social-icons i:hover,
.top-bar .contact:hover {
  color: #ffcc00;
}

.top-bar .contact {
  border-left: 1px solid #fff;
  padding-left: 12px;
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 9999;
}

/* ===================== HEADER ===================== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}

.main-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 40px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  max-height: 80px;
  transition: max-height 0.4s ease;
}

.main-header.scrolled .logo img {
  max-height: 50px;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-header.scrolled .nav-menu a {
  color: #000;
}

/* Buttons */
.btn-filled {
  background: #ffcc00;
  color: #fff;
  padding: 10px 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-filled:hover {
  background: #d99a00;
  transform: translateY(-2px);
}

/* ===================== DROPDOWN MENU ===================== */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 500;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #ffcc00;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===================== VIDEO GALLERY HERO SECTION ===================== */
.video-hero {
  position: relative;
  height: 55vh;
  background: url("/Assets/Images/Other_hero/legal-document.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.video-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.video-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.video-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.video-hero p {
  font-size: 1.2rem;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .video-hero {
    height: 100vh;
  }

  .video-hero h1 {
    font-size: 2rem;
  }

  .video-hero p {
    font-size: 1rem;
  }
}

/* ===================== OUR VIDEO GALLERY SECTION ===================== */
.Video-gallary {
  margin-top: 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.Video-gallary h3 {
  font-size: 2.2rem;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.Video-gallary h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 0;
  border-radius: 3px;
}

.Video-gallary p {
  color: #444;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ====== VIDEO GRID ====== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-grid iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===================== FILTER BUTTONS ===================== */
.filter-buttons {
  text-align: center;
  margin: 40px 0 10px;
}

.filter-buttons button {
  background: #fff;
  border: 2px solid #ffcc00;
  color: #ffcc00;
  padding: 10px 20px;
  margin: 6px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #ffcc00;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 43, 91, 0.3);
}

/* ===================== GALLERY ===================== */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding: 40px 50px;
  max-width: 1300px;
  margin: auto;
}

.video-item {
  background: linear-gradient(145deg, #ffffff, #e3e9f1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f4ff;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}

.video-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
}

.video-title {
  text-align: center;
  padding: 15px;
  font-weight: 600;
  color: #002b5b;
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}

.lightbox iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* ===================== FOOTER ===================== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-logo p,
.footer-contact p {
  line-height: 1.5;
  color: #ccc;
  margin: 8px 0;
}

.footer-contact i {
  color: #ffcc00;
  margin-right: 8px;
}

.footer-links h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

.footer-social a {
  color: #ccc;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================== RESPONSIVE ===================== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .gallery-container {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .Our-Photo-Gallary h2 {
    font-size: 2rem;
  }

  .Our-Photo-Gallary p {
    font-size: 1rem;
  }

  .gallery-container {
    column-count: 2;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-menu.show {
    right: 0;
  }

  .nav-menu a {
    color: #000;
    padding: 10px 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-header.scrolled .menu-toggle {
    color: #000;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    column-count: 1;
  }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
