/*
Theme Name: Ascent Academy
Theme URI: http://localhost/ascent
Author: Ascent Academy
Author URI: https://ascent-academy.in
Description: Professional WordPress theme for Ascent Academy - catch the tech first
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ascent-academy
Tags: education, responsive, clean, modern
*/

/* ============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */
:root {
  --primary: #FFB606;
  --primary-dark: #E6A303;
  --primary-light: #FFD166;
  --secondary: #002D58;
  --secondary-dark: #001E3C;
  --secondary-light: #1F5992;
  --accent: #5EBB3E;
  --danger: #F24C0A;
  --text-dark: #1a1a2e;
  --text-medium: #444;
  --text-light: #777;
  --text-white: #fff;
  --bg-light: #F9F8F8;
  --bg-white: #ffffff;
  --border: #e2e2e2;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-primary: 'Inter', 'Roboto', sans-serif;
  --font-heading: 'Poppins', 'Roboto Slab', serif;
  --max-width: 1200px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  font-family: var(--font-primary);
  color: var(--text-medium);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

.site-wrapper {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-light { background: var(--bg-light); }

/* Section Heading */
.section-heading { margin-bottom: 50px; text-align: center; }
.section-heading .subtitle {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.section-heading h2 { margin-bottom: 15px; }
.section-heading p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-heading .underline {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px; margin: 15px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--primary); color: var(--secondary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,182,6,0.35);
}
.btn-secondary {
  background: var(--secondary); color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,45,88,0.35);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--secondary);
}
.btn-white {
  background: #fff; color: var(--secondary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--primary); }
.top-bar-info { display: flex; align-items: center; gap: 6px; }
.top-bar-info i { color: var(--primary); font-size: 0.9rem; }
.top-bar .social-links { display: flex; gap: 12px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.top-bar .social-links a:hover { background: var(--primary); color: var(--secondary); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 15px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
}
.site-logo-img {
  height: 56px; width: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-logo:hover .site-logo-img { opacity: 0.88; transform: scale(1.02); }

/* Legacy logo-text (kept for fallback) */
.logo-text { display: flex; flex-direction: column; }
.logo-text .logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800;
  color: var(--secondary); line-height: 1;
}
.logo-text .logo-name span { color: var(--primary); }
.logo-text .logo-tagline {
  font-size: 0.65rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-menu { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; list-style: none; }
.nav-menu > li > a {
  display: block;
  padding: 10px 13px;
  font-weight: 600; font-size: 0.82rem;
  color: var(--text-dark);
  position: relative; transition: var(--transition);
  text-transform: uppercase; letter-spacing: 0.4px;
  white-space: nowrap;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--primary);
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { color: var(--primary); }
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after { left: 13px; right: 13px; }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--primary);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  margin: 0; padding: 0; list-style: none;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block; padding: 10px 20px;
  font-size: 0.88rem; color: var(--text-medium);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav-menu .sub-menu li:last-child a { border-bottom: none; }
.nav-menu .sub-menu li a:hover { color: var(--primary); background: var(--bg-light); padding-left: 28px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--secondary); font-weight: 700; font-size: 0.85rem;
  white-space: nowrap;
}
.header-phone i { color: var(--primary); font-size: 0.9rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span {
  width: 25px; height: 2px; background: var(--secondary);
  display: block; transition: var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO / SLIDER
   ============================================ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--secondary);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center top;
  opacity: 1;
}
/* Dark overlay on top of the background image */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 30, 60, 0.88) 0%,
    rgba(0, 45, 88, 0.80) 50%,
    rgba(10, 40, 80, 0.75) 100%
  );
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,182,6,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255,182,6,0.10) 0%, transparent 40%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 0 70px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,182,6,0.2);
  border: 1px solid rgba(255,182,6,0.4);
  color: var(--primary);
  padding: 6px 18px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-badge span { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title .highlight { color: var(--primary); display: block; }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin-bottom: 35px; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 450px;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 800; color: var(--primary);
  line-height: 1; font-family: var(--font-heading);
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* Hero right image */
.hero-image-col { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrapper {
  position: relative;
  width: 100%; max-width: 520px;
}
.hero-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  width: 100%;
}
.hero-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--primary); color: var(--secondary);
  padding: 15px 20px; border-radius: var(--radius);
  font-weight: 800; font-size: 0.85rem;
  box-shadow: var(--shadow-hover);
  text-align: center; line-height: 1.2;
}
.hero-img-badge .big { font-size: 1.8rem; display: block; }

