/* Enhanced transitions for better performance */
:root {
  --primary: #00ff41;
  --primary-dark: #00cc33;
  --primary-bright: #39ff14;
  --secondary: #ff0040;
  --accent: #00ffff;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #f8f9fa;
  --gray: #1a1a1a;
  --gray-light: #2a2a2a;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --text-green: #39ff14;
  --text-dark: #000000;
  --bg-overlay: rgba(0, 0, 0, 0.85);
  --card-bg: rgba(0, 0, 0, 0.9);
  --gradient-primary: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
  --gradient-secondary: linear-gradient(135deg, #ff0040 0%, #ff3366 100%);
  --gradient-accent: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
  --shadow-sm: 0 2px 8px rgba(0, 255, 65, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 255, 65, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 255, 65, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 255, 65, 0.25);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 20px rgba(0, 255, 65, 0.3);
  --glow-bright: 0 0 30px rgba(57, 255, 20, 0.5);
}

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

html {
  scroll-behavior: smooth;
  background: #0a0a0a;
  background-image: url('assets/background.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: #0a0a0a;
  background-image: url('assets/background.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Add overlay to improve readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: -1;
}

/* Clean Background - Removed dynamic effects for cleaner look */

/* Removed stars animation for cleaner background */

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.display-5 {
  font-size: 4.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--glow);
  line-height: 1.1;
  word-wrap: break-word;
  white-space: normal;
}

/* Mobile responsive styles - Reference layout */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  
  .hero .col-lg-4,
  .hero .col-lg-8,
  .hero .col-md-5,
  .hero .col-md-7 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .hero-photo-container {
    display: none;
  }
  
  .hero-content {
    text-align: center;
    order: 1;
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin: 0 auto;
  }
  
  .hero-line {
    display: none;
  }
  
  .hero-title {
    margin-bottom: 2rem;
  }
  
  .hero-title-main {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .hero-title-sub {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    display: block;
  }
  
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
  }
  
  .hero-cta {
    justify-content: center;
    display: flex;
  }
  
  .btn-hero {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    background: transparent;
    border: 2px solid var(--primary-bright);
    color: var(--text-light);
  }
  
  .btn-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* Small mobile styles - Reference layout */
@media (max-width: 576px) {
  .hero {
    padding: 50px 0 30px;
  }
  
  .hero-photo-container {
    display: none;
  }
  
  .hero-title {
    margin-bottom: 1.5rem;
  }
  
  .hero-title-main {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
  
  .hero-title-sub {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 320px;
  }
  
  .btn-hero {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 50px;
  }
  
  .btn-icon {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .display-5 {
    font-size: 1.6rem;
    line-height: 1.2;
    word-wrap: normal;
    white-space: nowrap;
  }
}

.lead-strong {
  font-weight: 600;
  color: var(--text-green);
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid rgba(0, 255, 65, 0.3);
  transition: var(--transition);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff41 0%, #00ffff 50%, #00ff41 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
  letter-spacing: -0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  background: linear-gradient(135deg, #00ffff 0%, #00ff41 50%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.7);
  transform: scale(1.05);
}

.navbar-brand::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00ff41, #00ffff, #00ff41);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover::before {
  opacity: 0.1;
}

/* Enhanced hover effects and transitions */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(0, 255, 65, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

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

/* Hero Section - New Layout */
.hero {
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  background-size: cover;
  z-index: -1;
}

/* Hero Photo Container */
.hero-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
}

.hero-photo-frame {
  position: relative;
  width: 350px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--primary-bright);
  box-shadow: var(--glow-bright);
  background: var(--card-bg);
  backdrop-filter: blur(15px);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Hero Content */
.hero-content {
  padding: 4rem 2rem;
  max-width: 600px;
  background: var(--card-bg);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 65, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-line {
  width: 60px;
  height: 4px;
  background: var(--primary-bright);
  margin-bottom: 2rem;
  box-shadow: var(--glow);
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-bright);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-title-sub {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-hero {
  background: transparent;
  border: 2px solid var(--primary-bright);
  color: var(--text-light);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-hero:hover {
  background: var(--primary-bright);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--glow-bright);
  text-decoration: none;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-bright);
  border-radius: 50%;
  color: var(--dark);
  transition: var(--transition);
}

.btn-hero:hover .btn-icon {
  background: var(--dark);
  color: var(--primary-bright);
  transform: rotate(45deg);
}





.hero .lead-strong {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  margin-top: 2rem;
}



/* Mobile responsive badge */
@media (max-width: 768px) {
  .hero .badge {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    line-height: 1.4;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
    line-height: 1.3;
  }
  
  .hero h1.display-5 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0 !important;
    margin-top: 0;
    word-wrap: normal;
    white-space: nowrap;
  }
  
  .hero .badge {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .hero .container {
    margin-top: 0;
  }
  
  .hero .lead-strong {
    margin-top: 0;
  }
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-bright);
  border: 2px solid var(--primary-bright);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  box-shadow: var(--glow);
}

.btn-outline-light {
  background: rgba(0, 255, 65, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 65, 0.3);
  color: var(--primary);
}

.btn-outline-light:hover {
  background: rgba(0, 255, 65, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  box-shadow: var(--glow);
}

/* Main element background fix */
main {
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Sections - Update backgrounds */
.section {
  padding: 100px 0;
  position: relative;
  background: transparent;
  z-index: 1;
}

.section.bg-light {
  background: transparent;
  backdrop-filter: none;
}

.section h2 {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-bright) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5) !important;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-text-fill-color: var(--primary-bright) !important;
}

.section h2::before {
  display: none;
}

/* Main section titles - completely green */
.section h2.h3.fw-bold.mb-4,
.section h2.h3.fw-bold.mb-3 {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-bright) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5) !important;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-text-fill-color: var(--primary-bright) !important;
}

/* Other section titles - completely green */
.section h2,
.section h3.fw-bold,
.section .h3.fw-bold {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-bright) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5) !important;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-text-fill-color: var(--primary-bright) !important;
}

