/* =========================
   ARIHANT INVESTMENT - PREMIUM FINAL CSS
   (Single file, clean, no duplicates)
========================= */

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0}

/* ===== Premium Theme ===== */
:root{
  --bg1:#050814;
  --bg2:#060A18;

  --card1: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.03);
  --stroke: rgba(255,255,255,.12);

  --text:#F7F9FF;
  --muted: rgba(247,249,255,.68);

  --gold1:#F59E0B;
  --gold2:#FBBF24;
  --blue:#3B82F6;

  --shadow: 0 26px 80px rgba(0,0,0,.55);
  --shadow2: 0 14px 40px rgba(0,0,0,.45);

  --r: 26px;
}

/* ===== Background ===== */
html, body{
  background-color: var(--bg1);
}

body{
  font-family: ui-rounded, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(247,181,0,.20), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(255,122,24,.13), transparent 55%),
    radial-gradient(800px 560px at 50% 95%, rgba(59,130,246,.14), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ===== Layout container ===== */
.wrap{width:min(1100px,92%);margin:auto}

/* =========================
   TOPBAR
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(5,8,20,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.top-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logoWrap{
  width:46px;
  height:46px;
  padding:3px;                 /* कमी padding */
  border-radius:16px;

  background: rgba(255,255,255,.05);   /* हलकं background */
  border:1px solid rgba(255,255,255,.10); /* thin border */
  box-shadow: 0 12px 30px rgba(0,0,0,.45);

  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-logo{
  width:100%;
  height:100%;
  border-radius:14px;
  object-fit:contain;          /* logo कट होणार नाही */
  background:transparent;      /* white box काढला */
}
.logoWrap{
  border:0;
  background:transparent;
  box-shadow:none;
  padding:0;
}
.brand-logo{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:contain;
}
.brand-logo{
  width:44px;
  height:44px;
  border-radius:16px;
  object-fit:cover;
  background:#fff;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:var(--shadow2);
}

.brand-text h1{
  margin:0;
  font-size:18px;
  letter-spacing:.2px;
}

.brand-text p{
  margin:2px 0 0;
  font-size:12px;
  color:var(--muted);
}

/* Hamburger */
.hamburger{
  width:46px;height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:18px;height:2px;
  border-radius:2px;
  background:rgba(255,255,255,.9);
}

/* Mobile nav */
.mobile-nav{
  display:none;
  padding:10px 0 16px;
}

.mobile-nav.open{display:block}

.navItem{
  display:block;
  padding:14px 14px;
  margin-top:10px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.90);
  box-shadow:var(--shadow2);
}

/* =========================
   HERO
========================= */
.hero{
  padding:20px 0 12px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  align-items:start;
}

/* Hero card */
.heroCard{
  position:relative;
  border-radius:var(--r);
  background:linear-gradient(180deg,var(--card1),var(--card2));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:18px;
}

.heroCard::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(560px 260px at 22% 0%, rgba(59,130,246,.25), transparent 65%),
    radial-gradient(560px 260px at 85% 10%, rgba(245,158,11,.22), transparent 65%);
  opacity:.85;
  pointer-events:none;
}

.heroCard > *{
  position:relative;
  z-index:2;
}

.heroBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.75);
  font-weight:900;
  font-size:12px;
}

.heroBadge .sep{opacity:.6}
.heroBadge .gold{color:var(--gold2)}

.heroTitle{
  margin:12px 0 8px;
  font-size:44px;
  line-height:1.02;
  letter-spacing:-.8px;
  text-shadow:0 12px 25px rgba(0,0,0,.35);
}

.heroSub{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.65;
  font-size:15px;
  max-width:520px;
}

/* Buttons */
.heroBtns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:18px;
  font-weight:1000;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
  transition:.18s;
  min-width:160px;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn.primary{
  border:0;
  color:#10121a;
  background:linear-gradient(90deg,var(--gold1),var(--gold2));
}

.btn.ghost{
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.06);
}

.btn.full{width:100%}
.btn.mini{min-width:0;flex:1;padding:12px 12px}