/* Slider nav */
.slider-nav {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--secondary);
  padding: 0;
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex; align-items: center; gap: 15px;
  padding: 28px 25px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.05); }
.feature-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(255,182,6,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary);
}
.feature-text h4 { color: #fff; font-size: 0.95rem; margin-bottom: 2px; }
.feature-text p { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin: 0; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--bg-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-img-wrapper { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
}
.about-img-accent {
  position: absolute; bottom: -25px; right: -25px;
  width: 200px; border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 5px solid #fff;
}
.about-experience-badge {
  position: absolute; top: 30px; left: -25px;
  background: var(--primary);
  padding: 20px 25px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-experience-badge .years {
  font-size: 2.5rem; font-weight: 800;
  color: var(--secondary); line-height: 1; display: block;
}
.about-experience-badge .label { font-size: 0.75rem; color: var(--secondary); font-weight: 700; }

.about-content .section-heading { text-align: left; margin-bottom: 25px; }
.about-content .section-heading .underline { margin: 15px 0 0; }
.about-content > p { color: var(--text-light); margin-bottom: 25px; font-size: 1rem; }
.about-checklist { margin-bottom: 30px; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 0.95rem;
}
.about-checklist li i { color: var(--primary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.stat-card {
  padding: 50px 30px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-icon {
  font-size: 2.5rem; color: var(--primary);
  margin-bottom: 15px; display: block;
}
.stat-number {
  font-size: 3rem; font-weight: 800;
  color: #fff; line-height: 1;
  font-family: var(--font-heading);
}
.stat-number span { color: var(--primary); }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 8px; }

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-section { background: var(--bg-light); }
.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.course-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
}
.course-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-hover);
}
.course-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.course-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .course-img img { transform: scale(1.06); }
.course-badge {
  position: absolute; top: 15px; left: 15px;
  background: var(--primary); color: var(--secondary);
  padding: 4px 12px; border-radius: 30px;
  font-size: 0.75rem; font-weight: 700;
}
.course-body { padding: 25px; }
.course-meta {
  display: flex; gap: 15px; margin-bottom: 12px;
  font-size: 0.8rem; color: var(--text-light);
}
.course-meta span { display: flex; align-items: center; gap: 5px; }
.course-meta i { color: var(--primary); }
.course-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.course-body h3 a { color: var(--text-dark); }
.course-body h3 a:hover { color: var(--primary); }
.course-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 15px; border-top: 1px solid var(--border);
}
.course-price { font-weight: 700; color: var(--secondary); font-size: 1rem; }
.course-price .free { color: var(--accent); }

/* ============================================
   CERTIFICATION SECTION
   ============================================ */
.cert-section { background: var(--bg-white); }
.cert-content {
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.cert-logo-col { text-align: center; }
.cert-logo-col img { max-width: 200px; margin: 0 auto 20px; }
.cert-badge-text {
  background: var(--secondary); color: #fff;
  padding: 12px 20px; border-radius: var(--radius);
  font-size: 0.8rem; text-align: center; line-height: 1.5;
}
.cert-text h2 { margin-bottom: 20px; font-size: 1.5rem; }
.cert-text p { color: var(--text-light); margin-bottom: 15px; font-size: 0.95rem; }
.cert-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 15px; margin-top: 25px;
}
.cert-highlight {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-light); padding: 15px;
  border-radius: var(--radius); border-left: 3px solid var(--primary);
}
.cert-highlight i { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.cert-highlight-text h5 { font-size: 0.9rem; color: var(--secondary); margin-bottom: 3px; }
.cert-highlight-text p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.why-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  background: #fff; padding: 30px 25px;
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border-top: 4px solid transparent;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-top-color: var(--primary); }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255,182,6,0.15), rgba(0,45,88,0.1));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--secondary);
}
.why-card:hover .why-icon { background: var(--primary); color: var(--secondary); }
.why-card h4 { font-size: 1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* ============================================
   COURSES CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,182,6,0.15), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { color: #fff; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 15px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section { background: var(--bg-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card {
  background: var(--bg-light); border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,45,88,0.85), rgba(31,89,146,0.7));
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-link {
  width: 40px; height: 40px;
  background: var(--primary); color: var(--secondary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.team-social-link:hover { transform: scale(1.1); }
.team-info { padding: 25px; }
.team-info h4 { font-size: 1.1rem; margin-bottom: 5px; }
.team-info .position { color: var(--primary); font-size: 0.85rem; font-weight: 600; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-light); }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card {
  background: #fff; padding: 35px 30px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 25px;
  font-size: 5rem; color: var(--primary); opacity: 0.2;
  line-height: 1; font-family: serif;
}
.stars { color: var(--primary); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-text { color: var(--text-medium); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--primary);
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--bg-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { margin-bottom: 10px; }
.contact-info > p { color: var(--text-light); margin-bottom: 30px; }
.contact-item {
  display: flex; gap: 15px; align-items: flex-start;
  margin-bottom: 25px;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: 1.1rem;
}
.contact-detail h5 { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail a { color: var(--text-dark); font-weight: 600; }
.contact-detail a:hover { color: var(--primary); }

/* Form */
.contact-form { background: var(--bg-light); padding: 40px; border-radius: var(--radius-lg); }
.contact-form h3 { margin-bottom: 25px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition); background: #fff;
  font-family: var(--font-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,182,6,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   PARTNERS / LOGOS
   ============================================ */
.partners-section { background: var(--bg-light); padding: 50px 0; }
.partners-section .section-heading { margin-bottom: 40px; }
.partners-grid {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 30px;
}
.partner-item {
  padding: 15px 25px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
  min-width: 120px; min-height: 80px;
}
.partner-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.partner-item img { max-height: 50px; width: auto; filter: grayscale(40%); transition: var(--transition); }
.partner-item:hover img { filter: grayscale(0%); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--secondary-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand .logo-text .logo-name { color: #fff; }
.footer-brand .logo-text .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 20px 0 25px; line-height: 1.8; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--secondary); transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 35px; height: 2px; background: var(--primary);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a i { font-size: 0.7rem; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.88rem; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 15px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================
   PAGE BANNER / BREADCRUMB
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .separator { color: rgba(255,255,255,0.4); }

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.event-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); display: flex;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.event-date-col {
  background: var(--secondary); color: #fff;
  padding: 20px 15px; text-align: center;
  min-width: 75px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.event-date-col .day { font-size: 2rem; font-weight: 800; line-height: 1; }
.event-date-col .month { font-size: 0.75rem; text-transform: uppercase; color: var(--primary); margin-top: 3px; }
.event-content { padding: 20px; flex: 1; }
.event-content h4 { font-size: 1rem; margin-bottom: 8px; }
.event-content h4 a:hover { color: var(--primary); }
.event-meta { font-size: 0.8rem; color: var(--text-light); display: flex; flex-direction: column; gap: 4px; }
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-meta i { color: var(--primary); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.newsletter-text h3 { color: var(--secondary); margin-bottom: 8px; }
.newsletter-text p { color: rgba(0,45,88,0.75); margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 500px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border: none; border-radius: var(--radius);
  font-size: 0.95rem; outline: none;
}
.newsletter-form .btn { white-space: nowrap; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--primary); color: var(--secondary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; border: none;
  box-shadow: 0 4px 15px rgba(255,182,6,0.4);
  opacity: 0; visibility: hidden; transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); color: var(--primary); transform: translateY(-3px); }

/* ============================================
   MOBILE MENU
   ============================================ */
body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  touch-action: none;
}
.mobile-menu {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 280px !important;
  max-width: 80vw !important;
  height: 100% !important;
  height: 100dvh !important;
  background: var(--secondary-dark) !important;
  z-index: 999999 !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: 60px 20px 30px !important;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5) !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.mobile-menu.open {
  transform: translateX(0) !important;
}
.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(0,0,0,0.65) !important;
  z-index: 999998 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.mobile-menu-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
.mobile-menu-close:hover {
  background: var(--primary); color: var(--secondary); transform: rotate(90deg);
}
.mobile-nav { list-style: none; margin: 0; padding: 0; }
.mobile-nav li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  color: rgba(255,255,255,0.9); font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem; transition: var(--transition);
}
.mobile-nav li a:hover,
.mobile-nav li a:focus { color: var(--primary); padding-left: 6px; }

/* Responsive Placement Grid */
.placement-grid,
.placement-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* About Page Grids & Responsive Layouts */
.affiliations-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.affiliation-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.affiliation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.csr-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
.csr-stat-card {
  border-radius: var(--radius);
  padding: 20px 15px;
  text-align: center;
}
.csr-stat-card.primary {
  background: linear-gradient(135deg, var(--primary), #FFD700);
  color: var(--secondary);
}
.csr-stat-card.secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
}
.csr-stat-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}
.csr-stat-card .lbl {
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .placement-grid,
  .placement-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .affiliations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .placement-grid,
  .placement-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .facilities-grid,
  .why-grid-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .placement-grid,
  .placement-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .affiliations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .affiliation-card {
    padding: 18px 12px;
  }
  .csr-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 400px) {
  .affiliations-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 25px; }
.blog-category {
  display: inline-block; background: rgba(255,182,6,0.12);
  color: var(--primary); font-size: 0.75rem; font-weight: 700;
  padding: 3px 12px; border-radius: 30px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 1px;
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-body h3 a { color: var(--text-dark); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 15px; }
.blog-meta { display: flex; gap: 15px; font-size: 0.8rem; color: var(--text-light); }
.blog-meta span { display: flex; align-items: center; gap: 5px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-item {
  aspect-ratio: 1; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,45,88,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: #fff; font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   COURSES PAGE LIST VIEW
   ============================================ */
.course-list-item {
  display: flex; gap: 25px; background: #fff;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 25px;
  transition: var(--transition);
}
.course-list-item:hover { box-shadow: var(--shadow-hover); transform: translateX(5px); }
.course-list-img { width: 260px; flex-shrink: 0; }
.course-list-img img { width: 100%; height: 100%; object-fit: cover; }
.course-list-body { padding: 30px 25px; flex: 1; }
.course-list-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.course-list-meta {
  display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 15px;
  font-size: 0.85rem; color: var(--text-light);
}
.course-list-meta span { display: flex; align-items: center; gap: 5px; }
.course-list-meta i { color: var(--primary); }
.course-list-body p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed; inset: 0;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 20px; }
.preloader-logo span { color: var(--primary); }
.preloader-bar {
  width: 150px; height: 4px; background: rgba(255,255,255,0.2);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.preloader-progress {
  height: 100%; background: var(--primary); border-radius: 2px;
  animation: loading 2s ease-in-out infinite;
}
@keyframes loading {
  0% { width: 0; margin-left: 0; }
  50% { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  /* Hide phone in header at medium widths so nav has room */
  .header-phone { display: none; }
  .nav-menu > li > a { padding: 10px 10px; font-size: 0.78rem; }
}

@media (max-width: 1024px) {
  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cert-content { grid-template-columns: 1fr; gap: 30px; }
  .cert-logo-col { display: flex; gap: 20px; align-items: center; }
}

@media (max-width: 991px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu { display: block; }
}

@media (max-width: 768px) {
  .top-bar { display: none !important; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .hero-content { padding: 80px 0 60px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-image-col { display: none; }
  .features-strip .container { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; max-width: 100%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cert-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .course-list-item { flex-direction: column; }
  .course-list-img { width: 100%; height: 200px; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .section-pad { padding: 50px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 25px; }
  .about-experience-badge { display: none; }
}

/* ============================================
   WP CORE CLASSES
   ============================================ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute; height: 1px; width: 1px; overflow: hidden;
}
.entry-content p { margin-bottom: 1.2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-numbers {
  display: inline-flex; gap: 5px; align-items: center;
  padding: 40px 0; justify-content: center; width: 100%;
}
.page-numbers a, .page-numbers span {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); color: var(--text-dark);
  font-weight: 600; font-size: 0.9rem; transition: var(--transition);
  border: 1.5px solid var(--border);
}
.page-numbers a:hover, .page-numbers span.current {
  background: var(--primary); border-color: var(--primary); color: var(--secondary);
}
