/*
Theme Name: NerdyByte
Theme URI: https://nerdybyte.com
Description: A premium full-service digital marketing agency WordPress theme
Version: 1.0
Author: NerdyByte Technologies
Author URI: https://nerdybyte.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nerdybyte
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

:root {
  /* Dynamic Palette inspired by nerdybyte-logo.png */
  --primary: #7034dd;       /* NerdyByte Purple Accent */
  --secondary: #0e83f2;     /* Deep Active Cyan */
  --accent: #f029a3;        /* Punchy Conversion Coral/Orange */
  --dark: #091223;          /* Dark Theme Accent Base */
  --dark2: #050d1a;         /* Deep Contrast Minimal Base */
  --dark3: #0d1e38;         /* Structural Deep Metallic */
  --light-bg: #f5f8ff;      /* Fresh Bright Section Canvas */
  --light-card: #ffffff;    /* Crisp White Element Elevation */
  --card: #0e1b30;          /* Raised Element Canvas (Dark Base Mode) */
  --text: #2c3e50;          /* Heavy Text Base for Light Rows */
  --text-dark: #011636;     /* Soft Text Base for Dark Canvas */
  --text-dim: #6a8aaa;      /* Secondary Informational Gray */
  --green: #00ff88;         /* ROI Positive Highlight Growth Flag */
  --red: #ff2d55;           /* Urgent Notice Indicator Flag */
  --border: rgba(123, 47, 255, 0.15);
  --glow: 0 0 20px rgba(123, 47, 255, 0.25);
  --glow-orange: 0 0 20px rgba(255, 107, 0, 0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--light-bg); }
::-webkit-scrollbar-thumb { background:var(--primary); border-radius:3px; }

/* ── TOP HEADER ────────────────────────── */
.top-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  z-index: 100;
  color: var(--text-dark);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-contacts { display:flex; gap:20px; align-items:center; flex-wrap:wrap; }
