    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
   :root {
      --primary: #7c3aed;
      --primary-dark: #5b21b6;
      --primary-light: #f5f3ff;
      --accent: #f59e0b;
      --accent-light: #fffbeb;
      --cyan: #06b6d4;
      --cyan-light: #ecfeff;
      --dark: #0f172a;
      --dark-secondary: #1e293b;
      --gray: #64748b;
      --gray-light: #94a3b8;
      --light-bg: #faf8ff;
      --white: #ffffff;
      --success: #10b981;
      --success-light: #ecfdf5;
      --rose: #f43f5e;
      --rose-light: #fff1f2;
      --blue: #3b82f6;
      --blue-light: #eff6ff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif !important;
    }

    body {
      /* font-family: 'Poppins', sans-serif; */
      background: var(--white);
       font-family: 'Poppins', sans-serif !important;
    }
*, *::before, *::after {
    box-sizing: border-box;
  }

  @keyframes rotate {
    100% {
      transform: rotate(1turn);
    }
  }
  
  .modules {
  background: var(--primary-gradient);
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 221, 255, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.modules:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 221, 255, 0.4);
}
  .choice{
    margin: -10px auto 10px auto;
    background-image: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
    color: white;
    padding: 5px;
    border-radius: 100%;
  }
  .p-justify{
    text-align: justify;
  }
/* .course{
    text-align: justify;
} */

/* ol, ul {
  padding-left: 1rem;
} */
  .course a {
    color: #007bff !important;
    text-decoration: none;
    cursor: pointer;
}
/* custom modal (not bootstrap) should use a distinct class to avoid clashing with bootstrap's built-in modal styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    background-color: #fff;
    /* margin: auto; */
    padding: 0px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s;
}
@keyframes slideIn {
    from { transform: translateY(-50px); }
    to { transform: translateY(0); }
}
.modal-header {
    /* background-color: #007bff;
    color: white; */
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.modal-body {
  padding: 0px;
  text-align: start;
  background-color: #f9f9f9;
}
.modal-footer {
    padding: 10px;
    background-color: #f9f9f9;
    text-align: right;
    position: sticky;
    bottom: 0;
    z-index: 101; /* make sure footer stays above body content when scrolling */
}
.close-btn {
    color: black;
    /* float: right; */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover,
.close-btn:focus {
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
}
.close-footer-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.close-footer-btn:hover {
    background-color: #0056b3;
}
.toastify {
  position: fixed;
 background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
  bottom: 20px;
  left: 5%;
  right: 5%;
  transform: translateX(-50%);
  max-width: 90%; /* Adjusted max-width to prevent full screen spread */
  width: fit-content !important;
  color: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9999999 !important;
  display: flex;
  align-items: center;
}
.toastify__close {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 9999999 !important;
}
/* .toastify__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.toastify__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #4CAF50;
  border-radius: 0 0 8px 8px;
  z-index: 9999999 !important;
  transform-origin: left;
  animation: progressAnimation 5s linear forwards;
}
@keyframes progressAnimation {
  0% {
      width: 100%;
  }
  100% {
      width: 0;
  }
} */
.toastify__icon {
  margin-right: 12px; /* Space between icon and text */
  font-size: 20px;
}
.navbar{
  border-radius: 30px !important;
}
audio{
  margin-bottom: 5px;
}
@keyframes pulse512 {
 0% {
  box-shadow: 0 0 0 0 #05bada66;
  transform: scale(1);

 }

 50% {
  box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  transform: scale(1.1);
 }

 100% {
  box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  transform: scale(1);
 }
}

/* .testimonials{
  text-align: justify;
} */
.featutes-icons{
  width: 120px;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
}

.table-custom {
  border-collapse: separate;
  border-spacing: 0 15px;
}
.table-custom thead th {
  background-color: #343a40;
  color: white;
  border: none;
}
.table-custom tbody tr {
  background: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.table-custom tbody tr:hover {
  background: #e9ecef;
}
.icon {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 8px;
}
.icon-check {
  color: #28a745;
}
.icon-times {
  color: #dc3545;
}
.icon-info {
  color: #17a2b8;
}
.highlight {
  background: #d1ecf1;
  font-weight: bold;
  color: #0c5460;
}
/* #visitorCount {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  font-size: 30px;
  background: radial-gradient(black, transparent);
  padding: 5px;
  border-radius: 8px;
} */

#animate-btn{
  padding: 8px 20px;
  border-radius: 30px;
  border: none;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* position: relative;
  overflow: hidden; */
  -webkit-animation: pulse 2s infinite;
 animation: pulse512 2s infinite;
}
#animate-btn:hover {
  transform: translateY(-2px);
  border: none;
}

#animate-btn span {
  position: relative;
  z-index: 2;
}

