@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Lexend+Deca:wght@100;200;300;400;500;600;700&family=Lexend:wght@300&family=Montserrat:wght@400;700&family=Mulish:wght@300&family=Poppins:wght@300;400;600&family=Urbanist:wght@300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

:root {
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: "urbanist";
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--bs-heading-color);
  font-family: "Montserrat", serif;
}

a,
li,
p,
span,
.fa,
.bi {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.1rem;
  color: var(--bs-text-color);
}

.data {
  color: var(--bs-dark-color);
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--bs-dark-color);
}

li {
  list-style: none;
}

strong {
  font-weight: bold;
}

figure {
  margin: 0;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

h1 {
  font-size: 6.2em;
  line-height: 1.1;
}

h3 {
  font-size: 2rem;
}

/* ---common  code ----  */

.common-heading {
  margin: 1.2rem auto 6.2rem;

  .common-title {
    line-height: -1rem;
  }

  .margin-top-less {
    margin-top: -3rem;
  }

  h2 {
    font-size: 4.8rem;
    font-weight: bold;
    color: #00cc6a;

    .common-color-style {
      font-size: 4.8rem;
      font-weight: bold;
    }

    span {
      font-size: 4.8rem;
      line-height: -1rem;
      font-weight: bold;
      color: #fff;
    }
  }
}

/* ---------------------- */
#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}
/* Custom CSS for Kodyfier Landing Page */

:root {
  --primary-bg: #1a1a1a;
  --secondary-bg: #2a2a2a;
  --success-color: #28a745;
  --success-hover: #218838;
  --text-light: #e8e8e8;
  --text-muted: #adb5bd;
}

body {
  background-color: var(--primary-bg);

  line-height: 1.6;
  color: var(--text-light);
}

/* Navigation Styles */
.navbar {
  background-color: var(--primary-bg) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  color: var(--success-color) !important;
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--success-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(40, 167, 69, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  p {
    margin: 3.2rem auto 1.2rem;
  }
}

.hero-grid {
  border: 0.2px solid #9d9d9f;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 80%;
  margin: 1rem 0 4rem;

  span {
    font-size: 1.4rem;
  }
}

.hero-video {
  position: relative;
  z-index: 2;
}

.video-section {
  margin: 9rem auto;
}

.video-section .video-thumbnail {
  display: grid;
  place-items: center;
}

.video-section .video-thumbnail .hero-video {
  display: grid;
  place-items: center;
}

.hero-video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(40, 167, 69, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-video .play-button:hover {
  background: var(--success-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-video .play-button i {
  font-size: 2rem;
  color: white;
  margin-left: 4px;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--secondary-bg);

  .container {
    padding: 9.6rem 0;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--success-color);
}

.benefit-icon i {
  font-size: 3rem;
}

/* -------------------- New Benefits ------------------------  */
.benefits-section,
.instructor-section,
.testimonials-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 100%
  );
  overflow: hidden;
}

.instructor-section::before,
.benefits-section::before,
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(40, 167, 69, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(40, 167, 69, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(40, 167, 69, 0.08) 0%,
      transparent 50%
    );
  animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(-30px) translateY(30px);
  }
  66% {
    transform: translateX(30px) translateY(-20px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.section-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  /* background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-hover)
  ); */

  background-clip: text;
  position: relative;
  font-size: 3.8rem;
  font-family: "Montserrat";
  font-weight: bold;
  color: var(--success-color);
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  color: var(--success-color);
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--success-color),
    var(--success-hover)
  );
  border-radius: 2px;
  animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

.section-description {
  font-size: 1.6rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.benefit-card {
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: backwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}
.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}
.benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1) 0%,
    rgba(40, 167, 69, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
  border-color: var(--success-color);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-hover)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.benefit-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.benefit-description {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1.6rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;

  span {
    font-size: 1.1rem;
  }
}

.tech-tag {
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.2),
    rgba(33, 136, 56, 0.2)
  );
  color: var(--success-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.3),
    rgba(33, 136, 56, 0.3)
  );
  transform: translateY(-2px);
  color: var(--text-light);
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(40, 167, 69, 0.4);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
}

.floating-element:nth-child(5) {
  left: 50%;
  animation-delay: 8s;
}

.floating-element:nth-child(6) {
  left: 60%;
  animation-delay: 10s;
}

.floating-element:nth-child(7) {
  left: 70%;
  animation-delay: 12s;
}

.floating-element:nth-child(8) {
  left: 80%;
  animation-delay: 14s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Additional glow effect for cards */
.benefit-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-hover)
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::after {
  opacity: 0.3;
}

/* Subtle animation for the entire grid */
.benefits-grid {
  animation: gridFloat 8s ease-in-out infinite;
}

@keyframes gridFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Enhanced shadow effects */
.benefit-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(40, 167, 69, 0.1);
}

.benefit-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--success-color),
    0 0 40px rgba(40, 167, 69, 0.2);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

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

  .benefit-card {
    padding: 30px 20px;
  }
}