.top-contacts a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.top-contacts a:hover { color: var(--secondary); }
.top-contacts a i { color: var(--primary); font-size:11px; }
.top-social { display:flex; gap:10px; align-items:center; }
.top-social a {
  width: 28px; height:28px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items:center; justify-content:center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.top-social a:hover { background:var(--primary); color:#fff; border-color:var(--primary); box-shadow: var(--glow); }

/* ── MAIN HEADER / NAV ─────────────────── */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-img { display:block; height:42px; width:auto; }

.nav-menu { display:flex; align-items:center; gap:6px; list-style:none; }
.nav-menu > li { position:relative; }
.nav-menu > li > a {
  color: var(--dark);
  text-decoration:none;
  padding: 10px 14px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.3px;
  border-radius:6px;
  display:flex; align-items:center; gap:5px;
  transition: all 0.3s;
  white-space:nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color:var(--primary); background:rgba(123,47,255,0.05); }
.nav-menu > li > a i.fa-chevron-down { font-size:10px; transition:transform 0.3s; }
.nav-menu > li:hover > a i.fa-chevron-down { transform:rotate(180deg); }

.dropdown {
  position:absolute; top:calc(100% + 8px); left:0;
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius:10px;
  min-width:240px;
  opacity:0; visibility:hidden;
  transform:translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  list-style:none;
  overflow:hidden;
  z-index:999;
}
.nav-menu > li:hover .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown li a {
  display:flex; align-items:center; gap:10px;
  padding:12px 18px;
  color:var(--text);
  text-decoration:none;
  font-size:13.5px;
  transition:all 0.2s;
  border-bottom:1px solid rgba(0,0,0,0.03);
}
.dropdown li:last-child a { border-bottom:none; }
.dropdown li a:hover { background:rgba(123,47,255,0.05); color:var(--primary); padding-left:24px; }
.dropdown li a i { color:var(--secondary); width:16px; }

/* ── NAV CTA BUTTON ────────────────────── */
.nav-menu > li > a.nav-cta {
  background: linear-gradient(135deg, var(--accent), #ff9000);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(240, 41, 163, 0.3);
  transition: all 0.3s ease;
}
.nav-menu > li > a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 41, 163, 0.5);
  background: linear-gradient(135deg, #ff1a7f, #ff9000);
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { width:24px; height:2px; background:var(--primary); border-radius:2px; transition:all 0.3s; }

/* ── CONTAINER ─────────────────────────── */
.container { max-width:1240px; margin:0 auto; padding:0 24px; }
.section-pad { padding:80px 0; }
.section-head { text-align:center; margin-bottom:50px; }
.section-tag {
  display:inline-block;
  font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  color: var(--primary);
  background: rgba(123, 47, 255, 0.08);
  padding:6px 16px; border-radius:30px;
  margin-bottom:16px;
}
.section-title {
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:clamp(28px,4vw,42px);
  font-weight:800; color:var(--dark); line-height:1.2;
  margin-bottom:16px; letter-spacing:-0.5px;
}
.section-title span { color: var(--primary); }
.section-sub { color:var(--text-dim); font-size:16px; max-width:600px; margin:0 auto; line-height:1.7; }

/* ── VARIABLE LIGHT / DARK SECTIONS ── */
.bg-light { background: var(--light-bg); color: var(--text); }
.bg-light .section-title { color: var(--dark); }
.bg-light .card-grid-item { background: var(--light-card); border: 1px solid rgba(0,0,0,0.05); }

.bg-dark { background: var(--dark); color: var(--text-dark); }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-sub { color: #fff; opacity: 0.8; }
.bg-dark .card-grid-item { background: #fff; border: 1px solid rgba(255,255,255,0.05); }

/* ── STICKY CTA ────────────────────── */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sticky-wa {
  background: #25d366;
}
.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.sticky-call {
  background: var(--primary);
}
.sticky-call:hover {
  transform: scale(1.1);
  box-shadow: var(--glow);
}

/* ── BUTTONS ──────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:8px;
  font-family:'Plus Jakarta Sans', sans-serif; font-size:14px; font-weight:700;
  text-decoration:none; cursor:pointer; border:none;
  transition:all 0.3s; letter-spacing:0.5px; white-space:nowrap;
}
.btn-primary {
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:#fff;
  box-shadow: 0 4px 20px rgba(123,47,255,0.25);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(123,47,255,0.4); }
.btn-secondary {
  background:transparent; color:var(--primary);
  border:1.5px solid var(--primary);
}
.btn-secondary:hover { background:rgba(123,47,255,0.05); transform:translateY(-3px); box-shadow:var(--glow); }
.btn-orange {
  background:linear-gradient(135deg, var(--accent), #ff9000);
  color:#fff; box-shadow:var(--glow-orange);
}
.btn-orange:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(255,107,0,0.6); }
.btn-sm { padding:10px 20px; font-size:13px; }
.btn-lg { padding:16px 32px; font-size:15px; }

/* ── HERO SECTION ──────────────────────── */
.hero {
  min-height: 100%;
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
  position:relative;
  overflow:hidden;
  display:flex; align-items:center;
}
.hero-bg {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123,47,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(0,184,204,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(255,107,0,0.04) 0%, transparent 40%);
}
.grid-bg {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(123,47,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(123,47,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}
@keyframes grid-move { 0%{transform:translateY(0)} 100%{transform:translateY(50px)} }
.floating-shape {
  position:absolute; border-radius:50%; filter:blur(80px); animation:float-shape 8s ease-in-out infinite;
}
.fs1 { width:400px; height:400px; background:rgba(123,47,255,0.05); top:-100px; right:-100px; }
.fs2 { width:300px; height:300px; background:rgba(0,184,204,0.05); bottom:-50px; left:10%; animation-delay:-4s; }
.fs3 { width:200px; height:200px; background:rgba(255,107,0,0.03); top:30%; left:40%; animation-delay:-2s; }
@keyframes float-shape { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-20px) scale(1.05)} }

.hero-inner {
  display:grid; grid-template-columns:1fr 420px;
  gap:50px; align-items:center;
  padding:10px 0 60px;
  position:relative; z-index:2;
}

.hero-eyebrow {
  display:flex; align-items:center; gap:10px;
  font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--primary); margin-bottom:20px;
}
.hero-eyebrow::before {
  content:''; width:30px; height:2px;
  background:linear-gradient(90deg, var(--primary), transparent);
}
.hero-eyebrow .badge {
  background:rgba(123,47,255,0.08); border:1px solid var(--primary);
  padding:4px 10px; border-radius:20px; color:var(--primary);
}

.hero-h1 {
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:clamp(32px,5vw,48px);
  font-weight:800; color:var(--dark); line-height:1.15; letter-spacing:-1px;
}
.hero-h1 .cyber { color:var(--primary); }
.hero-h1 .highlight {
  background:linear-gradient(135deg, var(--accent), #ffb300);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}

.hero-sub { font-size:15px; color:var(--text-dim); line-height:1.8; margin-bottom:32px; }
.hero-sub strong { color:var(--dark); }

.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }

.hero-stats { display:flex; gap:24px; flex-wrap:wrap; }
.hero-stat { text-align:center; }
.hero-stat .num {
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:24px; font-weight:900; color:var(--primary);
  line-height:1;
}
.hero-stat .lbl { font-size:10px; color:var(--text-dim); text-transform:uppercase; letter-spacing:1px; margin-top:3px; font-weight:700; }
.stat-divider { width:1px; background:rgba(0,0,0,0.08); align-self:stretch; }

/* Hero Form Wrap - High Performance Form Placement */
.hero-form-wrap {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 30px 60px rgba(9,18,35,0.08);
  animation: form-float 6s ease-in-out infinite;
}
@keyframes form-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.form-head {
  background:linear-gradient(135deg, var(--dark2), var(--primary));
  padding:20px 24px;
  position:relative; overflow:hidden;
  color:#fff;
}
.form-head h3 { font-family:'Plus Jakarta Sans', sans-serif; font-size:18px; font-weight:900; color:#fff; line-height:1.2; }
.form-head p { font-size:14px; color:rgba(255,255,255,0.8); margin-top:4px; }
.form-body { padding:22px 24px; background:#fff; }
.form-row { margin-bottom:14px; }
.form-row label { display:block; font-size:11px; font-weight:700; color:var(--primary); text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.form-row input, .form-row select, .form-row textarea {
  width:100%; background:var(--light-bg);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:7px; padding:11px 14px;
  color:var(--dark); font-family:'Plus Jakarta Sans', sans-serif; font-size:13.5px;
  outline:none; transition:all 0.3s;
}
.form-row input::placeholder { color:var(--text-dim); }
.form-row input:focus, .form-row select:focus {
  border-color:var(--primary);
  background:#fff;
  box-shadow:0 0 0 3px rgba(123,47,255,0.08);
}
.form-submit {
  width:100%;
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:#fff; border:none; border-radius:8px;
  padding:13px; font-family:'Plus Jakarta Sans', sans-serif; font-size:14px; font-weight:800;
  cursor:pointer; letter-spacing:0.5px;
  transition:all 0.3s; box-shadow:var(--glow);
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(123,47,255,0.4); }
.form-note { text-align:center; font-size:11px; color:var(--text-dim); margin-top:10px; }
.form-note i { color:var(--green); }

/* ── MARQUEE SECTION ───────────────────────────────── */
.marquee-section {
  background: var(--dark);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}

.marquee-label {
  text-align: center;
  margin-bottom: 15px;
}

.marquee-label span::before {
  content: "";
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}

.marquee-wrap {
  display: flex;
  gap: 40px;
  animation: marquee 50s linear infinite;
  width: max-content;
  padding: 10px 0;
}

.marquee-item {
  white-space: nowrap;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.marquee-item i {
  color: var(--secondary);
  font-size: 12px;
  flex-shrink: 0;
}

.marquee-section:hover .marquee-wrap {
  animation-play-state: paused;
  cursor: grab;
}

.marquee-section:active .marquee-wrap {
  cursor: grabbing;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 20px)); }
}

/* ── ABOUT SECTION ───────────────────────────────── */
.about-section { padding:80px 0; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-left .section-tag, .about-left .section-title { text-align:left; }
.about-text { color:var(--text-dim); line-height:1.9; font-size:15px; margin-bottom:18px; }
.about-list { list-style:none; margin:20px 0 30px; }
.about-list li {
  display:flex; align-items:center; gap:10px;
  padding:9px 0; border-bottom:1px solid rgba(0,0,0,0.04);
  font-size:14px;
}
.about-list li i { color:var(--primary); font-size:12px; }

/* ── COURSES / SERVICES SECTION ──────────────── */
.courses-section { padding:80px 0; }
.courses-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}
.filter-btn {
  background: var(--light-card);
  border: 2px solid transparent;
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(112, 52, 221, 0.05);
}
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(112, 52, 221, 0.3);
}
.courses-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:30px; margin-top:40px; }
.course-card {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.course-card.hidden { display: none; }
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.2);
}
.course-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: white;
  margin-bottom: 0;
}
.course-thumb img { 
  width: 100%; 
  height: 100%; 
}
.course-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.4;
}
.course-features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  flex: 1;
}
.course-features li {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 8px;
  padding-left: 0;
  line-height: 1.6;
}
.course-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* ── CLIENTS / INDUSTRIES SECTION ──────────────────────── */
.clients-section { padding: 80px 0; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .clients-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
.client-logo {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
}
.bg-dark .client-logo {
  background: var(--card);
  border-color: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
}
.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.2);
}

