/* ═══════════════════════════════════════════════
   CareerDhara — Global Stylesheet
   /assets/style.css
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --p:      #3D2475;
  --p-dk:   #2A1855;
  --p-md:   #52339E;
  --p-lt:   #EDE8F7;
  --p-xl:   #F7F5FD;
  --o:      #F7941D;
  --o-dk:   #C97510;
  --o-lt:   #FEF0DC;
  --cream:  #FAF8F4;
  --white:  #FFFFFF;
  --ink:    #1A1028;
  --slate:  #64748B;
  --border: #E5DFF2;
  --green:  #15803D;
  --g-lt:   #DCFCE7;
  --red:    #B91C1C;
  --r-lt:   #FEE2E2;
  --sh-sm:  0 2px 12px rgba(61,36,117,.07);
  --sh-md:  0 8px 32px rgba(61,36,117,.11);
  --sh-lg:  0 24px 64px rgba(61,36,117,.16);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── TOP INFO BAR ── */
.topinfo-bar {
  background: var(--p-dk);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 7px 0;
  font-size: 12px;
}
.topinfo-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.topinfo-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topinfo-left a, .topinfo-left span {
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 6px;
  transition: color .15s;
}
.topinfo-left a:hover { color: var(--o); }
.topinfo-left i { color: var(--o); opacity: .8; font-size: 11px; }
.topinfo-right { display: flex; align-items: center; gap: 8px; }
.topinfo-right a {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 12px;
  transition: background .15s, color .15s;
}
.topinfo-right a:hover { background: rgba(255,255,255,.18); color: white; }
.topinfo-right .soc-facebook:hover  { background: #1877F2; color: white; }
.topinfo-right .soc-instagram:hover { background: #E4405F; color: white; }
.topinfo-right .soc-youtube:hover   { background: #FF0000; color: white; }
.topinfo-right .soc-linkedin:hover  { background: #0A66C2; color: white; }
.topinfo-right .soc-snapchat:hover  { background: #FFFC00; color: #000; }

/* ── MAIN NAV ── */
.main-nav {
  background: rgba(42,24,85,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247,148,29,.15);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .3s;
}
.main-nav.scrolled { box-shadow: 0 4px 24px rgba(42,24,85,.35); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-fallback { display: flex; align-items: center; gap: 10px; }
.nlf-icon { width: 40px; height: 40px; background: var(--o); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--p-dk); font-size: 18px; }
.nlf-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: white; }
.nlf-name em { color: var(--o); font-style: normal; }
.nlf-tag { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .08em; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 8px 12px; border-radius: 7px;
  transition: color .2s, background .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: white; background: rgba(255,255,255,.07); }
.nav-menu > li > a.active { color: var(--o); }
.nav-menu > li > a i.fa-chevron-down { font-size: 9px; opacity: .6; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px;
  min-width: 220px; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px;
  font-size: 13px; color: var(--ink); font-weight: 500;
  transition: background .15s, color .15s;
}
.dropdown li a i { color: var(--p); width: 16px; text-align: center; font-size: 12px; }
.dropdown li a:hover { background: var(--p-lt); color: var(--p); }

/* CTA in nav */
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--o); color: var(--p-dk) !important;
  font-weight: 700 !important; font-size: 13px !important;
  padding: 9px 18px !important; border-radius: 8px !important;
  transition: background .15s, transform .1s !important;
}
.nav-cta-btn:hover { background: #e8850f !important; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.bc-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--slate);
}
.bc-inner a { color: var(--p); transition: color .15s; }
.bc-inner a:hover { color: var(--o); }
.bc-sep i { font-size: 9px; opacity: .5; }
.bc-current { color: var(--ink); font-weight: 500; }

/* ── PAGE HERO (reusable) ── */
.page-hero {
  background: var(--p-dk); position: relative; overflow: hidden;
  padding: 72px 24px 60px;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 70px solid rgba(247,148,29,.07); pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, transparent, var(--o) 20%, var(--o) 80%, transparent);
}
.ph-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(247,148,29,.14); border: 1px solid rgba(247,148,29,.25);
  border-radius: 20px; padding: 4px 14px;
  font-size: 11px; font-weight: 700; color: var(--o);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.ph-title {
  font-size: clamp(32px,5vw,52px); font-weight: 900; color: white;
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px;
}
.ph-title span { color: var(--o); }
.ph-sub {
  font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.75; max-width: 580px; margin: 0 auto;
}

/* ── SECTIONS ── */
.sec { padding: 80px 24px; }
.sec-inner { max-width: 1160px; margin: 0 auto; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--o-dk); margin-bottom: 10px;
}
.sec-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--o); border-radius: 2px; }
.sec-title {
  font-size: clamp(26px,3.5vw,40px); font-weight: 900; color: var(--p-dk);
  line-height: 1.15; letter-spacing: -.015em; margin-bottom: 12px;
}
.sec-title span { color: var(--o); }
.sec-sub { font-size: 15px; color: var(--slate); line-height: 1.75; max-width: 600px; }
.sec-center { text-align: center; }
.sec-center .sec-sub { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.card-top-bar { height: 4px; background: linear-gradient(90deg, var(--p), var(--o)); width: 0; transition: width .22s; }
.card:hover .card-top-bar { width: 100%; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .15s; border: none; }
.btn-primary   { background: var(--p); color: white; padding: 13px 24px; }
.btn-primary:hover { background: var(--p-md); transform: translateY(-2px); }
.btn-orange    { background: var(--o); color: var(--p-dk); padding: 13px 24px; }
.btn-orange:hover { background: var(--o-dk); color: white; transform: translateY(-2px); }
.btn-wa        { background: #25D366; color: white; padding: 13px 24px; }
.btn-wa:hover  { background: #1fba58; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--p); border: 2px solid var(--p); padding: 11px 22px; }
.btn-outline:hover { background: var(--p); color: white; }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.3); padding: 11px 22px; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-lg { font-size: 16px; padding: 15px 30px; }
.btn-sm { font-size: 12px; padding: 8px 16px; }

/* ── FORMS ── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--slate); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; color: var(--ink); background: var(--cream);
  transition: border-color .15s; outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--p); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 11px; color: var(--slate); display: flex; align-items: center; gap: 5px; margin-top: 8px; justify-content: center; }

/* ── BADGE / CHIPS ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-purple { background: var(--p-lt); color: var(--p); }
.badge-orange { background: var(--o-lt); color: var(--o-dk); }
.badge-green  { background: var(--g-lt); color: var(--green); }
.badge-aicte  { background: #DBEAFE; color: #1D4ED8; }
.badge-naac   { background: #FEF3C7; color: #B45309; }
.badge-ugc    { background: #F0FDF4; color: #15803D; }

/* ── TRUST BAR ── */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.t-item { display: flex; align-items: center; gap: 10px; }
.t-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--p-lt); display: flex; align-items: center; justify-content: center; }
.t-icon i { color: var(--p); font-size: 15px; }
.t-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.t-sub { font-size: 11px; color: var(--slate); }
.t-div { width: 1px; height: 36px; background: var(--border); }

