/* ============================================
   SCIT - Sanford College of Information Technology
   CSS Stylesheet
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #1d70d8;
  --blue-light: #3B82F6;
  --blue-bg: #EFF6FF;
  --blue-mid: #DBEAFE;
  --navy: #0F1E3D;
  --dark: #1E293B;
  --text: #4d4f5b;
  --text-light: #6B7280;
  --green: #10B981;
  --green-bg: #ECFDF5;
  --green-mid: #D1FAE5;
  --orange: #F59E0B;
  --orange-bg: #FFFBEB;
  --purple: #8B5CF6;
  --purple-bg: #F5F3FF;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;

  --light-blue-bg: #3977db3d;
  --light-green-bg: #10b98133;
}

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

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: 'Poppins', sans-serif;  */
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

/* ===== UTILITY ===== */
.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 40px;
}

.text-blue {
  color: var(--blue);
}

.text-dark-navy {
  color: var(--navy);
}

.link-blue {
  color: var(--blue);
  font-weight: 600;
}

.link-blue:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.75px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1A41B0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.divider-line {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 12px 0 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  /* letter-spacing: 1.2px; */
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label span {
  line-height: 1;
  letter-spacing: 1.2px;
  padding-top: 3px;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.label-icon {
  font-size: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-label-center {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}

.section-divider-center {
  width: 36px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.section-title-center {
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 48px;
}

.hero-title,
.section-title,
.psi-main-title,
.psi-certs-title,
.section-title-center,
.ec-title {
  font-family: "DM Sans", sans-serif !important;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  margin: auto 3%;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.logo-main {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.enroll-btn {
  padding: 11px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding-top: 72px;
  padding-bottom: 100px;
  background: var(--white);
}

.hero-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding-bottom: 60px;
}

.hero-left {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  flex: 1;
  display: flex;
}

.hero-img-wrap {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.hero-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.hero-img-mob {
  display: none;
}

.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f7fc;
  border: 1px solid #e3e9f2;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #0564b0;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bottom {
  background: var(--white);
  padding: 28px 0;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.04);

  position: absolute;
  width: 80%;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 8px;
  bottom: 60px;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 50px;
}

.hb-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--blue);
  flex-shrink: 0;
}

.hb-icon-img {
  width: 30px;
  height: 30px;
}

.hb-purple {
  background: var(--purple-bg);
  color: var(--purple) !important;
}

.hb-green {
  background: var(--green-bg);
  color: var(--green) !important;
}

.hb-orange {
  background: var(--orange-bg);
  color: var(--orange) !important;
}

.hb-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.hb-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0 0;
  overflow-x: hidden;
}

.about-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  align-items: flex-end;
  /* padding-bottom: 60px; */
}

.about-left {
  flex: 0 0 50%;
}

.about-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-checks {
  margin-bottom: 28px;
}

.check-row {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.check-icon {
  color: var(--blue);
  font-size: 16px;
}

.about-right {
  width: 50%;
  position: absolute;
  right: -75px;
}

.about-img-tab {
  display: none;
}

.about-img {
  width: 100%;
  /* border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); */
}

/* .about-features {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 0;
} */

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.af-item {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.af-icon {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 14px;
}

.af-icon-img {
  width: 32px;
  height: auto;
}

.af-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.af-line {
  width: 32px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin: 8px auto;
}

.af-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== MISSION & VISION ===== */
.mission {
  background: var(--white);
  padding: 80px 0;
}

/* Mission/Vision Cards - NEW LAYOUT matching Image 1 */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.mv-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-mid);
  background: var(--blue-bg);
  display: flex;
  flex-direction: column;
}

.mv-card-vision {
  border-color: var(--green-mid);
  background: var(--green-bg);
}

/* TOP section of card: left text + right illustration */
.mv-card-top {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  position: relative;
}

.mv-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}

.mv-card-top-left {
  flex: 0 0 72%;
  padding: 28px 24px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.mv-card-top-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  z-index: 1;
}

.mv-card-illus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* If image doesn't fill, show as contained illustration */
}

/* Fallback: if image is a transparent illustration, object-contain looks better */
.mv-card-illus[src*="mission"],
.mv-card-illus[src*="vission"] {
  object-fit: contain;
  object-position: bottom right;
}