/* ── COUNTRIES SECTION ──────────────────────────────── */
.countries-section { padding: 80px 0; }
.countries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.country-card {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}
.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.2);
  color: var(--primary);
}
.country-flag { display: flex; align-items: center; justify-content: center; }
.country-flag img { width: 50px; height: auto; border-radius: 4px; }
.country-name { font-weight: 600; font-size: 14px; }

/* Responsive Countries Grid */
@media (max-width: 1440px) {
  .countries-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1024px) {
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .countries-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .country-card { padding: 15px; }
  .country-flag img { width: 40px; }
  .country-name { font-size: 13px; }
}
@media (max-width: 480px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .country-card { padding: 12px; gap: 8px; }
  .country-flag img { width: 35px; }
  .country-name { font-size: 12px; }
}

/* ── HOW WE WORK SECTION ────────────────────────────── */
.how-we-work-section { padding: 80px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.process-card {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(123, 47, 255, 0.15);
  border-color: rgba(123, 47, 255, 0.2);
}
.process-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.process-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.process-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.process-text {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.process-highlight {
  padding: 10px;
  background: rgba(123, 47, 255, 0.08);
  border-left: 3px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  border-radius: 4px;
}
.process-cta {
  text-align: center;
  margin-top: 60px;
}
.process-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

/* ── REVIEWS SECTION ────────────────────────────────– */
.reviews-section { padding: 80px 0; }
.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px 0 60px;
  background: var(--light-card);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}
.rating-big {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
}
.rating-info {
  text-align: left;
}
.stars-row {
  font-size: 24px;
  color: #ffc107;
  margin-bottom: 8px;
}
.rating-label {
  font-size: 14px;
  color: var(--text-dim);
}
.rating-label span { font-weight: 600; color: var(--primary); }
.reviews-carousel-wrapper {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}
.reviews-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.reviews-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  animation: scroll-reviews 40s linear infinite;
  width: max-content;
}
.review-card {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  min-width: 320px;
  max-width: 350px;
  flex-shrink: 0;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.2);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.reviewer-name {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}