/*---------------- Modules Section -----------------*/
.modules-section {
  background-color: var(--primary-bg);
}

.module-number {
  background: var(--success-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.instructor-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
}

/* Instructor Section */
.instructor-section {
  background: var(--secondary-bg);
}

.stat-item {
  h4 {
    font-weight: 700;
    font-size: 4.8rem;
  }

  small {
    font-size: 1.6rem;
  }
}

/* Success Section */
.success-section {
  background-color: var(--primary-bg);

  .container {
    padding: 9.6rem 0;
  }

  .success-features {
    margin: 3.2rem 0 2.4rem;
  }
}

.feature-item i {
  font-size: 1.2rem;
}

/* Detailed Modules Section */
.detailed-modules-section {
  background-color: var(--secondary-bg);
}

.module-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.module-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--success-color);
}

.module-badge {
  background: var(--success-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 100%
  );

  .container {
    padding: 9.6rem 0;
  }
}

/* Button Styles */
.btn-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--success-hover);
  border-color: var(--success-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Badge Styles */
.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .hero-content .d-flex {
    justify-content: center;
  }

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

  .module-item {
    flex-direction: column;
    text-align: center;
  }

  .module-number {
    margin-bottom: 0.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--success-color);
  border-radius: 4px;
}

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

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
  outline: none;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .benefit-card,
  .module-card {
    border-width: 2px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.course-modules {
  padding: 80px 0;
  background: #111111;
}

.module-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0px;
  margin-bottom: 15px;
  display: flex;
  justify-content: start;
  /* align-items: center; */
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.module-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00ff88;
}
/* 
.module-number {
  background: #00ff88;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.module-title {
  flex: 1;
  font-weight: 600;
  color: #ffffff;
}

.module-duration {
  color: #cccccc;
  font-size: 0.9rem;
} */

/* CSS for sticky video functionality */
.course-modules {
  position: relative;
}

.sticky-video-container {
  position: sticky;
  top: 20px;
  height: fit-content;
  z-index: 10;
}

.modules-container {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 15px;
}

/* Custom scrollbar for better UX */
.modules-container::-webkit-scrollbar {
  width: 8px;
}

.modules-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modules-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.modules-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Smooth transition for sticky removal */
.video-unstick {
  transition: all 0.3s ease;
}

/* ======================================= */
.instructor-section {
  background: var(--secondary-bg);

  .container {
    padding: 9.6rem 0;
  }
}

.instructor-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.instructor-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 60px;
  color: #000;
}

.testimonials-section {
  padding: 80px 0;
  background: #111111;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00ff88;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #000;
  font-weight: bold;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* --------------------- */
.module-accordion .module-item {
  border-color: transparent;
  border-radius: 1rem;
  border-bottom: none;
}

.module-accordion .module-item:last-child {
  border-bottom: inherit;
}

.module-accordion .module-header {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: none;
}

.module-accordion .module-title a {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
}

.module-accordion .module-number {
  color: #58657f;
}

.module-accordion .module-toggle {
  font-weight: bold;
  color: #2e3543;
  text-decoration: none;
  display: block;
  position: relative;
  padding-left: 1.5rem;
}

.module-accordion .module-toggle-icon {
  color: var(--bs-main-color);
}

.module-accordion .module-toggle-icon me-3 fa-solid {
  color: red;
  margin-right: 5rem;
  font-weight: normal;
  font-size: 1.75rem;
  position: absolute;
  top: 4px;
  left: 0;
}

.module-accordion .me-2 {
  margin-right: 5rem;
}

.module-accordion .module-intro {
  font-size: 1.6rem;
}

.module-accordion .module-sub-item {
  font-size: 12px;
  border-bottom: 1px solid #efefef;
  color: #b7c6e3;
}

.module-accordion .module-sub-item p {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.module-accordion .module-sub-item:last-child {
  border: none;
}

.module-accordion .extra-info-course {
  color: #abb4c5;
  font-size: 1.4rem;
}

/* ===================================== */
.testimonial-card {
  background-color: #2a2a2a;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 25px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.user-profile {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  border: 2px solid #404040;
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.verified-badge {
  color: #1d9bf0;
  font-size: 14px;
}

.user-title {
  font-size: 13px;
  color: #8b8b8b;
  margin: 2px 0 0 0;
}

.testimonial-text {
  color: #e1e1e1;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.container {
  max-width: 1200px;
}

.row {
  margin: 0 -12px;
}

.col-lg-4 {
  padding: 0 12px;
}

/* Masonry-like layout for different heights */
.testimonial-card.tall {
  min-height: 200px;
}

.testimonial-card.medium {
  min-height: 160px;
}

.testimonial-card.short {
  min-height: 140px;
}

@media (max-width: 768px) {
  .testimonial-card {
    margin-bottom: 20px;
  }

  body {
    padding: 20px 0;
  }
}

.fa-users {
  -webkit-text-stroke: 2px #9d9d9f; /* applies a border around icon shape */
  color: transparent; /* make the inside transparent */
  color: #262627;
  /* font-size: 1rem; */
}
/* CSS Variables - Color Palette */
:root {
  --primary-bg: #1a1a1a;
  --secondary-bg: #2a2a2a;
  --success-color: #28a745;
  --success-hover: #218838;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --card-bg: rgba(42, 42, 42, 0.8);
  --border-color: rgba(40, 167, 69, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --shadow-success: rgba(40, 167, 69, 0.2);
}

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

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 100%
  );
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.6rem;
}

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

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

/* Links */
a {
  color: var(--success-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--success-hover);
  text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

a:focus {
  outline: 2px solid var(--success-color);
  outline-offset: 2px;
}

/* Buttons */
button,
.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-hover)
  );
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
}

