/* ═══════════════════════════════════════════════════════
   ITI Corporate Training — Main Stylesheet
   Fonts: Raleway (headings) + Roboto (body)
   ═══════════════════════════════════════════════════════ */

:root {
  --blue: #1a9fd4; --blue2: #0d7ba8; --blue3: #e8f5fb; --blue4: #c8e9f7;
  --red: #c41230; --red2: #a50e28; --red3: #fde8ec;
  --dark: #0f1c2e; --text: #1e3a5f; --muted: #6c8099;
  --border: #d8eaf5; --bg: #f4f8fb;
  --shadow: 0 4px 24px rgba(26,159,212,.10);
  --shadow2: 0 16px 48px rgba(26,159,212,.18);
  --radius: 14px; --radius2: 8px;
  --f-body: 'Roboto', Arial, sans-serif;
  --f-head: 'Raleway', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.7; letter-spacing: .01em; word-spacing: .04em; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
p { line-height: 1.75; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #e8f3fa; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── LOADER ── */
#pg-loader { position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px; transition: opacity .5s, visibility .5s; }
#pg-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.ldr-img { width: 90px; animation: ldrP 1.2s ease-in-out infinite alternate; }
@keyframes ldrP { from { transform: scale(.95) } to { transform: scale(1.05) } }
.ldr-bar { width: 220px; height: 3px; background: #deeef8; border-radius: 3px; overflow: hidden; }
.ldr-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--red)); animation: ldrF 1.4s ease forwards; }
@keyframes ldrF { to { width: 100% } }
.ldr-txt { font-family: var(--f-head); font-size: .78rem; font-weight: 700; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); height: 88px; transition: all .3s; box-shadow: 0 2px 18px rgba(26,159,212,.08); }
#navbar.scrolled { box-shadow: 0 4px 28px rgba(26,159,212,.14); }
.nav-wrap { max-width: 80%; margin: 0 auto; padding: 0 20px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { height: 68px; width: auto; }
.nav-brand-txt { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-txt strong { font-family: var(--f-head); font-size: 1.08rem; font-weight: 900; color: var(--blue2); letter-spacing: .5px; }
.nav-brand-txt span { font-size: .65rem; font-weight: 700; letter-spacing: 2px; color: var(--red); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 9px 15px; border-radius: 8px; font-size: .9rem; font-weight: 700; color: var(--muted); transition: all .2s; }
.nav-links a:hover { background: var(--blue3); color: var(--blue2); }
.nav-cta-btn { background: linear-gradient(135deg, var(--red), var(--red2)) !important; color: #fff !important; padding: 11px 24px !important; border-radius: 8px; box-shadow: 0 4px 14px rgba(196,18,48,.28); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: .3s; }

/* ── MOBILE NAV ── */
#mob-nav { display: none; position: fixed; inset: 0; z-index: 898; background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 22px; }
#mob-nav.open { display: flex; }
.mob-close { position: absolute; top: 22px; right: 26px; background: none; border: none; font-size: 1.7rem; cursor: pointer; color: var(--muted); }
#mob-nav a { font-family: var(--f-head); font-size: 1.7rem; font-weight: 800; color: var(--dark); }
#mob-nav a:hover { color: var(--blue); }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 100px 0 60px; }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transition: opacity .8s ease; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.80) 42%, rgba(255,255,255,.28) 70%, rgba(255,255,255,.06) 100%); }
.hero-dots-bg { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(26,159,212,.12) 1.5px, transparent 1.5px); background-size: 34px 34px; mask-image: radial-gradient(ellipse 52% 80% at 27% 50%, #000 40%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 52% 80% at 27% 50%, #000 40%, transparent 75%); }
.hero-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(26,159,212,.18), transparent); animation: lineS 9s linear infinite; }
.hl1 { width: 50%; top: 32%; animation-delay: 0s; } .hl2 { width: 35%; top: 62%; animation-delay: 3.5s; } .hl3 { width: 42%; top: 78%; animation-delay: 6.5s; }
@keyframes lineS { from { left: -60% } to { left: 110% } }
.hero-inner { max-width: 80%; margin: 0 auto; padding: 0 20px; width: 100%; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 560px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.92); border: 1.5px solid var(--blue4); padding: 8px 18px; border-radius: 30px; font-size: .75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue2); box-shadow: var(--shadow); margin-bottom: 22px; }
.hero-tag::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); animation: pingB 2s infinite; }
@keyframes pingB { 0%,100% { box-shadow: 0 0 0 0 rgba(26,159,212,.4) } 70% { box-shadow: 0 0 0 9px rgba(26,159,212,0) } }
.hero-title { font-family: var(--f-head); font-size: clamp(2.4rem, 4.6vw, 4.4rem); line-height: 1.06; font-weight: 900; letter-spacing: -1px; margin-bottom: 18px; }
.t1 { color: var(--dark); } .t2 { color: var(--blue); } .t3 { color: var(--red); }
.hero-sub { font-size: 1rem; line-height: 1.85; color: var(--muted); font-weight: 500; max-width: 480px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { padding-top: 26px; border-top: 2px dashed rgba(26,159,212,.2); display: flex; gap: 30px; flex-wrap: wrap; }
.hs-num { font-family: var(--f-head); font-size: 2.3rem; font-weight: 900; color: var(--blue); line-height: 1; }
.hs-lbl { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
.hero-cards-col { position: absolute; right: calc(10% - 280px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 16px; width: 268px; z-index: 2; }
.hfc { background: rgba(255,255,255,.14); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,.38); border-radius: 16px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.hfc:nth-child(1) { animation: hfF 7s ease-in-out infinite; margin-left: 22px; }
.hfc:nth-child(2) { animation: hfF 8.5s ease-in-out infinite .6s; }
.hfc:nth-child(3) { animation: hfF 6.5s ease-in-out infinite 1.2s; margin-left: 22px; }
@keyframes hfF { 0%,100% { transform: translateY(0) rotate(-.5deg) } 50% { transform: translateY(-10px) rotate(.5deg) } }
.hfc-icon-box { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.22); color: #fff; font-size: 1.2rem; }
.hfc-txt strong { display: block; font-size: .92rem; font-weight: 800; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.25); }
.hfc-txt span { font-size: .74rem; color: rgba(255,255,255,.88); font-weight: 600; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--muted); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.scroll-arr { width: 20px; height: 20px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); animation: scB 1.5s ease-in-out infinite; }
@keyframes scB { 0%,100% { transform: rotate(45deg) translateY(0) } 50% { transform: rotate(45deg) translateY(5px) } }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; padding: 13px 28px; border-radius: var(--radius2); font-weight: 700; font-size: .9rem; box-shadow: 0 6px 22px rgba(26,159,212,.35); transition: transform .2s, box-shadow .2s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,159,212,.45); }
.btn-outline { display: inline-flex; align-items: center; gap: 9px; border: 2px solid var(--blue); color: var(--blue); background: rgba(255,255,255,.9); padding: 11px 24px; border-radius: var(--radius2); font-weight: 700; font-size: .9rem; transition: all .2s; cursor: pointer; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-red { background: linear-gradient(135deg, var(--red), var(--red2)) !important; box-shadow: 0 6px 22px rgba(196,18,48,.3) !important; }

/* ── STATS BAND ── */
.stats-band { background: linear-gradient(135deg, var(--blue2), var(--blue)); padding: 50px 0; position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 26px 26px; }
.stats-row { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 80%; margin: 0 auto; padding: 0 20px; }
.stat-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 30px 16px; text-align: center; backdrop-filter: blur(6px); transition: transform .3s; }
.stat-card:hover { transform: translateY(-5px); }
.sc-icon { font-size: 1.8rem; margin-bottom: 12px; color: rgba(255,255,255,.9); }
.sc-num { font-family: var(--f-head); font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.sc-lbl { font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ── SECTIONS ── */
section { padding: 90px 0; }
.section-inner { max-width: 80%; margin: 0 auto; padding: 0 20px; }
.s-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.s-tag::before { content: ''; width: 20px; height: 2px; background: currentColor; }
.s-title { font-family: var(--f-head); font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 900; color: var(--dark); line-height: 1.1; }
.s-title span { color: var(--red); } .s-title .bl { color: var(--blue); }
.s-sub { font-size: .94rem; color: var(--muted); line-height: 1.85; max-width: 560px; margin-top: 12px; }
.s-hdr { margin-bottom: 52px; }

/* ── ABOUT ── */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-main-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow2); aspect-ratio: 4/3; background: var(--blue3); }
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -18px; right: -16px; background: #fff; border-radius: 14px; padding: 18px 22px; box-shadow: 0 12px 36px rgba(26,159,212,.18); border: 1px solid var(--blue4); text-align: center; }
.ab-num { font-family: var(--f-head); font-size: 2.4rem; font-weight: 900; color: var(--blue); line-height: 1; }
.ab-txt { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; }
.about-features { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.af-item { display: flex; gap: 16px; align-items: flex-start; }
.af-icon { width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.af-icon.b { background: var(--blue3); color: var(--blue); } .af-icon.r { background: var(--red3); color: var(--red); }
.af-text h4 { font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.af-text p { font-size: .84rem; color: var(--muted); line-height: 1.8; }

/* ── SERVICES (parallax) ── */
#services { background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover fixed; position: relative; padding: 90px 0; }
#services::before { content: ''; position: absolute; inset: 0; background: rgba(8,18,42,.88); }
#services .section-inner { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card { background: rgba(255,255,255,.08); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 34px 26px; transition: all .3s; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--red)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.svc-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); transform: translateY(-5px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(26,159,212,.2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; color: var(--blue4); }
.svc-title { font-size: 1.02rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.svc-desc { font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.8; }

/* ── COURSES ── */
#courses { background: #fff; }
.campus-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.ctab { display: inline-flex; align-items: center; gap: 9px; padding: 10px 22px; border-radius: 40px; border: 2px solid var(--border); background: #fff; font-size: .83rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .25s; }
.ctab i { font-size: .85rem; }
.ctab:hover { border-color: var(--blue); color: var(--blue); }
.ctab.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(26,159,212,.3); }
.cat-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; padding: 14px 20px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); align-items: center; }
.cat-lbl { font-size: .72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.cf-btn { padding: 7px 18px; border-radius: 30px; border: 1.5px solid var(--border); background: #fff; font-size: .8rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .2s; }
.cf-btn:hover { border-color: var(--blue); color: var(--blue); }
.cf-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.cinfo-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; background: var(--blue3); border: 1px solid var(--blue4); border-radius: 10px; padding: 14px 22px; margin-bottom: 28px; font-size: .83rem; font-weight: 700; color: var(--blue2); }
.cinfo-item { display: flex; align-items: center; gap: 7px; }
.campus-panel { display: none; } .campus-panel.active { display: block; animation: pIn .3s ease; }
@keyframes pIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: translateY(0) } }
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(295px,1fr)); gap: 22px; }
.course-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: all .3s; cursor: pointer; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); border-color: var(--blue4); }
.course-card.hidden { display: none !important; }
.cc-img { position: relative; height: 185px; overflow: hidden; background: var(--blue3); }
.cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .cc-img img { transform: scale(1.06); }
.cc-badge { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.95); border-radius: 6px; padding: 4px 10px; font-size: .68rem; font-weight: 800; color: var(--blue2); box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.cc-upcoming { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, var(--red), var(--red2)); color: #fff; border-radius: 6px; padding: 4px 10px; font-size: .65rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.cc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cc-duration-row { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.cc-cat-icon { font-size: .95rem; color: var(--blue); }
.cc-days { font-size: .78rem; font-weight: 800; color: var(--blue2); background: var(--blue3); padding: 3px 10px; border-radius: 20px; }
.cc-title { font-size: .97rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.cc-desc { font-size: .81rem; color: var(--muted); line-height: 1.75; flex: 1; margin-bottom: 12px; }
.cc-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 10px; }
.cc-date-item { background: var(--bg); border-radius: 7px; padding: 8px 10px; border: 1px solid var(--border); }
.cc-date-item label { display: block; font-size: .6rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.cc-date-item span { font-size: .78rem; font-weight: 700; color: var(--dark); }
.cc-time { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--blue2); margin-bottom: 12px; padding: 7px 10px; background: var(--blue3); border-radius: 7px; }
.cc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.cc-tag { font-size: .66rem; font-weight: 800; padding: 3px 9px; border-radius: 20px; }
.ct-blue { background: var(--blue3); color: var(--blue2); } .ct-green { background: #e8f8ed; color: #2d7a4a; } .ct-purple { background: #f0e8ff; color: #6b3fa0; }
.cc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.cc-seats { font-size: .74rem; color: var(--muted); font-weight: 700; } .cc-seats strong { color: var(--blue); }
.btn-reg { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--red), var(--red2)); color: #fff; padding: 9px 17px; border-radius: 7px; font-size: .77rem; font-weight: 800; border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(196,18,48,.25); transition: all .2s; }
.btn-reg:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(196,18,48,.35); }