.reviewer-info {
  font-size: 12px;
  color: var(--text-dim);
}
.review-stars {
  color: #ffc107;
  font-size: 14px;
}
.review-text {
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}

/* ── SCROLL ANIMATION FOR CAROUSEL ── */
@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── MEDIA PRESENCE / PRESS SECTION ────────────────────────────────────– */
.media-presence-section { padding: 80px 0; }
.media-presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 120px;
}
.media-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(240,41,163,0.3);
  box-shadow: 0 10px 30px rgba(240,41,163,0.15);
  transform: translateY(-3px);
}
.media-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.media-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}
.media-link:hover .media-logo-img { filter: brightness(1.3); }

/* ── FAQ SECTION ────────────────────────────────────– */
.faq-section { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.faq-item {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 15px 30px rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.2);
}
.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-card);
  transition: all 0.3s ease;
}
.faq-item.active .faq-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.faq-item.active .faq-header .faq-question {
  color: #fff;
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: #fff;
}
.faq-question {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  margin: 0;
  transition: all 0.3s ease;
}
.faq-toggle {
  color: var(--primary);
  transition: all 0.3s ease;
}
.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-content {
  padding: 20px;
  max-height: 800px;
}
.faq-content p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* ── BLOG SECTION ──────────────────────────────────– */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.blog-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: rgba(123, 47, 255, 0.3);
}
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 60px;
}
.blog-thumb i {
  opacity: 0.3;
}
.blog-cat {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.blog-body {
  padding: 25px;
  background: var(--light-card);
  border-top: 2px solid rgba(0,0,0,0.03);
}
.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 15px;
}
.blog-footer {
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.read-more {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
}
.read-more:hover {
  gap: 8px;
}

/* ── FOOTER SECTIONS ────────────────────────────────– */
.footer-ratings {
  background: var(--dark3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
}
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.rating-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rating-icon {
  font-size: 32px;
  color: var(--primary);
}
.rating-text {
  flex: 1;
}
.rating-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-stars .stars {
  color: #ffc107;
}
.rating-score {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.footer-main-wrapper {
  background: var(--dark2);
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0;
}
.footer-logo-img {
  max-height: 50px;
  width: auto;
  margin-bottom: 15px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(123, 47, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--glow);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-certifications {
  background: var(--dark2);
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.certifications-grid {
  display: inline-flex;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  align-items: center;
}
.cert-badge {
  max-height: 40px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.cert-badge:hover {
  opacity: 1;
}

.footer-bottom {
  background: var(--dark2);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-content p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0;
}
.footer-bottom-content p span {
  color: var(--primary);
  font-weight: 700;
}
.footer-brand .logo img,
.footer-brand .custom-logo,
.footer-logo-link {
  display: block;
}
.footer-logo-white-img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}
.footer-brand .logo img,
.footer-brand .custom-logo {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--primary);
}
.scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.scroll-top:hover {
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

/* ── FOOTER ──────────────────────────────────– */
.site-footer {
  background: var(--dark);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── WORDPRESS OVERRIDES ──────────────────── */
.wp-content { margin-top: 0; }

/* ── SECTION DIVIDER ────────────────────── */
.section-divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 0;
}

/* ── HERO SLIDER ────────────────────────── */
.slider-dots { display:flex; gap:8px; margin-bottom:20px; }
.dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(0,0,0,0.15); cursor:pointer; transition:all 0.3s;
}
.dot.active { background:var(--primary); width:24px; border-radius:4px; box-shadow:var(--glow); }

.slider-wrap { position:relative; overflow:hidden; min-height:180px; margin-bottom:0px; }
.slide-item {
  position:absolute; inset:0;
  opacity:0; transform:translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-item.active { opacity:1; transform:translateY(0); }

/* ── MEDIA / CLIENTS SECTION ────────────────── */
.media-section { padding:80px 0; }
.media-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; align-items: center; }
.media-logos.carousel {
  display: block;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 30px;
  animation: carousel-scroll 20s linear infinite;
  width: fit-content;
  padding: 20px 0;
}
.carousel-track:hover {
  animation-play-state: paused;
}
.media-logo { background: var(--light-card); padding: 20px; border-radius: 12px; text-align: center; transition: all 0.3s; flex-shrink: 0; width: 180px; }
.media-logo:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.media-logo-img { max-height: 60px; width: auto; }
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-wrap {
    margin-top: 40px;
  }

  .slider-dots {
    margin-bottom: 15px;
  }

  .media-logos {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
