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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e8e8e8;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Mobile-First Responsive Typography */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: #d1d5db;
}

/* Tablet Typography */
@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
  }

  h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* Desktop Typography */
@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  h4 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
  }

  p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}

/* Large Desktop Typography */
@media (min-width: 1440px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.15rem;
  }
}

/* Mobile-First Section Spacing */
section {
  padding: 40px 0;
  margin: 0;
}

@media (min-width: 480px) {
  section {
    padding: 50px 0;
  }
}

@media (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 80px 0;
  }
}

@media (min-width: 1440px) {
  section {
    padding: 100px 0;
  }
}

/* Default container spacing - Mobile First */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* Responsive container padding */
@media (min-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

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

/* Vanta Background */
#vanta-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  filter: blur(0.5px);
}

/* Default card styling */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Global Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Images with Aspect Ratio */
.responsive-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* About Us - Leadership Team Profile Images and LinkedIn */
.team-member .member-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.linkedin-link {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0077b5;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.linkedin-link:hover {
  background: #005885;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.linkedin-icon {
  width: 16px;
  height: 16px;
}

/* What You Will Learn Page - Bullet Points Styling */
.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}

.skill-bullet {
  color: #60a5fa;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  margin-top: 0;
  line-height: 1;
}

.skill-content h3 {
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 0.935rem;
  font-weight: 600;
  margin-top: 0;
}

.skill-content p {
  color: #d1d5db;
  font-size: 0.765rem;
  line-height: 1.4;
  margin: 0;
}

/* Outcomes Page - Custom Bullet Points Styling */
.outcome-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.outcome-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 0.765rem;
  line-height: 1.4;
}

.outcome-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

/* Hamburger Menu - Touch-Friendly */
.hamburger-menu {
  font-weight: bold;       /* Makes text bold */
    font-size: 18px;         
  position: fixed;
  top: 16px;
  right: 16px;
  width: 120px;
  height: 48px;
  background: rgba(15, 15, 35, 0.9);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  /* Ensure minimum touch target */
  min-width: 44px;
  min-height: 44px;
}

.hamburger-menu:hover {
  background: rgba(15, 15, 35, 1);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hamburger-menu span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sidebar - Enhanced Responsiveness */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  max-width: 320px;
  min-width: 280px;
  height: 100vh;
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1002;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  /* Smooth scrolling for touch devices */
  -webkit-overflow-scrolling: touch;
}

/* Responsive Sidebar Widths */
@media (min-width: 480px) {
  .sidebar {
    width: 320px;
    right: -320px;
  }
}

@media (min-width: 768px) {
  .sidebar {
    width: 350px;
    right: -350px;
  }
}

.sidebar.active {
  right: 0;
}

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

.sidebar-logo {
  height: 35px;
  width: auto;
}

/* Ensure sidebar logo link has no unwanted styling */
.sidebar-header a {
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.sidebar-header a:hover {
  opacity: 0.8;
}

.close-btn {
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  /* Ensure minimum touch target */
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #60a5fa;
}

.sidebar-nav {
  padding: 20px 0;
}

.nav-link {
  display: block;
  padding: 18px 24px;
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-weight: 500;
  /* Ensure minimum touch target */
  min-height: 44px;
  box-sizing: border-box;
}

.nav-link:hover {
  background: rgba(96, 165, 250, 0.1);
  border-left-color: #60a5fa;
  color: #60a5fa;
  transform: translateX(5px);
}

/* Special styling for DKG Labs main website link */
.nav-link[href*="dkgrouplabs.com"] {
  background: rgba(96, 165, 250, 0.05);
  border-left-color: rgba(96, 165, 250, 0.3);
  color: #93c5fd;
  font-weight: 600;
  position: relative;
}

.nav-link[href*="dkgrouplabs.com"]:hover {
  background: rgba(96, 165, 250, 0.15);
  border-left-color: #60a5fa;
  color: #60a5fa;
  transform: translateX(8px);
}

.nav-link[href*="dkgrouplabs.com"]::after {
  content: "🔗";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.7;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  /* Prevent scrolling when overlay is active */
  overscroll-behavior: contain;
}

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

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

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

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: brightness(1.2) contrast(1.1);
  max-width: 200px;
}

/* Responsive Logo Sizing */
@media (max-width: 480px) {
  .logo-img {
    height: 38px;
    max-width: 150px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .logo-img {
    height: 42px;
    max-width: 170px;
  }
}

@media (min-width: 1024px) {
  .logo-img {
    height: 60px;
    max-width: 220px;
  }
}

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

/* Hero Section with Animated Background */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -3;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}