/* BOTTOM section of card: pillars */
.mv-card-bottom {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(29, 78, 216, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.mv-card-bottom-vision {
  border-top-color: rgba(16, 185, 129, 0.15);
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.mv-blue {
  background: var(--light-blue-bg);
}

.mv-green {
  background: var(--light-green-bg);
}

.mv-card-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.mv-underline {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.mv-blue-line {
  background: var(--blue);
}

.mv-green-line {
  background: var(--green);
}

.mv-desc {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
}

/* Pillars - 4 columns in bottom */
.mv-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 4px;
  text-align: center;
}

.pillar-icon {
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 6px;
}

.pillar-icon-img {
  width: 35px;
  height: 35px;
}

.pillar-green {
  color: var(--green) !important;
}

.pillar-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.pillar-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}

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

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.stat-icon-img {
  width: 28px;
  height: 28px;
}

.stat-blue {
  background: var(--blue-bg);
  color: var(--blue);
}

.stat-green {
  background: var(--green-bg);
  color: var(--green);
}

.stat-purple {
  background: var(--purple-bg);
  color: var(--purple);
}

.stat-orange {
  background: var(--orange-bg);
  color: var(--orange);
}

.stat-blue2 {
  background: #EEF2FF;
  color: #4F46E5;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
}

.stat-blue-text {
  color: var(--blue);
}

.stat-green-text {
  color: var(--green);
}

.stat-purple-text {
  color: var(--purple);
}

.stat-orange-text {
  color: var(--orange);
}

.stat-blue2-text {
  color: #4F46E5;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Quote */
.mv-quote {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-left: 6px solid var(--blue);

  background-image: url(img/quote-web.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.quote-mark {
  font-size: 36px;
  line-height: 36px;
  color: var(--blue);
  flex-shrink: 0;
}

.quote-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  /* flex: 1; */
  flex: 0 0 80%;
}

.quote-img {
  flex-shrink: 0;
  width: 250px;
}

.quote-img-file {
  width: 100%;
  border-radius: var(--radius);
}

/* ===== COURSES SECTION ===== */
.courses {
  background: var(--bg-light);
  padding: 80px 0;
}

/* Courses Header */
.courses-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.courses-header-left {
  flex: 1;
}

.courses-subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 8px;
  max-width: 400px;
}

.courses-header-right {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}

.courses-laptop-widget {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 250px;
}

.courses-laptop-img {
  width: 290px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.download-center-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.download-center-badge>i {
  font-size: 24px;
  color: var(--blue);
  margin-top: 2px;
}

.dc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.dc-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.4;
}

.dc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dc-link:hover {
  text-decoration: underline;
}

/* Category Tabs */
.courses-tabs-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.courses-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.courses-tabs {
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
  border: 1px solid var(--border);
  width: max-content;
  min-width: 100%;
}

.course-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.course-tab:hover {
  color: var(--blue);
  background: var(--blue-bg);
}

.course-tab.active {
  background: var(--blue);
  color: var(--white);
}

.tab-count {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 12px;
  font-weight: 700;
}

.course-tab:not(.active) .tab-count {
  background: var(--blue-bg);
  color: var(--blue);
}

/* Courses Layout */
.courses-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Sidebar */
.courses-sidebar {
  flex: 0 0 210px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.sidebar-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-of-type {
  border-bottom: none;
  margin-bottom: 12px;
  padding-bottom: 0;
}

.sidebar-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sidebar-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}

.filter-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
  cursor: pointer;
}

.filter-count {
  color: var(--text-light);
  font-size: 12px;
}

.show-more-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding: 0;
}

.clear-filters-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.clear-filters-btn:hover {
  border-color: #EF4444;
  color: #EF4444;
}

/* Courses Main */
.courses-main {
  flex: 1;
  min-width: 0;
}

/* Toolbar */
.courses-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.courses-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
}

.filter-active-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  top: 6px;
  right: 6px;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-label {
  font-size: 13px;
  color: var(--text-light);
}

.sort-select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  outline: none;
}

/* Course Cards Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

/* Course Card */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}

.course-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.course-card.hidden {
  display: none;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.course-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-right-wrap {
  display: flex;
  flex-direction: column;
}

.card-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg-light);
  border-radius: 6px;
  padding: 3px 8px;
  width: fit-content;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}

.card-divider {
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.card-level {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--text-light);
}

.level-beginner {
  background: var(--green-bg);
  color: #065F46;
}

.level-intermediate {
  background: var(--blue-bg);
  color: var(--blue);
}

.level-advanced {
  background: var(--purple-bg);
  color: var(--purple);
}