/* ── CTA BAND ── */
.cta-band { background: var(--o); padding: 64px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 600px; height: 200px; border-radius: 50%; background: rgba(42,24,85,.07); }
.cta-band-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-band h2 { font-size: clamp(26px,4vw,40px); font-weight: 900; color: var(--p-dk); margin-bottom: 10px; line-height: 1.15; }
.cta-band p { font-size: 15px; color: rgba(42,24,85,.68); margin-bottom: 28px; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--p-dk); }
.footer-top { padding: 60px 0 40px; border-top: 3px solid var(--o); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2.2fr 1fr 1.1fr 1.2fr; gap: 40px; }
.ft-brand-col .ft-logo img { height: 52px; margin-bottom: 10px; }
.ft-logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: white; }
.ft-logo-text em { color: var(--o); font-style: normal; }
.ft-tagline { font-size: 13px; color: var(--o); font-style: italic; margin-bottom: 10px; }
.ft-desc { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; margin-bottom: 18px; }
.ft-contact-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.ft-ci { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.ft-ci i { color: var(--o); opacity: .8; margin-top: 2px; width: 14px; text-align: center; flex-shrink: 0; }
.ft-ci a { color: rgba(255,255,255,.6); transition: color .15s; }
.ft-ci a:hover { color: var(--o); }
.ft-social { display: flex; gap: 8px; }
.ftsoc { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: transform .15s; }
.ftsoc.fb { background: #1877F2; color: white; }
.ftsoc.ig { background: #E4405F; color: white; }
.ftsoc.yt { background: #FF0000; color: white; }
.ftsoc.li { background: #0A66C2; color: white; }
.ftsoc.sc { background: #FFFC00; color: #000; }
.ftsoc:hover { transform: translateY(-3px); }
.ft-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--o); margin-bottom: 16px; }
.ft-links { display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.48); display: flex; align-items: center; gap: 7px; transition: color .15s; }
.ft-links a i { font-size: 9px; color: var(--o); opacity: .6; }
.ft-links a:hover { color: white; }
.ft-links a:hover i { opacity: 1; }
.ft-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.ft-badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 4px 9px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 5px; }
.ft-badge i { color: var(--o); font-size: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
.fb-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.fb-inner span { font-size: 12px; color: rgba(255,255,255,.28); }
.fb-inner strong { color: var(--o); }
.fb-legal { display: flex; gap: 20px; }
.fb-legal a { font-size: 12px; color: rgba(255,255,255,.28); transition: color .15s; }
.fb-legal a:hover { color: white; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-tooltip { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; box-shadow: var(--sh-lg); max-width: 240px; position: relative; }
.wa-tooltip::after { content: ''; position: absolute; bottom: -7px; right: 24px; width: 14px; height: 14px; background: white; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transform: rotate(45deg); }
.wa-tooltip-close { position: absolute; top: 8px; right: 8px; background: var(--border); border: none; border-radius: 50%; width: 18px; height: 18px; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; color: var(--slate); }
.wa-tt-title { font-size: 13px; font-weight: 700; color: var(--p-dk); margin-bottom: 4px; }
.wa-tt-sub { font-size: 11px; color: var(--slate); line-height: 1.5; margin-bottom: 10px; }
.wa-tt-btn { display: flex; align-items: center; justify-content: center; gap: 6px; background: #25D366; color: white; border-radius: 7px; padding: 8px 14px; font-size: 13px; font-weight: 700; transition: background .15s; }
.wa-tt-btn:hover { background: #1fba58; }
.wa-fab { display: flex; align-items: center; gap: 8px; background: #25D366; border-radius: 50px; padding: 13px 18px; color: white; box-shadow: 0 6px 24px rgba(37,211,102,.45); transition: transform .15s, box-shadow .15s; position: relative; }
.wa-fab::before { content: ''; position: absolute; inset: -5px; border-radius: 50px; border: 3px solid rgba(37,211,102,.35); animation: waPulse 2s ease-in-out infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 70%{transform:scale(1.25);opacity:0} 100%{transform:scale(1.25);opacity:0} }
.wa-fab i { font-size: 22px; }
.wa-fab-label { font-size: 13px; font-weight: 700; }
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.flex   { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width:900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--p-dk);
    flex-direction: column; align-items: flex-start;
    padding: 80px 24px 24px; gap: 4px;
    overflow-y: auto; z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { width: 100%; font-size: 16px; padding: 12px 14px; }
  .dropdown { position: static; box-shadow: none; border: none; padding: 4px 0 4px 16px; opacity: 1; visibility: visible; transform: none; display: none; background: transparent; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta-item { margin-top: 12px; }
  .nav-cta-btn { width: 100%; justify-content: center; font-size: 16px !important; padding: 13px 20px !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .topinfo-left { display: none; }
  .t-div { display: none; }
  .trust-inner { gap: 12px; }
}
@media (max-width:640px) {
  .sec { padding: 56px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .wa-fab-label { display: none; }
  .wa-fab { border-radius: 50%; padding: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 20px 44px; }
}