/* Subtitle styles - bright green text */
.section .lead.fw-bold.text-primary {
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: block;
  box-shadow: none;
  color: var(--primary-bright) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5) !important;
  font-weight: 700;
  margin-bottom: 3rem;
  z-index: 1;
}

/* Fix all text-primary elements to be bright green text */
.text-primary,
.h4.fw-bold.text-primary,
h3.h4.fw-bold.text-primary {
  color: var(--primary-bright) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5) !important;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* Cards - Update for cosmic theme */
.card-shadow {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 255, 65, 0.1);
  transition: var(--transition-fast);
  overflow: hidden;
}

.card-shadow:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(26, 26, 26, 0.8);
  animation: pulse-glow 2s infinite;
}

.card-shadow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* Skills */
.badge-skill {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
  color: #ffffff;
  border: 2px solid rgba(0, 255, 136, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  margin: 0.25rem;
}

/* Skills List Styling */
.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills-list li {
  position: relative;
  padding: 1rem 0;
  padding-left: 1.8rem;
  color: #ffffff;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.1);
  transition: var(--transition);
}

.skills-list li:last-child {
  border-bottom: none;
}

.skills-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--primary-bright);
  font-weight: bold;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.skills-list li:hover {
  color: var(--primary-bright);
  transform: translateX(8px);
  padding-left: 2.5rem;
}

.skills-list li:hover::before {
  color: var(--accent);
}

/* Skills Card Hover Effect */
.skills-card {
  transition: var(--transition-fast);
  cursor: pointer;
}

.skills-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 255, 65, 0.2);
  border-color: rgba(0, 255, 65, 0.4);
}