/* ── COURSE DETAIL PAGE ── */
#cdp { display: none; position: fixed; inset: 0; z-index: 800; background: #fff; overflow-y: auto; padding-top: 88px; }
#cdp.open { display: block; animation: slideIn .35s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px) } to { opacity: 1; transform: translateX(0) } }
.cdp-back { position: fixed; top: 98px; left: 28px; display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 18px; cursor: pointer; font-size: .82rem; font-weight: 700; color: var(--muted); box-shadow: var(--shadow); z-index: 2; }
.cdp-back:hover { color: var(--blue); border-color: var(--blue); }
.cdp-inner { max-width: 80%; margin: 0 auto; padding: 36px 20px 80px; }
.cdp-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; margin-bottom: 50px; align-items: start; }
.cdp-img-wrap { border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow2); }
.cdp-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cdp-cat-lbl { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.cdp-title { font-family: var(--f-head); font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.cdp-short { font-size: .92rem; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.cdp-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.cdp-meta { background: var(--bg); border-radius: 10px; padding: 14px 16px; border: 1px solid var(--border); }
.cdp-meta label { display: block; font-size: .64rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cdp-meta span { font-size: .92rem; font-weight: 700; color: var(--dark); } .cdp-meta .fee { color: var(--red); font-size: 1.15rem; }
.cdp-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-dl { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border: 2px solid var(--border); color: var(--text); padding: 10px 20px; border-radius: 7px; font-size: .82rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.btn-dl:hover { border-color: var(--blue); color: var(--blue); }
.cdp-section { margin-bottom: 48px; }
.cdp-sec-title { font-family: var(--f-head); font-size: 1.35rem; font-weight: 900; color: var(--dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.cdp-sec-title i { color: var(--blue); }
.cdp-overview-txt { font-size: .93rem; color: var(--muted); line-height: 1.95; padding: 20px; background: var(--bg); border-radius: 10px; border-left: 4px solid var(--blue); }
.cdp-outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cdp-outcome { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--text); padding: 12px 14px; background: var(--bg); border-radius: 9px; border: 1px solid var(--border); }
.cdp-outcome i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.cdp-testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 18px; }

/* ── COMPLETED PROGRAMS ── */
#completed { background: var(--bg); }
.completed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }
.completed-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; transition: all .3s; }
.completed-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.cmp-photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; height: 150px; }
.cmp-photo { overflow: hidden; position: relative; cursor: pointer; }
.cmp-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.cmp-photo:hover img { transform: scale(1.08); }
.cmp-photo-ov { position: absolute; inset: 0; background: rgba(26,159,212,.25); opacity: 0; transition: opacity .2s; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; }
.cmp-photo:hover .cmp-photo-ov { opacity: 1; }
.cmp-body { padding: 20px; }
.cmp-hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cmp-icon-box { width: 46px; height: 46px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--blue2)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.cmp-hdr-txt h4 { font-size: .93rem; font-weight: 800; color: var(--dark); line-height: 1.3; }
.cmp-hdr-txt span { font-size: .75rem; color: var(--muted); }
.cmp-stats { display: flex; gap: 18px; margin-bottom: 14px; }
.cmp-stat strong { display: block; font-family: var(--f-head); font-size: 1.4rem; font-weight: 900; color: var(--blue); }
.cmp-stat span { font-size: .68rem; font-weight: 700; letter-spacing: .5px; color: var(--muted); text-transform: uppercase; }
.cmp-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.cmp-badge { font-size: .72rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; background: var(--blue3); color: var(--blue2); display: inline-flex; align-items: center; gap: 5px; }
.btn-view-photos { font-size: .75rem; font-weight: 800; padding: 7px 14px; border-radius: 7px; border: 1.5px solid var(--blue); color: var(--blue); background: #fff; cursor: pointer; transition: all .2s; }
.btn-view-photos:hover { background: var(--blue); color: #fff; }
.view-all-wrap { text-align: center; margin-top: 40px; }

/* ── ALL PROGRAMS PAGE ── */
#all-programs-page { display: none; position: fixed; inset: 0; z-index: 850; background: var(--bg); overflow-y: auto; padding-top: 88px; }
#all-programs-page.open { display: block; animation: pIn .3s ease; }
.app-back { position: fixed; top: 98px; left: 28px; display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 18px; cursor: pointer; font-size: .82rem; font-weight: 700; color: var(--muted); box-shadow: var(--shadow); z-index: 2; }
.app-back:hover { color: var(--blue); border-color: var(--blue); }
.app-inner { max-width: 80%; margin: 0 auto; padding: 36px 20px 60px; }
.app-campus-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; margin-bottom: 28px; }
.app-cf-btn { padding: 9px 20px; border-radius: 30px; border: 2px solid var(--border); background: #fff; font-size: .8rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .2s; }
.app-cf-btn:hover { border-color: var(--blue); color: var(--blue); }
.app-cf-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 22px; }
.app-item.hidden { display: none; }

/* ── GALLERY PAGE ── */
#gp { display: none; position: fixed; inset: 0; z-index: 850; background: #fff; overflow-y: auto; padding-top: 88px; }
#gp.open { display: block; animation: pIn .3s ease; }
.gp-close { position: fixed; top: 98px; right: 28px; width: 42px; height: 42px; background: #fff; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; box-shadow: var(--shadow); z-index: 2; color: var(--muted); }
.gp-inner { max-width: 80%; margin: 0 auto; padding: 36px 20px 60px; }
.gp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.gp-item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gp-item:hover img { transform: scale(1.08); }
.gp-ov { position: absolute; inset: 0; background: rgba(15,28,46,.5); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gp-item:hover .gp-ov { opacity: 1; }
.gp-zoom-icon { color: #fff; font-size: 2rem; }

/* ── LIGHTBOX ── */
#lb { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(10,18,30,.95); backdrop-filter: blur(10px); align-items: center; justify-content: center; flex-direction: column; padding: 20px; }
#lb.open { display: flex; animation: lbFade .3s ease; }
@keyframes lbFade { from { opacity: 0 } to { opacity: 1 } }
.lb-close { position: absolute; top: 20px; right: 22px; width: 44px; height: 44px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; font-weight: 800; color: var(--dark); box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.lb-img-box { max-width: 900px; width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.6); max-height: 74vh; animation: lbZoom .3s ease; }
@keyframes lbZoom { from { transform: scale(.92); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.lb-img-box img { width: 100%; max-height: 74vh; object-fit: contain; }
.lb-cap { color: #fff; font-weight: 700; margin-top: 14px; text-align: center; font-size: 1rem; }
.lb-sub { color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 4px; text-align: center; }
.lb-btns { display: flex; gap: 12px; margin-top: 16px; }
.lb-btn { width: 46px; height: 46px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 1.1rem; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.3); }
.lb-counter { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 8px; }

/* ── ALL TESTI PAGE ── */
#atp { display: none; position: fixed; inset: 0; z-index: 850; background: var(--bg); overflow-y: auto; padding-top: 88px; }
#atp.open { display: block; animation: pIn .3s ease; }
.atp-back { position: fixed; top: 98px; left: 28px; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 9px 18px; cursor: pointer; font-size: .82rem; font-weight: 700; color: var(--muted); box-shadow: var(--shadow); z-index: 2; }
.atp-back:hover { color: var(--blue); border-color: var(--blue); }
.atp-inner { max-width: 80%; margin: 0 auto; padding: 36px 20px 60px; }
.atp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 22px; margin-top: 28px; }

/* ── WHY ITI ── */
#why { position: relative; background: var(--dark); color: #fff; overflow: hidden; padding: 90px 0; }
#why-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
#why .section-inner { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-feats { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.wf-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(26,159,212,.18); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--blue4); flex-shrink: 0; }
.wf-txt h4 { font-size: .93rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.wf-txt p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wv-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px; text-align: center; transition: all .3s; }
.wv-card:hover { background: rgba(26,159,212,.18); }
.wv-num { font-family: var(--f-head); font-size: 2.8rem; font-weight: 900; color: var(--blue); line-height: 1; }
.wv-lbl { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── TESTIMONIALS ── */
#testimonials { background: #fff; }
.swiper { overflow: hidden; padding-bottom: 50px !important; }
.swiper-slide { height: auto; }
.t-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 30px; height: 100%; position: relative; overflow: hidden; }
.t-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3.5px; background: linear-gradient(90deg, var(--blue), var(--red)); }
.t-quote { font-size: 3.5rem; line-height: 1; color: rgba(26,159,212,.1); font-family: var(--f-head); font-weight: 900; position: absolute; top: 18px; right: 20px; }
.t-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 2px; margin-bottom: 12px; }
.t-course-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 800; padding: 4px 11px; border-radius: 20px; background: var(--blue3); color: var(--blue2); margin-bottom: 14px; }
.t-text { font-size: .87rem; line-height: 1.9; color: var(--muted); font-style: italic; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #fff; border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.t-name { font-size: .9rem; font-weight: 800; color: var(--dark); }
.t-role { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.t-sector { font-size: .71rem; font-weight: 800; color: var(--blue); margin-top: 2px; }
.swiper-pagination-bullet-active { background: var(--blue) !important; }

/* ── SECTORS — HIDDEN ── */
#sectors { display: none; }

/* ── PARTNERS ── */
#partners { background: linear-gradient(135deg, #f0f8ff 0%, #e5f0ff 50%, #f0ecff 100%); position: relative; overflow: hidden; padding: 90px 0; }
.pshapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ps { position: absolute; border-radius: 50%; opacity: .06; }
.ps1 { width: 550px; height: 550px; background: var(--blue); top: -150px; right: -120px; animation: psA 22s linear infinite; }
.ps2 { width: 420px; height: 420px; background: var(--red); bottom: -120px; left: -100px; animation: psA 17s linear infinite reverse; }
.ps3 { width: 280px; height: 280px; background: #6b3fa0; top: 45%; left: 38%; opacity: .04; animation: psA 30s linear infinite; }
.ps4 { width: 200px; height: 200px; background: var(--blue); top: 15%; left: 18%; opacity: .05; animation: psA 20s linear infinite .5s; }
.ps5 { width: 150px; height: 150px; background: var(--red); bottom: 25%; right: 25%; opacity: .04; animation: psA 24s linear infinite 1s; }
@keyframes psA { 0% { transform: rotate(0) scale(1) } 50% { transform: rotate(180deg) scale(1.1) } 100% { transform: rotate(360deg) scale(1) } }
#partners .section-inner { position: relative; z-index: 1; }
.partners-note { background: rgba(255,255,255,.82); backdrop-filter: blur(8px); border-radius: var(--radius); padding: 20px 26px; border: 1px solid var(--blue4); margin-bottom: 36px; font-size: .87rem; color: var(--blue2); font-weight: 600; display: flex; align-items: center; gap: 12px; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 14px; }
.partner-logo { background: rgba(255,255,255,.82); backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.9); border-radius: 12px; height: 76px; display: flex; align-items: center; justify-content: center; padding: 12px 18px; transition: all .25s; cursor: default; box-shadow: 0 2px 10px rgba(26,159,212,.06); }
.partner-logo:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(26,159,212,.15); transform: translateY(-2px); }
.partner-logo-txt { font-size: .8rem; font-weight: 800; color: var(--muted); text-align: center; }
.partner-logo:hover .partner-logo-txt { color: var(--blue); }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius2); border: 1px solid var(--border); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--blue); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-size: .9rem; font-weight: 700; color: var(--dark); gap: 12px; }
.faq-q:hover { color: var(--blue); }
.faq-ico { width: 28px; height: 28px; border-radius: 7px; background: var(--blue3); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: .85rem; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }
.faq-a p { font-size: .85rem; color: var(--muted); line-height: 1.8; }

/* ── CONTACT ── */
#contact { background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover fixed; position: relative; padding: 90px 0; }
#contact::before { content: ''; position: absolute; inset: 0; background: rgba(8,18,42,.82); }
#contact .section-inner { position: relative; z-index: 1; }
#contact .s-tag { color: rgba(26,159,212,.9); }
#contact .s-title { color: #fff; }
#contact .s-title span { color: #ff9999; }
#contact .s-sub { color: rgba(255,255,255,.65); }
.contact-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.cnt-tab { padding: 9px 18px; border-radius: 7px; border: 2px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); font-size: .8rem; font-weight: 800; color: rgba(255,255,255,.7); cursor: pointer; transition: all .2s; }
.cnt-tab:hover { border-color: var(--red); color: #fff; }
.cnt-tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.cpw { display: none; } .cpw.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; animation: pIn .3s ease; }
.cnt-info { background: rgba(255,255,255,.1); backdrop-filter: blur(14px); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(255,255,255,.2); }
.cnt-info h3 { font-family: var(--f-head); font-size: 1.6rem; font-weight: 900; color: var(--blue4); margin-bottom: 22px; }
.cnt-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.15); }
.cnt-ico { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--blue4); flex-shrink: 0; }
.cnt-row-txt label { display: block; font-size: .64rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.cnt-row-txt span { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9); }
.cnt-row-txt a { color: var(--blue4); }
.cnt-form { background: rgba(255,255,255,.95); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow2); }
.cnt-form h3 { font-family: var(--f-head); font-size: 1.4rem; font-weight: 900; color: var(--blue2); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-full { grid-column: span 2; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .67rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { padding: 11px 14px; border-radius: 7px; border: 1.5px solid var(--border); font-family: var(--f-body); font-size: .88rem; color: var(--text); background: var(--bg); outline: none; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(26,159,212,.08); }
.field textarea { resize: vertical; min-height: 90px; }
.submit-btn { width: 100%; margin-top: 8px; padding: 13px; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; border: none; border-radius: 7px; font-family: var(--f-body); font-size: .9rem; font-weight: 800; cursor: pointer; box-shadow: 0 6px 20px rgba(26,159,212,.3); transition: all .2s; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,159,212,.4); }

/* ── CTA BAND ── */
.cta-band { padding: 80px 0; text-align: center; background: linear-gradient(135deg, var(--blue), var(--blue2)); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 26px 26px; }
.cta-inner { position: relative; max-width: 80%; margin: 0 auto; padding: 0 20px; }
.cta-inner h2 { font-family: var(--f-head); font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 900; color: #fff; margin-bottom: 14px; white-space: nowrap; line-height: 1.2; }
.cta-inner p { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--blue2) !important; box-shadow: 0 6px 22px rgba(0,0,0,.15); }
.btn-white:hover { background: var(--blue3); }
.btn-ow { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 11px 22px; border-radius: 7px; font-weight: 700; font-size: .9rem; transition: all .2s; background: transparent; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-ow:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 60px 0 26px; }
.footer-inner { max-width: 80%; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo-img { height: 52px; margin-bottom: 14px; }
.footer-brand-name { font-family: var(--f-head); font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-brand-name span { color: var(--blue); }
.footer-desc { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 250px; margin-bottom: 18px; }
.socials { display: flex; gap: 10px; }
.soc { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .85rem; transition: all .2s; cursor: pointer; }
.soc:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,159,212,.1); }
.fc-title { font-size: .68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.fc-links { list-style: none; }
.fc-links li { margin-bottom: 9px; }
.fc-links a { color: rgba(255,255,255,.45); font-size: .83rem; transition: color .2s; }
.fc-links a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.3); }
.footer-bottom span { font-size: .68rem; letter-spacing: 1.5px; color: var(--blue); }

