/* Modern White Theme Styles */

/* Import Google Fonts - Poppins for modern, professional look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #ff2e63;
  --secondary-color: #252a34;
  --accent-color: #08d9d6;
  --light-bg: #ffffff;
  --section-bg: #f8f9fa;
  --card-bg: #ffffff;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --border-color: #e1e8ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --gradient-primary: linear-gradient(135deg, #ff2e63 0%, #fe5f75 100%);
  --gradient-accent: linear-gradient(135deg, #08d9d6 0%, #09e6e3 100%);
}

/* Light Theme Overrides */
.light {
  --primaryBg: #ffffff;
  --secondaryBg: #f8f9fa;
  --primaryColor: #2d3436;
}

body {
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-top: 70px;
}

/* Dark mode navbar background */
body.dark nav {
  background-color: #252a34 !important;
}

body.light nav {
  background-color: #ffffff !important;
}

* {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.text-bold,
.title {
  font-weight: 700 !important;
}

.section-one-title {
  font-weight: 800 !important;
}

p, span {
  font-weight: 400;
}

.adv-desc,
.feature-box p,
.stat-card p {
  font-weight: 500;
}

/* Hero Section - Modern Clean Design */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px 35px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 217, 214, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.1); }
}

.hero-content {
  flex: 1;
  max-width: 650px;
  z-index: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 0;
  letter-spacing: -0.03em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  margin-right: 0.3em;
}

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

.hero-highlight {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 46, 99, 0.4);
}

.hero-btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 650px;
}

.hero-stat-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  min-width: 0;
}

.hero-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 46, 99, 0.15);
  border-color: var(--primary-color);
}

.stat-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ee 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hero-stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-primary);
  color: white;
}

.stat-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.stat-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-image {
  flex: 1;
  max-width: 480px;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.12));
  animation: floatImage 6s ease-in-out infinite;
}

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

/* Responsive Hero Section */
@media (max-width: 1200px) {
  .hero-section {
    padding: 15px 60px 30px;
    gap: 50px;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 15px 40px 30px;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }

  .hero-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 15px 20px 25px;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .hero-stat-card {
    padding: 14px 12px;
  }
}

/* Stats Section */
.second-section {
  background: white;
  padding: 60px 20px;
  box-shadow: var(--shadow-md);
  border-radius: 20px;
  margin: -40px 20px 40px;
  position: relative;
  z-index: 10;
}

.journey-items {
  transition: all 0.3s ease;
}

.journey-items:hover {
  transform: translateY(-5px);
}

.journey-items h4 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.journey-items p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Feature Boxes */
.feature-highlights {
  background: var(--section-bg);
  padding: 80px 20px;
}

.feature-box {
  background: white;
  padding: 40px 30px !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover::after {
  width: 400px;
  height: 400px;
}

.feature-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(255, 46, 99, 0.25);
  border-color: #ff2e63;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
}

.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-box:hover h3 {
  transform: scale(1.05);
  color: #ff2e63 !important;
}

.feature-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.feature-box:hover p {
  color: var(--text-dark) !important;
}

/* Icon emoji styling */
.feature-box h3::first-letter {
  font-size: 1.8rem;
  margin-right: 8px;
}

/* Add shine effect */
@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.feature-box:hover::before {
  animation: shine 1.5s ease infinite;
}

/* Skills & Resources Sections */
.skills-section,
.resources-section {
  padding: 80px 20px;
  position: relative;
}

.skills-section {
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.resources-section {
  background: linear-gradient(135deg, #f0fdff 0%, #fff 100%);
}

.skills-section h2,
.resources-section h2 {
  position: relative;
  display: inline-block;
}

.skills-section h2::after,
.resources-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Stats Cards */
.stats-section {
  background: linear-gradient(135deg, #252a34 0%, #3d4451 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.stats-section h2,
.stats-section h3,
.stats-section p {
  color: white !important;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.3), rgba(255, 46, 99, 0.1));
  border-radius: 12px;
  transition: all 0.4s ease;
}

.stat-card:hover::before {
  width: 300px;
  height: 300px;
}

.stat-card:hover::after {
  transform: rotate(180deg) scale(1.2);
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.5), rgba(255, 46, 99, 0.2));
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 46, 99, 0.5);
  background: rgba(255, 46, 99, 0.15) !important;
}