/* Services Section */
.service-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 255, 65, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 255, 65, 0.3);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border: 2px solid rgba(0, 255, 65, 0.2);
  border-radius: 50%;
  margin: 0 auto 2rem;
  transition: var(--transition);
  position: relative;
  top: -1rem;
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--primary-bright);
  transition: var(--transition);
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
  border-color: var(--primary-bright);
  transform: scale(1.1);
}

.service-card:hover .service-icon i {
  color: var(--primary-bright);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
}

.service-content h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-content p {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.badge-skill:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 255, 136, 0.4);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 102, 0.2) 100%);
}

/* Skills Section Titles */
.skills-section h3 {
  font-weight: 800 !important;
  color: var(--primary) !important;
  font-size: 1.1rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Experience Cards */
.experience-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 65, 0.1);
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 255, 65, 0.02) 100%);
  opacity: 0;
  transition: var(--transition);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 255, 65, 0.3);
  background: rgba(26, 26, 26, 0.8);
}

.experience-card h3 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.experience-card .date {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.experience-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.experience-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Contact Form */
.form-control {
  border: 2px solid rgba(26, 26, 26, 0.8);
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px);
  color: #ffffff !important;
}

/* Ensure textarea and input text is white and visible */
.form-control,
.form-control:focus,
.form-control:active,
.form-control:hover,
.form-control:not(:focus) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Specific styling for textarea */
textarea.form-control,
textarea.form-control:focus,
textarea.form-control:active,
textarea.form-control:hover,
textarea.form-control:not(:focus) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  resize: vertical;
  min-height: 120px;
}

/* Additional styling to ensure text is always visible */
input[type="text"],
input[type="email"],
textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Force white text for all form inputs */
.form-control::value,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control:-moz-placeholder {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Override any browser default text colors */
.form-control * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Ensure text is white when typing */
.form-control:valid,
.form-control:invalid,
.form-control:required {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Override any autofill styles */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(26, 26, 26, 0.6) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Force white text for all input content */
.form-control input,
.form-control textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Override any inherited text colors */
.form-control,
.form-control *,
.form-control input,
.form-control textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 255, 65, 0.25);
  outline: none;
  background: rgba(26, 26, 26, 0.8);
}

.form-control::placeholder {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 0.7;
}

.form-label {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* Remove white backgrounds from cards */
.card-shadow.bg-white {
  background: var(--gray-light) !important;
}

/* Education and Contact sections */
.education-item, .cert-item {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px);
  padding: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 255, 65, 0.1);
  margin-bottom: 1rem;
  transition: var(--transition);
}

/* Education and Certification boxes */
.education-box, .cert-box {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 255, 65, 0.1);
  height: 100%;
  transition: var(--transition);
}

.education-box:hover, .cert-box:hover {
  border-color: rgba(0, 255, 65, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(26, 26, 26, 0.8);
}

.education-box h4, .cert-box h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.education-box ul li, .cert-box ul li {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.education-box ul li i, .cert-box ul li i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.education-item:hover, .cert-item:hover {
  border-color: rgba(0, 255, 65, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(26, 26, 26, 0.8);
}

.education-item i, .cert-item i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Professional Photo */
.professional-photo {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-fast);
  margin: 0 auto;
  display: block;
}

.professional-photo:hover {
  transform: scale(1.03);
  box-shadow: var(--glow);
}

.photo-container {
  text-align: center;
  margin-bottom: 2rem;
}

/* Hero section button centering - Fixed for mobile */
.hero .d-flex.justify-content-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero .d-flex.justify-content-center .btn {
  margin: 0.25rem !important;
  display: inline-block !important;
  flex: 0 1 auto;
}

/* Hero section with photo */
.hero .col-lg-5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced section titles */
.section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About section improvements */
.about-text-container {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.about-text-container p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.about-text-container p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-highlights li {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.about-highlights i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Back to Top Button */
#backToTop {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: var(--transition);
  z-index: 1000;
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
  outline: none;
  margin: 0;
  padding: 0;
}

#backToTop:hover {
  transform: translateY(-3px);
  color: var(--accent);
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 255, 65, 0.1);
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 0;
  width: 100%;
  bottom: 0;
}

/* Ensure no light borders or gaps */
footer .container {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0 1rem;
}

footer .row {
  background: transparent;
  border: none;
  margin: 0;
}

footer .col-md-6 {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
}

.footer-text {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-link i {
  font-size: 1rem;
  color: var(--primary);
}

/* Animations - Enhanced and Faster */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
  }
}

