/* assets/css/style.css - G-TEC Education Modern Responsive Stylesheet */

:root {
  --primary: #030030;
  --primary-light: #110d54;
  --primary-dark: #020020;
  --accent: #ff6b00;
  --accent-hover: #e05e00;
  --accent-light: #fff2e6;
  --secondary: #0056b3;
  --text-main: #2b2f38;
  --text-muted: #667085;
  --text-light: #98a2b3;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #030030;
  --border-color: #e4e7ec;
  --border-light: #f0f2f5;
  --shadow-sm: 0 2px 8px rgba(3, 0, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(3, 0, 48, 0.08);
  --shadow-lg: 0 16px 40px rgba(3, 0, 48, 0.12);
  --shadow-accent: 0 8px 20px rgba(255, 107, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

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

/* Containers & Layout Grid */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-sm {
  padding: 50px 0;
}

.section-bg-alt {
  background-color: var(--bg-alt);
}

.section-bg-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

/* Typography & Section Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-title-wrap.text-left {
  text-align: left;
  margin: 0 0 35px;
}

.badge-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-bg-dark .badge-tag {
  background-color: rgba(255, 107, 0, 0.2);
  color: #ff9142;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-bg-dark .section-title {
  color: #ffffff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-bg-dark .section-desc {
  color: #cbd5e1;
}

.text-accent {
  color: var(--accent) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.35);
}

.btn-navy {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-navy:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Top Notification / Contact Bar */
.top-bar {
  background-color: #020020;
  color: #d1d5db;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item a:hover {
  color: var(--accent);
}

/* Main Navigation Header */
.main-header {
  background-color: #030030;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.header-fluid-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 15px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  white-space: nowrap;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent);
  background-color: rgba(255, 107, 0, 0.08);
}

.nav-dropdown-icon {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #030030;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 240px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1010;
  list-style: none;
  margin: 0;
}

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

.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #e2e8f0;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.dropdown-item a i {
  color: var(--accent);
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.dropdown-item a:hover {
  background-color: rgba(255, 107, 0, 0.15);
  color: var(--accent);
  padding-left: 24px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 4px;
}

.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.hamburger-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* =========================================================
   Mobile 100% Width Off-canvas Navigation Drawer
========================================================= */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 0, 48, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #030030;
  color: #ffffff;
  z-index: 9999;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #020020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-logo-wrap img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-nav-close:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.mobile-nav-body {
  padding: 20px 18px;
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-link,
.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mobile-menu-link:hover,
.mobile-menu-link.active,
.mobile-dropdown-header:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--accent);
}

.m-link-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.m-link-left i {
  color: var(--accent);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.m-arrow {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.m-arrow-down {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

/* Mobile Submenu Accordion */
.mobile-submenu {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px 0 6px 14px;
  border-left: 2px solid rgba(255, 107, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
}

.mobile-submenu a i {
  color: var(--accent);
  font-size: 12px;
  width: 16px;
}

.mobile-submenu a:hover {
  color: #ffffff;
  background: rgba(255, 107, 0, 0.15);
}

/* Mobile Contact Card in Drawer */
.mobile-contact-card {
  margin-top: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.mobile-contact-card h4 {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mobile-contact-card p {
  color: #94a3b8;
  font-size: 12.5px;
  margin-bottom: 12px;
}

.mobile-quick-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.m-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.m-call-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.m-call-btn:hover {
  background-color: var(--primary-light);
  color: #ffffff;
}

.m-wa-btn {
  background-color: #25d366;
  color: #ffffff;
}

.m-wa-btn:hover {
  background-color: #1ebc59;
}

.mobile-nav-footer {
  padding: 18px 20px 22px;
  background-color: #020020;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-enquiry-cta {
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.mobile-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}

/* Hero Section - Matching User Screenshot */
.hero-wp-section {
  background: url('../images/Nasscom-Foundation-IBM-to-train-87000-underserved-youth-with-future-ready-digital-skills.jpg') center center / cover no-repeat;
  position: relative;
  padding: 110px 0 140px;
  color: #ffffff;
  overflow: hidden;
}

.hero-wp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 44, 0.62);
  z-index: 1;
}

.hero-wp-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
}

.hero-wp-content {
  max-width: 650px;
}

.hero-wp-title-wrapper {
  border-left: 4px solid #002244;
  padding-left: 18px;
  margin-bottom: 20px;
}

.hero-wp-title {
  color: #ffffff;
  font-family: 'Lato', 'Segoe UI', Roboto, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
}

.hero-wp-desc {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 580px;
}

.hero-wp-desc strong {
  font-size: 15.5px;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-wp-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e52828;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Lato', 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(229, 40, 40, 0.35);
  transition: var(--transition);
}

.hero-wp-btn:hover {
  background-color: #c91e1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 40, 40, 0.45);
}

.hero-wp-btn i {
  font-size: 14px;
  margin-left: 2px;
}

/* Floating 3-Card Features Bar Below Hero */
.hero-wp-features-bar {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  margin-bottom: 45px;
}

.hero-wp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-wp-feature-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(3, 0, 48, 0.08);
  border: 1px solid #edf2f7;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.hero-wp-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3, 0, 48, 0.14);
  border-color: rgba(255, 107, 0, 0.35);
}

.hero-wp-feature-icon {
  color: #ff6b00;
  font-size: 38px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-wp-feature-body {
  flex: 1;
}

.hero-wp-feature-body .title {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #030030;
  margin-bottom: 6px;
  line-height: 1.3;
}

.hero-wp-feature-body .desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Red / Orange Highlight Box */
.hero-wp-highlight-card {
  background: linear-gradient(135deg, #e52828 0%, #ff5722 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 26px 26px;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(229, 40, 40, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.hero-wp-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(229, 40, 40, 0.42);
}

.hero-wp-highlight-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/Professional-Computer-Training-IT-Courses-in-Madurai.jpg') center center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

.hero-wp-highlight-content {
  position: relative;
  z-index: 2;
}

.hero-wp-highlight-num-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-wp-highlight-num {
  font-family: 'Lato', 'Jost', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero-wp-highlight-num-label {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.hero-wp-highlight-title {
  color: #ffffff;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 2px;
  line-height: 1.25;
}

.hero-wp-highlight-subhead {
  color: #ffffff;
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.95;
}

.hero-wp-highlight-desc {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.92;
  margin: 0;
}

/* Stats Counter Section */
.stats-bar-section {
  background-color: #ffffff;
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(3, 0, 48, 0.05);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-item {
  text-align: center;
  padding: 10px 15px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--accent);
}

.stat-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================================
   About Us Section Layout (Elegant & High-Converting)
========================================================= */
.about-elegance-section {
  padding: 90px 0 100px;
  background: radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.03) 0%, transparent 40%), #ffffff;
  position: relative;
  overflow: hidden;
}

.about-elegance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-elegance-visual {
  position: relative;
  text-align: center;
}

.about-elegance-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(3, 0, 48, 0.12);
  border: 4px solid #ffffff;
}

.about-elegance-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-elegance-frame:hover img {
  transform: scale(1.04);
}

/* Floating Badges */
.about-floating-stat {
  position: absolute;
  bottom: 25px;
  left: -15px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(3, 0, 48, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: floatStat 4s ease-in-out infinite alternate;
}

.about-floating-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-floating-stat .num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2px;
}

.about-floating-stat .txt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-floating-tag {
  position: absolute;
  top: 25px;
  right: -10px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 107, 0, 0.4);
  z-index: 3;
}

.about-floating-tag i {
  color: var(--accent);
}

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

/* Right Content */
.about-elegance-content .lead-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-elegance-content .sub-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.about-pill-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.about-pill-item:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.1);
}

.about-pill-item i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.about-pill-item span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.about-confidence-card {
  background: linear-gradient(135deg, rgba(3, 0, 48, 0.03) 0%, rgba(255, 107, 0, 0.08) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.about-confidence-card i {
  color: var(--accent);
  font-size: 28px;
  flex-shrink: 0;
}

.about-confidence-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-confidence-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.about-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   Video Banner Section & Vision / Awards Cards
========================================================= */
.wp-video-section {
  background: url('../images/Confident-ACCA-Student-Ready-to-Succeed.jpg') center 28% / cover no-repeat;
  position: relative;
  padding: 160px 0 170px;
  text-align: center;
  overflow: hidden;
}

.wp-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 48, 0.42);
  z-index: 1;
}

.wp-video-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-play-btn {
  width: 78px;
  height: 78px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.35), 0 0 0 22px rgba(37, 99, 235, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulsePlayBtn 2.5s infinite;
  text-decoration: none;
}

.video-play-btn i {
  margin-left: 4px;
}

.video-play-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.1);
  box-shadow: 0 0 0 14px rgba(37, 99, 235, 0.45), 0 0 0 28px rgba(37, 99, 235, 0.22);
}

