/* ============================================================
   ZebLearn India — LAYOUT Stylesheet
   Includes: Fonts, Variables, Reset, Utils, Animations,
             Section headings, Buttons, Keyframes,
             Responsive (layout-only)
   Used by: every page (load once, globally)

   NOTE: Header/Nav rules moved fully to header.css,
         Cookies-card rules moved fully to footer.css.
         (Removed here to avoid duplicate CSS.)
   ============================================================ */

/* ── 0. GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

/* ── 1. CSS VARIABLES ────────────────────────────────────── */
:root {
  /* Brand */
  --gold:       #FFB800;
  --gold-d:     #e6a500;
  --gold-l:     rgba(255,184,0,.1);
  --orange:     #FF6B00;
  --red:        #e53935;
  --green:      #22c55e;

  /* Layout */
  --navy:       #050c18;
  --navy-2:     #0b1a30;
  --navy-3:     #102040;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg:         #f4f6fa;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(0,0,0,.07);
  --sh-md:  0 8px 32px rgba(0,0,0,.13);
  --sh-lg:  0 24px 64px rgba(0,0,0,.22);

  /* Radii */
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Typography */
  --font-h: 'Outfit', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  /* Bootstrap-compatible overrides */
  --bs-font-sans-serif: var(--font-b);
  --bs-link-color: #f44a25;
}

