/* 
  CountryEdu | Premium AI Workshop
  Theme: Dark Premium (Green Accent) 
*/

:root {
  --color-dark: #0a0f12;
  --color-darker: #06090a;
  --color-primary: #048e6c;
  --color-primary-accent: #00e676; /* Bright neon green */
  --color-primary-soft: rgba(4, 142, 108, 0.2);
  --color-secondary: #035642;
  --color-warning: #ff7a00;
  --color-text-muted: #94a3b8;
  --color-glass: rgba(255, 255, 255, 0.03);
  --color-glass-border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-dark);
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 90px;
}

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

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Poppins", sans-serif;
}

.text-primary-accent {
  color: var(--color-primary-accent) !important;
}
.text-primary-custom {
  color: var(--color-primary) !important;
}
.text-muted-custom {
  color: var(--color-text-muted) !important;
}
.bg-primary-custom {
  background-color: var(--color-primary) !important;
}
.bg-primary-soft {
  background-color: var(--color-primary-soft) !important;
}
.bg-dark {
  background-color: var(--color-dark) !important;
}
.bg-darker {
  background-color: var(--color-darker) !important;
}
.bg-glass {
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.border-dark-subtle {
  border-color: var(--color-glass-border) !important;
}

/* Gradients */
.text-gradient {
  background: linear-gradient(90deg, #00e676, #048e6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background Blobs for Glow Effect */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}
.bg-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -10%;
  right: 0;
}
.bg-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--color-warning);
  bottom: 10%;
  left: 0;
  opacity: 0.2;
}
.bg-blob-3 {
  width: 500px;
  height: 500px;
  background: var(--color-secondary);
  top: 40%;
  right: 10%;
}

.glow-blob {
  pointer-events: none;
  max-width: 100%;
}

/* Typography Utility */
.fw-black {
  font-weight: 900;
}
.tracking-wider {
  letter-spacing: 0.1em;
}
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--color-primary-accent),
    var(--color-primary)
  );
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(4, 142, 108, 0.4);
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
  color: #000;
}

/* Animations */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}
.pulse-animation {
  animation: pulseGlow 2s infinite;
}

.transition-all {
  transition: all 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary-accent) !important;
  box-shadow: 0 10px 30px rgba(4, 142, 108, 0.2);
}
.hover-border-primary:hover {
  border-color: var(--color-primary) !important;
  background-color: rgba(4, 142, 108, 0.05) !important;
}
.hover-text-primary:hover {
  color: var(--color-primary-accent) !important;
}

/* Navbar */
.glass-nav {
  background: rgba(10, 15, 18, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: all 0.3s ease;
}
.glass-nav.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(10, 15, 18, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-title {
  line-height: 1.1;
}
.hero-subtitle {
  max-width: 700px;
}
.badge-wrapper .badge {
  font-size: 0.9rem;
}

/* Avatar Group */
.avatar-group {
  display: flex;
  align-items: center;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  margin-left: -15px;
  object-fit: cover;
}
.avatar:first-child {
  margin-left: 0;
}
.more-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 1;
}

/* Logo Scroller */
.logo-scroller {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}
.logo-scroller::before,
.logo-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.logo-scroller::before {
  left: 0;
  background: linear-gradient(to right, var(--color-dark), transparent);
}
.logo-scroller::after {
  right: 0;
  background: linear-gradient(to left, var(--color-dark), transparent);
}
.logo-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
}
.company-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.5;
  margin: 0 40px;
  transition: opacity 0.3s;
}
.company-logo:hover {
  opacity: 1;
}

/* Navbar height control */
.navbar {
  min-height: 70px;
}

/* Logo size fix */
.nav-logo {
  height: 40px;   /* 👈 adjust between 35–50px */
  width: auto;
}

/* Navbar spacing */
.navbar .nav-link {
  font-size: 15px;
  padding: 8px 12px;
}

/* Button alignment */
.navbar .btn {
  font-size: 14px;
  padding: 8px 18px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .nav-logo {
    height: 32px;
  }

  .navbar {
    min-height: 60px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Trust Strip */
.trust-strip {
  background-color: var(--color-darker);
}
.divider-vertical {
  width: 1px;
  height: 30px;
}

/* Custom List */
.custom-list li {
  display: flex;
  align-items: center;
}

/* Workshop Flow */
.flow-step {
  position: relative;
  z-index: 2;
}
.flow-connector {
  position: absolute;
  top: 40px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary-accent),
    transparent
  );
  z-index: 1;
  opacity: 0.5;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
  color: var(--color-primary-accent);
  background-color: transparent;
  box-shadow: none;
}
.accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.accordion-button:not(.collapsed)::after {
  filter: invert(65%) sepia(87%) saturate(2250%) hue-rotate(106deg)
    brightness(101%) contrast(105%);
}

/* Sticky Pricing */
.sticky-pricing {
  z-index: 1000;
}
.sticky-pricing {
  animation: slideUp 0.5s ease forwards;
}

/* Footer logo size fix */
.footer-logo {
  height: 40px;   /* ideal size */
  width: auto;
  object-fit: contain;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .footer-logo {
    height: 32px;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .sticky-pricing .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
  .flow-connector {
    display: none;
  }
}

.flow-item {
  position: relative;
}

/* Line between steps */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary-accent),
    transparent
  );
  opacity: 0.5;
}

/* Step circle */
.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: white;
  box-shadow: 0 0 20px rgba(4, 142, 108, 0.4);
}

/* Mobile fix */
@media (max-width: 768px) {
  .flow-item::after {
    display: none;
  }
}

/* Increase section height */
.who-is-it-for {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Badge styling */
.audience-badge {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Icon color */
.audience-badge i {
  color: var(--color-primary-accent);
}

/* Hover effect (premium feel) */
.audience-badge:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.sticky-pricing {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(10, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-top: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 -5px 25px rgba(0, 230, 118, 0.15);

  padding: 12px 16px;
}

.sticky-pricing .btn {
  background: linear-gradient(135deg, #00e676, #048e6c);
  color: #000;
  font-weight: 600;

  box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);

  transition: all 0.3s ease;
}

.sticky-pricing .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.8);
}

@media (max-width: 768px) {

  .sticky-pricing {
    padding: 10px 12px;
  }

  .sticky-pricing .btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .sticky-pricing strong {
    font-size: 18px;
  }

}

.sticky-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, transparent, #00e676, transparent);
}