:root {
  --primary-color: #64ffda;
  --primary-color-rgb: 100, 255, 218;
  --secondary-color: #bd34fe;
  --secondary-color-rgb: 189, 52, 254;
  --accent-color: #3b82f6;
  --bg-dark: #0a192f;
  --bg-darker: #020c1b;
  --text-light: #e6f1ff;
  --text-dim: #8892b0;
  --glass-bg: rgba(10, 25, 47, 0.7);
  --glass-border: 1px solid rgba(100, 255, 218, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-normal: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Utility to hide breaks on desktop, show on mobile */
.mobile-break {
  display: none;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
}

/* Global Content Container */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Features Section */
/* Features Section */
.features {
  background: linear-gradient(rgba(23, 37, 84, 0.9), rgba(30, 58, 138, 0.9)), none;
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0.05;
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Reverted to 3 columns */
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* Scoped Single Column for Long Card Layout */
.long-card-grid {
  grid-template-columns: 1fr !important;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  /* Reverted */
  transition: all var(--transition-normal);
  border: 3px solid #00a8e8;
  box-shadow: 0 0 15px rgba(0, 168, 232, 0.3);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  /* Reverted */
  flex-direction: column;
  /* Reverted */
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 168, 232, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 1.5rem 0 1rem;
  text-align: center;
  /* Reverted */
  width: 100%;
}

.feature-card p {
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
  /* Reverted */
}

.feature-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-color-rgb), 0.1);
  border-radius: var(--radius-md);
  margin: 0 auto 1.5rem;
  /* Reverted */
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.feature-card:hover .card-icon {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.feature-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: auto auto 0 auto;
  /* Reverted */
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-normal);
}

.feature-card .learn-more:hover {
  color: var(--primary-color);
  gap: 0.75rem;
}

/* --- Scoped Styles for Long Card Layout --- */
.long-card-grid .feature-card {
  display: grid !important;
  grid-template-areas:
    "icon title"
    "icon desc"
    "icon link";
  grid-template-columns: auto 1fr !important;
  grid-template-rows: auto 1fr auto;
  column-gap: 2rem;
  row-gap: 0.5rem;
  align-items: start;
  text-align: left !important;
  padding: 2rem !important;
}

.long-card-grid .feature-card h3 {
  grid-area: title;
  margin: 0 !important;
  text-align: left !important;
}

.long-card-grid .feature-card p {
  grid-area: desc;
  margin-bottom: 0 !important;
  text-align: left !important;
  margin-left: 0 !important;
  /* Ensure no indentation */
  padding-left: 0 !important;
}

.long-card-grid .feature-card .card-icon {
  grid-area: icon;
  margin: 0 !important;
  width: 80px;
  height: 80px;
  font-size: 2rem;
  align-self: center;
}

.long-card-grid .feature-card .learn-more {
  grid-area: link;
  margin: 1rem 0 0 0 !important;
}

/* Mobile Responsiveness for Long Card Layout */
@media (max-width: 768px) {
  .long-card-grid .feature-card {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem !important;
    gap: 0 !important;
  }

  .long-card-grid .feature-card h3 {
    text-align: center !important;
    margin: 1rem 0 0.5rem !important;
    /* Adjusted margin */
  }

  .long-card-grid .feature-card p {
    text-align: center !important;
  }

  .long-card-grid .feature-card .card-icon {
    margin: 0 auto 1rem !important;
  }

  .long-card-grid .feature-card .learn-more {
    margin: 1rem auto 0 !important;
    justify-content: center !important;
  }
}

.feature-card .card-footer-action {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0.9;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}


/* Testimonials Section */
.testimonials {
  background: linear-gradient(rgba(23, 37, 84, 0.9), rgba(30, 58, 138, 0.9)), none;
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none repeat;
  opacity: 0.05;
  z-index: 0;
}

/* Buttons */
#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
  z-index: 1;
  /* Establish stacking context */
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
  /* Place behind text but above background */
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 5%;
  /* Minimal padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all var(--transition-normal);
  background: rgba(18, 26, 51, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
  padding: 5px 5%;
  /* Minimal padding */
  background: rgba(18, 26, 51, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  /* Removes unwanted underline */
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}


