/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-blue: #006DB6;
  --dark-blue: #063B68;
  --deep-navy: #092A46;
  --brand-orange: #F36C21;
  --light-orange: #FF8A3D;
  --white: #FFFFFF;
  --light-bg: #F5F8FB;
  --light-blue: #EAF4FB;
  --text-dark: #172033;
  --text-gray: #5B6575;
  --border-color: #DCE5ED;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(6, 59, 104, 0.05);
  --shadow-md: 0 4px 12px rgba(6, 59, 104, 0.08);
  --shadow-lg: 0 12px 24px rgba(6, 59, 104, 0.12);
  --shadow-hover: 0 20px 40px rgba(6, 59, 104, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  margin-top: 0;
  line-height: 1.2;
}

h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 2.75rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-orange);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

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

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

.section-bg-dark {
  background-color: var(--deep-navy);
  color: var(--white);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark p {
  color: var(--white);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  gap: 8px;
}

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

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

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

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

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

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

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.logo-symbol {
  display: flex;
  position: relative;
  width: 40px;
  height: 40px;
}

.logo-symbol .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-blue);
  border-radius: 4px;
  transform: rotate(45deg);
}

.logo-symbol .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--brand-orange);
  border-radius: 4px;
  transform: rotate(45deg);
  opacity: 0.9;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--deep-navy);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-title span {
  color: var(--primary-blue);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--deep-navy);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-orange);
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.header-phone i {
  color: var(--brand-orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--deep-navy);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background-color: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 109, 182, 0.05) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  background-color: rgba(0, 109, 182, 0.1);
  color: var(--primary-blue);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--deep-navy);
}

.hero-features i {
  color: var(--brand-orange);
}

.hero-visual {
  position: relative;
}

/* Placeholder for hero illustration */
.hero-illustration {
  width: 100%;
  height: 400px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hero-illustration::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: var(--light-blue);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-illustration-content {
  text-align: center;
  z-index: 2;
}

.hero-illustration-content i {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.hero-illustration-content .badge {
  background: var(--brand-orange);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  margin-top: -20px;
}

/* ==========================================================================
   Brand Strip
   ========================================================================== */

.brand-strip {
  background-color: var(--deep-navy);
  padding: 30px 0;
  color: var(--white);
}

.brand-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.brand-strip-item.blue { color: var(--light-blue); }
.brand-strip-item.orange { color: var(--brand-orange); }

.brand-strip-divider {
  width: 2px;
  height: 24px;
  background-color: rgba(255,255,255,0.2);
}

/* ==========================================================================
   About Section
   ========================================================================== */

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

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.about-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}

.about-card:hover {
  transform: translateX(10px);
  border-color: var(--primary-blue);
}

.about-card-icon {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.about-card h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.about-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ==========================================================================
   Timeline / Approach
   ========================================================================== */

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

.timeline-item {
  position: relative;
  padding-top: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
}

.timeline-item:last-child::before {
  width: 0;
}

.timeline-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-blue);
  z-index: 2;
}

.timeline-item:hover .timeline-number {
  background-color: var(--primary-blue);
  color: var(--white);
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 1rem;
}

/* ==========================================================================
   Courses Section
   ========================================================================== */

.course-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

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

.course-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-blue);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--brand-orange);
}

.course-icon {
  width: 48px;
  height: 48px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.course-card:hover .course-icon {
  background: rgba(243, 108, 33, 0.1);
  color: var(--brand-orange);
}

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

.course-desc {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 24px;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 24px;
  padding: 8px 12px;
  background: var(--light-bg);
  border-radius: 6px;
  width: fit-content;
}

.course-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 109, 182, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  font-size: 1rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Learning Modes
   ========================================================================== */

.learning-modes-grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 0;
  align-items: center;
}

.learning-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.learning-card.offline {
  border-top: 4px solid var(--brand-orange);
}

.learning-card.online {
  border-top: 4px solid var(--primary-blue);
}

.learning-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.online .learning-icon { background: var(--light-blue); color: var(--primary-blue); }
.offline .learning-icon { background: rgba(243, 108, 33, 0.1); color: var(--brand-orange); }

.learning-features {
  margin: 30px 0;
}

.learning-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.learning-features i {
  color: #10B981; /* Green checkmark */
}

.learning-center {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.learning-center h3 {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.learning-center-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  margin: 20px auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--deep-navy);
  border: 4px solid var(--light-bg);
}

.learning-center-badge span {
  color: var(--brand-orange);
  font-size: 1.5rem;
  line-height: 1;
  margin: 4px 0;
}

/* ==========================================================================
   Placements & Consulting (Compact)
   ========================================================================== */

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

.compact-card {
  background: var(--light-blue);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition-normal);
}

.compact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.compact-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.compact-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Technologies Badge Grid
   ========================================================================== */

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--deep-navy);
  transition: all var(--transition-fast);
}