.stat-card h2,
.stat-card p,
.stat-card > div {
  position: relative;
  z-index: 1;
  color: white !important;
}

.stat-card > div:first-child {
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(255, 46, 99, 0.3));
}

.stat-card:hover > div:first-child {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 8px 16px rgba(255, 46, 99, 0.5));
}

/* Stat Card Number Animation */
@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stat-card:hover h2 {
  animation: numberPulse 1s ease infinite;
}

/* Course Card */
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.course-thumbnail {
  transition: transform 0.4s ease;
}

.card:hover .course-thumbnail {
  transform: scale(1.1);
}

.course-title {
  color: var(--text-dark);
}

.card-level {
  background: linear-gradient(135deg, #00b894 0%, #00d2a7 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.85rem;
}

.final-price {
  color: var(--primary-color);
  font-size: 2rem;
}

.prev-price {
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-percent {
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
}

/* Advantage Cards */
.advantage-section {
  background: var(--section-bg);
  padding: 80px 20px;
}

.adv-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.adv-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}

.adv-card img {
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.adv-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.adv-desc {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 80px 20px;
}

.faq-section .text-white {
  color: var(--text-dark) !important;
}

.faq-item {
  background: var(--section-bg) !important;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-light) !important;
  line-height: 1.6;
}

.faq-section a {
  color: var(--primary-color) !important;
}

/* Contact Form */
.contact-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 80px 20px;
}

.contact-form-section .text-white {
  color: var(--text-dark) !important;
}

.contact-form-section form {
  background: white !important;
  box-shadow: var(--shadow-lg);
}

.contact-form-section label {
  color: var(--text-dark) !important;
}

.contact-form-section input,
.contact-form-section textarea {
  border: 2px solid var(--border-color) !important;
  background: var(--section-bg) !important;
  color: var(--text-dark) !important;
  transition: all 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(255, 46, 99, 0.1);
}

.contact-form-section button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-section button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.4);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #252a34 0%, #2d3436 100%);
  padding: 60px 20px 30px;
  color: white;
}

.newsletter-section input {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease;
}

.newsletter-section input:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.newsletter-section button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-section button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.5);
}

/* Hero CTA Buttons */
.headerText a[href="#contact"] {
  background: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
}

.headerText a[href="#contact"]:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

/* Text Color Overrides */
.text-white {
  color: var(--text-dark);
}

.stats-section .text-white,
footer .text-white,
footer p,
footer h3,
footer a {
  color: white !important;
}

/* Footer specific overrides */
footer .footer-nav {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

footer .footer-nav:hover {
  color: var(--primary-color) !important;
}

footer .copyright {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Line Dividers */
.line-div {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
  margin: 40px 0;
}

/* Syllabus Cards */
.syllabus-section {
  position: relative;
}

.syllabus-card {
  background: white;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.syllabus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.03) 0%, rgba(8, 217, 214, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.syllabus-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 46, 99, 0.2);
  border-color: #ff2e63;
}

.paper-badge {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.syllabus-card:hover .paper-badge {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.5);
}

.paper-badge::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.syllabus-card:hover .paper-badge::after {
  opacity: 1;
}

.syllabus-btn {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
  z-index: 1;
}

.syllabus-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.syllabus-btn:hover::before {
  width: 300px;
  height: 300px;
}

.syllabus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.5);
  background: linear-gradient(135deg, #ff1744 0%, #ff5177 100%);
}

.syllabus-btn i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.syllabus-btn:hover i {
  transform: translateX(5px);
}

/* Syllabus Card Animation on Scroll */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.syllabus-card {
  animation: slideInUp 0.6s ease forwards;
}

.syllabus-card:nth-child(1) {
  animation-delay: 0.1s;
}

.syllabus-card:nth-child(2) {
  animation-delay: 0.2s;
}

.syllabus-card:nth-child(3) {
  animation-delay: 0.3s;
}

.syllabus-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Badge Pulse Animation */
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 46, 99, 0.5);
  }
}

.syllabus-card:hover .paper-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

/* Trusted by Students Section - Unified Design */
.trusted-section {
  position: relative;
}

.trust-stat-card-new {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 46, 99, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 46, 99, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-stat-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-stat-card-new:hover::before {
  opacity: 1;
}

.trust-stat-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 46, 99, 0.2);
  border-color: rgba(255, 46, 99, 0.3);
}