.nav-links ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-normal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-auth {
  margin-left: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: #fff;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn-auth:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-normal);
}

.hamburger:hover {
  color: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1117 50%, #0a0e1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1000;
    overflow: hidden;
  }

  /* Animated background pattern */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(189, 52, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Subtle grid pattern */
  .nav-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    padding: 2rem;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.5s ease forwards;
  }

  .nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-links.active li:nth-child(5) {
    animation-delay: 0.5s;
  }

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

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(100, 255, 218, 0.1);
    width: 250px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    overflow: hidden;
  }

  /* Glowing effect on hover */
  .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.5s;
  }

  .nav-links a:hover::before {
    left: 100%;
  }

  .nav-links a:hover {
    background: rgba(100, 255, 218, 0.05);
    border-color: rgba(100, 255, 218, 0.3);
    color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.1);
  }

  .nav-links a.active {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
  }

  .nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
  }

  .btn-auth {
    margin: 2rem 0 0;
  }
}

/* Button with Icon */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon i {
  font-size: 1.2em;
  transition: transform var(--transition-normal);
}

.btn-icon:hover i {
  transform: translateX(3px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-in {
  animation: slideIn 1s ease forwards;
}

.scale-in {
  animation: scaleIn 0.5s ease forwards;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow var(--transition-normal);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.4);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  z-index: 9999;
  transition: width 0.2s ease;
}

/* Section Animations */
.section-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  position: relative;
}

.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-color-rgb), 0.1);
  z-index: -1;
  animation: highlightFade 2s ease forwards;
}

@keyframes highlightFade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* About Section */
.about {
  background: linear-gradient(to bottom, #121a33, rgba(18, 26, 51, 0.95));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0.05;
  z-index: 0;
}

.about .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.about h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto;
  border-radius: var(--radius-full);
}

