/* ===== RESETS & BASE STYLES ===== */
:root {
  /* New Color Scheme - Modern, bold and unique */
  --primary-color: #6e00ff; /* Vibrant purple */
  --secondary-color: #ff3366; /* Bright pink */
  --accent-color-1: #00f2ea; /* Cyan/Turquoise */
  --accent-color-2: #ffde59; /* Bright Yellow */
  --dark-color: #15141b; /* Almost black with slight purple tint */
  --light-color: #ffffff;
  --gray-color: #f8f9fa;
  --gray-dark: #e9ecef;
  --border-color: rgba(255, 255, 255, 0.12);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #9446ff);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff7676);
  --gradient-accent: linear-gradient(135deg, var(--accent-color-1), #6afff6);
  --gradient-dark: linear-gradient(135deg, var(--dark-color), #2d2b3a);
  
  /* Shadows */
  --box-shadow: 0 10px 30px rgba(110, 0, 255, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(110, 0, 255, 0.15);
  --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Animations */
  --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Mono&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Cursor - Disabled */
html {
  cursor: auto; /* Restored default cursor */
  scroll-behavior: smooth;
}

/* Hidden but kept in case needed later */
.cursor-dot, .cursor-outline {
  display: none;
}

/* Page Loader - Removed */

body {
  font-family: var(--font-body);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: var(--light-color);
  font-size: 1rem;
  overflow-x: hidden;
  padding-top: 70px; /* Reduced padding to match the smaller header height */
}

/* Add a pseudo-element to fill any gap between header and content */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; /* Reduced height to match the header */
  background-color: rgba(21, 20, 27, 0.95); /* Same as header background */
  z-index: 9000; /* Below the header but above other content */
}

/* New Container Styles */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  margin-top: 20px; /* Add margin to ensure no overlap with header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Text gradients */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.accent-gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  text-decoration: none;
  font-family: var(--font-heading);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0) skewX(-15deg);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--light-color);
  box-shadow: 0 10px 20px -10px rgba(110, 0, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px -10px rgba(110, 0, 255, 0.7);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--light-color);
  box-shadow: 0 10px 20px -10px rgba(255, 51, 102, 0.5);
}

.btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px -10px rgba(255, 51, 102, 0.7);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-5px);
}

.btn-dark {
  background: var(--dark-color);
  color: var(--light-color);
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-5px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.7rem 0;
  z-index: 9999; /* Increased z-index to be higher than modals */
  transition: var(--transition-medium);
  background-color: rgba(21, 20, 27, 0.95); /* Add consistent background color */
  height: 70px; /* Reduced height for smaller border */
  display: flex;
  align-items: center;
}

