/* 
  WMIDM - AI-Powered Digital Marketing Institute
  Custom CSS Design System & Theme Styles
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary & Brand Colors */
  --navy-dark: #070e26;
  --navy-topbar: #0a1638;
  --navy-hero: #081742;
  --navy-blue: #0b2265;
  --primary-blue: #1d4ed8;
  --primary-blue-hover: #1e40af;
  --accent-yellow: #ffb703;
  --accent-yellow-hover: #e0a100;
  --accent-gold: #f59e0b;
  --accent-teal: #10b981;
  --accent-orange: #f97316;
  --light-blue-bg: #f0f4fd;
  --card-bg-light: #f8fafc;
  
  /* Text Colors */
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 34, 101, 0.08);
  --shadow-lg: 0 16px 36px rgba(11, 34, 101, 0.12);
  --shadow-glow: 0 0 25px rgba(29, 78, 216, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Basic Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffe066 0%, #ffb703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-yellow {
  color: var(--accent-yellow);
}

.highlight-blue {
  color: var(--primary-blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-yellow {
  background: var(--accent-yellow);
  color: var(--navy-dark);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
}
.btn-yellow:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.5);
}

.btn-blue {
  background: var(--primary-blue);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}
.btn-blue:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}
.btn-outline-light:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
}
.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--accent-teal);
  color: var(--text-white);
}
.btn-teal:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--accent-orange);
  color: var(--text-white);
}
.btn-orange:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* ==========================================================================
   1. TOP UTILITY HEADER
   ========================================================================== */
.top-bar {
  background-color: var(--navy-topbar);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-info-item i {
  color: var(--accent-yellow);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-social a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-white);
}

.top-social a:hover {
  background: var(--primary-blue);
  color: var(--text-white);
  transform: scale(1.1);
}

/* ==========================================================================
   2. MAIN NAVBAR
   ========================================================================== */
.main-navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

.main-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0b2265 0%, #1d4ed8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b2265;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.nav-dropdown-menu li a:hover {
  background: var(--light-blue-bg);
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  border: 1px solid #cbd5e1;
  color: var(--navy-dark);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 6px;
  flex-shrink: 0;
}

.mobile-toggle:hover {
  background: var(--light-blue-bg);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 34, 101, 0.15);
  padding: 24px 20px;
  z-index: 999;
  border-bottom: 3px solid var(--primary-blue);
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

.mobile-nav-drawer.active {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-list a:hover {
  color: var(--primary-blue);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, #050d26 0%, #0b2059 50%, #07153d 100%);
  color: #ffffff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.25) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-yellow);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 30px;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.highlight-pill i {
  color: var(--accent-yellow);
}

/* Rating Stats Card in Hero */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-google-icon {
  font-size: 1.8rem;
  color: #4285f4;
}

.stat-info .rating {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-info .stars {
  color: #fbbf24;
  font-size: 0.8rem;
}

.stat-info .sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero Right Visuals */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-img-box img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-admissions {
  bottom: 20px;
  right: -10px;
  border-left: 4px solid var(--primary-blue);
}

.floating-badge i {
  font-size: 1.3rem;
  color: var(--primary-blue);
}

.floating-tech-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-blue);
  animation: float 3.5s ease-in-out infinite alternate;
}

.tech-icon-1 { top: 20px; left: -20px; color: #ea4335; }
.tech-icon-2 { top: 30%; right: -25px; color: #1877f2; }
.tech-icon-3 { bottom: 25%; left: -25px; color: #00897b; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   4. FEATURE RIBBON GRID (6 CARDS)
   ========================================================================== */
.features-ribbon {
  background: #ffffff;
  padding: 40px 0;
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 20px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--light-blue-bg);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-card:hover .feature-icon-box {
  background: var(--primary-blue);
  color: #ffffff;
}

.feature-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.feature-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 80px 0;
  background: var(--card-bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-box img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #0b2265 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  opacity: 0.9;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
}

.check-item i {
  color: var(--accent-teal);
  font-size: 1.1rem;
}

/* ==========================================================================
   6. COURSES SECTION
   ========================================================================== */
.courses-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header-center p {
  color: var(--text-muted);
  font-size: 1rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.course-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.badge-master { background: var(--primary-blue); }
.badge-advanced { background: var(--accent-teal); }
.badge-pro { background: var(--accent-orange); }

.course-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.course-features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.course-features li i {
  color: var(--accent-teal);
}

.course-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.course-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dark);
}

/* ==========================================================================
   7. STATS COUNTER BANNER
   ========================================================================== */
.stats-banner {
  background: linear-gradient(135deg, #070e26 0%, #0b2265 100%);
  color: #ffffff;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-box {
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-box:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent-yellow);
  margin-bottom: 8px;
}

.stat-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-lbl {
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* ==========================================================================
   8. PLACEMENT & TESTIMONIALS SECTION
   ========================================================================== */
.placement-section {
  padding: 80px 0;
  background: var(--card-bg-light);
}

.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.placement-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.placement-card-header {
  margin-bottom: 20px;
}

.placement-card h3 {
  font-size: 1.3rem;
  color: var(--navy-dark);
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.partner-logo-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: #475569;
}

.student-story-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.student-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-blue);
}

.story-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.story-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
}