@keyframes pulse512 {
 0% {
  box-shadow: 0 0 0 0 #05bada66;
  transform: scale(1);

 }

 50% {
  box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  transform: scale(1.1);
 }

 100% {
  box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  transform: scale(1);
 }
}

/* Main Styles */
:root {
  --primary-gradient: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
  --primary-color-light: rgb(0, 221, 255);
  --primary-color-dark: rgb(255, 0, 212);
  --text-color: #333;
  --light-text: #fff;
  --chat-bg: #f5f5f5;
  --user-msg-bg: #e1f5fe;
  --bot-msg-bg: #f0f0f0;
  --border-radius: 15px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: #f9f9f9;
} */

/* Chatbot Trigger Button */
.chatbot-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: block;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  z-index: 999;
  transition: all 0.3s ease;
}

.chatbot-trigger i {
  color: var(--light-text);
  font-size: 24px;
  line-height: 60px;
  vertical-align: middle;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
}

/* Chat Notification Badge */
.chat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff3366;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: block;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: bounce 1s infinite;
}

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

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  left: auto;
  width: 350px;
  height: 500px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.chatbot-container.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  animation: fadeInUp 0.5s ease;
}

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

/* Chatbot Header */
.chatbot-header {
  background: var(--primary-gradient);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light-text);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.chatbot-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.chatbot-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.chatbot-controls {
  position: relative;
  z-index: 1;
}

.chatbot-controls button {
  background: transparent;
  border: none;
  color: var(--light-text);
  cursor: pointer;
  margin-left: 5px;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot-controls button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Chatbot Messages Area */
.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background-color: var(--chat-bg);
  background-image: 
      radial-gradient(circle at 25% 25%, rgba(0, 221, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(255, 0, 212, 0.05) 0%, transparent 50%);
}

/* Message container to handle floating elements */
.chatbot-messages::after {
  content: "";
  display: table;
  clear: both;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  line-height: 1.5;
}

/* User Message - Fixed width */
.user-message {
  background: var(--primary-gradient);
  color: var(--light-text);
  border-top-right-radius: 5px;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  max-width: fit-content;
  width: auto;
  float: right;
  clear: both;
}

/* Bot Message - Ensure proper alignment */
.bot-message {
  background-color: var(--bot-msg-bg);
  border-top-left-radius: 5px;
  margin-right: auto;
  border-left: 3px solid var(--primary-color-light);
  float: left;
  clear: both;
}

/* Suggested Buttons */
.chatbot-suggested-btns {
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  max-height: 120px;
  overflow-y: auto;
}

.suggested-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.suggested-btn:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Chatbot Input Area */
.chatbot-input {
  display: flex;
  padding: 12px 15px;
  background-color: white;
  border-top: 1px solid #eee;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.chatbot-input input:focus {
  border-color: var(--primary-color-light);
  box-shadow: 0 0 0 3px rgba(0, 221, 255, 0.2);
}

.chatbot-input button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot-input button:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.chatbot-input button i {
  font-size: 18px;
}

/* Appointment Summary - Enhanced */
.appointment-summary {
  background: linear-gradient(135deg, rgba(0, 221, 255, 0.05) 0%, rgba(255, 0, 212, 0.05) 100%);
  border: 2px solid rgba(0, 221, 255, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease, pulse 2s infinite;
  position: relative;
  overflow: hidden;
  clear: both;
  width: 100%;
  box-sizing: border-box;
}

.appointment-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 221, 255, 0.1) 0%, rgba(255, 0, 212, 0.1) 100%);
  opacity: 0.5;
  z-index: -1;
}

