/*
Theme Name: MyCyberDude Cyber Course
Version: 3.0
*/
/* Custom Cyber Security Theme Stylesheet */
:root {
  --bg-dark: #060a13;
  --bg-darker: #03050a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 242, 254, 0.15);

  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-purple: #7f00ff;
  --accent-magenta: #e100ff;
  --neon-green: #39ff14;
  --neon-green-bg: rgba(57, 255, 20, 0.1);
  --neon-cyan-bg: rgba(0, 242, 254, 0.1);

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-secondary: #64748b;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Background Blur Highlights */
.bg-blur-circle {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .bg-blur-circle {
    opacity: 0.08;
    filter: blur(80px);
  }

  .circle-primary {
    width: 260px;
    height: 260px;
    left: -80px;
  }

  .circle-secondary {
    width: 300px;
    height: 300px;
    right: -80px;
  }

  .circle-tertiary {
    width: 200px;
    height: 200px;
  }
}

.circle-primary {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
  top: 10%;
  left: -100px;
}

.circle-secondary {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  top: 40%;
  right: -150px;
}

.circle-tertiary {
  width: 300px;
  height: 300px;
  background: var(--accent-magenta);
  bottom: 10%;
  left: 20%;
}

/* Typography Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #a78bfa, var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

.text-neon-green {
  color: var(--neon-green);
}

/* Navigation Bar */
.navbar-cyber {
  background: rgba(6, 10, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.navbar-cyber.scrolled {
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(0, 242, 254, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Pulsing Badge & Dot */
.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-green 1.5s infinite alternate;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 4px var(--neon-green);
  }

  100% {
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--neon-green);
  }
}

.badge-cyber {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
}

.badge-cyber-green {
  background: var(--neon-green-bg);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: var(--neon-green);
}

.badge-cyber-purple {
  background: rgba(127, 0, 255, 0.1);
  border: 1px solid rgba(127, 0, 255, 0.3);
  color: #c084fc;
}

/* Premium Buttons */
.btn-cyber-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  color: #03050a !important;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn-cyber-primary:hover::before {
  left: 100%;
}

.btn-cyber-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.45);
}

.btn-cyber-secondary {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 28px;
  transition: var(--transition-smooth);
}

.btn-cyber-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
  transform: translateY(-2px);
}

/* Cyber Cards (Glassmorphism & Neon Glow) */
.cyber-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-smooth);
  height: 100%;
}

.cyber-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.08);
}

.cyber-card.glow-purple:hover {
  border-color: rgba(225, 0, 255, 0.25);
  box-shadow: 0 10px 30px rgba(225, 0, 255, 0.08);
}

.cyber-card.glow-green:hover {
  border-color: rgba(57, 255, 20, 0.25);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.08);
}

/* Feature Checklist Icons */
.cyber-list {
  list-style: none;
  padding-left: 0;
}

.cyber-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.cyber-list li::before {
  content: "\f00c";
  /* FontAwesome check fallback or custom bullet */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--neon-green);
}