/* Pills */
.heroPills{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.82);
  box-shadow:var(--shadow2);
  font-weight:900;
  font-size:13px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:99px;
}

.dot.blue{background:var(--blue)}
.dot.gold{background:var(--gold2)}

.smallPill{padding:8px 10px;font-size:12px}

/* =========================
   RIGHT STACK (STATS + QUICK)
========================= */
.statsStack{
  display:grid;
  gap:12px;
}

.statCard, .quickCard{
  border-radius:var(--r);
  background:linear-gradient(180deg,var(--card1),var(--card2));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow2);
  padding:16px;
}

.statTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.statBig{
  font-size:28px;
  font-weight:1000;
}

.statSmall{
  color:rgba(255,255,255,.65);
  font-weight:900;
  font-size:13px;
}

.statIcon{
  font-size:18px;
  opacity:.9;
}

/* Quick contact */
.quickCard h3{margin:0 0 6px}
.quickCard p{
  margin:0;
  color:rgba(255,255,255,.70);
  line-height:1.55;
  font-weight:800;
}

.quickBtns{
  display:flex;
  gap:10px;
  margin-top:12px;
}

/* =========================
   SECTIONS
========================= */
.section{
  padding:18px 0;
  background:transparent !important; /* ✅ Always match premium background */
}

.section.soft{
  border-radius:var(--r);
  padding:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.secTitle{
  margin:0;
  font-size:34px;
  letter-spacing:-.5px;
}

.secSub{
  margin:3px 0 0;
  color:rgba(255,255,255,.60);
  font-weight:900;
}

/* Cards grid */
.gridCards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

/* Glass Card */
.glassCard{
  border-radius:var(--r);
  background:linear-gradient(180deg,var(--card1),var(--card2));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow2);
  padding:16px;
}

.glassCard h3{
  margin:0 0 6px;
  font-size:18px;
}

.glassCard p{
  margin:0;
  color:rgba(255,255,255,.65);
  line-height:1.65;
  font-weight:800;
}

/* Trust card */
.trustCard{
  border-radius:var(--r);
  background:linear-gradient(180deg,var(--card1),var(--card2));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow2);
  padding:16px;
}

.trustTitle{
  font-weight:1000;
  font-size:18px;
  margin-bottom:6px;
}

/* =========================
   GALLERY
========================= */
.galleryGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.gItem{
  border-radius:var(--r);
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow2);
  height:140px;
}

.gItem img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.galleryBtnRow{margin-top:12px}

/* =========================
   FOOTER
========================= */
.footerCard{
  margin:18px 0 30px;
  border-radius:var(--r);
  background:linear-gradient(180deg,var(--card1),var(--card2));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  padding:18px;
}

