@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Poppins:wght@300;600;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; cursor: default; }
body { 
  background: #020502; color: white; 
  font-family: 'Poppins', sans-serif; overflow-x: hidden;
}

/* Reveal Animation */
.reveal { position: relative; transform: translateY(100px); opacity: 0; transition: 1s all ease; }
.reveal.active { transform: translateY(0); opacity: 1; }

/* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:12px 0;
  z-index:999;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0, 255, 13, 0.35);
}

.nav-inner{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between; /* logo left, nav center */
  padding:0 40px;
  position:relative;
}

.nav{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:35px;
}


.nav-logo img{
  height:48px;   /* pehle ~38px tha */
  width:auto;
  filter: drop-shadow(0 0 16px rgb(0, 255, 13));
}


.nav a{
  color:white;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  transition:0.25s;
}

.nav a i{color:rgb(21, 255, 0)}

.nav a:hover{
  color:rgb(0, 255, 21);
  text-shadow:0 0 15px rgb(0, 255, 34);
}

.nav a:hover i{
  transform:scale(1.15);
  text-shadow:0 0 18px rgb(9, 255, 0);
}

.nav a.active{
  color:rgb(0, 255, 64);
  text-shadow:0 0 15px rgb(21, 255, 0);
}
/* Mobile responsive ke liye (taki center hi rahe) */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column; /* Mobile par logo ke niche buttons */
        gap: 15px;
    }
    .nav-logo {
        position: static; /* Mobile par absolute position hat jayegi */
    }
}

/* Header */
.packages-section { padding: 140px 20px 100px; max-width: 1200px; margin: auto; }
.header-main-container { text-align: center; margin-bottom: 60px; }
.pkg-main-img { width: 130px; border-radius: 50%; border: 3px solid #00ff00; box-shadow: 0 0 20px #00ff00; }
.pkg-title { font-size: 50px; color: #00ff00; text-shadow: 0 0 15px #00ff00; margin-top: 15px; font-weight: 900; }
.pkg-subtitle { color: #555; font-size: 16px; letter-spacing: 2px; }

/* Welcome Card (Full Skin) */
.welcome-card { 
    background: #051005; border: 2px solid #00ff00; border-radius: 30px; padding: 40px; 
    display: flex; align-items: center; gap: 30px; margin-bottom: 80px; 
    box-shadow: 0 0 20px rgba(0,255,0,0.1); 
}
.welcome-skin-full { width: 200px; height: 230px; overflow: hidden; position: relative; }
.welcome-skin-full img { width: 190px; position: absolute; top: -15px; left: -10px; filter: drop-shadow(0 0 2px #ff0000); }
.welcome-content h2 { color: #00ff00; font-size: 28px; margin-bottom: 25px; }
.order-btn-main { 
    background: #062bffbe; color: #ffffff; padding: 12px 25px; border-radius: 70px; 
    text-decoration: none; font-weight: 900; display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
    box-shadow: 0 0 15px #ff009d; transition: 0.3s;
}
.order-btn-main:hover { transform: scale(1.05); }

/* Dividers */
.section-divider { margin: 100px 0 50px; text-align: center; color: #00ff00; font-size: 24px; display: flex; align-items: center; justify-content: center; gap: 20px; text-shadow: 0 0 10px #00ff00; }

/* Cards */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pkg-card { background: #010801; border: 1px solid rgba(0, 255, 0, 0.2); border-radius: 25px; padding: 35px; transition: 0.4s; }
.pkg-card:hover { border-color: #00ff00; transform: translateY(-10px); box-shadow: 0 0 30px rgba(0, 255, 0, 0.15); }
.pkg-card h3 { color: #fff; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; font-size: 20px; border-bottom: 1px solid rgba(0,255,0,0.1); padding-bottom: 10px; }
.pkg-card h3 i { color: #00ff00; }

/* Perks */
.perks-list { margin-bottom: 30px; }
.perk-item { color: #aaa; font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.perk-item i { color: #00ff00; font-size: 15px; text-shadow: 0 0 5px #00ff00; }

/* Price & Button */
.pkg-price { font-family: 'JetBrains Mono', monospace; font-size: 22px; color: #00ff00; font-weight: 700; margin-bottom: 25px; }
.btn-green { 
    display: block; text-align: center; background: #00ff00; color: #000; padding: 13px; border-radius: 12px; 
    text-decoration: none; font-weight: 800; box-shadow: 0 0 10px rgba(0,255,0,0.3); transition: 0.3s;
}
.btn-green:hover { background: #fff; box-shadow: 0 0 25px #00ff00; }

/* Coming Soon (Red) */
.red-header { color: #ff0000 !important; text-shadow: 0 0 15px #ff0000 !important; }
.cs-box { border: 2px dashed #ff0000; background: rgba(255,0,0,0.05); padding: 50px; border-radius: 25px; text-align: center; }
.cs-box i { font-size: 40px; color: #ff0000; margin-bottom: 20px; }
.cs-box h3 { color: #ff0000; font-size: 28px; margin-bottom: 15px; }
.cs-box p { color: #888; max-width: 600px; margin: auto; }

/* Policy Buttons */
.policy-wrapper { display: flex; justify-content: center; gap: 20px; margin-top: 100px; }
.policy-btn-green { 
    padding: 15px 40px; border: 2px solid #00ff00; color: #00ff00; border-radius: 50px; 
    text-decoration: none; font-weight: 700; transition: 0.3s;
}
.policy-btn-green:hover { background: #00ff00; color: #000; box-shadow: 0 0 20px #00ff00; }

/* Sabhi buttons aur clickable links ke liye cursor change */
.btn-green, 
.order-btn-main, 
.policy-btn-green,
.nav a {
    cursor: pointer !important;
    transition: transform 0.2s ease; /* Hover effect ke liye thoda smooth animation */
}

/* Hover par button thoda bada dikhe (Optional but looks premium) */
.btn-green:hover, 
.order-btn-main:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ================= FOOTER ================= */
.footer { margin-top: 50px; padding: 20px 90px; border-top: 1px solid rgb(9, 255, 0); display: flex; justify-content: space-between; align-items: center; background: #050509; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-pfp { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgb(0, 255, 13); }
.copyright { font-size: 13px; color: #777; }
.copyright b { color: rgb(0, 255, 42); }
.footer-right { display: flex; gap: 15px; }
.footer-right a { color: #777; font-size: 16px; transition: 0.3s; }
.footer-right a:hover { color: rgb(0, 255, 21); text-shadow: 0 0 10px rgb(0, 255, 34); }

/* ===== Smooth Hover Only ===== */

/* Profile Image */
.pkg-main-img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pkg-main-img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px #00ff00;
}

/* Cards */
.pkg-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pkg-card:hover {
  transform: translateY(-10px);
}

/* Buttons */
.btn-green,
.order-btn-main,
.policy-btn-green {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-green:hover,
.order-btn-main:hover,
.policy-btn-green:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* Navbar Links */
.nav a {
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  transform: translateY(-3px);
}