.cyber-list.cyan li::before {
  color: var(--accent-cyan);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Grid & Trust Bar */
.trust-bar {
  background: rgba(3, 5, 10, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  backdrop-filter: blur(8px);
}

.trust-item {
  text-align: center;
}

.trust-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.trust-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Program For You Checkboxes */
.audience-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.audience-card:hover {
  background: rgba(0, 242, 254, 0.03);
  border-color: rgba(0, 242, 254, 0.2);
  transform: translateX(4px);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Bootstrap Accordion Overrides (Curriculum & FAQs) */
.accordion-cyber .accordion-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  margin-bottom: 0.75rem;
  border-radius: 12px !important;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-cyber .accordion-item:hover {
  border-color: rgba(0, 242, 254, 0.2) !important;
  background-color: rgba(255, 255, 255, 0.04);
}

.accordion-cyber .accordion-button {
  background-color: transparent !important;
  color: var(--text-primary) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.accordion-cyber .accordion-button:not(.collapsed) {
  color: var(--accent-cyan) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-cyber .accordion-button::after {
  filter: invert(1) brightness(2);
  /* Makes arrow white */
}

.accordion-cyber .accordion-button:not(.collapsed)::after {
  filter: invert(58%) sepia(85%) saturate(2250%) hue-rotate(155deg) brightness(101%) contrast(101%);
  /* Makes arrow cyan */
}

.accordion-cyber .accordion-body {
  background-color: rgba(0, 0, 0, 0.15);
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 1.5rem;
}

/* Curriculum Specifics */
.curriculum-meta {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.curriculum-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Tool Badges Grid */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.tool-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.tool-badge:hover {
  background: rgba(0, 242, 254, 0.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
  transform: translateY(-4px);
}

.tool-logo-container {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.tool-badge:hover .tool-logo-container {
  color: var(--accent-cyan);
}

.tool-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* Bonuses & Career Grid */
.bonus-card {
  border: 1px solid rgba(127, 0, 255, 0.1);
  background: linear-gradient(180deg, rgba(127, 0, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(127, 0, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-card:hover {
  border-color: rgba(127, 0, 255, 0.4);
  background: linear-gradient(180deg, rgba(127, 0, 255, 0.05) 0%, rgba(127, 0, 255, 0.01) 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(127, 0, 255, 0.1);
}

.bonus-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.75rem;
  background: rgba(127, 0, 255, 0.2);
  color: #c084fc;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Testimonial Section */
.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin: 10px 0;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}



/* Testimonial carousel responsive */
#testimonialCarousel .carousel-item {
  padding: 0.5rem 0 1rem;
}

/* smooth slide transition */
#testimonialCarousel .carousel-inner {
  transition: transform 0.6s ease;
}


.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.reviewer-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Pricing Card */
.pricing-card {
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.05) 0%, rgba(3, 5, 10, 0.9) 100%);
  border: 2px solid rgba(0, 242, 254, 0.3);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--accent-cyan);
  filter: blur(80px);
  opacity: 0.3;
}

.pricing-tag {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #03050a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 30px;
  position: absolute;
  top: 25px;
  right: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Countdown Timer */
.countdown-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 1.5rem 0;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 60px;
  text-align: center;
}

.countdown-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.countdown-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Tooltip Styling */
.tooltip-cyber {
  --bs-tooltip-bg: var(--bg-darker);
  --bs-tooltip-color: var(--text-primary);
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
}

/* Footer Section */
.footer-cyber {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
  color: var(--text-secondary);
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* Font-weight utilities Bootstrap doesn't include by default */
.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0 60px 0;
    text-align: center;
  }

  .hero-section .d-flex.flex-wrap.gap-4 {
    justify-content: center;
  }

  .hero-section .d-flex.flex-column.flex-sm-row {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .countdown-box {
    gap: 6px;
  }

  .countdown-item {
    min-width: 50px;
    padding: 6px 8px;
  }

  .countdown-number {
    font-size: 1.1rem;
  }

  .pricing-card {
    padding: 2.5rem 1.25rem;
  }

  /* Hero headline size on small phones */
  .hero-section h1.display-5 {
    font-size: 1.65rem;
  }

  /* Audience cards: ensure text wraps */
  .audience-card {
    flex-wrap: wrap;
  }

  /* Trust bar: equal spacing */
  .trust-bar .col-6 {
    border: none !important;
  }
}

@media (max-width: 767.98px) {
  .tool-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .bonus-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1rem;
  }

  .pricing-card .pricing-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  /* Mentorship stat dividers: hide vertical on mobile */
  .border-end.border-secondary.border-opacity-20 {
    display: none !important;
  }
}

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-cyan);
  color: #03050a;
  border-radius: 50%;
  text-align: center;
  font-size: 1.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: var(--accent-blue);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.5);
}