.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: none;
}

.particle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px; /* Increased from 800px */
  width: 90vw;        /* Added for responsiveness */
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 1s ease-out;
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #60a5fa;
  margin-bottom: 20px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slideUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem); /* Slightly reduced max font size */
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 1000px; /* Increased from 600px */
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 32px;
  animation: slideUp 1s ease-out 0.5s both;
}

.hero-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 4px;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: #d1d5db;
  font-weight: 500;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  margin: 40px 0;
  padding: 18px 36px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 1s ease-out 0.6s both;
  /* Ensure minimum touch target */
  min-height: 44px;
  min-width: 120px;
  box-sizing: border-box;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.split-section {
  margin: 40px auto;
  padding: 20px 0;
  background: none;
  border: none;
  box-shadow: none;
  max-width: 1200px;
  width: 100%;
}

/* Tablet and Desktop Split Section */
@media (min-width: 768px) {
  .split-section {
    margin: 80px auto;
    padding: 0;
    max-width: 1200px;
  }
}

.split-section::before {
  display: none;
}

/* Mobile-First Split Container */
.split-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: auto;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Tablet and Desktop Split Container */
@media (min-width: 768px) {
  .split-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    min-height: 480px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.highlights-section {
  padding: 20px 25px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.highlights-section h2 {
  display: none;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 500px;
  align-items: center;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 480px;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  border-color: rgba(96, 165, 250, 0.3);
}

.highlight-icon {
  font-size: 24px;
  color: #60a5fa;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.highlight-content p {
  color: #d1d5db;
  line-height: 1.2;
  font-size: 0.8rem;
}

.registration-section {
  padding: 20px 20px;
  background: transparent;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Tablet and Desktop Registration Section */
@media (min-width: 768px) {
  .registration-section {
    padding: 20px 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .highlights-section {
    padding: 40px 24px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.registration-container {
  background: rgba(0, 0, 0, 0.4);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 100%;
  width: 100%;
  margin: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  min-width: 300px;
}

/* Tablet and Desktop Registration Container */
@media (min-width: 768px) {
  .registration-container {
    padding: 32px 28px;
    max-width: 580px;
    margin: 0 auto;
  }
}

.registration-container h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.registration-container p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

/* Tablet and Desktop Registration Text */
@media (min-width: 768px) {
  .registration-container h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .registration-container p {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Tablet and Desktop Registration Form */
@media (min-width: 768px) {
  .registration-form {
    gap: 15px;
  }
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
  /* Ensure minimum touch target */
  min-height: 44px;
  box-sizing: border-box;
  /* Prevent zoom on iOS */
  font-size: 16px;
}

/* Tablet and Desktop Form Inputs */
@media (min-width: 768px) {
  .registration-form input,
  .registration-form select,
  .registration-form textarea {
    padding: 18px 20px;
  }
}

.registration-form input::placeholder,
.registration-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  outline: none;
  border-color: #60a5fa;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
}

.registration-form select option {
  background: #1a1a2e;
  color: #ffffff;
}

.registration-form textarea {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.register-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  /* Ensure minimum touch target */
  min-height: 44px;
  box-sizing: border-box;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669, #10b981);
}

.register-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  font-weight: 500;
}

.footer {
  background: rgba(0, 0, 0, 0.5);
  color: #d1d5db;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #93c5fd;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-section {
    padding: 50px 32px;
    margin: -60px 20px 60px;
  }

  .hero {
    padding: 80px 20px 60px;
  }
}

/* Tablet and Mobile Responsiveness */
@media (max-width: 768px) {
  .hamburger-menu {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .hamburger-menu span {
    width: 20px;
    height: 2px;
  }

  .sidebar {
    width: 85vw;
    max-width: 320px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo-img {
    height: 42px;
  }

  .hero {
    padding: 80px 16px 60px;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .tagline {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero-stats .stat-item {
    padding: 12px 16px;
  }

  .hero-stats .stat-number {
    font-size: 1.4rem;
  }

  .hero-stats .stat-label {
    font-size: 0.8rem;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .split-section {
    margin: 40px 16px 60px;
    border-radius: 16px;
  }

  .split-container {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .highlights-section {
    padding: 40px 24px;
  }

  .highlights-section h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .highlights-list {
    gap: 16px;
  }

  .highlight-item {
    padding: 16px;
    gap: 12px;
  }

  /* Projects Page Mobile Responsiveness */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    padding: 24px;
  }

  .project-header h2 {
    font-size: 20px;
  }

  .project-image img {
    max-height: none;
  }

  .learn-more-card {
    padding: 30px 24px;
  }

  .learn-more-card h3 {
    font-size: 20px;
  }

  .learn-more-card p {
    font-size: 14px;
  }

  .highlight-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .highlight-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .registration-section {
    padding: 40px 16px;
  }

  .registration-container {
    padding: 32px 24px;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }

  .registration-container h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .registration-container p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .registration-form {
    gap: 16px;
  }

  .registration-form input,
  .registration-form select,
  .registration-form textarea {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 8px;
  }

  .registration-form textarea {
    min-height: 80px;
    resize: vertical;
  }

  .register-btn {
    padding: 16px;
    font-size: 15px;
    margin-top: 8px;
  }

  /* Page-specific mobile improvements */
  .content-section {
    padding: 40px 16px;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .structure-grid,
  .skills-grid,
  .projects-grid,
  .outcomes-grid,
  .testimonials-grid,
  .team-grid,
  .values-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phase-card,
  .skill-category,
  .project-card,
  .outcome-card,
  .testimonial-card,
  .team-member,
  .value-card,
  .industry-card {
    padding: 20px;
  }

  .phase-header h2,
  .category-header h2,
  .project-header h2,
  .outcome-card h2,
  .testimonial-info h3,
  .member-info h3,
  .value-card h3,
  .industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .phase-content h3,
  .skill-item h3,
  .project-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .phase-content p,
  .skill-item p,
  .project-content p,
  .outcome-card p,
  .testimonial-content p,
  .member-bio,
  .value-card p,
  .industry-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    margin-bottom: 24px;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .career-paths-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-path {
    padding: 20px;
  }

  .career-path h3 {
    font-size: 1.2rem;
  }

  .career-path p {
    font-size: 0.9rem;
  }

  .salary-range {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mentor-card {
    padding: 20px;
  }

  .mentor-info h3 {
    font-size: 1.2rem;
  }

  .mentor-quote p {
    font-size: 0.9rem;
  }

  .pricing-overview {
    padding: 30px 20px;
  }

  .total-price h2 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .discount-option {
    padding: 20px;
    margin-top: 20px;
  }

  .value-breakdown {
    margin-top: 30px;
    padding: 24px;
  }

  .value-breakdown h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .value-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .value-list .value-item {
    padding: 10px 14px;
  }

  .value-list .value-item span:last-child {
    font-size: 0.9rem;
  }

  .discount-option h3 {
    font-size: 1.1rem;
  }

  .discount-price {
    font-size: 1.5rem;
  }

  .installments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .installment-card {
    padding: 20px;
  }

  .installment-header h3 {
    font-size: 1.2rem;
  }

  .installment-price {
    font-size: 1.5rem;
  }

  .installment-details h4 {
    font-size: 1rem;
  }

  .installment-details li {
    font-size: 0.9rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-item {
    padding: 28px 24px;
    min-width: 280px;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .value-item p {
    font-size: 0.9rem;
  }

  .scholarship-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scholarship-card {
    padding: 20px;
  }

  .scholarship-card h3 {
    font-size: 1.2rem;
  }

  .scholarship-card p {
    font-size: 0.9rem;
  }

  .payment-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payment-option {
    padding: 16px;
  }

  .company-overview h2 {
    font-size: 1.5rem;
  }

  .company-overview p {
    font-size: 0.9rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card,
  .vision-card {
    padding: 20px;
  }

  .mission-card h3,
  .vision-card h3 {
    font-size: 1.2rem;
  }

  .mission-card p,
  .vision-card p {
    font-size: 0.9rem;
  }

  .leadership-team h2 {
    font-size: 1.5rem;
  }

  .team-member {
    padding: 20px;
  }

  .member-info h3 {
    font-size: 1.2rem;
  }

  .member-title {
    font-size: 0.9rem;
  }

  .member-bio {
    font-size: 0.9rem;
  }

  .company-values h2 {
    font-size: 1.5rem;
  }

  .value-card {
    padding: 28px 24px;
    min-width: 280px;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  .company-stats h2 {
    font-size: 1.5rem;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .industry-expertise h2 {
    font-size: 1.5rem;
  }

  .industry-card {
    padding: 20px;
  }

  .industry-card h3 {
    font-size: 1.2rem;
  }

  .industry-card p {
    font-size: 0.9rem;
  }

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

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

  .contact-item {
    padding: 20px;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .footer {
    padding: 16px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hamburger-menu {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .hamburger-menu span {
    width: 18px;
    height: 2px;
  }

  .sidebar {
    width: 90vw;
    max-width: 300px;
  }

  .nav-container {
    padding: 0 12px;
  }

  .logo-img {
    height: 38px;
  }

  .hero {
    padding: 70px 12px 50px;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }

  .hero-description {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
  }

  .hero-stats {
    gap: 12px;
    margin-bottom: 25px;
  }

  .hero-stats .stat-item {
    padding: 10px 12px;
  }

  .hero-stats .stat-number {
    font-size: 1.2rem;
  }

  .hero-stats .stat-label {
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .split-section {
    margin: 30px 12px 50px;
    border-radius: 12px;
  }

  /* Projects Page Small Mobile Responsiveness */
  .project-card {
    padding: 20px;
  }

  .project-header h2 {
    font-size: 18px;
  }

  .project-image img {
    max-height: none;
  }

  .learn-more-card {
    padding: 24px 20px;
  }

  .learn-more-card h3 {
    font-size: 18px;
  }

  .learn-more-card p {
    font-size: 13px;
  }

  .highlights-section {
    padding: 30px 16px;
  }

  .highlights-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 24px;
  }

  .highlight-item {
    padding: 14px;
    gap: 10px;
  }

  .highlight-content h3 {
    font-size: 0.95rem;
  }

  .highlight-content p {
    font-size: 0.85rem;
  }

  .registration-section {
    padding: 30px 12px;
  }

  .registration-container {
    padding: 28px 20px;
    width: 100%;
  }

  .registration-container h3 {
    font-size: 1.2rem;
  }

  .registration-container p {
    font-size: 0.85rem;
  }

  .registration-form {
    gap: 14px;
  }

  .registration-form input,
  .registration-form select,
  .registration-form textarea {
    padding: 12px 14px;
    font-size: 13px;
  }

  .register-btn {
    padding: 14px;
    font-size: 14px;
  }

  .content-section {
    padding: 30px 12px;
  }

  .phase-card,
  .skill-category,
  .project-card,
  .outcome-card,
  .testimonial-card,
  .team-member,
  .value-card,
  .industry-card {
    padding: 16px;
  }

  .phase-header h2,
  .category-header h2,
  .project-header h2,
  .outcome-card h2,
  .testimonial-info h3,
  .member-info h3,
  .value-card h3,
  .industry-card h3 {
    font-size: 1.1rem;
  }

  .phase-content h3,
  .skill-item h3,
  .project-content h3 {
    font-size: 1rem;
  }

  .phase-content p,
  .skill-item p,
  .project-content p,
  .outcome-card p,
  .testimonial-content p,
  .member-bio,
  .value-card p,
  .industry-card p {
    font-size: 0.85rem;
  }

  .timeline {
    padding-left: 16px;
  }

  .timeline-content h3 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  .career-path {
    padding: 16px;
  }

  .career-path h3 {
    font-size: 1.1rem;
  }

  .career-path p {
    font-size: 0.85rem;
  }

  .salary-range {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .mentor-card {
    padding: 16px;
  }

  .mentor-info h3 {
    font-size: 1.1rem;
  }

  .mentor-quote p {
    font-size: 0.85rem;
  }

  .pricing-overview {
    padding: 24px 16px;
  }

  .total-price h2 {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .discount-option {
    padding: 16px;
  }

  .value-breakdown {
    margin-top: 25px;
    padding: 20px;
  }

  .value-breakdown h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .value-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-list .value-item {
    padding: 8px 12px;
  }

  .value-list .value-item span:last-child {
    font-size: 0.85rem;
  }

  .discount-option h3 {
    font-size: 1rem;
  }

  .discount-price {
    font-size: 1.3rem;
  }

  .installment-card {
    padding: 16px;
  }

  .installment-header h3 {
    font-size: 1.1rem;
  }

  .installment-price {
    font-size: 1.3rem;
  }

  .installment-details h4 {
    font-size: 0.95rem;
  }

  .installment-details li {
    font-size: 0.85rem;
  }

  .value-item {
    padding: 24px 20px;
    min-width: 260px;
  }

  .value-item h3 {
    font-size: 1.1rem;
  }

  .value-item p {
    font-size: 0.85rem;
  }

  .scholarship-card {
    padding: 16px;
  }

  .scholarship-card h3 {
    font-size: 1.1rem;
  }

  .scholarship-card p {
    font-size: 0.85rem;
  }

  .payment-option {
    padding: 14px;
  }

  .company-overview h2 {
    font-size: 1.3rem;
  }

  .company-overview p {
    font-size: 0.85rem;
  }

  .mission-card,
  .vision-card {
    padding: 16px;
  }

  .mission-card h3,
  .vision-card h3 {
    font-size: 1.1rem;
  }

  .mission-card p,
  .vision-card p {
    font-size: 0.85rem;
  }

  .leadership-team h2 {
    font-size: 1.3rem;
  }

  .team-member {
    padding: 16px;
  }

  .member-info h3 {
    font-size: 1.1rem;
  }

  .member-title {
    font-size: 0.85rem;
  }

  .member-bio {
    font-size: 0.85rem;
  }

  .company-values h2 {
    font-size: 1.3rem;
  }

  .value-card {
    padding: 24px 20px;
    min-width: 260px;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }

  .company-stats h2 {
    font-size: 1.3rem;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .industry-expertise h2 {
    font-size: 1.3rem;
  }

  .industry-card {
    padding: 16px;
  }

  .industry-card h3 {
    font-size: 1.1rem;
  }

  .industry-card p {
    font-size: 0.85rem;
  }

  .contact-section h2 {
    font-size: 1.3rem;
  }

  .contact-item {
    padding: 16px;
  }

  .contact-item h3 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.85rem;
  }

  .footer {
    padding: 12px;
    font-size: 0.85rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Accessibility and Performance improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Improve touch scrolling on iOS */
* {
  -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll on small screens */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Improve text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid #ffffff;
  }

  .cta-button,
  .register-btn {
    border: 2px solid #ffffff;
  }
}

/* Page Hero Styles */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

/* Content Section Styles */
.content-section {
  padding: 60px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

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

/* Structure Grid Styles - Mobile First */
.structure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .structure-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .structure-grid {
    gap: 40px;
    margin-bottom: 60px;
  }
}

.phase-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.phase-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.phase-header {
  margin-bottom: 24px;
}

.phase-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.duration {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.phase-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
  margin-top: 24px;
}

.phase-content ul {
  list-style: none;
  padding: 0;
}

.phase-content li {
  padding: 8px 0;
  color: #d1d5db;
  position: relative;
  padding-left: 24px;
}

.phase-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Timeline Styles */
.timeline-section {
  margin-top: 60px;
}

.timeline-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.timeline {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  min-width: 200px;
  flex: 1;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  border-radius: 50%;
  margin: 0;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #d1d5db;
  line-height: 1.6;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Skills Grid Styles - Mobile First */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

.skill-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skill-category:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.category-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.category-header p {
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 24px;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 8px;
}

.skill-item p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Projects Grid Styles - Mobile First */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
  }
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.project-header {
  margin-bottom: 24px;
}

.project-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.project-category {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.project-content p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 12px;
}

.project-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.project-content li {
  padding: 6px 0;
  color: #d1d5db;
  position: relative;
  padding-left: 20px;
}

.project-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* Project Image Styles - Responsive */
.project-image {
  margin-top: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
}

.project-image img:hover {
  transform: scale(1.02);
  border-color: rgba(96, 165, 250, 0.3);
}

/* Responsive Project Images */
@media (max-width: 768px) {
  .project-image img {
    max-height: 200px;
    aspect-ratio: 4/3;
  }
}

@media (min-width: 1024px) {
  .project-image img {
    max-height: 350px;
  }
}

/* Learn More Section Styles */
.learn-more-section {
  margin-top: 60px;
  text-align: center;
}

.learn-more-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.learn-more-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.learn-more-card p {
  color: #d1d5db;
  margin-bottom: 24px;
  font-size: 16px;
}

.learn-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Project Details Page Styles */
.project-detail-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  width: 100%;
}

/* Project Details Grid Layout */
.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.project-detail-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.project-detail-header {
  margin-bottom: 32px;
  text-align: center;
}

.project-detail-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.project-detail-header .project-category {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.project-detail-content {
  display: grid;
  gap: 32px;
}

.project-overview {
  text-align: center;
}

.project-overview h3 {
  font-size: 22px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.project-overview p {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.6;
}

.project-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.project-section ul {
  list-style: none;
  padding: 0;
}

.project-section li {
  padding: 8px 0;
  color: #d1d5db;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
}

.project-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
  font-size: 18px;
}

.tech-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  overflow-x: auto;
  padding: 4px;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  min-width: 70px;
  flex-shrink: 0;
}

.tech-logo:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}

.tech-logo i {
  font-size: 24px;
}

/* Technology Icon Real Colors */
.tech-logo .fab.fa-python {
  color: #3776ab; /* Python Blue */
}

.tech-logo .fas.fa-brain {
  color: #ff6f00; /* TensorFlow Orange */
}

.tech-logo .fab.fa-aws {
  color: #ff9900; /* AWS Orange */
}

.tech-logo .fab.fa-react {
  color: #61dafb; /* React Blue */
}

.tech-logo .fas.fa-wifi {
  color: #00bcd4; /* IoT Cyan */
}

.tech-logo .fas.fa-mobile-alt {
  color: #02569b; /* Flutter Blue */
}

.tech-logo .fas.fa-fire {
  color: #ffca28; /* Firebase Yellow */
}

.tech-logo .fab.fa-node-js {
  color: #339933; /* Node.js Green */
}

.tech-logo .fas.fa-leaf {
  color: #4db33d; /* MongoDB Green */
}

.tech-logo .fas.fa-plug {
  color: #010101; /* Socket.io Black */
}

.tech-logo .fas.fa-eye {
  color: #5c3ee8; /* OpenCV Purple */
}

.tech-logo .fab.fa-microsoft {
  color: #00a1f1; /* Azure Blue */
}

.tech-logo .fas.fa-chart-bar {
  color: #f2c811; /* Power BI Yellow */
}

.tech-logo .fas.fa-database {
  color: #336791; /* PostgreSQL Blue */
}

.tech-logo .fas.fa-memory {
  color: #dc382d; /* Redis Red */
}

.tech-logo .fas.fa-chart-line {
  color: #f7931e; /* Scikit-learn Orange */
}

.tech-logo .fab.fa-docker {
  color: #2496ed; /* Docker Blue */
}

.tech-logo span {
  font-size: 12px;
  font-weight: 500;
  color: #60a5fa;
  text-align: center;
}

.back-to-projects {
  text-align: center;
  margin-top: 60px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.back-btn i {
  font-size: 14px;
}

/* Outcomes Grid Styles - Mobile First */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .outcomes-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 45px;
  }
}

@media (min-width: 768px) {
  .outcomes-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
}

.outcome-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.outcome-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.outcome-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.outcome-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.outcome-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 20px;
}

.outcome-card ul {
  list-style: none;
  padding: 0;
}

.outcome-card li {
  padding: 6px 0;
  color: #d1d5db;
  position: relative;
  padding-left: 20px;
}

.outcome-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Career Paths Styles */
.career-paths-section {
  margin-top: 60px;
}

.career-paths-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.career-paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.career-path {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.career-path:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-3px);
}

.career-path h3 {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 12px;
}

.career-path p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 16px;
}

.salary-range {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

/* Testimonials Styles - Mobile First */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 45px;
  }
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonial-info p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating {
  font-size: 1.2rem;
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.star {
  color: #888; /* grey for unfilled */
}

.star.filled {
  color: #10b981; /* green for filled */
}

.testimonial-content p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-highlight span {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* Mentor Testimonials */
.mentor-testimonials {
  margin-bottom: 60px;
}

.mentor-testimonials h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.mentor-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mentor-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.mentor-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 8px;
}

.mentor-info p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 20px;
}

.mentor-quote p {
  color: #d1d5db;
  line-height: 1.6;
  font-style: italic;
}

/* Stats Section */
.stats-section {
  margin-bottom: 60px;
}

.stats-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 12px;
}

.stat-label {
  color: #d1d5db;
  font-size: 16px;
  font-weight: 500;
}

/* Pricing Styles */
.pricing-overview {
  text-align: center;
  margin-bottom: 60px;
}

.total-price h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 16px;
}

.total-price p {
  color: #9ca3af;
  font-size: 18px;
}

.discount-option {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  text-align: center;
}

.discount-option h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.discount-price {
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
}

.discount-option p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.payment-plan h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.installments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.installment-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.installment-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.installment-header {
  margin-bottom: 24px;
}

.installment-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.installment-label {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.installment-price {
  font-size: 36px;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 24px;
}

.installment-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.installment-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.installment-details li {
  padding: 8px 0;
  color: #d1d5db;
  position: relative;
  padding-left: 24px;
}

.installment-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.2rem;
}

.payment-timing {
  text-align: center;
  padding: 16px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.payment-timing span {
  color: #60a5fa;
  font-weight: 500;
}

/* Value Proposition */
.value-proposition {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-proposition h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.value-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 300px;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.value-item p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Scholarship Section */
.scholarship-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.scholarship-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.scholarship-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.scholarship-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.scholarship-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 20px;
}

.scholarship-amount {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

/* Payment Methods */
.payment-methods h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.payment-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-3px);
}

.payment-icon {
  font-size: 24px;
}

.payment-option span:last-child {
  color: #d1d5db;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #d1d5db;
  font-size: 18px;
  margin-bottom: 32px;
}

/* About Us Styles */
.company-overview {
  margin-bottom: 60px;
}

.company-overview h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.company-overview p {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

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

.mission-card, .vision-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.mission-card h3, .vision-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.mission-card p, .vision-card p {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 16px;
}

/* Leadership Team */
.leadership-team {
  margin-bottom: 60px;
}

.leadership-team h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.team-member {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.member-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
}

.member-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.member-title {
  color: #60a5fa;
  font-weight: 500;
  margin-bottom: 12px;
}

.member-bio {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 16px;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-expertise span {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* Company Values */
.company-values {
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.company-values h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 300px;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.value-card p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Company Stats */
.company-stats {
  margin-bottom: 60px;
}

.company-stats h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 12px;
}

.stat-label {
  color: #d1d5db;
  font-size: 16px;
  font-weight: 500;
}

/* Industry Expertise */
.industry-expertise {
  margin-bottom: 60px;
}

.industry-expertise h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 16px;
}

.industry-card p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  margin-bottom: 60px;
}

.contact-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 8px;
}

.contact-item p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
  .structure-grid,
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }
}

/* iPhone Pro Max, iPhone Plus, Large Tablets (6.7" and above) */
@media (max-width: 926px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item {
    width: 100%;
    max-width: 400px;
  }
  
  .team-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .unified-section {
    margin: 20px auto;
    width: 95%;
  }
  
  .main-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .highlights-section {
    padding: 20px 25px;
  }
  
  .registration-section {
    padding: 20px 25px;
  }
  
  /* Timeline mobile optimization */
  .timeline {
    flex-direction: column;
    gap: 15px;
  }
  
  .timeline-item {
    min-width: auto;
    width: 100%;
  }
}

/* iPhone Pro, iPhone, Standard Tablets (6.1" - 6.7") */
@media (max-width: 844px) {
  .unified-section {
    margin: 18px auto;
    width: 95%;
  }
  
  .main-heading {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  
  .highlights-section {
    padding: 18px 22px;
  }
  
  .registration-section {
    padding: 18px 22px;
  }
  
  .highlight-item h3 {
    font-size: 0.9rem;
  }
  
  .highlight-item p {
    font-size: 0.75rem;
  }
  
  /* Timeline mobile optimization */
  .timeline {
    flex-direction: column;
    gap: 12px;
  }
  
  .timeline-item {
    min-width: auto;
    width: 100%;
  }
}

/* iPhone SE, iPhone Mini, Small Tablets (5.4" - 6.1") */
@media (max-width: 768px) {
  .unified-section {
    margin: 15px auto;
    width: 95%;
  }
  
  .main-heading {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
  
  .highlights-section {
    padding: 15px 20px;
  }
  
  .registration-section {
    padding: 15px 20px;
  }
  
  .highlight-item h3 {
    font-size: 0.85rem;
  }
  
  .highlight-item p {
    font-size: 0.7rem;
  }
  
  .registration-container h3 {
    font-size: 1.2rem;
  }
  
  .registration-container p {
    font-size: 0.9rem;
  }
  
  /* About Us Page Mobile Grids */
  .team-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Timeline mobile optimization */
  .timeline {
    flex-direction: column;
    gap: 10px;
  }
  
  .timeline-item {
    min-width: auto;
    width: 100%;
  }
}

/* iPhone Mini, Very Small Phones (5.4" and below) */
@media (max-width: 480px) {
  .unified-section {
    margin: 12px auto;
    width: 95%;
  }
  
  .main-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  
  .highlights-section {
    padding: 12px 15px;
  }
  
  .registration-section {
    padding: 12px 15px;
  }
  
  .highlight-item h3 {
    font-size: 0.8rem;
  }
  
  .highlight-item p {
    font-size: 0.65rem;
  }
  
  .registration-container h3 {
    font-size: 1.1rem;
  }
  
  .registration-container p {
    font-size: 0.8rem;
  }
  
  .registration-form input,
  .registration-form select,
  .registration-form textarea {
    padding: 12px 15px;
    font-size: 0.8rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  /* Timeline mobile optimization */
  .timeline {
    flex-direction: column;
    gap: 8px;
  }
  
  .timeline-item {
    min-width: auto;
    width: 100%;
  }
}

/* Ultra Small Phones (4.7" and below) */
@media (max-width: 375px) {
  .unified-section {
    margin: 10px auto;
    width: 95%;
  }
  
  .main-heading {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px;
  }
  
  .highlights-section {
    padding: 10px 12px;
  }
  
  .registration-section {
    padding: 10px 12px;
  }
  
  .highlight-item h3 {
    font-size: 0.75rem;
  }
  
  .highlight-item p {
    font-size: 0.6rem;
  }
  
  .registration-container h3 {
    font-size: 1rem;
  }
  
  .registration-container p {
    font-size: 0.75rem;
  }
  
  .registration-form input,
  .registration-form select,
  .registration-form textarea {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  
  .register-btn {
    padding: 10px;
    font-size: 0.8rem;
  }
  
  /* About Us Page Mobile Grids */
  .team-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  /* Timeline mobile optimization */
  .timeline {
    flex-direction: column;
    gap: 6px;
  }
  
  .timeline-item {
    min-width: auto;
    width: 100%;
  }
}

  /* About Us Page Mobile Grids */
  .team-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }


/* Print styles */
@media print {
  .hero-particles,
  .hero-bg::before {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

.value-breakdown {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-breakdown h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.value-list .value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.value-list .value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.value-list .value-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-list .value-item span:last-child {
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Varied Blur Effects and Colors for Different Elements */

/* Hero Section - No Background Blur */
.hero {
  background: transparent;
  backdrop-filter: none;
  border: none;
}

/* Highlights Section - No Background Blur */
.highlights-section {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: none;
}

/* Highlight Items - Same Readable Color */
.highlight-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Unified Section with Centered Heading - ONLY for main page */
.unified-section {
  margin: 120px auto 0;
  text-align: center;
  width: 80%;
  max-width: 1200px;
  padding: 40px 0;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 50px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Split Container - No Background Blur - Mobile First */
.split-container {
  background: transparent;
  backdrop-filter: none;
  border-radius: 20px;
  padding: 20px;
  margin: 10px 0;
  border: none;
  /* Mobile-first: single column layout */
}



/* Page Hero - No Background Blur */
.page-hero {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 120px 24px 60px;
  margin-bottom: 20px;
  border: none;
}

/* Content Section - No Background Blur */
.content-section {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 80px 24px 40px;
  margin-bottom: 20px;
  border: none;
}

/* Team Member Cards - Same Readable Color */
.team-member {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* About Us Page Grid Layouts */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.founder-member {
  width: 100%;
}

.team-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Stats Section - No Background Blur */
.stats-section {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: none;
}

/* Industry Expertise - No Background Blur */
.industry-expertise {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: none;
}

/* Get in Touch - No Background Blur */
.get-in-touch {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: none;
}

/* Testimonial Cards - Same Readable Color */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 255, 0.3);
}

/* Pricing Cards - Same Readable Color */
.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Project Cards - Same Readable Color */
.project-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Form Elements - Same Readable Color */
.registration-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer - Same Readable Color */
.footer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for Project Details Page */
@media (max-width: 768px) {
  .project-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .project-detail-content {
    gap: 24px;
  }
  
  .project-detail-card {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .project-detail-header h2 {
    font-size: 24px;
  }
  
  .project-overview h3 {
    font-size: 20px;
  }
  
  .project-overview p {
    font-size: 16px;
  }
  
  .project-section h3 {
    font-size: 18px;
  }
  
  .project-section li {
    font-size: 14px;
    padding-left: 20px;
  }
  
  .tech-logos {
    gap: 10px;
    padding: 2px;
  }
  
  .tech-logo {
    min-width: 65px;
    padding: 10px 6px;
  }
  
  .tech-logo i {
    font-size: 20px;
  }
  
  .tech-logo span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .project-detail-card {
    padding: 20px;
  }
  
  .project-detail-header h2 {
    font-size: 22px;
  }
  
  .tech-logos {
    gap: 8px;
    padding: 2px;
  }
  
  .tech-logo {
    min-width: 60px;
    padding: 8px 4px;
  }
  
  .tech-logo i {
    font-size: 18px;
  }
  
  .tech-logo span {
    font-size: 10px;
  }
}