.appointment-summary h4 {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  margin: -5px -5px 15px -5px;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.appointment-summary h4::after {
  content: '✓';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.summary-content {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.appointment-summary p {
  margin: 12px 0;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 221, 255, 0.2);
}

.appointment-summary p:last-child {
  border-bottom: none;
}

.appointment-summary .share-instruction {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  color: var(--primary-color-dark);
  font-size: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: none;
}

.whatsapp-btn {
  display: block;
  width: 100%;
  background: linear-gradient(to right, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn i {
  font-size: 20px;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  padding: 12px 16px;
  background-color: var(--bot-msg-bg);
  border-radius: 18px;
  border-top-left-radius: 5px;
  width: fit-content;
  margin-bottom: 15px;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  align-items: center;
  max-width: 80%;
}

.typing-bubble {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.typing-dot {
  height: 8px;
  width: 8px;
  background: linear-gradient(to right, var(--primary-color-light), var(--primary-color-dark));
  border-radius: 50%;
  margin: 0 2px;
  animation: typingBounce 1.3s infinite ease;
  opacity: 0.7;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.typing-text {
  font-size: 13px;
  color: #666;
  font-style: italic;
}

.typing-ellipsis {
  display: inline-block;
  min-width: 16px;
}

@keyframes typingBounce {
  0%, 60%, 100% {
      transform: translateY(0);
  }
  30% {
      transform: translateY(-4px);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes blink {
  0%, 100% {
      opacity: 0.4;
  }
  50% {
      opacity: 1;
  }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(0, 221, 255, 0.4);
  }
  70% {
      box-shadow: 0 0 0 10px rgba(0, 221, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(0, 221, 255, 0);
  }
}

/* Responsive Design */
@media (max-width: 576px) {
  .chatbot-container {
      width: 90%;
      height: 70vh;
      bottom: 80px;
      right: 5%;
      left: auto;
  }
  
  .chatbot-trigger {
      bottom: 20px;
      right: 20px;
      left: auto;
  }
} 

#install-button {
  padding: 12px 25px; /* Increased padding for better clickability */
  border-radius: 15px;
  border: none;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px; /* Adjusted margin for better spacing */
  font-weight: bold;
  font-size: 16px; /* Slightly larger font size for better readability */
  color: white; /* Ensures text is visible on the gradient background */
  /* text-transform: uppercase; */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow for a more modern look */
 background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
  transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
  cursor: pointer; /* Ensures the button looks clickable */
}

#install-button:hover {
  background-image: linear-gradient(to right, rgb(255, 0, 212) 0%, rgb(0, 221, 255) 100%); /* Reversed gradient on hover */
  transform: translateY(-3px); /* Adds a lift effect on hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Slightly larger shadow on hover */
}

#install-button:active {
  transform: translateY(0); /* Removes the lift effect when clicked */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Reduces shadow on click */
}

#install-button span {
  position: relative;
  z-index: 2;
}

/* Champion CSS start */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

  /* ===== CHAMPION SECTION WRAPPER ===== */
  .champion-section {
    padding: 40px 16px;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }

  .champion-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .champion-section-sub {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
    font-weight: 400;
  }

  /* ===== CHAMPION CARD ===== */
  .champion-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 28px 32px;
    border-radius: 20px;
    background-image: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
    background-size: 200% 200%;
    animation: cardGradientShift 6s ease infinite;
    color: #fff;
    max-width: 700px;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.4s ease;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    box-shadow:
      0 6px 25px rgba(0, 221, 255, 0.15),
      0 6px 25px rgba(255, 0, 212, 0.15);
  }

  @keyframes cardGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Card glass overlay */
  .champion-card > .card-glass {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 100%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
  }

  /* Card shine sweep */
  .champion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );
    transform: skewX(-20deg);
    animation: cardSweep 5s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
  }

  @keyframes cardSweep {
    0% { left: -75%; }
    30% { left: 150%; }
    100% { left: 150%; }
  }

  /* Floating particles inside card */
  .card-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
  }

  .card-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
  }

  .card-particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
  .card-particle:nth-child(2) { left: 25%; animation-duration: 10s; animation-delay: 1s; width: 2px; height: 2px; }
  .card-particle:nth-child(3) { left: 45%; animation-duration: 7s; animation-delay: 2s; }
  .card-particle:nth-child(4) { left: 60%; animation-duration: 9s; animation-delay: 0.5s; width: 2px; height: 2px; }
  .card-particle:nth-child(5) { left: 75%; animation-duration: 11s; animation-delay: 3s; }
  .card-particle:nth-child(6) { left: 90%; animation-duration: 8s; animation-delay: 1.5s; width: 2px; height: 2px; }
  .card-particle:nth-child(7) { left: 35%; animation-duration: 12s; animation-delay: 4s; }
  .card-particle:nth-child(8) { left: 55%; animation-duration: 9s; animation-delay: 2.5s; width: 4px; height: 4px; }
  .card-particle:nth-child(9) { left: 80%; animation-duration: 10s; animation-delay: 0.8s; }
  .card-particle:nth-child(10) { left: 15%; animation-duration: 7s; animation-delay: 3.5s; width: 2px; height: 2px; }

  @keyframes floatParticle {
    0% { transform: translateY(100px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-200px); opacity: 0; }
  }

  .champion-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
      0 14px 45px rgba(0, 221, 255, 0.3),
      0 14px 45px rgba(255, 0, 212, 0.3);
  }

  /* ===== RIBBON ===== */
  .champion-card .ribbon {
    position: absolute;
    top: 22px;
    right: -40px;
    background: linear-gradient(135deg, #ffdd57, #ffaa00);
    color: #333;
    padding: 7px 46px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    animation: ribbonPulse 2s ease-in-out infinite;
  }

  @keyframes ribbonPulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 3px 20px rgba(255, 221, 87, 0.6); }
  }

  /* ===== PROFILE SECTION ===== */
  .champion-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    z-index: 3;
  }

  .champion-img-container {
    position: relative;
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Spinning gradient ring */
  .champion-img-container::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(
      #00ddff,
      #a855f7,
      #ff00d4,
      #ffdd57,
      #00ffcc,
      #a855f7,
      #ff00d4,
      #00ddff
    );
    animation: spinRing 3s linear infinite;
    z-index: 0;
  }

  @keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Pulsing outer glow */
  .champion-img-container::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: conic-gradient(
      rgba(0, 221, 255, 0.5),
      rgba(168, 85, 247, 0.5),
      rgba(255, 0, 212, 0.5),
      rgba(255, 221, 87, 0.5),
      rgba(0, 221, 255, 0.5)
    );
    filter: blur(16px);
    animation: spinRing 3s linear infinite, glowPulse 2.5s ease-in-out infinite;
    z-index: -1;
  }

  @keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(180deg) scale(1.15); }
  }

  /* Second orbiting ring */
  .orbit-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.25);
    animation: spinRingSlow 8s linear infinite;
    z-index: 0;
    pointer-events: none;
  }

  .orbit-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffdd57;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 221, 87, 0.8);
  }

  .orbit-ring::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #00ddff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.8);
  }

  @keyframes spinRingSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Image wrapper */
  .champion-img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    z-index: 1;
    overflow: hidden;
  }

  .champion-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .champion-card:hover .champion-img-wrap img {
    transform: scale(1.08);
  }

  /* Image shine sweep */
  .champion-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.55) 50%,
      transparent 70%
    );
    border-radius: 50%;
    animation: imgShine 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
  }

  @keyframes imgShine {
    0% { left: -100%; }
    60% { left: 100%; }
    100% { left: 100%; }
  }

  /* Sparkle particles around image */
  .sparkle-container {
    position: absolute;
    inset: -22px;
    z-index: 3;
    pointer-events: none;
  }

  .sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
    animation: sparkleFloat 2.5s ease-in-out infinite;
    opacity: 0;
  }

  .sparkle:nth-child(1) { top: 5%; left: 50%; animation-delay: 0s; }
  .sparkle:nth-child(2) { top: 25%; right: 0%; animation-delay: 0.5s; width: 4px; height: 4px; }
  .sparkle:nth-child(3) { bottom: 10%; right: 5%; animation-delay: 1s; width: 5px; height: 5px; }
  .sparkle:nth-child(4) { bottom: 5%; left: 15%; animation-delay: 1.5s; width: 4px; height: 4px; }
  .sparkle:nth-child(5) { top: 15%; left: 5%; animation-delay: 0.8s; width: 5px; height: 5px; }
  .sparkle:nth-child(6) { top: 50%; left: -5%; animation-delay: 1.2s; width: 3px; height: 3px; }
  .sparkle:nth-child(7) { bottom: 30%; right: -3%; animation-delay: 0.3s; width: 5px; height: 5px; }
  .sparkle:nth-child(8) { top: 0%; left: 30%; animation-delay: 1.8s; width: 4px; height: 4px; }

  @keyframes sparkleFloat {
    0% { opacity: 0; transform: scale(0) translateY(0); }
    30% { opacity: 1; transform: scale(1) translateY(-5px); }
    60% { opacity: 1; transform: scale(0.8) translateY(-10px); }
    100% { opacity: 0; transform: scale(0) translateY(-16px); }
  }

  /* Star bursts */
  .star-burst {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .star-burst::before,
  .star-burst::after {
    content: '✦';
    position: absolute;
    font-size: 13px;
    color: #ffdd57;
    text-shadow: 0 0 10px rgba(255, 221, 87, 0.9);
    animation: starPop 2s ease-in-out infinite;
    opacity: 0;
  }

  .star-burst::before { top: -10px; right: 8px; animation-delay: 0.5s; }
  .star-burst::after { bottom: -4px; left: 4px; font-size: 10px; animation-delay: 1.5s; }

  @keyframes starPop {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    40% { opacity: 1; transform: scale(1.2) rotate(20deg); }
    70% { opacity: 0.8; transform: scale(1) rotate(-10deg); }
    90% { opacity: 0; transform: scale(0.5) rotate(30deg); }
  }

  /* Extra twinkling stars */
  .star-extra {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    font-size: 8px;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.9);
    animation: starPop 3s ease-in-out infinite;
    opacity: 0;
  }
  .star-extra:nth-child(1) { top: 40%; left: -12px; animation-delay: 0.8s; font-size: 10px; color: #00ddff; text-shadow: 0 0 8px rgba(0,221,255,0.8); }
  .star-extra:nth-child(2) { top: 10%; right: -8px; animation-delay: 2s; font-size: 7px; color: #ff00d4; text-shadow: 0 0 8px rgba(255,0,212,0.8); }
  .star-extra:nth-child(3) { bottom: 20%; left: -6px; animation-delay: 2.8s; font-size: 9px; }

  /* Crown */
  .champion-crown {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    z-index: 6;
    filter: drop-shadow(0 3px 8px rgba(255, 221, 87, 0.7));
    animation: crownBounce 2s ease-in-out infinite;
  }

  @keyframes crownBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(-6px) rotate(-3deg); }
    75% { transform: translateX(-50%) translateY(-3px) rotate(3deg); }
  }

  /* Name */
  .champion-profile-name {
    margin-top: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    position: relative;
  }

  .champion-profile-name::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.7), transparent);
    margin: 6px auto 0;
    border-radius: 2px;
  }

  .champion-tag {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ===== RIGHT: INFO ===== */
  .champion-info {
    flex: 1;
    z-index: 3;
    padding-top: 2px;
  }

  .champion-quote-icon {
    font-size: 1.8rem;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 4px;
    display: block;
  }

  .champion-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
  }

  .champion-info p strong {
    color: #ffdd57;
    font-weight: 700;
  }

  /* Stats bar */
  .champion-stats-bar {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 600;
    color: #fff;
    transition: background 0.3s;
  }

  .stat-chip:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  .stat-chip .stat-emoji {
    font-size: 0.85rem;
  }

  /* ===== CTA SECTION ===== */
  .champion-cta-wrapper {
    margin-top: 24px;
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .champion-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background-image: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #ff3b30, #ff8c00);
    background-size: 200% 200%;
    animation: ctaGradient 4s ease infinite;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow:
      0 4px 20px rgba(0, 221, 255, 0.25),
      0 4px 20px rgba(255, 0, 212, 0.2);
    position: relative;
    overflow: hidden;
  }

  @keyframes ctaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .champion-cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
    transform: skewX(-20deg);
    animation: ctaShine 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes ctaShine {
    0% { left: -75%; }
    35% { left: 150%; }
    100% { left: 150%; }
  }

  .champion-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
      0 10px 35px rgba(0, 221, 255, 0.4),
      0 10px 35px rgba(255, 0, 212, 0.35);
    color: #fff;
    text-decoration: none;
  }

  .champion-cta-btn:active {
    transform: translateY(0) scale(0.97);
  }

  .champion-cta-btn .cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: transform 0.3s ease, background 0.3s;
    backdrop-filter: blur(4px);
  }

  .champion-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
  }

  .champion-cta-sub {
    margin-top: 10px;
    font-size: 0.78rem;
    color: #999;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .champion-cta-sub .pulse-dot {
    width: 7px;
    height: 7px;
    background: #ff0000;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.5s ease-in-out infinite;
  }

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

  /* Social proof mini text */
  .champion-social-proof {
    margin-top: 8px;
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mini-avatars {
    display: flex;
  }

  .mini-avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    margin-left: -6px;
    border: 2px solid #fff;
  }

  .mini-avatars span:first-child { margin-left: 0; }
  .mini-avatars span:nth-child(1) { background: linear-gradient(135deg, #00ddff, #a855f7); }
  .mini-avatars span:nth-child(2) { background: linear-gradient(135deg, #a855f7, #ff00d4); }
  .mini-avatars span:nth-child(3) { background: linear-gradient(135deg, #ff00d4, #ffaa00); }
  .mini-avatars span:nth-child(4) { background: linear-gradient(135deg, #00ddff, #00ffaa); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 600px) {
    .champion-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 28px 22px;
      gap: 18px;
    }

    .champion-card .ribbon {
      top: 18px;
      right: -46px;
      font-size: 0.62rem;
    }

    .champion-info p {
      font-size: 0.88rem;
    }

    .champion-stats-bar {
      justify-content: center;
    }

    .champion-cta-btn {
      padding: 13px 26px;
      font-size: 0.87rem;
    }

    .champion-section-title {
      font-size: 1.6rem;
    }

    .champion-quote-icon {
      display: none;
    }
  }


/* Champion CSS end */