button:active {
  transform: translateY(-1px) scale(1.02);
}

button:focus {
  outline: 2px solid var(--success-color);
  outline-offset: 3px;
}

/* Utility Classes */
.highlight {
  background-clip: text;
  position: relative;
  font-weight: bold;
  color: var(--success-color);
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--success-color),
    var(--success-hover)
  );
  border-radius: 2px;
  animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1.4rem;
  }

  button {
    padding: 10px 25px;
    font-size: 1.2rem;
  }
}

/* ------------------------ */
.pricing-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 100%
  );
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(40, 167, 69, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(40, 167, 69, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(40, 167, 69, 0.08) 0%,
      transparent 50%
    );
  animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(-30px) translateY(30px);
  }
  66% {
    transform: translateX(30px) translateY(-20px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.section-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
  color: var(--success-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--success-color),
    var(--success-hover)
  );
  border-radius: 2px;
  animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

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

.pricing-card {
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--success-color);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1) 0%,
    rgba(40, 167, 69, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(40, 167, 69, 0.25);
}

.card-header {
  margin-bottom: 25px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.featured .card-title {
  color: var(--success-color);
}

.price-container {
  margin-bottom: 20px;
}

.original-price {
  color: var(--danger-color);
  font-size: 2.2rem;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.8;
}

.current-price {
  color: var(--success-color);
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

.price-note {
  color: var(--text-muted);
  font-size: 1.4rem;
  margin-top: 10px;
}

.installment-details {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
}

.installment-breakdown {
  color: var(--warning-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.warning-text {
  color: var(--danger-color);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 10px;
}

.features-list {
  text-align: left;
  margin: 25px 0;
}

.features-list li {
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.cta-button {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-hover)
  );
  border: none;
  border-radius: 25px;
  color: var(--text-light);
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
}

.urgency-timer {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.timer-text {
  color: var(--danger-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.timer-unit {
  background: rgba(220, 53, 69, 0.2);
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  min-width: 70px;
}

.timer-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--danger-color);
}

.timer-label {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.seat-warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.seat-warning i {
  color: var(--warning-color);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.seat-text {
  color: var(--warning-color);
  font-weight: 600;
  font-size: 1.4rem;
}

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

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .current-price {
    font-size: 2.8rem;
  }

  .timer-display {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ----------------------- */
/* Fixed Bottom Action Bar */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95),
    rgba(42, 42, 42, 0.95)
  );
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(40, 167, 69, 0.3);
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.8s ease;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.whatsapp-btn,
.register-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.register-btn {
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-hover)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.whatsapp-btn:hover,
.register-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.register-btn:hover {
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6);
}

.whatsapp-btn i,
.register-btn i {
  font-size: 1.8rem;
  animation: bounce 2s infinite;
}

/* Pulse ring animation for WhatsApp */
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  border-radius: 50px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* Sparkle animation for Register button */
.sparkle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: sparkle 1.5s infinite;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.sparkle::before {
  top: -15px;
  left: -10px;
  animation: sparkle 1.5s infinite 0.3s;
}

.sparkle::after {
  top: -10px;
  left: 10px;
  animation: sparkle 1.5s infinite 0.6s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Floating notification dots */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.register-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  animation: blink 1s infinite 0.5s;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

/* Glow effect on buttons */
.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.3),
    rgba(18, 140, 126, 0.3)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.register-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.3),
    rgba(33, 136, 56, 0.3)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover::after,
.register-btn:hover::after {
  opacity: 1;
}

/* Add some breathing room at the bottom of content */
.pricing-section {
  padding-bottom: 120px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .whatsapp-btn,
  .register-btn {
    max-width: 100%;
    padding: 12px 20px;
    font-size: 1.3rem;
  }

  .fixed-bottom-bar {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .action-buttons {
    gap: 10px;
  }

  .whatsapp-btn,
  .register-btn {
    padding: 10px 15px;
    font-size: 1.2rem;
  }

  .whatsapp-btn i,
  .register-btn i {
    font-size: 1.6rem;
  }
}
