/* ── RESET & BASE ── */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body { background:  black; overflow-x: hidden; }

        img { display: block; max-width: 99%; }

        /* ── CSS VARIABLES ── */
        :root {
            --red: #ff1a1a;
            --red-dark: #8b0000;
            --red-mid: #b30000;
             
            --bg-card: rgba(255,255,255,.04);
            --border-red: rgba(255, 26, 26, 0.3);
            --text-muted: #d0d0d0;
            --nav-h: 76px;
        }


        /* ─────────────────────────────────────
           NAVBAR
        ───────────────────────────────────── */
         :root { --nav-h: 67px; --red: #ff1a1a; --red-dark: #8b0000; }
 
    /* ════════════════════════
       NAVBAR BASE
    ════════════════════════ */
    .navbar {
      position: fixed;
      top: 4px; left: 0;
      width:90%;
		margin-left:5%;
		border-radius:40px;
      height: var(--nav-h);
      padding: 0 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(29, 28, 28, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1000;
      box-shadow: 0 3px 5px rgba(249, 26, 26, 0.55);
    }
 
    .logo img { width: 130px; display: block; }
 
    /* ════════════════════════
       HAMBURGER
    ════════════════════════ */
    .menu-btn {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      padding: 4px;
      transition: color .2s;
      z-index: 1100;
    }
    .menu-btn:hover { color: var(--red); }
 
    /* ════════════════════════
       TOP-LEVEL LINKS
    ════════════════════════ */
    .nav-links {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 6px;
    }
 
    .nav-links > li { position: relative; }
 
    .nav-links > li > a {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      padding: 10px 18px;
      border-radius: 8px;
      border: 1px solid transparent;
      transition: all .3s ease;
      white-space: nowrap;
    }
 
    .nav-links > li > a:hover,
    .nav-links > li.open > a {
      background: linear-gradient(90deg, var(--red-dark), var(--red));
      border-color: rgba(255, 255, 255, 0.15);
      color: #fff;
    }
 
    /* chevron rotation */
    .nav-links .bi-chevron-down {
      font-size: .7rem;
      transition: transform .25s;
    }
    .nav-links li.open > a .bi-chevron-down { transform: rotate(180deg); }
 
    /* ════════════════════════
       LEVEL-1 DROPDOWN
    ════════════════════════ */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      background: #1c1c1c;
      border: 1px solid rgba(255, 26, 26, 0.3);
      border-radius: 30px 4px  30px  4px;
      box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
      min-width: 260px;
      list-style: none;
      padding: 6px 7px;
      z-index: 900;
    }
 
    .dropdown.open > .dropdown-menu { display: block; }
 
    /* items inside dropdown */
    .dropdown-menu > li > a,
    .submenu-header > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 18px;
      color: #ddd;
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 500;
      white-space: nowrap;
      transition: background .15s, color .15s;
    }
 
    .dropdown-menu > li > a:hover,
    .submenu-header > a:hover {
      background: red;
      color: white;width:200px;
		border-radius: 17px 1px  17px  1px; 
    }
 
    /* ════════════════════════
       LEVEL-2 SUBMENU
    ════════════════════════ */
    .submenu-item { position: relative; }
 
    .submenu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
 
    .submenu {
      display: none;border-radius: 30px 4px  30px  4px;
      list-style: none;
      background: #141414;
      border-top: 1px solid rgba(255, 26, 26, 0.15);
      border-bottom: 1px solid rgba(255, 26, 26, 0.15);
      padding: 4px 0;
    }
 
    .submenu-item.open > .submenu { display: block;color:white; }
 
    .submenu li a {
      display: block;
      padding: 9px 32px;
      color: #aaa;
      text-decoration: none;
      font-size: 13px;
      transition: background .15s, color .15s;
    }
 
    .submenu li a:hover {
      background: red;
      color:white;border-radius: 17px 1px  17px  1px; 
    }
 
    /* chevron toggle icon */
    .toggle-icon {
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 4px;
      color: white;
      font-size: .8rem;
      flex-shrink: 0;
      transition: background .15s, color .15s, transform .25s;
    }
    .toggle-icon:hover { background: red; color: white;border-radius:9px 1px 9px 1px;}
    .submenu-item.open .toggle-icon { transform: rotate(180deg); color: white; }
 
    /* ════════════════════════
       MOBILE  (≤ 768px)
    ════════════════════════ */
    @media (max-width: 768px) {
      .navbar { padding: 0 5%; }
      .menu-btn { display: block; }
 
      /* slide-in panel */
      .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: -100%;
        width: 80%;
        height: calc(100dvh - var(--nav-h));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: #111;
        padding: 10px 0 40px;
		  border-radius:20px;
        gap: 0;
		  
        overflow-y: auto;
        transition: left .35s ease;
        z-index: 999;
        border-top: 1px solid rgba(255, 26, 26, 0.2);
      }
      .nav-links.active { left: 0; }
 
      /* top-level items full-width */
      .nav-links > li { width: 100%; }
      .nav-links > li > a {
        padding: 15px 24px;
        border-radius: 0;
        border: none;
		  
        border-bottom: 1px solid #1e1e1e;
        font-size: 15px;
      }
      .nav-links > li > a:hover,
      .nav-links > li.open > a {
        background: red;
        color: white;
      }
 
      /* dropdown → inline */
      .dropdown-menu {
        position: static;
        display: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 26, 26, 0.1);
        background: #1a1a1a;
        min-width: 100%;
      }
      .dropdown.open > .dropdown-menu { display: block; }
 
      .dropdown-menu > li > a,
      .submenu-header > a {
        padding: 13px 36px;
        font-size: 14px;
      }
 
      /* submenu → inline */
      .submenu { background: #202020; }
      .submenu li a { padding: 11px 52px; font-size: 15px; }
    }
 
    @media (max-width: 480px) {
      .logo img { width: 115px; }
    }
 /* Enquiry button */
.enquiry-btn {
  background: #ff1a1a;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
	 
  cursor: pointer;
  transition: background 0.2s ease;
}
.enquiry-btn:hover {
  background: #cc0000;
}

 
	
#popupOverlay {
  position: fixed;
  inset: 0;
 background: rgb(124 119 119 / 40%);;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
	 backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari */

}
#popupOverlay[hidden] {
  display: none;
}
#popupBox {
  background: #fff;
  padding: 25px;
  border-radius: 30px;
  width: 90%;
  max-width: 420px;
  position: relative;
}
#popupBox h3 {
  margin-bottom: 1rem;
  font-size: 21px;
}
#popupClose {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}
	#popupClose:hover{
	background:red;color:white;border-radius:3px;padding:3px 7px; }	
	
	
#popupForm {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#popupForm input,
#popupForm select,
#popupForm textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 7px;
  font-size: 0.90rem;
  outline: none;
	background:#fff;
	color:black;
  box-sizing: border-box;
}
#popupForm input:focus,
#popupForm select:focus,
#popupForm textarea:focus {
  border-color: #e0102f;
  box-shadow: 0 0 8px rgba(224, 16, 47, 0.2);
}
#popupForm button[type="submit"] {
  width: 100%;
  padding: 10px;
  background: #ff1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
#popupForm button[type="submit"]:hover {
  background: #cc0000;
}
	
	