/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ============================
   TOP BAR
============================ */
.top-bar {
  background: #2d2d2d;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 40px;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.top-left i,
.top-right i {
  margin-right: 5px;
}

.top-right a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  .top-left,
  .top-right {
    display: flex;
    gap: 12px;
    align-items: center;
  }
}

/* ============================
   MAIN NAVIGATION
============================ */
.main-nav {
  background: #111;
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 999;
}

.main-nav .container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  max-height: 50px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  font-weight: 500;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #222;
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 1000;
  border-radius: 4px;
}

.dropdown-menu li a {
  color: #fff;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  font-size: 15px;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a:hover {
  background: #333;
}

/* ============================
   MOBILE NAVIGATION
============================ */
.mobile-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .main-nav .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    background: #000;
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 40px;
    right: -260px; /* start hidden */
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 55px;
    overflow-y: auto;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
  }

  .dropdown-menu {
    position: static;
  }

  .dropdown-menu li a {
    padding-left: 30px;
    font-size: 14px;
  }

  .mobile-toggle {
    display: block;
  }

  .logo {
    z-index: 1002;
  }
}





/* Fixed Navbar Height (adjust if needed) */

:root {
  --navbar-height: 95px; /* topbar (40px) + navbar (55px) */
}

.hero-section {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #000;
  overflow: hidden;
  padding-top: var(--navbar-height, 95px); /* fallback 95px */
  box-sizing: border-box;
}

.hero-section .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HERO CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  max-width: 650px;
}

.hero-content .badge {
  background: white;
  color: green;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ccc;
}

/* BUTTONS */
.hero-buttons .btn {
  display: inline-block;
  padding: 12px 22px;
  margin-right: 10px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: black;
  border: none;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 500px;
    padding-top: var(--navbar-height, 95px);
  }

  .hero-content {
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    padding-right: 15px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
  }
}
