/* ==== Base Styles ==== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background: #fff; */
  color: #d1d5db;
  line-height: 1.6;
  /* background-image: url("assets/banner.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4 {
  color: #000;
  margin: 0 0 15px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   HEADER – GOLD BLACK PREMIUM
================================ */

/* RESET (IMPORTANT) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.site-header {
  width: 100%;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

/* INNER CONTAINER */
.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 30px;

  display: flex;
  justify-content: space-between; /* 🔥 KEY LINE */
  align-items: center;
}

/* LEFT */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 70px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.company-name {
  color: #ffd700;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* RIGHT */
.header-right {
  display: flex;
  gap: 35px;
}

.header-right a {
  color: #eee;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s ease;
}

.header-right a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #ffd700;
  transition: 0.3s ease;
}

.header-right a:hover {
  color: #ffd700;
}

.header-right a:hover::after {
  width: 100%;
}


/* Hover effects */
.logo:hover  {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

/* Optional: hover text glow */
.header-logo:hover .header-logo-text {
  color: #fff;
  text-shadow: 0 0 8px #ffd700, 0 0 15px #ffd700;
}




/* MOBILE */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
}




/* ==== Hero ==== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero h1 span {
  color: #ffd700;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: linear-gradient(135deg, #101436, #060815);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.launch {
  margin-top: 20px;
  font-size: 14px;
}

/* ==== Services ==== */
.grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(15, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
}

/* ==== About ==== */
.about-box {
  background: linear-gradient(135deg, #0f1224, #000);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.about-box li {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
}

/* ==== Contact ==== 
form {
  background: rgba(15, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  color: white;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

textarea {
  resize: none;
  height: 120px;
}

.contact-info {
  background: rgba(15, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
}*/

/* ==== Footer ==== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  padding: 20px;
  text-align: center;
  color: #9ca3af;
}

footer a {
  margin-left: 15px;
}

:root {
  --bg: #0b0c2a;
  --panel: #0f1224;
  --ink: #e8ebff;
  --muted: #b7bdd9;
  --gold: #ffd700;
  --line: rgba(255, 255, 255, 0.12);
  --white: #fff;
  --black: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  background: #f5f5f5;
}

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

a {
  color: var(--ink);
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 1rem;
}

h1,
h2,
h3 {
  color: var(--white);
  margin: 0.2rem 0;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--gold), #000 60%);
  font-weight: 600;
}

.btn.primary {
  background: var(--gold);
  color: #000;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand .word1 {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.brand .word2 {
  font-weight: 700;
  margin-top: -2px;
}

nav a {
  padding: 0.6rem 0.4rem;
}

nav a:hover {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.halo {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60vh;
  background: radial-gradient(
    ellipse at top,
    var(--gold) / 0.18 0%,
    transparent 60%
  );
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .grid.two {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.panel {
  background: linear-gradient(160deg, #101436, #060815);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem;
}

.shadow {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 1rem;
}

.cards {
  display: grid;
  gap: 1rem;
  
}

@media (min-width: 760px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: color-mix(in srgb, var(--panel) 80%, white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  
}

.card h3 {
  margin: 0.2rem 0 0.6rem;
}

.list {
  margin: 0.2rem 0 0 1rem;
  color: var(--muted);
}

.list li {
  margin: 0.35rem 0;
}

.about {
  background: #f5f5f5;
}

.footer {
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: #9aa0c2;
  padding: 1rem 0;
  text-align: center;
}

/* Forms */
input,
textarea {
  width: 100%;
  background: #070816;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--ink);
}

textarea {
  min-height: 140px;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Badges & chips */
.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

/* Utilities */
.center {
  text-align: center;
}

.hidden {
  display: none;
}

.wa-fab {
  position: fixed;
  left: 10px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.wa-fab:hover {
  filter: brightness(1.05);
}

header {
  width: 100%;
  background: #0b0c2ab3;
  color: #bbb;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ====== Logo ====== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  /* color: #00d084; */
}

/* ====== Navigation ====== */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}



/* nav ul li a:hover {
            color: #0A0D24;
        } */

/* ====== Responsive ====== */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #0b0c2a;
    position: absolute;
    top: 70px;
    right: 8px;
    padding: 20px;
    border-radius: 10px;
  }

  nav ul.active {
    display: flex;
    align-items: start;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }

  header {
    width: 100%;
    background: #0b0c2a;
    color: #bbb;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo span {
    font-size: 20px;
    font-weight: bold;
    /* color: #00d084; */
  }
}

.footer {
  background: #0a0d24;
  color: #f5f5f5;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

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

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffcc00;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}

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

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 14px;
  color: #aaa;
  max-width: 280px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons a {
  background: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  position: relative;
  color: #0a0d24;
  font-size: 20px;
}

.social-icons {
  display: flex;
}

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

/* Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #777;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }

  .footer-about {
    margin: auto;
  }

  .social-icons {
    justify-content: center;
  }
}

/* about us css */

.about-banner {
  position: relative;
  /* background: url("/assets/about.jpg") center/cover no-repeat; */
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* font-family: Arial, sans-serif; */
}

/* Dark overlay for readability */
/* .about-overlay {
            position: absolute;
            inset: 0;
            background: #0A0D24;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

/* Banner text */
.about-content {
  text-align: center;
  padding: 20px;
  max-width: 700px;
}

.about-content h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 18px;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 70vh;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-banner {
    height: 70vh;
  }

  .about-content h1 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
  }
}
 #menu li a:hover{
  color: grey;
 }

/* .menu-toggle {
            display: none;
        } */






        /* ===============================
   PREMIUM HEADER – GOLD & BLACK
================================ */

.main-header {
  background: linear-gradient(180deg, #0b0b0b, #000);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 1px;
}

/* LOGO HOVER */
.brand-link:hover .brand-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.6));
}

/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

/* UNDERLINE HOVER */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffd700;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #ffd700;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ACTIVE PAGE */
.nav-links li a.active {
  color: #ffd700;
}

/* CONTACT BUTTON */
.nav-btn {
  padding: 8px 18px;
  border: 1px solid #ffd700;
  border-radius: 30px;
}

.nav-btn:hover {
  background: #ffd700;
  color: #000 !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 20px;
  }
}