.footerTop{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footerTop h2{
  margin:0;
  font-size:22px;
}
/* ✅ Gallery Slider (5 width, 2 photo height style) */
.gallerySlider{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding:6px 2px 12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gSlide{
  flex:0 0 68%;
  max-width:320px;
  height:220px; /* ✅ height = 2 photo feeling */
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  scroll-snap-align:start;
}

.gSlide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.galleryHint{
  margin:8px 0 0;
  color:rgba(255,255,255,.55);
  font-weight:800;
  font-size:13px;
}

/* ✅ Clickable contact links */
.contactLink{
  color:rgba(255,255,255,.88);
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:3px;
}
.contactLink:hover{
  color:#FBBF24;
}
.footerTop p{
  margin:0;
  color:rgba(255,255,255,.65);
  font-weight:900;
}

.footerBadges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.contactBox{
  margin-top:14px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:14px;
}

.contactBox h3{margin:0 0 8px}
.line{
  margin:6px 0;
  color:rgba(255,255,255,.72);
  font-weight:900;
}

.copy{
  margin:10px 0 0;
  color:rgba(255,255,255,.45);
  font-weight:900;
}

/* ✅ Floating buttons removed completely */
/* (No .floatBtns, .floatChat, .floatCall in this final CSS) */

/* =========================
   RESPONSIVE
========================= */
@media(max-width:980px){
  .hero{grid-template-columns:1fr}
  .heroTitle{font-size:40px}
}
/* =========================
   ✅ GALLERY 5 COLUMN SLIDER (2 images each)
========================= */
.gallerySlider5{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:4px 2px 12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallerySlider5::-webkit-scrollbar{
  height:6px;
}
.gallerySlider5::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 20px;
}

.gCol{
  flex:0 0 72%;           /* ✅ 1 column width on mobile */
  max-width:340px;
  display:flex;
  flex-direction:column;
  gap:12px;
  scroll-snap-align:start;
}

.gImg{
  width:100%;
  aspect-ratio: 1 / 1;   /* ✅ square */
  height:auto;           /* ✅ auto because aspect ratio controls */
  object-fit:cover;
  border-radius:26px;
}
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  cursor:pointer;
  transition:.18s;
}

.gImg:active{
  transform: scale(.98);
}

.galleryHint{
  margin:8px 0 0;
  color:rgba(255,255,255,.55);
  font-weight:800;
  font-size:13px;
}

/* ✅ Tablet / Desktop = 5 columns visible */
@media(min-width:900px){
  .gCol{
    flex:0 0 calc(20% - 12px); /* ✅ 5 columns visible */
    max-width:none;
  }
  .gImg{
    height:150px;
  }
}

/* =========================
   ✅ FULLSCREEN IMAGE MODAL + X CLOSE
========================= */
.imgModal{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:16px;
}

.imgModal.show{
  display:flex;
}

.imgModal img{
  width:100%;
  max-width:520px;
  max-height:86vh;
  object-fit:contain;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}

/* ✅ X button */
.modalClose{
  position:absolute;
  top:16px;
  right:16px;
  width:46px;
  height:46px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
}
@media(max-width:430px){
  .heroTitle{font-size:36px}
  .btn{min-width:140px}
}
/* =========================
   ADVISOR AMFI CARD SECTION
========================= */
.advisorCard{
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
  padding: 14px;
  display: grid;
  gap: 14px;
}

.advisorPhotos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photoBox{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.photoBox img{
  width: 100%;
  aspect-ratio: 1 / 1;  /* ✅ square */
  object-fit: cover;
  display: block;
}
.socialRow{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.pill.yt{
  border:1px solid rgba(255,0,0,0.4);
}
.advisorInfo{
  padding: 6px 4px 2px;
}

.advisorTitleRow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.advisorName{
  margin:0;
  font-size:20px;
  font-weight: 1000;
  letter-spacing: .2px;
}

.advisorBadge{
  padding:8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.advisorRole{
  margin: 8px 0 12px;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  line-height: 1.55;
}

.advisorMini{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.miniPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.82);
  box-shadow:var(--shadow2);
  font-weight:900;
  font-size:13px;
}
.socialFooter{
  margin-top:14px;
  line-height:1.8;
}
.advisorBtns{
  display:grid;
  gap: 10px;
}
.quickBtns .primary{
  background: rgba(255,255,255,0.06);
  color:#fff;
  border:1px solid rgba(255,255,255,0.15);
}
.quickBtns .btn{
  min-width:140px;
  justify-content:center;
}
.quickBtns .primary:hover{
  background: rgba(255,255,255,0.1);
}
/* ✅ Make it look premium on bigger screens too */
@media(min-width:980px){
  .advisorCard{
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    padding: 18px;
  }
  .advisorPhotos{
    grid-template-columns: 1fr 1fr;
  }
  .advisorName{
    font-size: 22px;
  }
}
/* =========================
   PREMIUM SECTION HEADERS FIX
   (Make all titles look like Hero quality)
========================= */

/* section heading wrapper look */
.sectionHead{
  padding: 10px 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 14px 40px rgba(0,0,0,.40);
  position: relative;
  overflow: hidden;
}

/* glow effect like hero */
.sectionHead::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 220px at 20% 0%, rgba(245,158,11,.20), transparent 65%),
    radial-gradient(520px 220px at 85% 20%, rgba(59,130,246,.16), transparent 65%);
  opacity:.9;
  pointer-events:none;
}

.sectionHead > *{
  position: relative;
  z-index: 2;
}

/* title typography more premium */
.secTitle{
  font-size: 38px;
  font-weight: 1000;
  letter-spacing: -0.8px;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* subtitle spacing + clarity */
.secSub{
  font-size: 14px;
  margin-top: 6px;
  color: rgba(255,255,255,.62);
}

/* keep spacing consistent */
.section{
  padding: 22px 0;
}
/* ===== EXTRA PREMIUM FINISH (overall) ===== */

/* smooth dark vignette for whole page */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,.05), transparent 55%),
    radial-gradient(1200px 700px at 50% 100%, rgba(0,0,0,.55), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.35));
}