.trust-stat-icon-new {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.trust-stat-card-new:hover .trust-stat-icon-new {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 46, 99, 0.5);
}

.trust-stat-number-new {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.trust-stat-card-new:hover .trust-stat-number-new {
  transform: scale(1.08);
}

.trust-stat-label-new {
  color: #636e72;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.trust-stat-card-new:hover .trust-stat-label-new {
  color: #252a34;
}

/* Floating animation for support image */
@keyframes floatSupport {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Why Choose Us Section */
.why-choose-section {
  position: relative;
}

.why-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 35px 40px;
  background: white;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-reason-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.why-reason-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.why-reason-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.15);
  border-color: rgba(255, 46, 99, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fff9fa 100%);
}

.why-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  opacity: 0.3;
  transition: all 0.3s ease;
  line-height: 1;
}

.why-reason-item:hover .why-number {
  opacity: 0.6;
  transform: scale(1.1);
}

.why-content {
  flex: 1;
}

.why-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #252a34;
  margin: 0 0 10px 0;
  transition: all 0.3s ease;
}

.why-reason-item:hover .why-title {
  color: #ff2e63;
  transform: translateX(5px);
}

.why-description {
  font-size: 1rem;
  color: #636e72;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.why-reason-item:hover .why-description {
  color: #495057;
}

/* Staggered Animation */
.why-reason-item {
  animation: slideInLeft 0.6s ease forwards;
  opacity: 0;
}

.why-reason-item:nth-child(1) {
  animation-delay: 0.1s;
}

.why-reason-item:nth-child(2) {
  animation-delay: 0.2s;
}

.why-reason-item:nth-child(3) {
  animation-delay: 0.3s;
}

.why-reason-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

/* Responsive Why Choose Us */
@media (max-width: 768px) {
  .why-reason-item {
    flex-direction: column;
    gap: 20px;
    padding: 30px 25px;
    align-items: center;
    text-align: center;
  }

  .why-number {
    font-size: 3rem;
  }

  .why-title {
    font-size: 1.3rem;
  }

  .why-description {
    font-size: 0.95rem;
  }

  .why-reason-item:hover {
    transform: translateY(-5px);
  }

  .why-reason-item:hover .why-title {
    transform: none;
  }
}

/* Responsive Trusted Section */
@media (max-width: 1200px) {
  .trusted-section div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .trusted-section div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .trust-stat-card-new {
    padding: 35px 20px;
  }

  .trust-stat-icon-new {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .trust-stat-number-new {
    font-size: 2.8rem;
  }

  .trust-stat-label-new {
    font-size: 0.95rem;
  }
}

/* Course Cards Section */
.courses-section {
  position: relative;
}

.course-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f0f0f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.03) 0%, rgba(8, 217, 214, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.course-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(255, 46, 99, 0.2);
  border-color: #ff2e63;
}

.course-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image {
  transform: scale(1.1);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
  z-index: 1;
}

.course-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.course-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #252a34;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
}

.course-card:hover .course-card-title {
  color: #ff2e63;
}

.course-card-description {
  font-size: 1rem;
  color: #636e72;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.course-features li i {
  color: #ff2e63;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.course-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

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

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: #636e72;
  font-weight: 500;
}

.enroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.enroll-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.enroll-btn:hover::before {
  width: 300px;
  height: 300px;
}

.enroll-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.5);
  background: linear-gradient(135deg, #ff1744 0%, #ff5177 100%);
}

.enroll-btn i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.enroll-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Course Cards */
@media (max-width: 768px) {
  .course-image-wrapper {
    height: 200px;
  }

  .course-content {
    padding: 20px 20px 30px 20px;
  }

  .course-card-title {
    font-size: 1.3rem;
  }

  .course-card-description {
    font-size: 0.95rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .enroll-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Class Timings Section */
.timings-section {
  padding: 80px 20px;
  background: var(--primaryBg);
  position: relative;
}

.timings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 50px auto 0;
}

.timing-card {
  background: white;
  padding: 40px 35px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
}

.timing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.timing-card:nth-child(2) {
  animation-delay: 0.3s;
}

.timing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.03) 0%, rgba(8, 217, 214, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.timing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 46, 99, 0.2);
  border-color: #ff2e63;
}

.timing-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
  transition: all 0.4s ease;
  animation: iconBounce 2s ease-in-out infinite;
}

