:root{
      --accent:#00d4ff;
      --muted:rgba(255,255,255,0.85);
      --bg:#0b0f14;
      --card-shadow:0 12px 40px rgba(2,6,23,0.6);
      --glass: rgba(255,255,255,0.06);
      scroll-behavior:smooth;
      font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
    }
    *{box-sizing:border-box}
    body{margin:0;background:linear-gradient(180deg,#071018 0%, #0b0f14 100%);color:#fff}

    /* Top info bar */
/* ✅ Fixed Black Top Info Bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 25px;
  font-size: 0.9rem;
  background: #000; /* solid black */
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ✅ Contact Info */
.topbar .contact-info span {
  margin-right: 16px;
  color: #bfbfbf;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar .contact-info i {
  color: #00c6ff;
  font-size: 0.9rem;
}

/* ✅ Social Icons */
.topbar .socials a {
  margin-left: 12px;
  color: #00c6ff; /* blue accent */
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid transparent;
}

/* ✅ Hover Effects */
.topbar .socials a:hover {
  color: #fff;
  background: #00c6ff;
  transform: scale(1.15);
  box-shadow: 0 0 8px rgba(0, 198, 255, 0.6);
}

/* === Login Button === */
.btn-wrapper {
  display: flex;
  align-items: center; /* ✅ aligns button vertically with menu */
  margin-left: 5px; /* optional spacing */
}
.btn-wrapper .btn-login {
  background: linear-gradient(135deg, rgba(0,198,255,0.9), rgba(0,114,255,0.9));
  color: #fff;
  font-weight: 600;
  padding: 0px 10px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,198,255,0.25);
}

.btn-wrapper .btn-login:hover {
  background: linear-gradient(135deg, rgba(0,114,255,1), rgba(0,198,255,1));
  box-shadow: 0 6px 25px rgba(0,198,255,0.5);
  transform: translateY(-2px);
}


    /* Header / nav */
/* === Header === */
header {
  position: fixed;
  top: 4px; /* below topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 41px; /* Adjust based on topbar height */
}

/* === Logo section === */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


.logo img {
  height: 55px !important;
  width: auto !important;
  max-height: 55px !important;
  object-fit: contain;
  opacity: 0.95;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.2;
}

.logo-text .company-name {
  font-size: 18px;
  font-weight: 700;
}

.logo-text .company-address {
  font-size: 12px;
  opacity: 0.8;
}

/* === Navigation === */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a.nav-link:hover {
  color: #00c6ff;
}

/* === Active Nav Highlight === */
nav a.nav-link.active {
  color: #00c6ff; /* blue accent */
  font-weight: 600;
  position: relative;
}

nav a.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #00c6ff;
  border-radius: 2px;
}



    /* HERO */
    .hero{position:relative;height:75vh;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-top: 85px;}
    .hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;filter:brightness(0.75) saturate(1.1)}
    .hero .overlay{position:absolute;inset:0;background:rgba(3,6,10,0.12);backdrop-filter:blur(4px);z-index:-1}
    .hero-inner{width:50%;max-width:1200px;display:flex;gap:32px;align-items:center;z-index:10}

    .text-box{flex:1;background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));backdrop-filter:blur(12px);padding:28px;border-radius:14px;box-shadow:var(--card-shadow)}
    .text-box h1{color:var(--accent);margin:0 0 10px;font-size:2rem}
    .text-box p{color:var(--muted);line-height:1.6;margin-bottom:14px}

    .btn-primary {
      display: inline-block;
      padding: 10px 22px;
      border-radius: 10px;
      border: 1px solid var(--accent);
      background: rgba(248, 242, 242, 0.05);
      color: var(--accent);
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(8px);
    }

    .btn-primary:hover {
      background: var(--accent);
      color: #021018;
      box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    }


    .btn-wrapper {
          display: flex;
          justify-content: center;
          margin-top: 20px;
    }

    .login-box{width:200px;background:rgba(255,255,255,0.06);backdrop-filter:blur(18px);padding:12px;border-radius:12px;box-shadow:var(--card-shadow)}
    .login-box h4{margin:0 0 8px;color:var(--accent);text-align:center}
    .login-box .field{margin-bottom:8px}
    .login-box input{width:100%;padding:8px;border-radius:8px;border:none;background:rgba(255,255,255,0.08);color:#fff}
    .login-box button{width:100%;padding:8px;border-radius:8px;border:none;background:linear-gradient(90deg,var(--accent),#6dd3ff);color:#021018;font-weight:600}

    /* Sections */
    section{padding:40px 3%}
    .container{max-width:1200px;margin:0 auto}

    /* Fade in animation (initially hidden) */
    .fade-item{opacity:0;transform:translateY(18px);transition:all 1.5s cubic-bezier(.2,.9,.2,1)}
    .fade-item.in-view{opacity:1;transform:translateY(0)}

    /* About */
    .about{display:flex;gap:28px;align-items:center}
    .about .about-img{flex:0 0 380px;height:260px;border-radius:12px;background:#111 url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.0.3&s=') center/cover no-repeat;box-shadow:var(--card-shadow)}
    .about .about-text{flex:1}

    /* Packages cards */
    .cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}
    .card{background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));padding:18px;border-radius:12px;backdrop-filter:blur(8px);box-shadow:0 8px 26px rgba(2,6,23,0.45)}
    .card img{width:100%;height:140px;object-fit:cover;border-radius:8px;margin-bottom:12px}
    .card h4{margin:6px 0}
    .card p{color:var(--muted);font-size:0.95rem}

    /* Services cards */
    .pcards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}
    .pcard{background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));padding:18px;border-radius:12px;backdrop-filter:blur(8px);box-shadow:0 8px 26px rgba(2,6,23,0.45)}
    .pcard img{width:100%;height:140px;object-fit:cover;border-radius:8px;margin-bottom:12px}
    .pcard h4{margin:6px 0}
    .pcard p{color:var(--muted);font-size:0.95rem}

    .pcard ul {
      list-style-type: disc;
      padding-left: 20px;
      color: var(--muted);
      font-size: 0.95rem;
    }
    .pcard li::marker {
      color: var(--accent);
    }

    .dates-list {
      list-style: none;
      padding-left: 0;
      margin-top: 8px;
    }
    .dates-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      color: var(--muted);
      font-size: 0.95rem;
    }
    .dates-list i {
      color: var(--accent);
      font-size: 1rem;
    }

    /* Contact */
    .contact-grid{display:grid;grid-template-columns:1fr 380px;gap:24px;align-items:start}
    .contact-form input,.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:none;background:rgba(255,255,255,0.06);color:#fff;margin-bottom:10px}
    .contact-form button{padding:10px 14px;border-radius:8px;border:none;background:linear-gradient(90deg,var(--accent),#6dd3ff);color:#021018;font-weight:600}
    .office-img{width:100%;height:100%;min-height:220px;border-radius:12px;background:url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.0.3&s=') center/cover no-repeat}

    footer{padding:28px 6%;text-align:center;border-top:1px solid rgba(255,255,255,0.03);color:var(--muted)}

    @media(max-width:900px){
      .about{flex-direction:column}
      .contact-grid{grid-template-columns:1fr}
      header{padding:12px 18px}
      .topbar{padding:8px 18px}
      nav ul{gap:12px}
      .hero-inner{flex-direction:column}
      .login-box{width:92%}
    }
r
    body {
  padding-top: 150px; /* since topbar removed */
}

/* === Prevent content from hiding under fixed header === */
section[id] {
  scroll-margin-top: 131px; /* adjust based on your header + topbar height */
}