.card-duration {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.card-brochure-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  /* background: var(--blue-bg); */
  border: none;
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.card-brochure-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.card-brochure-btn i {
  color: #DC2626;
}

.card-pdf-badge {
  font-size: 11px;
  font-weight: 700;
  background: #FEF2F2;
  color: var(--blue);
  background-color: var(--blue-bg);
  border-radius: 5px;
  padding: 4px 8px;
}

/* Show More */
.show-more-wrap {
  text-align: center;
}

.show-more-courses-btn {
  padding: 12px 32px;
  font-size: 14px;
}

/* Courses CTA Bar */
.courses-cta-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.cta-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.cta-blue {
  background: var(--blue-bg);
  border-color: var(--blue-mid);
}

.cta-green {
  background: var(--green-bg);
  border-color: var(--green-mid);
}

.cta-bar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.cta-bar-icon-img {
  width: 28px;
  height: 28px;
}

.cta-icon-green {
  background: var(--light-green-bg);
}

.cta-bar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.cta-bar-desc {
  font-size: 12px;
  color: var(--text-light);
}

.cta-bar-item .btn {
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
}

/* ===== MOBILE FILTER DRAWER ===== */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  backdrop-filter: blur(2px);
}

.filter-overlay.open {
  display: block;
}

.filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 1101;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.filter-drawer.open {
  transform: translateY(0);
}

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.filter-drawer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-drawer-body {
  overflow-y: auto;
  padding: 20px 24px;
  flex: 1;
}

.filter-drawer-body .sidebar-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-drawer-body .sidebar-section:last-child {
  border-bottom: none;
}