.timing-icon i {
  font-size: 2rem;
  color: white;
}

.timing-card:hover .timing-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 46, 99, 0.5);
  animation: none;
}

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

.timing-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}

.timing-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0 0 30px 0;
}

.timing-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.timing-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  animation: fadeInLeft 0.5s ease forwards;
  opacity: 0;
}

.timing-item:nth-child(1) {
  animation-delay: 0.4s;
}

.timing-item:nth-child(2) {
  animation-delay: 0.5s;
}

.timing-item:nth-child(3) {
  animation-delay: 0.6s;
}

.timing-item:nth-child(4) {
  animation-delay: 0.7s;
}

.timing-item i {
  color: #ff2e63;
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.timing-item:hover i {
  transform: scale(1.2) rotate(10deg);
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.timing-price {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 25px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  animation: scaleIn 0.5s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.timing-card:hover .timing-price {
  transform: scale(1.05);
  border-color: #ff2e63;
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.15);
}

.timing-price .price-amount {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 5px;
  animation: pulsePriceText 2s ease-in-out infinite;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

.timing-price .price-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.timing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid #ff2e63;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 1s;
  opacity: 0;
  transition: all 0.3s ease;
}

.timing-card:hover .timing-note {
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
  border-left-width: 6px;
}

.timing-note i {
  color: #ff2e63;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  animation: blinkIcon 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blinkIcon {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.timing-note span {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* Responsive for Timing Cards */
@media (max-width: 768px) {
  .timings-section {
    padding: 60px 15px;
  }

  .timings-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .timing-card {
    padding: 35px 25px;
  }

  .timing-title {
    font-size: 1.5rem;
  }

  .timing-icon {
    width: 60px;
    height: 60px;
  }

  .timing-icon i {
    font-size: 1.7rem;
  }
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--secondaryBg);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ff2e63;
  box-shadow: 0 4px 20px rgba(255, 46, 99, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ff2e63;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 1.2rem;
  color: #ff2e63;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.faq-question:hover {
  background: rgba(255, 46, 99, 0.05);
}

/* FAQ Animation on Load */
.faq-item {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 1rem;
    padding-right: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-icon {
    font-size: 1rem;
  }
}

/* Testimonials Slider Section */
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 60px auto 40px;
  padding: 0 80px;
}

.testimonials-slider {
  overflow: hidden;
  border-radius: 24px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: white;
  padding: 40px 35px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  transform: scale(0.9);
}

.testimonial-card.center {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 46, 99, 0.25);
  border-color: #ff2e63;
  z-index: 10;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.03) 0%, rgba(8, 217, 214, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 24px;
}

.testimonial-card.center::before {
  opacity: 1;
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
  transition: all 0.4s ease;
}

.testimonial-card.center .quote-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 46, 99, 0.5);
}

.quote-icon i {
  font-size: 1.5rem;
  color: white;
}

.testimonial-content {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.student-info {
  flex: 1;
}

.student-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.student-role {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

.grade-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card.center .grade-badge {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 46, 99, 0.5);
}

.grade-badge .grade {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.grade-badge .subject {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: white;
  border: 2px solid #ff2e63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 46, 99, 0.4);
}

.slider-btn i {
  font-size: 1.2rem;
  color: #ff2e63;
  transition: color 0.3s ease;
}

.slider-btn:hover i {
  color: white;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  width: 35px;
  border-radius: 6px;
}

.slider-dot:hover {
  background: #ff2e63;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .testimonials-slider-container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 30px 25px;
  }

  .testimonials-slider-container {
    padding: 0 50px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
  }

  .slider-btn i {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .student-name {
    font-size: 1.1rem;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
  }

  .quote-icon i {
    font-size: 1.2rem;
  }

  .grade-badge .grade {
    font-size: 1.5rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1d29 0%, #252a34 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.contact-title {
  animation: slideInDown 0.8s ease forwards;
  opacity: 0;
  color: #ffffff !important;
}

.contact-subtitle {
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  color: #ffffff !important;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.contact-container {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Contact Info Cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  border: 2px solid rgba(255, 46, 99, 0.2);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  cursor: pointer;
}

.contact-info-card:nth-child(1) {
  animation-delay: 0.5s;
}

.contact-info-card:nth-child(2) {
  animation-delay: 0.6s;
}

.contact-info-card:nth-child(3) {
  animation-delay: 0.7s;
}

.contact-info-card:nth-child(4) {
  animation-delay: 0.8s;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 46, 99, 0.1);
  border-color: #ff2e63;
  box-shadow: 0 15px 40px rgba(255, 46, 99, 0.3);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.4);
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 35px rgba(255, 46, 99, 0.6);
}

.contact-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 0 10px 0;
}