.tech-badge:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.tech-badge i {
  color: var(--primary-blue);
}

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */

.testimonials-wrapper {
  position: relative;
  padding: 0 40px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.rating {
  color: #FBBF24; /* Yellow star color */
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-weight: 700;
}

.author-info h5 {
  margin: 0 0 4px 0;
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--primary-blue);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--deep-navy);
  transition: all var(--transition-fast);
  z-index: 10;
}

.carousel-control:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  background: var(--deep-navy);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  color: var(--white);
}

.contact-info p {
  color: rgba(255,255,255,0.8);
}

.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--brand-orange);
  margin-top: 4px;
}

.contact-method-text h5 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.125rem;
}

.contact-method-text p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.contact-method-text a {
  color: rgba(255,255,255,0.8);
}

.contact-method-text a:hover {
  color: var(--light-orange);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

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

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--deep-navy);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  background: var(--light-bg);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 109, 182, 0.1);
}

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

.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-title {
  color: var(--white);
}

.footer-brand .logo-subtitle {
  color: rgba(255,255,255,0.7);
}

.footer-brand p {
  margin: 24px 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--brand-orange);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   Mobile Sticky CTA
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sticky-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  border-right: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.sticky-action:last-child {
  border-right: none;
}

.sticky-action i {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.sticky-action.call i { color: var(--primary-blue); }
.sticky-action.whatsapp i { color: #25D366; }
.sticky-action.courses i { color: var(--brand-orange); }
.sticky-action.enquire i { color: var(--deep-navy); }

.sticky-action:hover, .sticky-action:active {
  background: var(--light-bg);
  color: var(--deep-navy);
}

/* Base modal styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 42, 70, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-gray);
}

/* ==========================================================================
   Smooth Scrolling (Lenis) & Animations
   ========================================================================== */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* UI/UX Smoothness */
.btn, .nav-link, .course-card, .feature-card, .about-card {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 25px 50px rgba(6, 59, 104, 0.15) !important;
}

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.whatsapp-widget:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20BA56;
  color: white;
}
.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .whatsapp-widget {
    display: none; /* Hide on mobile since we have a sticky footer CTA */
  }
}

/* ==========================================================================
   Swiper Carousel Overrides
   ========================================================================== */
.swiper-pagination-bullet {
  background: var(--border-color);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--brand-orange);
  width: 24px;
  border-radius: 4px;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--primary-blue);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.25rem;
  font-weight: bold;
}
.testimonials-swiper {
  padding: 20px 10px 60px; /* Space for pagination */
}

.consulting-grid { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--brand-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 90px; /* Above the sticky mobile footer */
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ==========================================================================
   Hero Section Clean Redesign
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #f5f8fb 0%, #eaf4fb 100%);
    padding: calc(var(--header-height) + 100px) 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 109, 182, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--deep-navy);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 580px;
}

/* Premium Glassmorphism Visuals */
.hero-premium-graphics {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 80%;
    max-width: 350px;
    box-shadow: 0 20px 40px rgba(6, 59, 104, 0.08);
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card.offset {
    transform: translateX(30px);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.glass-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.glass-icon.orange {
    background: rgba(243, 108, 33, 0.1);
    color: var(--brand-orange);
}

.glass-text strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--deep-navy);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.glass-text span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 108, 33, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(30px);
    animation: pulseOrb 6s infinite alternate;
}

@keyframes pulseOrb {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.75rem; }
    .hero-premium-graphics { height: 350px; }
    .glass-card, .glass-card.offset { transform: none; width: 100%; max-width: 300px; }
}

/* ==========================================================================
   Smooth Hover Animations & Nav Adjustments
   ========================================================================== */
.nav-link, .btn, .social-link, .filter-btn {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 108, 33, 0.3);
}

/* Footer Social Hover Fix */
.social-link svg {
    transition: all 0.3s ease;
}
.social-link:hover svg {
    transform: scale(1.15);
}

/* ==========================================================================
   Swiper Fixes: Arrows outside, pagination spaced
   ========================================================================== */
.testimonials-wrapper {
    position: relative;
    padding: 0 60px; /* Make room for arrows on sides */
}

.testimonials-swiper {
    padding-bottom: 60px; /* Make room for pagination dots */
    overflow: hidden; /* Ensure it clips slides properly */
}

/* Make arrows smaller and move them OUTSIDE the cards */
.swiper-button-next, .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    background-color: var(--white) !important;
    color: var(--primary-blue) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-sm) !important;
    top: 50% !important;
    margin-top: -30px !important; /* Offset for padding */
}

.swiper-button-next {
    right: -10px !important;
}
.swiper-button-prev {
    left: -10px !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 800 !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

/* Move pagination directly to bottom */
.swiper-pagination {
    bottom: 0 !important;
}

@media (max-width: 767px) {
    .testimonials-wrapper {
        padding: 0; /* No arrows on mobile, just swipe */
    }
    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}