/* better card separation on scroll */
.heroCard, .statCard, .quickCard, .glassCard, .trustCard, .footerCard{
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* small highlight line for each card */
.heroCard, .statCard, .quickCard, .glassCard, .trustCard, .footerCard{
  position: relative;
}
.heroCard::after,
.statCard::after,
.quickCard::after,
.glassCard::after,
.trustCard::after,
.footerCard::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--r);
  pointer-events:none;
  border: 1px solid rgba(255,255,255,.06);
}
/* ===== GALLERY TITLE FIX ===== */
.galleryHead{
  margin-top: 8px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: 0 16px 45px rgba(0,0,0,.45);
  position: relative;
  overflow:hidden;
}

.galleryHead::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 220px at 18% 0%, rgba(245,158,11,.22), transparent 65%),
    radial-gradient(520px 220px at 85% 20%, rgba(59,130,246,.16), transparent 65%);
  opacity:.9;
  pointer-events:none;
}

.galleryHead > *{
  position: relative;
  z-index: 2;
}

.galleryTitle{
  margin:0;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -.7px;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}

.gallerySub{
  margin: 6px 0 0;
  color: rgba(255,255,255,.60);
  font-weight: 900;
  font-size: 13px;
}
/* =========================
   ✅ GALLERY 5 COLUMN SLIDER (SQUARE)
========================= */

.gallerySlider5{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding:6px 2px 12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.gallerySlider5::-webkit-scrollbar{
  height:6px;
}
.gallerySlider5::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius:99px;
}

.gCol{
  flex:0 0 170px; /* column width */
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap:12px;
  scroll-snap-align:start;
}

.gImg{
  width:100%;
  aspect-ratio:1/1;          /* ✅ square */
  border-radius:22px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 35px rgba(0,0,0,.55);
  cursor:pointer;
  transition:.18s;
}

.gImg:active{
  transform:scale(.98);
}

.galleryHint{
  margin:10px 0 0;
  color: rgba(255,255,255,.55);
  font-weight:900;
  font-size:13px;
}

/* =========================
   ✅ FULLSCREEN IMAGE VIEWER (POPUP)
========================= */
.imgModal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:999999;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.imgModal.show{
  display:flex;
}

.imgModalBox{
  width:min(520px, 92vw);
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 26px 80px rgba(0,0,0,.70);
  position:relative;
}

.imgModalBox img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

.imgClose{
  position:absolute;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.95);
  font-size:20px;
  font-weight:1000;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.sipBtns{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  align-items:center;
  margin-top:12px;
}

.sipBtns .btn{
  min-width:180px;
  text-align:center;
}
.quickCard{
  text-align:center;
}
.heroSipBtns{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  margin-top:14px;
}

.sipBtn{
  width:100%;
  max-width:260px;
  background:linear-gradient(135deg,#ffb300,#ff8f00);
  color:#111;
  font-weight:600;
  text-align:center;
}

.sipBtn:hover{
  transform:translateY(-2px);
}
.quickBtns{
  justify-content:center;
}
.mobile-nav.open{display:block}
body{
  background:
    radial-gradient(circle at 20% 30%, rgba(255,170,0,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,120,255,0.15), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255,0,150,0.10), transparent 40%),
    #050816;

  min-height:100vh;
  color:#fff;
}