.contact-info-text {
  font-size: 1rem;
  color: #a0a0a0;
  font-weight: 500;
  margin: 0;
}

/* Contact Main (Form & Map) */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid rgba(255, 46, 99, 0.2);
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff2e63;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.textarea-icon {
  top: 25px;
  transform: translateY(0);
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 55px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #888;
}

.form-input:focus {
  border-color: #ff2e63;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 46, 99, 0.3);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
  color: #ff6b9d;
  transform: translateY(-50%) scale(1.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.form-submit-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.6);
  transform: translateY(-2px);
}

.form-submit-btn span {
  position: relative;
  z-index: 1;
}

.form-submit-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Section */
.map-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid rgba(255, 46, 99, 0.2);
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.map-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  filter: grayscale(20%) contrast(1.2);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(255, 46, 99, 0.6);
  animation: bounce 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.map-marker i {
  font-size: 2rem;
  color: white;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
}

/* Responsive Contact */
@media (max-width: 1024px) {
  .contact-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

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

  .contact-form-wrapper,
  .map-wrapper {
    padding: 30px 20px;
  }

  .form-title,
  .map-title {
    font-size: 1.5rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon i {
    font-size: 1.5rem;
  }

  .map-container {
    height: 350px;
  }
}

/* Instructor Section */
.instructor-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.instructor-main-title {
  animation: slideInDown 0.8s ease forwards;
  opacity: 0;
}

.instructor-card {
  max-width: 1200px;
  margin: 60px auto 0;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  border: 2px solid #f0f0f0;
}

.instructor-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  top: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #08d9d6 0%, #09e6e3 100%);
  bottom: -50px;
  left: -50px;
  animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  top: 50%;
  right: 10%;
  animation: float 18s ease-in-out infinite;
}

.instructor-content-wrapper {
  position: relative;
  z-index: 1;
}

/* Profile Section */
.instructor-profile {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
}

.profile-image-container {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  animation: zoomIn 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 4px solid transparent;
  border-top-color: #ff2e63;
  border-right-color: #ff2e63;
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}

.profile-ring-2 {
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  border: 3px solid transparent;
  border-bottom-color: #ff6b9d;
  border-left-color: #ff6b9d;
  border-radius: 50%;
  animation: rotate 4s linear infinite reverse;
}

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

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.instructor-info {
  flex: 1;
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.instructor-name {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 10px 0;
}

.instructor-title {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 600;
  margin: 0 0 30px 0;
}

/* Stats */
.instructor-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid #ff2e63;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.2);
}

.stat-item i {
  font-size: 2rem;
  color: #ff2e63;
}

.stat-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Description Section */
.instructor-description {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}

.description-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.main-description strong {
  color: #ff2e63;
  font-weight: 800;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #ff2e63;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.15);
}

.feature-item i {
  font-size: 1.3rem;
  color: #ff2e63;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
}

.closing-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid #ff2e63;
}

/* Responsive Instructor */
@media (max-width: 1024px) {
  .instructor-profile {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .instructor-stats {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .instructor-section {
    padding: 60px 15px;
  }

  .instructor-card {
    padding: 40px 25px;
  }

  .profile-image-container {
    width: 150px;
    height: 150px;
  }

  .instructor-name {
    font-size: 2rem;
  }

  .instructor-title {
    font-size: 1.1rem;
  }

  .instructor-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    width: 100%;
  }

  .main-description,
  .closing-description {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #1a1d29 0%, #252a34 100%);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  top: -200px;
  left: -100px;
  animation: float 20s ease-in-out infinite;
}

.cta-shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #08d9d6 0%, #09e6e3 100%);
  bottom: -150px;
  right: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.cta-shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  top: 50%;
  right: 20%;
  animation: float 18s ease-in-out infinite;
}

.cta-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Text Content */
.cta-text-content {
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.highlight-text {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 2px;
  animation: expand 1.5s ease forwards;
  animation-delay: 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes expand {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin: 0 0 40px 0;
  font-weight: 500;
}

/* CTA Features */
.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 45px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(255, 46, 99, 0.2);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.cta-feature:nth-child(1) {
  animation-delay: 0.3s;
}

.cta-feature:nth-child(2) {
  animation-delay: 0.4s;
}

.cta-feature:nth-child(3) {
  animation-delay: 0.5s;
}

.cta-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 46, 99, 0.1);
  border-color: #ff2e63;
  box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
}

.feature-icon-wrapper i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 0 3px 0;
}

