 :root {
      --dark-bg: #111;
      --text-color: #fff;
      --accent-color: orange;
      --light-gray: #ccc;
      font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    

    body {
      font-family: var(--font-family);
      background-color: var(--dark-bg);
      color: var(--text-color);
      line-height: 1.6;
    }

    a {
      color: var(--text-color);
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* ==== Header ==== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }

    /* ==== Logo with animated star ==== */
    .logo {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: 2px;
      color: orange;
      position: relative;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .star-icon {
      font-size: 2rem;
      color: orange;
      display: inline-block;
      animation: spinStar 3s linear infinite, glow 1.5s ease-in-out infinite alternate;
    }

    @keyframes spinStar {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes glow {
      0% { text-shadow: 0 0 10px rgba(255,165,0,0.5); }
      100% { text-shadow: 0 0 20px rgba(255,165,0,1); }
    }

    

    .logo:hover::after {
      width: 100%;
    }

    /* ==== Navigation ==== */
    /* .main-menu ul {
      display: flex;
      gap: 30px;
    }

    .main-menu li {
      margin-left: 30px;
      padding-bottom: 50px;
    } */

   .main-menu ul {
     display: flex;
    gap: 80px; /* adjust spacing between links */
     }

 .main-menu li {
  margin-left: 0;    /* remove unnecessary extra spacing */
  padding-bottom: 55px; /* remove big bottom padding */
  }
    .main-menu a {
      font-size: 1.1rem;
      color: orange;
      position: relative;
      padding-bottom: 5px;
      transition: all 0.3s ease;
    }

    .main-menu a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: 0;
      background-color: orange;
      transition: width 0.3s ease;
    }

    .main-menu a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      color: var(--accent-color);
      cursor: pointer;
    }

    /* ==== Hero Section ==== */
    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('img/Front\ Page\ \ Image1.png');
      background-size: cover;
      background-position: center;
      opacity: 0.7;
    }

    .hero-content {
      position: relative;
      z-index: 5;
      max-width: 800px;
      padding: 0 20px;
    }

    .main-heading {
      font-size: 4rem;
      font-weight: 900;
      color: var(--accent-color);
      letter-spacing: 3px;
      margin-bottom: 20px;
    }

    .sub-text {
      font-size: 1.5rem;
      color: var(--light-gray);
      margin-bottom: 40px;
    }

    .cta-button {
      background: transparent;
      border: 2px solid var(--accent-color);
      color: var(--accent-color);
      padding: 12px 30px;
      font-size: 1.1rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: var(--accent-color);
      color: var(--dark-bg);
    }

    /* ==== Popup Form ==== */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 100;
    }

    .popup-overlay.show {
      display: flex;
    }

    .popup-form {
      background: #fff;
      color: #333;
      border-radius: 10px;
      padding: 30px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
      position: relative;
      animation: fadeIn 0.4s ease;
    }

    .popup-form h2 {
      text-align: center;
      color: orange;
      margin-bottom: 20px;
    }

    .popup-form label {
      display: block;
      margin-top: 10px;
      font-weight: 600;
    }

    .popup-form input,
    .popup-form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .submit-btn {
      background: orange;
      color: #111;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      margin-top: 15px;
      width: 100%;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: #ffb347;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.8rem;
      color: #555;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ==== Responsive ==== */
    @media (max-width: 768px) {
      .main-heading { font-size: 2.5rem; }
      .sub-text { font-size: 1.1rem; color: #f4e61b; }

      .menu-toggle { display: block; padding-bottom: 10px; }

      .main-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 50%;
        height: 100vh;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
      }

      .main-menu.active { right: 0; }

      .main-menu ul {
        flex-direction: column;
        gap: 30px;
        font-size:small;
      }

      .main-menu a { color: var(--accent-color); font-size: 1.1rem; }
    }