@keyframes matrix-rain {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
  }
}

/* Hero section animations - Faster and more professional */
.hero .col-lg-7 {
  animation: slideInLeft 0.6s ease-out;
}

.hero .badge {
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero h1 {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero .lead-strong {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero .btn {
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero .col-lg-5 {
  animation: slideInRight 0.6s ease-out 0.3s both;
}

/* Professional photo animation */
.professional-photo {
  animation: zoomIn 0.7s ease-out 0.5s both;
}

/* Enhanced AOS Animation Styles */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-left"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="slide-up"] {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="slide-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* New professional animations */
[data-aos="fade-in-scale"] {
  transform: scale(0.9);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-in-scale"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="slide-in-bottom"] {
  transform: translate3d(0, 25px, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="slide-in-bottom"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="fade-in-bounce"] {
  transform: translate3d(0, 20px, 0) scale(0.95);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="fade-in-bounce"].aos-animate {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

/* Smooth transitions for all AOS elements */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.6s;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
  }
}

/* Mobile optimizations - Even faster on mobile */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
  
  [data-aos] {
    transition-duration: 0.4s;
  }
  
  .hero .col-lg-7 {
    animation: slideInLeft 0.4s ease-out;
  }
  
  .hero .badge {
    animation: fadeInUp 0.4s ease-out 0.1s both;
  }
  
  .hero h1 {
    animation: fadeInUp 0.4s ease-out 0.2s both;
  }
  
  .hero .lead-strong {
    animation: fadeInUp 0.4s ease-out 0.3s both;
  }
  
  .hero .btn {
    animation: fadeInUp 0.4s ease-out 0.4s both;
  }
  
  .hero h1.display-5 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0 !important;
    margin-top: 0;
    word-wrap: normal;
    white-space: nowrap;
  }
  
  .hero .badge {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .hero .container {
    margin-top: 0;
  }
  
  .hero .lead-strong {
    margin-top: 0;
  }
}

/* Portfolio card enhancements */
.portfolio-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 255, 65, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-fast);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 255, 65, 0.3);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.portfolio-link:hover {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.1);
}

.hero h1.display-5 {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 0 !important;
  text-align: center;
  width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
  margin-top: 1rem;
}

.hero .lead-strong {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  margin-top: 2rem;
}

.hero .badge.rounded-pill {
  background: rgba(0, 255, 65, 0.2) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 65, 0.3);
  color: var(--primary);
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  word-wrap: break-word;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  display: inline-block;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  z-index: 10;
}

/* Contact Icons */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 65, 0.1);
  border: 2px solid rgba(0, 255, 65, 0.3);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-icon:hover {
  background: rgba(0, 255, 65, 0.2);
  border-color: var(--primary-bright);
  color: var(--primary-bright);
  transform: scale(1.1);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

/* Brighten contact form text */
.form-label {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
  margin-bottom: 0.5rem !important;
}

.form-control {
  background: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(0, 255, 65, 0.3) !important;
  color: var(--text-light) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400 !important;
}

.form-control:focus {
  background: rgba(0, 0, 0, 0.8) !important;
  border-color: var(--primary-bright) !important;
  color: var(--text-light) !important;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3) !important;
}

/* Footer Icons */
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 1.2rem;
  cursor: pointer;
}