.filter-drawer-footer {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.filter-drawer-footer .btn {
  flex: 1;
  justify-content: center;
  padding: 13px;
}

/* ===== ENROLL + CONTACT SECTION ===== */
.enroll-contact {
  background: var(--bg-light);
  padding: 80px 0 0;
}

.ec-container {
  display: grid;
  padding: 0 0 !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
}

.enroll-side {
  background: var(--blue-bg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.contact-side {
  background: var(--white);
  padding: 52px 48px;
}

.ec-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ec-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.enroll-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.ef-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ef-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.ef-icon-img {
  width: 32px;
  height: 32px;
}

.ef-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.ef-desc {
  font-size: 13px;
  color: var(--text-light);
}

.ec-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Contact Info */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.ci-icon {
  width: 38px;
  height: 39px;
  border-radius: 50%;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  flex-shrink: 0;
}

.ci-icon-img {
  width: 30px;
  height: 30px;
}

.ci-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.ci-val {
  font-size: 13px;
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-field {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.cf-field-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
  color: var(--text-light);
  z-index: 1;
}

.cf-top-icon {
  top: 14px;
}

.cf-input {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color 0.2s;
  outline: none;
}

.cf-input:focus {
  border-color: var(--blue);
  background: var(--white);
}

.cf-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Book a Call Bar */
.book-call-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.book-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bc-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--blue);
  flex-shrink: 0;
}

.bc-icon-img {
  width: 40px;
  height: 40px;
}

.bc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.bc-desc {
  font-size: 13px;
  color: var(--text-light);
}

.bc-phone {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
}

.bc-hours {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

.bc-btn {
  padding: 12px 24px;
  font-size: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-logo .logo {
  margin-bottom: 16px;
}

.logo-white {
  color: var(--white) !important;
}

.logo-sub-white {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.fl-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.fl-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.whatsapp-widget {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

/* Message Box */
.whatsapp-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin-right: 12px;
  animation: slideIn 0.4s ease;
}

.whatsapp-content {
  display: flex;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-content.hide {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.whatsapp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon i {
  color: #fff;
  font-size: 24px;
}

.whatsapp-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.whatsapp-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #666;
}

/* Floating Button */
.whatsapp-float {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-content {
    /* display: none; */
    padding: 10px 12px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-icon i {
    font-size: 13px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .whatsapp-text h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1;
  }

  .whatsapp-text p {
    font-size: 12px;
  }
}


@media (max-width: 1400px) {
  .about-left {
    flex: 0 0 41%;
  }
}

@media (max-width: 1350px) {
  .mv-quote {
    /* background:
      linear-gradient(rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.7)),
      url(img/mm.png); */
    background-image: url(img/quote-mob.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}


@media (max-width: 1235px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 180px;
  }

  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-right {
    position: absolute;
    top: 75px;
    right: 0;
    width: 48%;
  }

  .hero-bottom {
    width: 95%;
  }

  .hb-item {
    flex-direction: column;
    text-align: center;
  }
}

/* 
@media (max-width: 1200px) {
  .about-img-web {
    display: none;
  }

  .about-img-tab {
    display: block;
  }

  .check-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .check-item {
    margin-bottom: 8px;
  }

  .cta-bar-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-bar-item .btn {
    margin: auto;
  }

  .bc-phone {
    font-size: 19px;
  }
} */


@media (max-width: 1200px) {

  .hero-bottom {
    bottom: 35px;
  }

  /* Keep about side-by-side (label left, image right) */
  .about-container {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .about-right {
    width: 64%;
    position: absolute;
    right: -75px;
  }

  .about-img-circle-wrap .about-img {
    width: 260px;
    height: 260px;
  }

  /* Check items vertical */
  .check-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .check-item {
    margin-bottom: 8px;
  }

  .about-features {
    padding-bottom: 25px;
  }

  /* Features: 2×2 grid + show label */
  .about-features-label {
    display: block;
  }

  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-item:last-child {
    grid-column: auto;
    display: none;
  }

  .course-card {
    padding: 10px;
  }

  /* Rest of your existing 1200px rules */
  .cta-bar-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-bar-item .btn {
    margin: auto;
  }

  .bc-phone {
    font-size: 19px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero {
    padding-top: 115px;
    padding-bottom: 215px;
  }

  .hero-container {
    gap: 28px;
    margin: auto;
    max-width: 94% !important;
  }

  .hero-img {
    object-fit: contain;
  }

  .hero-left {
    flex: 0 0 400px;
    z-index: 1;
  }

  .hero-right {
    position: absolute;
    top: 125px;
    right: 0;
    width: 56%;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-desc {
    margin-bottom: 15px;
  }

  .about-container {
    gap: 36px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 200px;
    padding: 10px 15px;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;

  }

  .hero-bottom-grid {
    padding: 0 10px;
  }

  /* .about-left {
    flex: 0 0 420px;
  } */

  .about-container {
    gap: 0;
    padding-bottom: 40px;
    max-width: 94%;
  }

  .section-title {
    font-size: 32px;
  }

  .section-title-center {
    font-size: 36px;
  }

  .stats-row {
    gap: 16px;
    text-align: center;
  }

  .stat-item {
    flex-direction: column;
  }

  .ec-container {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .courses-header {
    flex-direction: column;
  }

  .courses-laptop-widget {
    max-width: 100%;
  }

  .courses-layout {
    flex-direction: column;
  }

  .courses-sidebar {
    display: none;
  }

  .mobile-filter-btn {
    display: inline-flex;
  }

  /* Mission/Vision tablet */
  .mv-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission {
    padding: 15px 0;
  }

  .course-container {
    max-width: 94%;

  }

  .courses-main {
    width: 100%;
  }

  .enroll-contact {
    padding-top: 0;
  }
}


@media (max-width: 970px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-left {
    flex: 0 0 60%;
  }

  .about-right {
    width: 38%;
    position: absolute;
    right: 0;
    top: -113px;
  }

  .about-img {
    display: none;
  }

  .about-img-tab {
    display: block;
  }

  .psi-desc.psi-tab {
    display: block !important;
  }

  .psi-desc.psi-web {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .nav-link.active::after {
    display: none;
  }

  .about-right {
    top: -75px;
  }

  .enroll-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0;
    width: 96% !important;
  }

  /* Navbar */
  /* .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav-link.active::after { display: none; }
  .enroll-btn { display: none; }
  .hamburger { display: block; } */

  /* Hero */

  .hero {
    padding-top: 85px;
  }

  .hero-container {
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 0;
    gap: 14px;
  }

  .hero-left {
    flex: none;
    width: 40%;
  }

  .hero-img-wrap {
    min-height: 260px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 150px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .2px;
  }

  .hero-bottom-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .hb-item {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* .hb-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  } */

  .hb-title {
    font-size: 13px;
  }

  /* About */
  .about-features {
    padding-top: 50px;
  }

  .about {
    padding: 34px 0 0;
  }

  .about-left {
    flex: 0 0 55%;
    z-index: 1;
  }

  .about-right {
    width: 50%;
    top: -45px;
  }

  .about-desc {
    margin-bottom: 10px;
  }

  .about-img-tab {
    height: 480px;
    object-fit: contain;
  }

  .af-item {
    padding: 8px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-left .section-title {
    font-size: 36px !important;
  }

  .check-row {
    flex-direction: column;
    /* gap: 10px; */
  }

  .af-item:last-child {
    grid-column: 1 / -1;
  }

  /* Mission & Vision */
  .mission {
    padding: 20px 0;
  }

  .section-title-center {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .mv-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .mv-card-top {
    flex-direction: column;
    min-height: auto;
  }

  .mv-card-top-left {
    flex: none;
    width: 100%;
    padding: 24px 20px 16px;
  }

  .mv-card-top-right {
    min-height: 180px;
  }

  .mv-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mv-card-bottom {
    padding: 16px 20px 20px;
  }

  .stats-row {
    gap: 14px;
    padding: 24px;
  }

  .mv-quote {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .quote-text {
    font-size: 15px;
  }

  .quote-img {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  /* Courses */
  .courses {
    padding: 20px 0;
  }

  .courses-header {
    flex-direction: column;
  }

  .courses-layout {
    flex-direction: column;
  }

  .courses-sidebar {
    display: none;
  }

  .mobile-filter-btn {
    display: inline-flex;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .courses-cta-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-bar-item {
    flex-direction: column;
    text-align: center;
  }

  .cta-bar-item .btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  /* Enroll + Contact */
  .enroll-contact {
    padding: 34px 0 0;
  }

  .enroll-side {
    padding: 36px 24px 60px;
  }

  .contact-side {
    padding: 36px 24px;
  }

  .ec-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .ec-btns {
    flex-direction: column;
  }

  .ec-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .book-call-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .bc-left {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .bc-phone {
    font-size: 18px;
  }

  .bc-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }
}

@media (max-width: 675px) {
  .hero {
    padding-bottom: 230px;
  }

  .hero-img-mob {
    display: block;
  }

  .hero-img-web {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc,
  .ec-desc {
    font-size: 14px;
  }

  .hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    border-radius: 8px;
    width: 95%;
    margin: auto;
  }

  .section-label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .section-label .fas {
    font-size: 5px;
  }

  .enroll-side .section-label .fas {
    font-size: 16px;
  }

  .about-features {
    padding-top: 18px;
  }

  .about-checks .fas {
    font-size: 12px;
  }

  .about-left {
    flex: 0 0 50%;
    z-index: 1;
  }

  .about-left .section-title {
    font-size: 28px !important;
    font-weight: 700;
  }

  .about-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .af-icon {
    margin-bottom: 5px;
  }

  .af-title {
    margin-bottom: 0;
  }

  .section-subtitle,
  .courses-subtitle {
    font-size: 14px;
  }

  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .whatsapp-float::before {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 630px) {

  .hero {
    padding-bottom: 250px;
  }

  .courses-count {
    display: none;
  }

  .courses-toolbar .toolbar-right {
    justify-content: space-between;
    width: 100%;
  }

  .hero-bottom {
    bottom: 30px;
  }

  .about-features-grid {
    /* grid-template-columns: 1fr; */
    padding: 0 !important;
    gap: 4px;
    max-width: 100% !important;
  }

}

@media (max-width: 600px) {
  .contact-info-left {
    grid-template-columns: repeat(1, 1fr);
  }

  .hb-item {
    flex-direction: column;
    text-align: center;
  }


  .hero-bottom {
    bottom: -12px;
  }

  .about-right {
    top: -15px;
  }

  /* .about-left {
    flex: 0 0 70%;
    width: 100%;
    z-index: 1;
  }

  .about-right {
    flex: 1;
    position: absolute;
    opacity: 0.6;
    right: -20px;
  }

  .about-img-tab {
    object-fit: cover;
    height: 376px;
  }

  .about-desc {
    font-size: 12px;
  } 

  .check-item {
    font-size: 10px;
  }*/

  /* .about-right {
    display: none;
  } */

  /* .about-left {
    flex: 0 0 100%;
    background:
      linear-gradient(rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.7)),
      url(img/about-tab.png);
      background-position: center;
      background-size: cover;
  } */
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero-bottom {
    bottom: 30px;
  }

  .badge-online {
    padding: 4px 9px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
  }

  .hero-btns {
    gap: 7.5px;
  }

  .hero-btns .btn {
    width: 125px;
    padding: 4px 5px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .2px;
    border-radius: 4px;
  }

  .about {
    overflow-x: hidden;
    padding: 10px 0 0;
  }

  .about-features {
    padding-top: 30px;
  }

  .about-left {
    flex: 0 0 54%;
    z-index: 1;
  }

  .about-left .section-title {
    font-size: 24px;
  }

  .about-desc {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .check-item {
    font-size: 12px;
  }

  .about-right {
    width: 60%;
    top: -28px;
    right: -45px;
  }

  .about-img-tab {
    height: 462px;
  }

  .af-desc,
  .section-subtitle,
  .section-subtitle,
  .courses-subtitle,
  .ec-desc {
    font-size: 12px;
  }

  .courses-header-right {
    width: 100%;
    flex-direction: column;
  }

  .courses-tabs-wrap {
    margin-bottom: 15px;
  }

  .course-tab,
  .mobile-filter-btn {
    font-size: 13px;
  }
}


@media (max-width: 530px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .fl-col:last-child {
    grid-column: 1 / -1;
  }
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-left {
    width: 50%;
  }

  .hero-container {
    padding-bottom: 40px;
  }

  .hero-right {
    top: 75px;
    width: 60%
  }

  .section-title {
    font-size: 24px;
  }

  .section-title-center {
    font-size: 24px;
  }

  .hero-bottom {
    position: relative;
    bottom: 6px;
    width: 100%;
    border-radius: 0;
  }

  .hero-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }


  .about-features {
    padding-top: 18px;
    padding-bottom: 5px;
  }

  .af-item:last-child {
    grid-column: auto;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:last-child {
    grid-column: auto;
  }

  .mv-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .fl-col:last-child {
    grid-column: auto;
  }

  .courses-main {
    width: 100%;
  }

  .about-right {
    right: -66px;
  }
}

@media (max-width: 460px) {

  /* .courses-grid {
    grid-template-columns: 1fr;
  } */
  .card-icon-wrap {
    width: 34px;
    height: 34px;
  }

  .course-card {
    padding: 4px;
    gap: 10px;
  }

  .card-top {
    gap: 5px;
  }

  .card-num {
    font-size: 10px;
  }

  .card-title {
    font-size: 12px;
  }

  .card-meta {
    gap: 2px;
  }

  .card-level {
    font-size: 10px;
  }

  .card-duration {
    font-size: 10px;
  }

  .card-actions {
    gap: 0px;
  }

  .card-brochure-btn {
    gap: 6px;
    font-size: 10px;
  }

  .card-pdf-badge {
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .hero-right {
    top: 155px;
  }

  /* .toolbar-right {
    flex-direction: column;
    align-items: flex-start;
  } */

  .about-left {
    flex: 0 0 60%;
  }

  .about-right {
    right: -80px;
    width: 66%;
    top: -24px;
  }

}

@media (max-width: 400px) {
  /* .about-features-grid {
    grid-template-columns: 1fr;
  } */

  .about-left .section-title {
    font-size: 24px !important;
    margin-bottom: 0;
  }

  .divider-line {
    height: 2px;
    margin: 0 0 15px
  }

  .about-container {
    padding-bottom: 15px;
  }


  .about-features {
    padding-top: 0;
  }

  .about-right {
    right: -35%;
    width: 89%;
    top: -24px;
  }

  .about-img-tab {
    height: 400px;
  }
}

/* ============================================
   PSI EXAM CENTER SECTION
   ============================================ */

.psi {
  background: var(--white);
  padding: 80px 0 0;
}

/* ---- Header Row ---- */
.psi-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.psi-header-left {
  flex: 1;
  padding-top: 8px;
  width: 55%;
}

.psi-main-title {
  font-family: "DM Sans", sans-serif !important;
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.psi-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  /* max-width: 460px; */
}

.psi-desc.psi-tab {
  display: none;
}

/* ---- PSI Logo Card ---- */
.psi-header-right {
  flex-shrink: 0;
  width: 45%;
}

.psi-logo-card {
  /* background: var(--white); */
  text-align: center;
  /* width: 280px; */
  /* box-shadow: var(--shadow); */
}

.psi-logo-circle {
  width: 400px;
  /* height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
  position: relative;
  background: var(--white);
}

.psi-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.psi-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psi-logo-text {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
  font-style: italic;
  letter-spacing: -2px;
}

.psi-logo-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.8px;
  line-height: 1.5;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.psi-logo-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.psi-logo-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
  flex: 1;
}

.psi-logo-feat i {
  font-size: 20px;
  color: var(--blue);
}

.psi-logo-feat-img {
  width: 26px;
  height: 26px;
}

/* ---- Dark Navy Feature Bar ---- */
.psi-feature-bar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

.psi-feat-item {
  flex: 1;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.psi-feat-item:first-child {
  padding-left: 0;
}

.psi-feat-item:last-child {
  padding-right: 0;
}

.psi-feat-divider {
  width: 1px;
  min-height: 100px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  align-self: stretch;
}

.psi-feat-icon {
  font-size: 30px;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.psi-feat-icon-img {
  width: 34px;
  height: 34px;
}

.psi-feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.psi-feat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ---- Certifications Section ---- */
.psi-certs-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.psi-certs-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.psi-certs-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--border);
  display: block;
}

.psi-certs-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ---- Cert Cards Grid ---- */
.psi-certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 16px 24px;
  text-align: center;
  cursor: pointer;
}

/* Cert logo circle — supports image OR text fallback */
.cert-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.cert-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* When an <img> is inside cert-logo, it fills the circle */
.cert-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Text fallback (when no image) */
.cert-logo span {
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* Cert brand colors */
.cert-logo-cism {
  background: #1D4ED8;
}

.cert-logo-cisa {
  background: #DC2626;
}

.cert-logo-crisc {
  background: #D97706;
}

.cert-logo-frm {
  background: #0891B2;
}

.cert-logo-citp {
  background: #7C3AED;
}

/* Colored underline */
.cert-underline {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin: 12px auto 14px;
}

.cert-ul-cism {
  background: #1D4ED8;
}

.cert-ul-cisa {
  background: #DC2626;
}

.cert-ul-crisc {
  background: #D97706;
}

.cert-ul-frm {
  background: #0891B2;
}

.cert-ul-citp {
  background: #7C3AED;
}

.cert-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-full {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* View All */
.psi-view-all {
  text-align: center;
}

.psi-view-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.psi-view-link:hover {
  gap: 14px;
  text-decoration: underline;
}

/* ---- CTA Banner ---- */
.psi-cta-banner {
  background: var(--blue-bg);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.psi-cta-icon-wrap {
  flex-shrink: 0;
}

.psi-cta-icon {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}

.psi-cta-text {
  flex: 1;
}

.psi-cta-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.psi-cta-desc {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-light);
}

.psi-cta-shield-bg {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  height: 200px;
  width: 200px;
  color: var(--blue-mid);
  opacity: 0.5;
  pointer-events: none;
  line-height: 1;
}

.psi-cta-btn {
  flex-shrink: 0;
}


@media (max-width: 1024px) {

  .psi-container {
    padding-bottom: 40px;
    max-width: 94%;
    gap: 0px;
  }

  .psi-feature-bar {
    padding: 20px 10px;
    border-radius: 5px;
  }

  .psi-main-title {
    font-size: 40px;
  }

  .psi-certs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .psi-feature-bar {
    padding: 32px 32px;
    border-radius: 8px;
  }

  .psi-feat-item {
    padding: 0 20px;
  }

  .psi-cta-shield-bg {
    display: none;
  }

  .psi-logo-circle {
    width: 300px;
  }

  .psi-certs-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }

  .psi-certs-grid .cert-card {
    flex: 0 0 160px;
    min-width: 160px;
    padding: 15px 15px 10px;
  }

  .psi-certs-grid::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .btn {
    border: 1px solid;
  }

  .psi {
    padding: 34px 0 0;
  }

  .psi-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .psi-header-left {
    width: 100%;
  }

  .psi-header-right {
    width: 100%;
  }

  .psi-logo-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 20px 24px;
  }

  /* .psi-logo-circle { margin: 0; flex-shrink: 0; } */
  .psi-logo-label {
    margin-bottom: 0;
    font-size: 10px;
  }

  .psi-logo-features {
    border-top: none;
    padding-top: 0;
    gap: 30px;
    align-items: flex-start;
  }

  /* .psi-logo-feat {
    text-align: left;
  } */

  .psi-main-title {
    font-size: 34px;
  }

  .psi-feature-bar {
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
    margin-bottom: 30px;
  }

  .psi-feat-item {
    flex-direction: row;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .psi-feat-item:first-child {
    padding: 24px 28px;
  }

  .psi-feat-icon {
    font-size: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .psi-feat-icon-img {
    width: 28px;
    height: 28px;
  }

  .psi-feat-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    align-self: unset;
  }

  .psi-certs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
  }

  .psi-certs-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .psi-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .psi-cta-icon-wrap {
    display: flex;
    justify-content: center;
  }

  .psi-cta-icon {
    width: 80px;
    height: 80px;
  }

  .psi-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .stats-row {
    gap: 14px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
  }
}

@media (max-width: 675px) {
  .psi-desc {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .psi-cta-banner {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .psi-desc {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .psi-logo-circle {
    margin: 0;
    flex-shrink: 0;
  }

  .psi-logo-card {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .psi-logo-features {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 85%;
  }

  .psi-logo-feat {
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .hero {
    padding-bottom: 0;
  }

  .psi-main-title {
    font-size: 28px;
  }

  .psi-certs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .psi-certs-title {
    font-size: 22px;
  }

  .cert-logo {
    width: 70px;
    height: 70px;
  }

  .cert-logo span {
    font-size: 12px;
  }

  .psi-logo-card {
    flex-direction: column;
    text-align: center;
  }

  .psi-logo-features {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .psi-logo-feat {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .stats-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .stat-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 450px) {
  .psi-logo-circle {
    width: 250px;
  }
}



@media (min-width: 2000px) {
  .nav-container {
    height: 110px;
  }

  .nav-link {
    font-size: 25px;
  }

  .enroll-btn,
  .logo-main {
    font-size: 22px;
  }

  .logo-icon {
    width: 76px;
    height: 76px;
  }

  .logo-sub,
  .dc-link {
    font-size: 16px;
  }

  .hero-left {
    flex: 0 0 50%;
  }

  .badge-online,
  .pillar-title,
  .stat-label,
  .psi-logo-feat,
  .psi-certs-label,
  .section-label-center {
    font-size: 20px;
  }

  .hero-title,
  .section-title,
  .psi-main-title,
  .section-title-center {
    font-size: 72px;
  }

  .hero-desc {
    font-size: 26px;
    max-width: 600px;
  }

  .btn {
    font-size: 26px;
  }

  .hb-title,
  .af-title,
  .psi-feat-title,
  .dc-desc,
  .course-tab,
  .cta-bar-title,
  .ec-desc,
  .bc-desc,
  .bc-hours {
    font-size: 22px;
  }

  .hb-desc,
  .af-desc,
  .psi-feat-desc,
  .cert-full,
  .psi-cta-desc,
  .sidebar-title,
  .filter-check,
  .courses-count,
  .sort-label,
  .sort-select,
  .card-num,
  .card-title,
  .card-level,
  .card-duration,
  .card-brochure-btn,
  .card-pdf-badge,
  .cta-bar-desc,
  .cta-bar-item .btn,
  .ef-title,
  .ci-label,
  .fl-col a,
  .footer-bottom {
    font-size: 20px;
  }

  .section-label {
    gap: 20px;
    font-size: 24px;
  }

  .section-label span {
    padding-top: 12px;
  }

  .about-desc,
  .cert-name,
  .section-subtitle,
  .quote-text,
  .bc-title {
    font-size: 26px;
  }

  .check-item,
  .psi-cta-title,
  .psi-desc,
  .mv-desc,
  .dc-title,
  .cf-input,
  .cf-field i,
  .bc-phone,
  .fl-title {
    font-size: 24px;
  }

  .af-icon-img {
    width: 60px;
  }

  .psi-logo-circle {
    width: 480px;
  }

  .psi-logo-feat-img,
  .psi-feat-icon-img {
    width: 60px;
    height: 60px;
  }

  .psi-certs-title {
    font-size: 50px;
  }

  .cert-logo {
    width: 120px;
    height: 120px;
  }

  .psi-cta-banner {
    gap: 60px;
  }

  .psi-cta-icon {
    width: 140px;
    height: 140px;
  }

  .psi-cta-title,
  .psi-cta-desc,
  .sidebar-section {
    margin-bottom: 10px;
  }

  .mv-card-icon,
  .cta-bar-icon,
  .ef-icon,
  .ci-icon,
  .bc-icon-img {
    width: 60px;
    height: 60px;
  }

  .mv-card-header h3 {
    font-size: 30px;
  }

  .pillar-icon-img,
  .stat-icon-img {
    width: 55px;
    height: 55px;
  }

  .pillar-desc {
    font-size: 15px;
  }

  .stats-row {
    justify-items: center;
  }

  .stat-num {
    font-size: 40px;
  }

  .courses-subtitle {
    font-size: 26px;
    max-width: 700px;
  }

  .courses-laptop-img {
    width: 440px
  }

  .download-center-badge>i {
    font-size: 36px;
  }

  .courses-sidebar {
    flex: 0 0 280px;
  }

  .sidebar-label {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .card-icon-wrap {
    width: 100px;
    height: 100px;
  }

  .cta-bar-icon-img,
  .ef-icon-img,
  .ci-icon-img {
    width: 50px;
    height: 50px;
  }

  .ef-desc,
  .ci-val {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 22px;
    max-width: 500px;
  }

}

@media (min-width: 2600px) {
  .container {
    max-width: 2400px !important;
  }
}