.about-intro {
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.about-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.about-card p {
  color: #fff;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

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

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

/* Courses Section */
.courses {
  background: var(--bg-dark);
  padding: 4rem 0;
  position: relative;
}

.courses .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.courses .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.courses .section-header p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.course-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.course-content {
  padding: 2rem;
}

.course-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.course-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.course-description {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.course-rating i {
  color: #ffd700;
}

.course-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.course-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.course-details {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
}

.course-detail i {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .courses {
    padding: 4rem 0;
  }

  .courses .section-header h2 {
    font-size: 2rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .course-title {
    font-size: 1.25rem;
  }
}

/* FAQ Section */
.faq {
  background: linear-gradient(to bottom, var(--bg-dark), rgba(18, 26, 51, 0.98));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none repeat;
  opacity: 0.05;
  z-index: 0;
}

.faq .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s;
}

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


.faq-answer {
  color: #fff;
  line-height: 1.6;
  margin-top: 1rem;
  display: none;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}


.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-category {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.faq-category:hover,
.faq-category.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }

  .faq h2 {
    font-size: 2rem;
  }

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

  .faq-categories {
    margin-bottom: 2rem;
  }

  .faq-category {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #121a33, rgba(18, 26, 51, 0.95));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none repeat;
  opacity: 0.05;
  z-index: 0;
}

.contact .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact p {
  color: #fff;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}



.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.1);
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.contact-card-content h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-card-content p,
.contact-card-content a {
  color: #fff;
  line-height: 1.6;
  text-decoration: none;
  transition: color var(--transition-normal);
  word-break: break-all;
  overflow-wrap: anywhere;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 2px;
  max-width: 100%;
}

.contact-card-content a:hover {
  color: var(--primary-color);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #fff;
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: rgba(var(--primary-color-rgb), 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-error {
  color: #ff4d4d;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  color: #fff;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact {
    padding: 3rem 0;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .contact-info {
    gap: 1rem;
  }

  .contact-form {
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .btn-primary.btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 1.5rem 0;
  }

  .contact h2 {
    font-size: 1.1rem;
  }

  .contact-grid {
    gap: 1rem;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .contact-form {
    padding: 0.5rem;
    border-radius: var(--radius-md);
  }

  .contact-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .form-control {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
  }

  .btn-primary.btn-lg {
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }
}

/* Contact Form Dropdown Styles */
select.form-control {
  color: white;
  background-color: var(--card-bg);
}

select.form-control option {
  color: white;
  background-color: var(--dropdown-bg);
}

select.form-control:focus {
  border-color: var(--primary-color);
}

:root {
  /* Main Colors */
  --primary-color: #3b82f6;
  --primary-color-rgb: 59, 130, 246;
  --secondary-color: #1d4ed8;
  --accent-color: #f97316;
  --accent-color-rgb: 249, 115, 22;

  /* Background Colors */
  --bg-dark: #121a33;
  --bg-darker: #0a0e1a;
  --bg-light: #1e293b;
  --bg-gradient: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  --card-bg: #1a1f2e;
  --card-bg-hover: #242a3d;
  --dropdown-bg: #2a2a3a;

  /* Text Colors */
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --text-bright: #ffffff;
  --text-highlight: var(--accent-color);

  /* Border Colors */
  --border-color: rgba(255, 255, 255, 0.1);

  /* Success/Error Colors */
  --success-color: #10b981;
  --error-color: #ef4444;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-highlight: 0 0 15px rgba(var(--primary-color-rgb), 0.3);

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

/* About Page Headings */
.team-section h2,
.vision-section .section-title {
  color: white !important;
  text-align: center;
  width: 100%;
}

/* About Section */
.about {
  padding: var(--spacing-xl) 0;
  background: var(--bg-gradient);
}

.about-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}

.founders-section {
  margin-top: var(--spacing-xl);
}

.founders-section h3 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: #fff;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-image {
  position: relative;
  padding-top: 100%;
  background: var(--bg-darker);
}

.founder-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-sm);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.founder-card:hover .founder-social {
  opacity: 1;
  transform: translateY(0);
}

.founder-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.founder-social a:hover {
  color: var(--primary-color);
}

.founder-info {
  padding: var(--spacing-md);
  text-align: center;
}

.founder-info h4 {
  color: #fff;
  margin-bottom: var(--spacing-xs);
}

.founder-title {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.founder-bio {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.mission-card,
.vision-card,
.goal-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.mission-card h4,
.vision-card h4,
.goal-card h4 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.mission-card i,
.vision-card i,
.goal-card i {
  color: var(--primary-color);
}

.mission-card p,
.vision-card p,
.goal-card p {
  color: #fff;
  line-height: 1.6;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid var(--accent-color);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 5%;
  background: rgba(18, 26, 51, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.8rem 5%;
  background: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-logo h1 {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--primary-color);
  font-weight: 700;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn-auth {
  --text-gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section - Qualysec Style (Centered Adjustment) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center vertically and horizontally */
  padding: 6rem 0 3rem;
  /* More top padding for navbar */
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  overflow: hidden;
  text-align: center;
  /* Center text */
}

.hero-grid {
  display: flex;
  /* Changed from grid to flex for centering */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
  /* Center text */
  max-width: 900px;
  /* Increased max-width for centered layout */
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 700px;
  /* Constrain paragraph width */
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  /* Center buttons */
}

.hero-visual {
  display: none;
  /* Hide visual column in centered layout */
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-visual {
    min-height: 300px;
  }
}

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

  .hero h1 {
    font-size: 2.5rem;
    /* Fix alignment jump */
    min-height: 240px;
    /* Increased for 4-line text */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    /* Remove margin to let flex centering work better */
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }


  .logo-grid {
    gap: 2rem;
  }

  /* Force Hero Text Centering */
  .hero-grid-split,
  .hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-text-side p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons.left-align {
    align-items: center;
    width: 100%;
  }

  /* Force inner spans to center */
  .hero h1 span,
  .hero h1 .gradient-text {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Force H1 to take full width so it doesn't shrink flex container */
  .hero h1 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Force paragraph to full width */
  .hero-text-side p {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    /* Add padding to prevent edge touching */
  }

  /* Force buttons to center and fill width context */
  .hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center !important;
  }

}

/* Featured Courses Section */
.featured-courses {
  background: linear-gradient(to bottom, var(--bg-dark), rgba(18, 26, 51, 0.95));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.featured-courses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0.05;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  color: #fff;
  font-size: 1.1rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  padding: 0 var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.course-image {
  position: relative;
  padding-top: 60%;
}

.course-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.course-badge.new {
  background: var(--primary-color);
}

.course-content {
  padding: var(--spacing-lg);
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.course-category {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.course-rating {
  color: var(--accent-color);
  font-weight: 600;
}

.course-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.course-card p {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.course-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.course-features li {
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-color);
}

.course-price {
  display: flex;
  flex-direction: column;
}

.original-price {
  color: #fff;
  text-decoration: line-through;
  font-size: 0.875rem;
}

.discounted-price {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.courses-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.courses-cta p {
  color: #fff;
  margin-bottom: var(--spacing-md);
}

.hero {
  min-height: 100vh;
  padding: 10rem 5% 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #112240 0%, #0a192f 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Grid pattern removed - file doesn't exist */
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(100, 255, 218, 0.1);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-dim);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-stats .stat-item {
  background: rgba(17, 34, 64, 0.7);
  border: 1px solid rgba(100, 255, 218, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-normal);
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.hero-stats .stat-icon {
  font-size: 2rem;
  color: var(--primary-color);
  background: rgba(100, 255, 218, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hero-stats .stat-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.25rem;
}

.hero-stats .label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}


/* Featured Course Section */
.featured-course {
  padding: 80px 5%;
  background-color: var(--primary-color);
}

.course-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
}

.course-meta {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-highlights {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.course-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.course-highlights i {
  color: var(--success-color);
}

/* Features Section - B2B Grid */
.features {
  background: var(--bg-dark);
  /* Keep dark theme */
  padding: 4rem 0;
  position: relative;
}

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

.features h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.features p {
  color: var(--text-dim);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left align content inside card */
  text-align: left;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-color-rgb), 0.1);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
  background: var(--primary-color);
  color: var(--bg-dark);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.learn-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.learn-more:hover {
  gap: 1rem;
}

.view-more-container {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Services Page Specific Grid */
.upcoming-section .features-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .upcoming-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .features-grid,
  .upcoming-section .features-grid,
  .industries-grid,
  .why-us-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    /* Remove grid padding to rely on container padding */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .content {
    padding: 0 10px !important;
    /* Reduce global content padding on mobile to minimal */
  }

  .feature-card,
  .industry-card,
  .reason-card,
  .review-card {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
}

/* Course Topics Section */
.topics {
  padding: 80px 5%;
  background-color: var(--primary-color);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.topic-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
}

.topic-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(rgba(23, 37, 84, 0.9), rgba(30, 58, 138, 0.9)), none;
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none repeat;
  opacity: 0.05;
  z-index: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.student-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.student-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.position {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* FAQ Section */
.faq {
  padding: 8rem 5%;
  background: var(--bg-dark);
  position: relative;
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.faq-question:hover {
  color: var(--primary-color);
  background: rgba(100, 255, 218, 0.05);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-dim);
  display: none;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  display: block;
  border-top-color: rgba(100, 255, 218, 0.1);
  padding-top: 1rem;
}

.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-item.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Contact Section */
.contact {
  padding: 80px 5%;
  background-color: var(--secondary-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  background: rgba(249, 247, 247, 0.05);
  padding: 2rem;
  border-radius: 10px;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 253, 253, 0.9);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Upcoming Courses Section */
.upcoming-courses {
  background: var(--bg-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.upcoming-courses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none repeat;
  opacity: 0.05;
  z-index: 0;
}

.upcoming-courses .content {
  position: relative;
  z-index: 1;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 3rem;
}

.upcoming-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.upcoming-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.upcoming-card.small {
  padding: 1rem 1rem 0.7rem 1rem;
  border-radius: var(--radius-md);
  min-width: 0;
  max-width: 350px;
  font-size: 0.92rem;
}

.upcoming-card.small .card-header,
.upcoming-card.small .card-content,
.upcoming-card.small .card-footer {
  padding: 0.7rem 1rem;
}

.upcoming-card.small h3,
.upcoming-card .card-header h3 {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin: 0.3rem auto 0.5rem auto;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.upcoming-card.small p {
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.upcoming-card.small .course-highlights {
  margin-bottom: 0.7rem;
}

.upcoming-card.small .course-highlights li {
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.upcoming-card.small .btn-primary {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-tag {
  padding: 0.5rem 1rem;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.course-meta {
  display: flex;
  gap: 1rem;
  color: #fff;
  font-size: 0.875rem;
}

.course-meta span i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-content p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.course-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.course-highlights li {
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-highlights li i {
  color: var(--primary-color);
  font-size: 1rem;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.price {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.early-bird {
  color: var(--primary-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to bottom right, var(--bg-dark), rgba(18, 26, 51, 0.98));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none repeat;
  opacity: 0.05;
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.cta-features .feature i {
  color: var(--primary-color);
}

.cta-buttons-box {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(30, 58, 138, 0.08);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0 auto;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
}

.cta-buttons .btn-lg {
  flex: 1 1 0;
  height: 56px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .cta-buttons-box {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }

  .cta-buttons {
    gap: 0.5rem;
    max-width: 100%;
  }

  .cta-buttons .btn-lg {
    height: 48px;
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
  }
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

@media (max-width: 768px) {
  .cta-content {
    min-height: 220px;
  }
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  box-sizing: border-box;
}

.btn-lg i {
  margin-right: 0.5rem;
}

@media (max-width: 500px) {
  .btn-lg {
    min-width: 120px;
    height: 48px;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 768px) {
  .upcoming-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-lg {
    width: 100%;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 5%;
  background-color: var(--bg-secondary);
}

.faq .content {
  max-width: 1200px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.faq>.content>p {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-group {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-group h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-hover);
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #fff;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 1000px;
  opacity: 1;
  margin-top: 0.5rem;
}

.faq-answer p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 5%;
  }

  .faq h2 {
    font-size: 2rem;
  }

  .faq-group {
    padding: 1.5rem;
  }

  .faq-question span {
    font-size: 1rem;
  }
}

/* Footer */
.site-footer {
  background-color: var(--bg-darker);
  padding: 4rem 5% 0;
  position: relative;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-about span {
  color: var(--primary-color);
}

.footer-about p {
  color: var(--text-dim);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: var(--transition-normal);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  color: var(--bg-dark);
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  line-height: 2;
  transition: var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--primary-color);
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.scroll-to-top.visible {
  display: flex;
}

/* Responsive Design */

@media (max-width: 768px) {
  .course-hero {
    padding-top: 6rem !important;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

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

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

  .social-links {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    /* Allow wrapping */
    word-break: break-word;
    /* Prevent overflow */
  }

}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.scroll-to-top.show {
  display: flex;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Custom Cursor */
body {
  cursor: none;
  /* Hide default cursor */
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Cursor Hover State */
.cursor-outline.cursor-hover {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: transparent;
}

.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: var(--secondary-color);
}

/* Ensure links still show pointer on devices without custom cursor support */
@media (hover: none) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* Services Page Styles */
.service-icon {
  height: 60px;
  width: 60px;
  margin: 0 auto 20px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  color: inherit;
}

.service-list {
  text-align: left;
  margin-top: 15px;
  font-size: 0.9rem;
  list-style: disc;
  padding-left: 20px;
  color: var(--text-color);
}

/* Fix for long email address in footer - Removed */
.service-icon {
  color: var(--primary-color);
}

/* =========================================
   Professional Upgrade Sections
   ========================================= */



/* Industries Section */
.industries {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.industries h2,
.process h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.industries h2::after,
.process h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto;
  border-radius: var(--radius-full);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Process Section */
.process {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--bg-dark), #0d1b3a);
}

/* Process Tabs */
.process-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--bg-dark);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
  font-weight: 600;
}

.tab-btn i {
  font-size: 1.1rem;
}

/* Process Steps */
.process-steps {
  display: none;
  /* Hidden by default */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  animation: fadeIn 0.5s ease forwards;
}

.process-steps.active {
  display: grid;
  /* Outline grid when active */
}

.step {
  text-align: center;
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.step h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.step p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-tabs {
    gap: 0.75rem;
  }

  .tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Industries Section */
.industries {
  padding: 4rem 0;
  background: #0a1120;
  /* Darker than bg-dark */
  position: relative;
}

/* Why Us Section */
.why-us {
  padding: 4rem 0;
  background: #0a1120;
  /* Darker than bg-dark */
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reason-card {
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.reason-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.reason-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.reason-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}




/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.testimonials .section-header h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.testimonials .section-header p {
  color: var(--text-dim);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  background: rgba(var(--primary-color-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.review-rating {
  margin-left: auto;
  color: #ffd700;
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .logo-grid {
    gap: 1.5rem;
  }

  /* Mobile Typography & Spacing adjustments */
  .industries h2,
  .process h2 {
    font-size: 2rem;
  }

  .industries,
  .process {
    padding: 4rem 0;
  }
}

/* Hero Rotator */
#hero-rotating-text {
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
  /* Ensures transform/opacity works nicely */
}

.fade-out {
  opacity: 0;
}


/* Redesigned Hero Section */
.hero-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-side {
  text-align: left;
}

.hero-text-side h1 {
  font-size: 2.8rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-text-side p {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons.left-align {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.small-caption {
  font-size: 0.9rem !important;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 0 !important;
}

/* Stats Card Side */
.hero-stats-card-side {
  display: flex;
  justify-content: center;
}

.glass-stats-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.glass-stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.card-header-stats {
  text-align: center;
  color: #00a8e8;
  font-weight: 600;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* Text Gradient Utility */
.gradient-text {
  background: linear-gradient(90deg, #00a8e8, #ffffff);
  /* Blue to White */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  /* Important for background-clip */
}

.stats-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.stat-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(100, 255, 218, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon-circle {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-color);
  color: var(--bg-dark);
}

.stat-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-box p {
  font-size: 0.9rem !important;
  color: var(--text-dim);
  margin-bottom: 0 !important;
}

/* Responsive adjustments for Hero Split */
@media (max-width: 992px) {
  .hero-grid-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text-side {
    text-align: center;
    margin: 0 auto;
  }

  .hero-text-side p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons.left-align {
    align-items: center;
  }
}

/* Mobile Responsiveness for Long Card Layout */
@media (max-width: 768px) {
  .long-card-grid .feature-card {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem !important;
    gap: 0 !important;
    align-items: center !important;
    /* Center all flex children including button */
  }

  .long-card-grid .feature-card h3 {
    text-align: center !important;
    margin: 1rem 0 0.5rem !important;
  }

  .long-card-grid .feature-card p {
    text-align: center !important;
  }

  .long-card-grid .feature-card .card-icon {
    margin: 0 auto 1rem !important;
  }

  .long-card-grid .feature-card .learn-more {
    margin: 1rem auto 0 !important;
    justify-content: center !important;
  }
}

/* =========================================
   Cybersecurity Highlight Card (Glass Glow)
   ========================================= */
.cyber-highlight-card {
  background: linear-gradient(135deg, rgba(13, 25, 48, 0.85), rgba(13, 25, 48, 0.6));
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid #0088ff;
  box-shadow: -5px 0 30px -5px rgba(0, 136, 255, 0.25), inset 0 0 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

/* Bright blue top-left corner light effect */
.cyber-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #0088ff, transparent);
  box-shadow: 0 0 15px #0088ff;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cyber-highlight-card {
    padding: 2rem 1.5rem;
  }
}

/* =========================================
   Prevention Cards Grid
   ========================================= */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.prevention-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.prevention-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.prevention-card .prev-icon {
  width: 32px;
  height: 32px;
  background: #0088ff;
  /* Brand Blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 136, 255, 0.4);
}

.prevention-card span {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

@media (max-width: 600px) {
  .prevention-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Coming Soon Badge Styles
   ========================================= */
.feature-card {
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff9f43;
  /* Orange */
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(255, 159, 67, 0.4);
  z-index: 10;
  letter-spacing: 0.5px;
  line-height: 1;
}

@media (max-width: 768px) {

  .features-grid,
  .industries-grid,
  .why-us-grid,
  .testimonials-grid,
  .courses-grid,
  .topics-grid,
  .faq-grid,
  .upcoming-grid,
  .prevention-grid,
  .founders-grid,
  .mission-vision,
  .contact-grid,
  .vision-grid,
  .credentials-grid,
  .team-grid,
  .who-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 1.5rem;
    /* Ensure consistent vertical spacing */
  }

  .feature-card,
  .industry-card,
  .reason-card,
  .review-card,
  .course-card,
  .topic-card,
  .faq-item,
  .founder-card,
  .mission-card,
  .vision-card,
  .goal-card,
  .prevention-card,
  .contact-info,
  .contact-form,
  .workshop-card,
  .workshop-cta,
  .vision-card,
  .credential-card,
  .team-member,
  .who-text,
  .who-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Reset section side paddings to allow full width content */
  /* Reset section side paddings to allow full width content */
  .features,
  .industries,
  .process,
  .why-us,
  .testimonials,
  .faq,
  .about,
  .upcoming-section,
  .gallery-section,
  .workshops-hero,
  .course-hero,
  .contact,
  .about-hero,
  .who-we-are,
  .credentials-section,
  .vision-section,
  .team-section,
  .join-us-cta {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Standardize Hero Text Gap */
  /* Standardize Hero Text Gap */
  .hero,
  .workshops-hero,
  .course-hero {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
  }

  /* Specific adjustment for About page */
  .about-hero {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
  }

  .hero h1,
  .about-hero h1,
  .workshops-hero h1,
  .course-hero h1 {
    margin-top: 0 !important;
  }
}

/* --- Testimonials Carousel --- */
.testimonial-slider-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 2rem 1rem;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  min-height: 400px;
  /* Adjust based on content */
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  /* Start from right */
  /* Remove transition, we use animation now */
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  /* Takes up space */
  animation: slideInRight 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.testimonial-slide.exit {
  opacity: 1;
  visibility: visible;
  position: absolute;
  /* Take out of flow */
  top: 0;
  animation: slideOutLeft 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

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

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.testimonial-card-glass {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(2, 12, 27, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.3);
  /* Blue border */
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1), inset 0 0 10px rgba(59, 130, 246, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Fixed height implementation */
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Glowing border effect animation */
.testimonial-card-glass::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  z-index: -1;
  background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.4), var(--secondary-color), transparent);
  background-size: 200% 200%;
  animation: borderGlow 12s linear infinite;
  opacity: 0.5;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.testi-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.testi-profile-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.testi-info h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.testi-role {
  font-size: 0.95rem;
  color: #94a3b8;
  display: block;
}

.testi-rating {
  color: #fbbf24;
  /* Gold/Yellow star color */
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.testi-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e2e8f0;
  font-style: italic;
  font-weight: 300;
}

/* Pagination Dots */
.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testi-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(59, 130, 246, 0.3) !important;
  border: 1px solid #3b82f6;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot:hover {
  background-color: rgba(59, 130, 246, 0.6);
  transform: scale(1.1);
}

.testi-dot.active {
  background-color: #3b82f6 !important;
  /* Hardcoded Blue */
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5) !important;
  border-color: #3b82f6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

  /* Make testimonials section edge-to-edge */
  .testimonials {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .testimonials .content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
  }

  .testimonial-slider-container {
    padding: 0 !important;
    margin: 0 !important;
  }

  .testimonial-slider {
    min-height: 530px;
    padding: 0 !important;
  }

  .testimonial-card-glass {
    padding: 2rem 1.5rem;
    min-height: 500px;
    border-radius: 16px !important;
    /* Keep rounded corners for better look */
    margin: 0 !important;
    width: 100% !important;
  }

  .testi-quote {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testi-profile-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  /* Make pagination dots centered with some spacing */
  .testimonial-pagination {
    margin-top: 2rem;
    padding: 0 1rem;
  }
}