.footer-icon:hover {
  background: rgba(0, 255, 65, 0.2);
  border-color: var(--primary);
  color: var(--primary);
  color: var(--accent);
  transform: scale(1.1);
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

/* Consistent Background Colors */
.navbar {
  background: rgba(10, 10, 10, 0.95) !important;
}

.card-shadow {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 65, 0.2);
  transition: var(--transition-fast);
  overflow: hidden;
}

footer {
  background: transparent;
  backdrop-filter: blur(15px);
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 255, 65, 0.1);
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 2rem 0;
  width: 100%;
  bottom: 0;
}

/* Mobile Footer Fixes */
@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0;
  }
  
  footer .row {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  footer .col-md-6 {
    width: 100%;
  }
  
  .footer-contact {
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-top: 0.5rem;
  }
  
  .footer-text {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .footer-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 1.25rem 0;
  }
  
  .footer-contact {
    gap: 1rem !important;
  }
  
  .footer-text {
    font-size: 0.85rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .footer-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Footer Improvements */
footer {
  background: var(--card-bg) !important;
  backdrop-filter: blur(15px);
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 255, 65, 0.2);
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 2rem 0;
  width: 100%;
  bottom: 0;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

footer .container {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

footer .d-flex {
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

.footer-text {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  text-align: center !important;
  margin: 0 auto !important;
  display: block !important;
  width: 100% !important;
}

/* Mobile footer text adjustments */
@media (max-width: 768px) {
  .footer-text {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 576px) {
  .footer-text {
    font-size: 0.75rem !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 480px) {
  .footer-text {
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
  }
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mentorship Section Styles */
.mentorship-card {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mentorship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.mentorship-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-bright);
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(26, 26, 26, 0.9);
}

.mentorship-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, rgba(0, 255, 65, 0.1) 100%);
  border: 2px solid rgba(57, 255, 20, 0.3);
  border-radius: 50%;
  transition: var(--transition);
}

.mentorship-icon i {
  font-size: 1.8rem;
  color: var(--primary-bright);
  transition: var(--transition);
}

.mentorship-card:hover .mentorship-icon {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.2) 0%, rgba(0, 255, 65, 0.2) 100%);
  border-color: var(--primary-bright);
  transform: scale(1.1);
}

.mentorship-card:hover .mentorship-icon i {
  color: var(--primary-bright);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
}

.mentorship-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mentorship-features li {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.mentorship-features li i {
  color: var(--primary-bright);
  font-size: 1.1rem;
}

.course-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-bright);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition-fast);
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.1);
}

.course-link:hover {
  color: var(--primary-bright);
  background: rgba(57, 255, 20, 0.1);
  border-color: rgba(57, 255, 20, 0.3);
  transform: translateX(5px);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.course-link i {
  font-size: 1.2rem;
}

/* Enhanced text colors for better visibility */
.text-primary {
  color: var(--primary-bright) !important;
}

/* Stats Section with Background */
.stats-section {
  padding: 80px 0;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: var(--border-radius);
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-bright);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-bright);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Force all headings to be completely green */
.section h2,
.section h3,
.section .h3,
.section h2.h3,
.section h2.h3.fw-bold,
.section h2.h3.fw-bold.mb-3,
.section h2.h3.fw-bold.mb-4 {
  color: var(--primary-bright) !important;
  -webkit-text-fill-color: var(--primary-bright) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.5) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Completely hide image on mobile */
@media (max-width: 768px) {
  .hero-photo-container,
  .hero-photo-frame,
  .hero-photo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
  }
  
  /* Fix mobile title spacing */
  .hero-title-main {
    font-size: 1.8rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .hero-title-sub {
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem !important;
  }
}

.btn-outline-primary {
  background: rgba(57, 255, 20, 0.1);
  border: 2px solid rgba(57, 255, 20, 0.3);
  color: var(--primary-bright);
}

.btn-outline-primary:hover {
  background: rgba(57, 255, 20, 0.2);
  border-color: var(--primary-bright);
  color: var(--primary-bright);
  transform: translateY(-3px);
  box-shadow: var(--glow-bright);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}