.feature-content p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  color: white;
  box-shadow: 0 8px 30px rgba(255, 46, 99, 0.5);
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.7);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ff2e63;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.3);
}

.cta-btn span,
.cta-btn i {
  position: relative;
  z-index: 1;
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
  transform: translateX(5px);
}

/* Visual Side */
.cta-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 46, 99, 0.3);
}

.circle-1 {
  width: 400px;
  height: 400px;
  animation: pulse-ring 3s ease-in-out infinite;
}

.circle-2 {
  width: 320px;
  height: 320px;
  animation: pulse-ring 3s ease-in-out infinite 0.5s;
  border-color: rgba(8, 217, 214, 0.3);
}

.circle-3 {
  width: 240px;
  height: 240px;
  animation: pulse-ring 3s ease-in-out infinite 1s;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.visual-icon {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(255, 46, 99, 0.6);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.visual-icon i {
  font-size: 5rem;
  color: white;
}

.achievement-badge {
  position: absolute;
  bottom: 50px;
  right: 20px;
  background: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.badge-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1d29;
  line-height: 1;
}

.badge-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

/* Responsive CTA */
@media (max-width: 1024px) {
  .cta-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-visual {
    height: 400px;
  }

  .circle-1 {
    width: 350px;
    height: 350px;
  }

  .circle-2 {
    width: 280px;
    height: 280px;
  }

  .circle-3 {
    width: 210px;
    height: 210px;
  }

  .visual-icon {
    width: 140px;
    height: 140px;
  }

  .visual-icon i {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 15px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-visual {
    height: 350px;
  }

  .circle-1 {
    width: 300px;
    height: 300px;
  }

  .circle-2 {
    width: 230px;
    height: 230px;
  }

  .circle-3 {
    width: 160px;
    height: 160px;
  }

  .visual-icon {
    width: 100px;
    height: 100px;
  }

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

  .achievement-badge {
    bottom: 20px;
    right: 10px;
    padding: 15px 20px;
  }
}

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

/* Button Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-design,
.button-61 {
  animation: pulse 2s ease-in-out infinite;
}

.btn-design:hover,
.button-61:hover {
  animation: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .headerText h2 {
    font-size: 2.5rem;
  }

  .feature-box {
    padding: 30px 20px !important;
  }

  .stat-card {
    padding: 30px 15px !important;
  }
}

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

/* ==================== MODERN FOOTER ==================== */
.modern-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  margin-top: 100px;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    #ff2e63 25%,
    #ff6b9d 50%,
    #ff2e63 75%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating Background Shapes */
.modern-footer::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Footer Brand Column */
.footer-brand {
  animation: slideInLeft 0.8s ease forwards;
  opacity: 0;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 4px 15px rgba(255, 46, 99, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-color: #ff2e63;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.4);
}

.social-link i {
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Footer Columns */
.footer-column {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }
.footer-column:nth-child(5) { animation-delay: 0.4s; }

.footer-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-links a i {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #ff2e63;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Contact List */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact li i {
  color: #ff2e63;
  font-size: 16px;
  margin-top: 3px;
  min-width: 18px;
}

.footer-contact li span {
  flex: 1;
}

/* Contact Info Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item i {
  color: #ff2e63;
  font-size: 18px;
  margin-top: 2px;
  min-width: 20px;
}

.contact-item strong {
  color: white;
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}

/* Newsletter Form */
.newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ff2e63;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 46, 99, 0.1);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 46, 99, 0.5);
  background: linear-gradient(135deg, #ff1744 0%, #ff5177 100%);
}

.newsletter-btn i {
  transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.copyright strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-copyright i {
  color: #ff2e63;
  margin: 0 3px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff2e63;
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  .footer-column:nth-child(4),
  .footer-column:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    padding: 60px 0 0;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 40px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 0;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 50px;
  }

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

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}

.feature-box,
.stat-card,
.adv-card,
.faq-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }

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