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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  overflow-x: hidden;
}

/* Header Area */
.header-area {
  background: #fff;
  border-bottom: 1px solid #ddd;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
}/* ===== Desktop Menu ===== */
.desktop-menu {
  display: flex !important;
  align-items: center;
  gap: 30px;
  font-family: Arial, sans-serif;
}

.desktop-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.desktop-menu li {
  position: relative;
}

.desktop-menu a {
  color: #555559;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-menu a:hover {
  color: #db4d30;
}

.has-submenus {
  position: relative;
  cursor: pointer;
}

/* ===== Submenu / Mega Menu ===== */
.has-submenus .submenus {
  display: none;
  position: absolute;
  top: 100%; /* Below parent li */
  left: -70%;
  transform: translateX(-50%);
  min-width: 60vw;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  z-index: 2000;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.has-submenus:hover .submenus {
  display: flex;
}

.has-submenus:hover .submenus {
  display: flex;
}

.submenu-column {
  flex: 1 1 180px; /* Flexible with min width */
  min-width: 180px;
  max-width: 220px;
}

.submenu-column h4 {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.submenu-column a,
.has-submenus .submenus li a {
  display: block;
  padding: 6px 0;
  color: #555559;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submenu-column a:hover,
.has-submenus .submenus li a:hover {
  color: #db4d30;
}

/* ===== Hamburger Icon (for mobile toggle visibility only) ===== */
.hamburger-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 20px;
  z-index: 3000;
  display: none; /* Hidden on desktop by default */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

/* Colorful hamburger bars */
.hamburger-menu span:nth-child(1),
.hamburger-menu span:nth-child(3) {
  background: #FF5733;
  width: 100%;
  height: 5px;
}

.hamburger-menu span:nth-child(2) {
  background: #FFC300;
  width: 100%;
  height: 5px;
}

/* Hover effects for hamburger */
.hamburger-icon:hover .hamburger-menu span:nth-child(1) {
  background: #f9f9fb;
}

.hamburger-icon:hover .hamburger-menu span:nth-child(2) {
  background: #FFD700;
}

.hamburger-icon:hover .hamburger-menu span:nth-child(3) {
  background: #f9f9fb;
}

/* Active state transform for hamburger menu */
.hamburger-icon.active .hamburger-menu span:nth-child(1) {
  transform: rotate(47deg) translate(10px, 8px)
}

.hamburger-icon.active .hamburger-menu span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active .hamburger-menu span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Responsive: Hide Desktop Menu on Mobile and Show Hamburger ===== */
@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .hamburger-icon {
    display: flex;
  }
}

.mobile-menu{
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {

  /* === Navigation Menu (Sliding Overlay) === */
  .nav-menu {
        display: block; /* Show nav-menu on mobile */

    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #FFA726, #F06292);
    color: #fff;
    transition: right 0.5s ease-in-out;
    padding: 60px 20px 20px;
    z-index: 20;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    scroll-behavior: smooth;
  }

  .nav-menu::-webkit-scrollbar {
    width: 8px;
  }

  .nav-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
  }

  .nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
  }


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

  /* Make nav items left-aligned */
  .nav-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
    /* Change from center to left */
  }

  /* Add consistent padding for alignment */
  .nav-menu li {
    margin: 12px 0;
    padding-left: 10px;
  }

  /* Ensure links stretch full width */
  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-menu li a::before {
    content: "›";
    margin-right: 8px;
    color: #fff;
  }

  .submenu li a::before {
    content: "•";
    margin-right: 8px;
    color: #fff;
  }

  .nav-menu li a:hover {
    color: #ccc;
  }

  /* Styling for the Live badge inside menu */
  .nav-menu .live-badges {
    color: #f4eded;
    font-weight: bold;
    margin-left: 38%;
  }

  /* === Close Icon in the Nav Menu === */
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
  }

  .nav-close:hover {
    color: #ff4d4d;
  }

  .toggle-btn {
    width: 50px;
    height: 25px;
    background: red;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
  }

  .toggle-circle {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
  }

  .logo-text {
    color: white;
    font-weight: bold;
    margin-left: 10px;
  }

  .live-badge {
    background: red;
    color: white;
    border-radius: 15px;
    font-weight: bold;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  /* === Dropdown Submenu === */
  .has-submenu {
    position: relative;
  }

  .has-submenu .submenu {
    display: none;
    flex-direction: column;
    padding-left: 0;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .has-submenu .submenu li {
    margin: 0;
  }

  .has-submenu .submenu li a {
    display: block;
    padding: 10px 2px;
    font-size: 16px;
    text-align: left;
    color: #f5f5f5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .has-submenu .submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  /* Show submenu when active */
  .has-submenu.active .submenu {
    display: flex;
  }

  /* Dropdown arrow animation */
  .submenu-toggle i {
    transition: transform 0.3s ease;
  }

  .has-submenu.active .submenu-toggle i {
    transform: rotate(180deg);
  }


  .has-submenu .submenu {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    border-radius: 5px;
    overflow: hidden;
  }

  .has-submenu.active .submenu {
    display: flex;
  }

  .has-submenu .submenu li a {
    display: block;
    padding: 10px 2px;
    text-align: left;
    font-size: 16px;
    color: #f5f5f5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Hero Section (optional context) */
.hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(74, 74, 74, 0.8), rgba(243, 111, 91, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 20px;
  color: #f5f5f5;
}