/* ── WHATSAPP WIDGET ── */
.wa-widget { position: fixed; bottom: 28px; left: 28px; z-index: 700; }
.wa-fab { width: 58px; height: 58px; border-radius: 50%; background: #25d366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: #fff; box-shadow: 0 6px 22px rgba(37,211,102,.45); transition: transform .2s; position: relative; }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab-lbl { position: absolute; left: 68px; top: 50%; transform: translateY(-50%); background: #25d366; color: #fff; font-size: .75rem; font-weight: 800; padding: 5px 12px; border-radius: 20px; white-space: nowrap; box-shadow: 0 3px 10px rgba(37,211,102,.3); pointer-events: none; }
.wa-popup { display: none; position: absolute; bottom: 68px; left: 0; width: 300px; background: #fff; border-radius: 16px; box-shadow: 0 16px 50px rgba(0,0,0,.18); border: 1px solid var(--border); overflow: hidden; }
.wa-popup.open { display: block; animation: pIn .3s ease; }
.wa-popup-hdr { background: linear-gradient(135deg, #075e54, #128c7e); padding: 16px 18px; display: flex; align-items: center; gap: 10px; }
.wa-popup-hdr img { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; }
.wa-popup-hdr strong { display: block; color: #fff; font-size: .88rem; font-weight: 800; }
.wa-popup-hdr span { color: rgba(255,255,255,.7); font-size: .72rem; }
.wa-popup-body { padding: 16px; }
.wa-popup-body p { font-size: .82rem; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.wa-campus-list { display: flex; flex-direction: column; gap: 8px; }
.wa-btn { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 9px; border: 1.5px solid var(--border); background: var(--bg); font-size: .82rem; font-weight: 700; color: var(--text); cursor: pointer; transition: all .2s; text-decoration: none; }
.wa-btn:hover { border-color: #25d366; background: #e8f8ed; color: #075e54; }
.wa-btn i { color: var(--blue); width: 16px; text-align: center; }

/* ── CHATBOT WIDGET ── */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 700; }
.chat-fab { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue2)); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 6px 22px rgba(26,159,212,.4); transition: transform .2s; position: relative; }
.chat-fab:hover { transform: scale(1.08); }
.chat-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; background: var(--red); color: #fff; font-size: .6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; animation: pingChat 2s infinite; }
@keyframes pingChat { 0%,100% { box-shadow: 0 0 0 0 rgba(196,18,48,.4) } 70% { box-shadow: 0 0 0 8px rgba(196,18,48,0) } }
.chat-panel { display: none; position: absolute; bottom: 68px; right: 0; width: 340px; max-width: calc(100vw - 40px); background: #fff; border-radius: 16px; box-shadow: 0 16px 50px rgba(0,0,0,.16); border: 1px solid var(--border); overflow: hidden; flex-direction: column; height: 520px; max-height: 520px; }
.chat-panel.open { display: flex; animation: pIn .3s ease; }
.chat-hdr { background: linear-gradient(135deg, var(--blue), var(--blue2)); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.chat-hdr-info { display: flex; align-items: center; gap: 10px; }
.chat-hdr-av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; }
.chat-hdr-txt strong { display: block; color: #fff; font-size: .86rem; font-weight: 800; }
.chat-hdr-txt span { color: rgba(255,255,255,.7); font-size: .7rem; display: flex; align-items: center; gap: 5px; }
.chat-hdr-txt span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4caf50; }
.chat-hdr-btn { background: rgba(255,255,255,.15); border: none; cursor: pointer; color: #fff; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: background .2s; }
.chat-hdr-btn:hover { background: rgba(255,255,255,.28); }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.chat-msgs::-webkit-scrollbar { width: 4px; }
.chat-msgs::-webkit-scrollbar-track { background: #f1f5f9; }
.chat-msgs::-webkit-scrollbar-thumb { background: var(--blue4); border-radius: 2px; }
.chat-msg { display: flex; gap: 8px; align-items: flex-end; }
.chat-msg.bot .chat-bubble { background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 14px 14px 14px 4px; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg.user .chat-bubble { background: var(--blue); color: #fff; border-radius: 14px 14px 4px 14px; }
.chat-bubble { padding: 10px 14px; font-size: .82rem; line-height: 1.6; max-width: 290px; }
.chat-bot-av { width: 28px; height: 28px; border-radius: 50%; background: var(--blue3); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--blue); flex-shrink: 0; align-self: flex-start; }
.chat-course-list { display: flex; flex-direction: column; gap: 5px; max-width: 260px; }
.chat-course-lbl { font-size: .78rem; color: var(--muted); margin-bottom: 4px; line-height: 1.4; }
.chat-course-item { display: flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 10px; border: 1.5px solid var(--blue4); background: #fff; font-size: .74rem; font-weight: 700; color: var(--blue2); cursor: pointer; transition: all .2s; text-align: left; font-family: var(--f-body); width: 100%; }
.chat-course-item:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.chat-course-item i { font-size: .78rem; flex-shrink: 0; }
.chat-course-item span { line-height: 1.3; }
.chat-qr { padding: 8px 12px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; background: var(--bg); min-height: 0; }
.chat-qr:empty { display: none; }
.chat-qr-btns { display: flex; flex-wrap: wrap; gap: 6px; max-height: 120px; overflow-y: auto; }
.chat-qr-lbl { font-size: .7rem; font-weight: 700; color: var(--muted); }
.chat-qr-btn { padding: 6px 12px; border-radius: 20px; border: 1.5px solid var(--blue4); background: var(--blue3); font-size: .75rem; font-weight: 700; color: var(--blue2); cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 5px; font-family: var(--f-body); }
.chat-qr-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.chat-qr-btn.back-btn { background: #f1f5f9; border-color: #cbd5e1; color: var(--muted); }
.chat-qr-btn.back-btn:hover { background: #e2e8f0; color: var(--text); }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-cards-col { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
}
@media(max-width:768px) {
  .nav-links { display: none; } .hamburger { display: flex; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cpw.active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; } .form-full { grid-column: span 1; }
  .cdp-top { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .nav-wrap, .section-inner, .stats-row, .cta-inner, .footer-inner { max-width: 95%; }
  .gp-grid { grid-template-columns: repeat(2,1fr); }
  .chat-panel { width: 300px; }
  .cta-inner h2 { white-space: normal; }
}
@media(max-width:480px) {
  .wa-popup { width: 260px; }
  .gp-grid { grid-template-columns: 1fr; }
}

/* ── ALL COURSES PAGE ── */
#all-courses-page { display: none; position: fixed; inset: 0; z-index: 850; background: var(--bg); overflow-y: auto; padding-top: 88px; }
#all-courses-page.open { display: block; animation: pIn .3s ease; }
.ac-close { position: fixed; top: 98px; right: 28px; width: 44px; height: 44px; background: #fff; border-radius: 12px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; color: var(--muted); box-shadow: var(--shadow); z-index: 2; transition: all .2s; }
.ac-close:hover { border-color: var(--red); color: var(--red); }
.ac-inner { max-width: 80%; margin: 0 auto; padding: 36px 20px 80px; }
.ac-hdr { margin-bottom: 32px; }
.ac-filters { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.ac-search-wrap { position: relative; }
.ac-search-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .9rem; }
#ac-search { width: 100%; padding: 11px 14px 11px 40px; border-radius: 10px; border: 1.5px solid var(--border); font-family: var(--f-body); font-size: .88rem; color: var(--text); outline: none; transition: border-color .2s; box-sizing: border-box; }
#ac-search:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,159,212,.08); }
.ac-filter-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ac-filter-lbl { font-size: .75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); white-space: nowrap; min-width: 90px; }
.ac-filter-btns { display: flex; flex-wrap: wrap; gap: 7px; }
.ac-fbtn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 30px; border: 1.5px solid var(--border); background: #fff; font-size: .78rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .2s; font-family: var(--f-body); }
.ac-fbtn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue3); }
.ac-fbtn.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(26,159,212,.28); }
.ac-results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.ac-count { font-size: .85rem; font-weight: 700; color: var(--muted); }
.ac-count strong { color: var(--blue); }
.ac-clear { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 8px; border: 1.5px solid var(--border); background: #fff; font-size: .78rem; font-weight: 700; color: var(--red); cursor: pointer; transition: all .2s; font-family: var(--f-body); }
.ac-clear:hover { background: var(--red3); border-color: var(--red); }
.ac-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.ac-empty i { font-size: 3rem; opacity: .25; margin-bottom: 16px; display: block; }
.ac-empty p { font-size: 1rem; font-weight: 700; color: var(--muted); margin-bottom: 20px; }
.cc-campus-tag { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.cc-campus-chip { font-size: .65rem; font-weight: 800; padding: 3px 9px; border-radius: 20px; background: var(--blue3); color: var(--blue2); display: inline-flex; align-items: center; gap: 4px; }
@media(max-width:768px) {
  .ac-inner { max-width: 95%; }
  .ac-filter-group { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ac-filter-lbl { min-width: auto; }
}

/* ── HERO SLIDESHOW ── */
.hero-slide-track { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: 100% auto; background-repeat: no-repeat; background-position: center top; background-color: #0a121f; opacity: 0; transform: scale(1.08); transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 7s ease-out; will-change: opacity, transform; }
.hero-slide.active { opacity: 1; transform: scale(1); animation: kenBurns 7s ease-out forwards; }
.hero-slide.leaving { opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 1s ease; }
@keyframes kenBurns { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-slide-dots { position: absolute; bottom: 80px; right: 40px; display: flex; gap: 8px; z-index: 4; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: 2px solid rgba(255,255,255,.6); cursor: pointer; transition: all .3s; }
.hero-dot.active { background: #fff; width: 28px; border-radius: 6px; }

.cc-fee { font-size: .82rem; font-weight: 800; color: var(--red); }

/* ── COMPLETED PROGRAMS marquee ── */
.cmp-marquee-wrap { overflow: hidden; width: 100%; padding: 20px 0; position: relative; }
.cmp-marquee-wrap::before, .cmp-marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.cmp-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.cmp-marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.cmp-marquee { display: flex; gap: 20px; width: max-content; animation: marqueeScroll 40s linear infinite; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cmp-strip-card { width: 300px; flex-shrink: 0; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.cmp-strip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.cmp-strip-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; height: 140px; }
.cmp-strip-photo { overflow: hidden; }
.cmp-strip-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cmp-strip-card:hover .cmp-strip-photo img { transform: scale(1.08); }
.cmp-strip-body { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.cmp-strip-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--blue2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; }
.cmp-strip-txt h4 { font-size: .88rem; font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 3px; }
.cmp-strip-txt span { font-size: .73rem; color: var(--muted); }

/* ── CHATBOT typing animation ── */
.typing-dots { display: inline-flex; gap: 4px; align-items: center; padding: 2px 0; }
.typing-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); opacity: .5; animation: typingBounce 1.2s ease-in-out infinite; }
.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%, 80%, 100% { transform: translateY(0); opacity: .4; } 40% { transform: translateY(-6px); opacity: 1; } }
.chat-msg-new { opacity: 0; transform: translateY(10px); transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.chat-msg-new.chat-msg-in { opacity: 1; transform: translateY(0); }

/* ── PROMOTIONAL POPUP ── */
#promo-popup { display: none; position: fixed; inset: 0; z-index: 9500; align-items: center; justify-content: center; padding: 20px; }
.promo-overlay { position: absolute; inset: 0; background: rgba(10,18,30,.75); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s ease; }
.promo-box { position: relative; background: #fff; border-radius: 20px; overflow: hidden; max-width: 480px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,.3); transform: translateY(40px) scale(.95); opacity: 0; transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease; z-index: 1; }
#promo-popup.promo-visible .promo-overlay { opacity: 1; }
#promo-popup.promo-visible .promo-box { transform: translateY(0) scale(1); opacity: 1; }
#promo-popup.promo-hiding .promo-overlay { opacity: 0; }
#promo-popup.promo-hiding .promo-box { transform: translateY(20px) scale(.97); opacity: 0; }
.promo-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.35); border: none; color: #fff; font-size: .9rem; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.promo-close:hover { background: rgba(0,0,0,.55); }
.promo-img-wrap { position: relative; height: 220px; overflow: hidden; }
.promo-img-wrap img { width: 100%; height: 100%; object-fit: contain; background: #0a121f; }
.promo-img-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: .7rem; font-weight: 800; padding: 5px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 5px; box-shadow: 0 4px 12px rgba(196,18,48,.35); }
.promo-body { padding: 24px 28px 28px; }
.promo-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.promo-title { font-family: var(--f-head); font-size: 1.35rem; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 8px; }
.promo-sub { font-size: .85rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.promo-actions { display: flex; align-items: center; gap: 12px; }
.promo-btn { flex: 1; justify-content: center; }
.promo-dismiss { font-size: .8rem; font-weight: 700; color: var(--muted); background: none; border: none; cursor: pointer; transition: color .2s; }
.promo-dismiss:hover { color: var(--dark); }
@media(max-width:480px) { .promo-box { max-width: 100%; border-radius: 16px 16px 0 0; position: fixed; bottom: 0; } }