.story-role {
  font-size: 0.78rem;
  color: var(--primary-blue);
}

.salary-package-box {
  text-align: center;
  padding: 20px;
  background: var(--light-blue-bg);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.salary-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
}

/* ==========================================================================
   9. TOOLS SECTION
   ========================================================================== */
.tools-section {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.tool-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
  transition: var(--transition);
}

.tool-badge:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tool-badge i {
  font-size: 1.2rem;
}

/* ==========================================================================
   10. BLOG SECTION
   ========================================================================== */
.blog-section {
  padding: 80px 0;
  background: var(--card-bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  height: 180px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 20px;
  text-align: center;
}

.blog-body {
  padding: 20px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   11. FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
}

.faq-question i {
  color: var(--primary-blue);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease-out;
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* ==========================================================================
   12. BOTTOM CONSULTATION CTA BANNER
   ========================================================================== */
.cta-banner-section {
  padding: 60px 0;
}

.cta-banner {
  background: linear-gradient(135deg, #071338 0%, #0b246a 100%);
  border-radius: var(--radius-xl);
  padding: 50px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-content p {
  color: #cbd5e1;
  margin-bottom: 24px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   13. FOOTER & STICKY WHATSAPP
   ========================================================================== */
.footer-main {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 16px 0;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-contact-info li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.footer-contact-info i {
  color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
}

/* Sticky WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   MODAL POPUP (LEAD FORM)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 14, 38, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--text-light);
  background: none;
}

.modal-close:hover {
  color: var(--navy-dark);
}

.modal-title {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .cta-banner {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .courses-grid, .blog-grid, .placement-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .nav-menu { 
    display: none; 
  }
  .nav-btn-hide-mobile { 
    display: none; 
  }
  .mobile-toggle { 
    display: flex; 
  }
  .nav-actions { 
    gap: 8px; 
  }
}

/* Mobile Sticky Action Bar Base Styles */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 25px rgba(0,0,0,0.15);
  padding: 8px 12px;
  z-index: 9999;
  gap: 8px;
  border-top: 1px solid #e2e8f0;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 4px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.sticky-btn-call { background: var(--navy-dark); }
.sticky-btn-demo { background: var(--accent-yellow); color: var(--navy-dark); }
.sticky-btn-whatsapp { background: #25d366; }

@media (max-width: 768px) {
  .top-bar { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Show Mobile Sticky Action Bar at the bottom */
  .mobile-sticky-bar { 
    display: flex !important; 
  }
  .whatsapp-float {
    bottom: 72px; /* Position floating WhatsApp button cleanly above sticky bar */
    z-index: 9998;
  }
  body { 
    padding-bottom: 60px; 
  }
}

@media (max-width: 576px) {
  .main-navbar .container {
    padding: 0 12px;
  }
  .brand-logo-img {
    height: 38px;
  }
  .btn-sm-mobile {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    margin-left: 4px;
  }
  /* Responsive Partner Logos Grid */
  .partner-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .partner-logo-item {
    padding: 10px 8px;
    font-size: 0.82rem;
  }
  /* Refine Stats Banner Grid for Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-box {
    border-right: none;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-box:nth-child(3), .stat-box:nth-child(4) {
    border-bottom: none;
  }
  .stat-val {
    font-size: 1.85rem;
  }
  .stat-lbl {
    font-size: 0.78rem;
  }
}