/* ── 2. RESET / BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-b); font-size: 1rem; font-weight: 400; color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; color: #232323; margin-top: 0; }
h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p { margin-top: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; transition: color .2s, background .2s; }
img { display: block; max-width: 100%; }
::selection { background: #f44a25; color: #fff; }

/* ── 3. UTILITY CLASSES ──────────────────────────────────── */
.hw            { font-family: var(--font-b); color: var(--text); overflow-x: hidden; }
.hw-inner      { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-bg    { background: #f5f5f7 !important; }
.text--base    { color: #f44a25; }
.btn--base,
.btn--base:hover { background: #f44a25; color: #fff; font-weight: 700; }
.mw-100        { max-width: 100%; }

/* ── 4. SCROLL-REVEAL ANIMATIONS ────────────────────────── */
.anim-fade  { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.anim-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.anim-right { opacity: 0; transform: translateX(32px);  transition: opacity .7s ease, transform .7s ease; }
.anim-scale { opacity: 0; transform: scale(.9);          transition: opacity .6s ease, transform .6s ease; }
.anim-fade.is-vis,
.anim-left.is-vis,
.anim-right.is-vis { opacity: 1; transform: none; }
.anim-scale.is-vis  { opacity: 1; transform: scale(1); }
.anim-d1 { transition-delay: .1s; }
.anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; }
.anim-d4 { transition-delay: .4s; }
.anim-d5 { transition-delay: .5s; }
.anim-d6 { transition-delay: .6s; }

/* ── 5. SECTION HEADINGS ─────────────────────────────────── */
.hw-sh          { text-align: center; margin-bottom: 36px; }
.hw-sh__ey      { font-size: .6rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.hw-sh__ey::before,
.hw-sh__ey::after  { content: ''; width: 28px; height: 1.5px; background: var(--gold); opacity: .45; }
.hw-sh h2          { font-family: var(--font-h); font-size: clamp(1.2rem,2.8vw,2rem); font-weight: 900; color: var(--navy); margin-bottom: 10px; letter-spacing: -.03em; text-transform: uppercase; }
.hw-sh h2 em       { color: var(--gold); font-style: normal; }
.hw-sh--w h2       { color: #fff; }
.hw-sh p           { color: var(--muted); font-size: .86rem; line-height: 1.75; max-width: 540px; margin: 0 auto; }
.hw-sh--w p        { color: rgba(255,255,255,.58); }

/* ── 6. GLOBAL BUTTONS ───────────────────────────────────── */
.hw-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 13px 24px; border-radius: var(--r);
  font-family: var(--font-h); font-weight: 800; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(255,184,0,.4);
  transition: background .2s, transform .15s; border: none; cursor: pointer;
}
.hw-btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); color: var(--navy); }
.hw-btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); color: #fff;
  padding: 12px 22px; border-radius: var(--r);
  font-family: var(--font-h); font-weight: 700; font-size: .85rem;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s; cursor: pointer;
}
.hw-btn-outline-w:hover { border-color: var(--gold); background: rgba(255,184,0,.08); color: var(--gold); }

/* ── 32. KEYFRAME ANIMATIONS ─────────────────────────────── */
@keyframes hw-blink { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,.06); } }
@keyframes zlBlink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }
@keyframes zlSpin { to { transform: rotate(360deg); } }
@keyframes hw-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hw-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hw-reviews { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hw-hire-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hw-hire-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes hw-cap-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hw-stu-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hw-stu-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes zl-verify-fwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes zl-lb-in { from { opacity: 0; transform: scale(.92) translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes ppSlide { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes zlMarqScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes zlUp   { from { transform: translateY(0);    } to { transform: translateY(-50%); } }
@keyframes zlDown { from { transform: translateY(-50%); } to { transform: translateY(0);    } }
.zl-spin { animation: zlSpin .75s linear infinite; display: inline-block; }

/* ── 39. CUSTOM SCROLLBAR ────────────────────────────────── */
::-webkit-scrollbar       { width: 7px; }
::-webkit-scrollbar-track { box-shadow: inset 0 0 5px grey; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #000; border-radius: 10px; }


/* ── FONT AWESOME BASE CLASSES ───────────────────────────── */
.fa,.fab,.fad,.fal,.far,.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fab { font-family: "Font Awesome 5 Brands"; }
.fa,.far,.fas { font-family: "Font Awesome 5 Free"; }
.fa,.fas { font-weight: 900; }
.fab,.far { font-weight: 400; }

/* ── @FONT-FACE DECLARATIONS ─────────────────────────────── */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../../../../global/webfonts/fa-solid-900.woff2") format("woff2"),
       url("../../../../global/webfonts/fa-solid-900.woff") format("woff");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../../../global/webfonts/fa-regular-400.woff2") format("woff2"),
       url("../../../../global/webfonts/fa-regular-400.woff") format("woff");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../../../global/webfonts/fa-brands-400.woff2") format("woff2"),
       url("../../../../global/webfonts/fa-brands-400.woff") format("woff");
}

/* ── INDIVIDUAL ICON GLYPHS ──────────────────────────────── */
.fa-award:before { content:"\f559"; }
.fa-blender-phone:before { content:"\f6b6"; }
.fa-briefcase:before { content:"\f0b1"; }
.fa-certificate:before { content:"\f0a3"; }
.fa-check-circle:before { content:"\f058"; }
.fa-cogs:before { content:"\f085"; }
.fa-comments:before { content:"\f086"; }
.fa-credit-card:before { content:"\f09d"; }
.fa-facebook:before { content:"\f09a"; }
.fa-chevron-right:before { content:"\f054"; }
.fa-home:before { content:"\f015"; }
.fa-facebook-f:before { content:"\f39e"; }
.fa-flag:before { content:"\f024"; }
.fa-globe-europe:before { content:"\f7a2"; }
.fa-graduation-cap:before { content:"\f19d"; }
.fa-handshake:before { content:"\f2b5"; }
.fa-instagram:before { content:"\f16d"; }
.fa-laptop:before { content:"\f109"; }
.fa-laptop-code:before { content:"\f5fc"; }
.fa-linkedin-in:before { content:"\f0e1"; }
.fa-list-alt:before { content:"\f022"; }
.fa-paper-plane:before { content:"\f1d8"; }
.fa-phone:before { content:"\f095"; }
.fa-question:before { content:"\f128"; }
.fa-star:before { content:"\f005"; }
.fa-star-and-crescent:before { content:"\f699"; }
.fa-star-half:before { content:"\f089"; }
.fa-star-half-alt:before { content:"\f5c0"; }
.fa-star-of-david:before { content:"\f69a"; }
.fa-star-of-life:before { content:"\f621"; }
.fa-suitcase:before { content:"\f0f2"; }
.fa-user-check:before { content:"\f4fc"; }
.fa-user-shield:before { content:"\f505"; }
.fa-users:before { content:"\f0c0"; }
.fa-whatsapp:before { content:"\f232"; }
.fa-youtube:before { content:"\f167"; }
.fa-brain:before           { content: "\f5dc"; }
.fa-chart-line:before      { content: "\f201"; }
.fa-code:before            { content: "\f121"; }
.fa-comment-dots:before    { content: "\f4ad"; }
.fa-database:before        { content: "\f1c0"; }
.fa-eye:before             { content: "\f06e"; }
.fa-film:before            { content: "\f008"; }
.fa-image:before           { content: "\f03e"; }
.fa-keyboard:before        { content: "\f11c"; }
.fa-layer-group:before     { content: "\f5fd"; }
.fa-link:before            { content: "\f0c1"; }
.fa-magic:before           { content: "\f0d0"; }
.fa-network-wired:before   { content: "\f6ff"; }
.fa-project-diagram:before { content: "\f542"; }
.fa-robot:before           { content: "\f544"; }
.fa-rocket:before          { content: "\f135"; }
.fa-search:before          { content: "\f002"; }
.fa-shield-alt:before      { content: "\f3ed"; }
.fa-sliders-h:before       { content: "\f1de"; }
.fa-square-root-alt:before { content: "\f698"; }
.fa-play:before { content: "\f04b"; }

/* ── RESPONSIVE (layout-only) ────────────────────────────── */
@media (max-width: 768px) {
  .hide { display: none; }
}