header.scrolled {
  background-color: rgba(21, 20, 27, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo img {
  height: 130px;
  width: auto;
  margin-top: 30px;
  margin-bottom: -30px;
  position: relative;
  z-index: 10;
}

/* Keep old styling for reference but not active
.logo h1 {
  color: var(--light-color);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}

.logo span {
  color: var(--primary-color);
}
*/

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.schedule-link {
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--light-color) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.schedule-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.schedule-link i {
  margin-right: 5px;
}

.nav-links a {
  color: var(--light-color);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-medium);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

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

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown > a .dropdown-indicator {
  font-weight: 700;
  margin-left: 5px;
  font-size: 0.9rem;
  display: inline;
}

/* Remove the :after pseudo-element */
.nav-links .dropdown > a:after {
  content: none;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(21, 20, 27, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .dropdown-menu li {
  margin: 0;
  width: 100%;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--light-color);
  font-size: 0.9rem;
  border-left: 2px solid transparent;
}

.nav-links .dropdown-menu a:hover {
  background: rgba(110, 0, 255, 0.1);
  border-left: 2px solid var(--primary-color);
}

.nav-links .dropdown-menu a::after {
  display: none;
}

.login-button {
  margin-left: 1.5rem;
}

.btn-login {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--light-color);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--transition-medium);
  text-decoration: none;
}

.btn-login:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.mobile-nav {
  display: none;
  cursor: pointer;
  z-index: 2;
  font-size: 1.5rem;
  color: var(--light-color);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-color);
  padding-top: 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(110, 0, 255, 0.2) 0%, rgba(21, 20, 27, 0) 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h2 {
  color: var(--light-color);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.floating-image {
  width: 100%;
  border-radius: 30px;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.hero-image:hover .floating-image {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(110, 0, 255, 0.2), rgba(0, 242, 234, 0.1));
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hero-image:hover .floating-image::before {
  opacity: 0.5;
}

.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 5%;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  filter: blur(30px);
  opacity: 0.5;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--gradient-secondary);
  filter: blur(40px);
  opacity: 0.4;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  top: 40%;
  right: 20%;
  width: 80px;
  height: 80px;
  border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
  background: var(--accent-color-1);
  filter: blur(20px);
  opacity: 0.3;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(10deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(-15px) rotate(-10deg); }
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--light-color);
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(110, 0, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  margin-bottom: 1.5rem;
}

.services-header p {
  color: rgba(21, 20, 27, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  transition: var(--transition-medium);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(21, 20, 27, 0.8), transparent);
}

.service-content {
  position: relative;
  padding: 2rem;
  background: white;
  transform: translateZ(20px);
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-content h3 i {
  color: var(--primary-color);
}

.service-content p {
  color: rgba(21, 20, 27, 0.7);
  margin-bottom: 1.5rem;
}

.service-card .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* ===== FEATURES SECTION ===== */
.features {
  position: relative;
  padding: 8rem 0;
  background-color: var(--gray-color);
  overflow: hidden;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--primary-color);
  top: 30px;
  right: -30px;
  border-radius: 20px;
  z-index: 0;
}

.features-list {
  display: grid;
  gap: 2rem;
}

.features-header {
  margin-bottom: 3rem;
}

.features-header h2 {
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 20px;
  transition: var(--transition-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.feature-info p {
  color: rgba(21, 20, 27, 0.7);
  margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  position: relative;
  padding: 8rem 0;
  background-color: var(--gray-color);
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gradient-primary);
  filter: blur(100px);
  opacity: 0.1;
  top: -200px;
  left: -200px;
  z-index: 0;
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--gradient-secondary);
  filter: blur(80px);
  opacity: 0.1;
  bottom: -150px;
  right: -150px;
  z-index: 0;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.testimonials-header p {
  color: rgba(21, 20, 27, 0.7);
}

/* New Testimonials Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 5rem;
  font-family: serif;
  color: rgba(110, 0, 255, 0.08);
  line-height: 1;
}

.testimonial-top {
  display: flex;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.2);
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-info h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.testimonial-category {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 0.9rem;
}

.testimonial-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(21, 20, 27, 0.8);
  margin: 0;
  font-style: italic;
}

/* Original Testimonial Slider Styles (kept for other pages) */
.testimonial-slider {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

/* Media queries for responsive layout */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  font-family: serif;
  color: var(--primary-color);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-content {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-medium);
}

.slider-dot.active {
  background-color: var(--primary-color);
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 5rem 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  transition: var(--transition-medium);
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark-color);
  font-weight: 500;
}

/* ===== TUTORS SECTION ===== */
.tutors {
  padding: 8rem 0;
  background-color: var(--gray-color);
  position: relative;
  overflow: hidden;
}

.tutors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(110, 0, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.tutors-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.tutors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.tutor-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: var(--transition-medium);
  position: relative;
}

.tutor-card:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tutor-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.tutor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.tutor-content {
  padding: 2rem;
  position: relative;
}

.tutor-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(110, 0, 255, 0.05) 0%, transparent);
  z-index: -1;
}

.tutor-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.tutor-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.subject-tag {
  background-color: rgba(110, 0, 255, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tutor-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.stars {
  color: #FFB400;
  letter-spacing: 2px;
}

.review-count {
  color: rgba(21, 20, 27, 0.6);
  font-size: 0.9rem;
}

.tutor-card .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 8rem 0;
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  color: white;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(110, 0, 255, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-image {
  flex: 1;
  position: relative;
}

.cta-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--accent-color-2);
  border-radius: 20px;
  z-index: 0;
}

/* ===== BOOKING SECTION ===== */
.booking {
  padding: 8rem 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.05;
  filter: blur(50px);
  z-index: 0;
}

.booking-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.booking-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.booking-info {
  position: relative;
}

.booking-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://cdn.pixabay.com/photo/2016/03/26/22/21/books-1281581_1280.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  opacity: 0.1;
  z-index: -1;
}

.booking-info-inner {
  padding: 3rem;
  background-color: var(--dark-color);
  color: white;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-info-inner h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.booking-info-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking-feature i {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(110, 0, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.booking-feature p {
  margin-bottom: 0;
  font-size: 1rem;
}

.booking-form {
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(21, 20, 27, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-medium);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(110, 0, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.booking-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  transition: var(--transition-medium);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  min-width: 20px;
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition-medium);
    transform: translateX(-100%);
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .hero {
    padding-top: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .features-content {
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .testimonial-content {
    font-size: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
}