@keyframes pulsePlayBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5), 0 0 0 10px rgba(37, 99, 235, 0.25);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 99, 235, 0), 0 0 0 32px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0), 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* Overlapping Vision & Awards 2-Card Bar */
.wp-vision-awards-bar {
  position: relative;
  z-index: 10;
  margin-top: -75px;
  margin-bottom: 50px;
}

.wp-vision-awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}

.vision-white-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(3, 0, 48, 0.08);
  border: 1px solid #edf2f7;
  padding: 34px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.vision-white-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3, 0, 48, 0.12);
  border-color: rgba(255, 107, 0, 0.3);
}

.vision-icon-wrap {
  color: #e52828;
  font-size: 38px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-body-wrap h3 {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #030030;
  margin-bottom: 8px;
  line-height: 1.25;
}

.vision-body-wrap p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.awards-red-box {
  background: #e52828;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(229, 40, 40, 0.3);
  padding: 34px 30px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.awards-red-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(229, 40, 40, 0.42);
}

.awards-icon-wrap {
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.awards-body-wrap h3 {
  font-family: 'Jost', 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.awards-body-wrap p {
  font-size: 14.5px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.55;
  margin: 0;
}

/* Video Modal Dialog */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 0, 48, 0.88);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.video-modal-container {
  width: 100%;
  max-width: 860px;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-backdrop.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-modal-close:hover {
  color: var(--accent);
  transform: scale(1.15);
}

.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Category & Course Showcase */
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.category-tab-btn {
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  color: var(--primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.category-tab-btn:hover, .category-tab-btn.active {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

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

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

.course-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-card-img img {
  transform: scale(1.06);
}

.course-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.course-category-badge.badge-cat-software { background-color: #2563eb; }
.course-category-badge.badge-cat-accounting { background-color: #059669; }
.course-category-badge.badge-cat-multimedia { background-color: #7c3aed; }
.course-category-badge.badge-cat-cad { background-color: #0891b2; }
.course-category-badge.badge-cat-networking { background-color: #d97706; }

.course-code-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 107, 0, 0.92);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

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

.course-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.course-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.55;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
  margin-top: auto;
}

.course-duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Category Specific Badges */
.badge-cat-software { background-color: #0284c7 !important; }
.badge-cat-accounting { background-color: #059669 !important; }
.badge-cat-networking { background-color: #6366f1 !important; }
.badge-cat-multimedia { background-color: #db2777 !important; }
.badge-cat-cad { background-color: #d97706 !important; }

/* Course Code Badge */
.course-code-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(3, 0, 48, 0.85);
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

/* Courses Upgrade Skills Banner */
.courses-upgrade-banner {
  background: linear-gradient(135deg, #030030 0%, #0c084a 50%, #150f68 100%);
  border-radius: 20px;
  padding: 50px 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(3, 0, 48, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px;
}

.courses-upgrade-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.courses-upgrade-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.courses-upgrade-text h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.courses-upgrade-text p {
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.courses-dual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.courses-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.courses-contact-pill:hover {
  background: rgba(255, 107, 0, 0.25);
  border-color: var(--accent);
  color: #ff9d54;
  transform: translateY(-2px);
}

.courses-upgrade-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.courses-upgrade-img-wrap {
  text-align: center;
  position: relative;
}

.courses-upgrade-img-wrap img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.courses-upgrade-img-wrap:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .courses-upgrade-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .courses-upgrade-text h2 {
    font-size: 1.8rem;
  }
  .courses-dual-pills {
    justify-content: center;
  }
  .courses-upgrade-actions {
    justify-content: center;
  }
  .courses-upgrade-banner {
    padding: 35px 25px;
  }
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #030030 0%, #150f68 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 650px;
  margin: 0 auto 30px;
}

.cta-banner .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Affiliations Grid */
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.affiliation-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 25px 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.affiliation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.affiliation-card .aff-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.affiliation-card h4 {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

/* Awards Timeline */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.award-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent);
}

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

.award-badge-year {
  background-color: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.award-content h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.award-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Testimonials / Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
}

.review-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.4);
}

.review-stars {
  color: #ffb800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.review-student-info {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.student-avatar-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.student-meta h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.student-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Google Reviews Custom Styling */
.google-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.google-rating-summary .g-icon {
  font-size: 1.25rem;
  color: #4285f4;
}

.google-rating-summary .g-score {
  font-weight: 800;
  font-size: 1.05rem;
  color: #1e293b;
}

.google-rating-summary .g-stars {
  color: #fbbc04;
  font-size: 0.95rem;
}

.google-rating-summary .g-count {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.review-card-google {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card-google:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.12);
  border-color: #cbd5e1;
}

.review-card-google .card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-card-google .google-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a73e8;
  background: #e8f0fe;
  padding: 3px 10px;
  border-radius: 20px;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #1f2937;
  border: 1.5px solid #dadce0;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-google:hover {
  background: #f8fafd;
  border-color: #4285F4;
  color: #1a73e8;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.22);
}

.btn-google i.fa-google {
  color: #4285F4;
  font-size: 1.15rem;
}


/* Gallery Section & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--primary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,0,48,0.85) 0%, rgba(3,0,48,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* Card Grid Layouts */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  width: 100%;
}

/* Feature Box Standard Component */
.feature-box {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(3, 0, 48, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.06) 0%, rgba(255,107,0,0) 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(3, 0, 48, 0.08);
  border-color: rgba(255, 107, 0, 0.25);
}

.feature-box:hover::before {
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15) 0%, rgba(255,107,0,0.05) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.feature-box h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   Why Choose Us Section (Modern, Premium & High-Converting)
========================================================= */
.why-choose-section {
  padding: 90px 0 100px;
  background: radial-gradient(circle at 85% 15%, rgba(255, 107, 0, 0.04) 0%, transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(3, 0, 48, 0.03) 0%, transparent 40%),
              #f8fafc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
}

.why-choose-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 45px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(3, 0, 48, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent-grad, linear-gradient(90deg, #ff6b00, #ff9142));
  opacity: 0.85;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(3, 0, 48, 0.11);
  border-color: rgba(255, 107, 0, 0.35);
}

.why-card:hover::before {
  height: 5px;
  opacity: 1;
}

.why-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.why-icon-orange {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8f3d 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
}

.why-icon-green {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.28);
}

.why-icon-blue {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.why-icon-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.28);
}

.why-icon-red {
  background: linear-gradient(135deg, #e11d48 0%, #fb7185 100%);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.28);
}

.why-icon-teal {
  background: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}

.why-tag-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: #475569;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.why-perks-list {
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
}

.why-perk-item i {
  color: #10b981;
  font-size: 11px;
  width: 18px;
  height: 18px;
  background: #e6f9f0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Bottom Career Launchpad Banner */
.why-career-banner {
  background: linear-gradient(135deg, #030030 0%, #0a0642 50%, #150f68 100%);
  border-radius: 20px;
  padding: 45px 45px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(3, 0, 48, 0.22);
  border: 1px solid rgba(255, 107, 0, 0.25);
}

.why-career-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-career-content {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-career-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255, 107, 0, 0.2);
  color: #ff9d54;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 107, 0, 0.35);
}

.why-career-title {
  font-size: 1.7rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-career-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-career-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.why-career-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-stat-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.45);
}

.why-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ff8f3d;
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Recruiter & Talent Pool */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.talent-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.talent-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.talent-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.talent-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-card-text p, .contact-card-text a {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #fcfdfe;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Map Embed Container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background-color: #020020;
  color: #cbd5e1;
  padding: 70px 0 25px;
  border-top: 4px solid var(--accent);
}

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

.footer-col-about img {
  height: 52px;
  margin-bottom: 20px;
}

.footer-col-about p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

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

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn-whatsapp {
  background-color: #25D366;
}

.floating-btn-call {
  background-color: var(--accent);
}

.floating-btn-scrolltop {
  background-color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.85);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.15rem;
}

.floating-btn-scrolltop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-btn-scrolltop:hover {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
}

/* Modal Dialog */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 0, 48, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  background-color: var(--primary);
  color: #ffffff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

.modal-body {
  padding: 24px;
}

/* Lightbox Modal for Gallery */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  margin: 0 auto;
}

.lightbox-caption {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 12px;
  font-family: var(--font-heading);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #ffffff;
  color: var(--text-main);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  animation: slideInRight 0.3s ease;
}

.toast.toast-success {
  border-left-color: #10b981;
}

.toast.toast-error {
  border-left-color: #ef4444;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES (Mobile-Friendly Excellence)
========================================================= */

@media (max-width: 1140px) {
  .site-nav, .header-cta-btn {
    display: none;
  }
  
  .hamburger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-container {
    height: 70px;
  }
}

@media (max-width: 1024px) {
  .hero-wp-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .hero-wp-features-bar {
    margin-top: -50px;
  }

  .about-elegance-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .about-elegance-visual {
    margin: 0 auto;
  }

  .wp-vision-awards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wp-vision-awards-bar {
    margin-top: -50px;
  }

  .wp-video-section {
    padding: 120px 0 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .why-career-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-wp-title {
    font-size: 32px;
  }

  .hero-wp-section {
    padding: 80px 0 100px;
  }

  .hero-wp-features-bar {
    margin-top: -40px;
  }

  .about-elegance-section {
    padding: 65px 0 75px;
  }
}

@media (max-width: 640px) {
  .why-choose-section {
    padding: 60px 0 70px;
  }

  .why-choose-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-career-banner {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .why-career-title {
    font-size: 1.35rem;
  }

  .why-career-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-stat-box {
    padding: 14px 10px;
  }

  .why-stat-num {
    font-size: 1.55rem;
  }

  .why-career-actions {
    flex-direction: column;
    width: 100%;
  }

  .why-career-actions .btn {
    width: 100%;
  }

  .wp-video-section {
    padding: 85px 0 100px;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .vision-white-box, .awards-red-box {
    padding: 24px 20px;
    gap: 15px;
  }

  .vision-icon-wrap, .awards-icon-wrap {
    font-size: 30px;
  }

  .about-pills-grid {
    grid-template-columns: 1fr;
  }

  .about-elegance-frame img {
    height: 360px;
  }

  .about-floating-stat {
    left: 5px;
    bottom: 10px;
    padding: 10px 14px;
  }

  .about-floating-stat .num {
    font-size: 1.35rem;
  }

  .about-floating-tag {
    right: 5px;
    top: 10px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .section {
    padding: 55px 0;
  }

  .hero-section {
    padding: 50px 0 60px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-grid-2, .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid, .reviews-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.85rem;
  }
  
  .top-bar {
    display: none; /* Hide clutter on tiny mobile screens */
  }

  .form-box {
    padding: 22px 18px;
  }

  .floating-actions {
    bottom: 18px;
    right: 18px;
  }
  
  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
}
