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

:root {
  --primary-color: #4a00e0;
  --secondary-color: #8e2de2;
  --light-purple: rgba(142, 45, 226, 0.1);
  --text-dark: #333;
  --text-medium: #555;
  --text-light: #666;
  --white: #fff;
  --gray-light: #f8f9fa;
  --gray-medium: #e1e1e1;
  --error-color: #ff3860;
  --success-color: #23d160;
  --border-radius: 10px;
  --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  --text-light-2: #f8f9fa;
  --text-medium-2: #e1e1e1;
  --text-dark-2: #212529;
  --bg-dark: #0f1112;
  --bg-darker: #070809;
  --footer-secondary: #181a1b;
  --border-color: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease;
  --border-radius-2: 8px;
  --bg-light: #f8f9fa;
  --box-shadow-2: 0 10px 30px rgba(0, 0, 0, 0.1);
  --primary-light: #8e2de2;
  --accent-color: #ff3366;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --medium-gray: #9a97a1;
  --text-color: #403e43;
  --warning-color: #ecc94b;
  --danger-color: #f56565;
  --border-radius: 8px;
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --primary-gradient: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
  --section-padding: 60px 0;
  --light-color: #f8f9fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --border-radius: 4px;
  --transition-speed: 0.3s;
  --purple-light: #9b87f5;
  --purple-dark: #7e69ab;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  background: #f9fafb;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.gradient-text {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gradient-bg {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: #f9fafb;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  width: 100%;
  padding: 13px 36px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 50;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .navbar {
    padding: 1rem 2.5rem;
  }
}

.navbar .container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a00e0;
  transition: all 0.4s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
}

.logo:hover {
  transform: rotateY(20deg) scale(1.05);
}

/* Navigation Menu */
.nav-menu {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-item {
  color: #1f2937;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-item:hover {
  color: #4a00e0;
  transform: translateY(-2px) rotateX(5deg);
  text-shadow: 0 0 10px rgba(74, 0, 224, 0.4);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  transition: width 0.3s ease;
}

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

.nav-item.active {
  color: #4a00e0;
  text-shadow: 0 0 10px rgba(74, 0, 224, 0.4);
}

.nav-item.active::after {
  width: 100%;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #4a00e0, #8e2de2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  font-size: 16px;
  border: none;
  outline: none;
}

@media (min-width: 768px) {
  .cta-button {
    padding: 0.5rem 1.5rem;
  }
}

.cta-button:hover {
  transform: scale(1.05) rotateX(10deg);
  box-shadow: 0 10px 20px rgba(74, 0, 224, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2)
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #1f2937;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile Menu */
/* Mobile Menu - Improved */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1),
    opacity 0.3s ease-in-out;
  overflow-y: auto;
}
@media (max-width: 600px) {
  #mobile-menu {
    width: 70%;
  }
}
@media (max-width: 420px) {
  #mobile-menu {
    width: 100%;
  }
}
#mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.mobile-menu-items a {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem;
  margin: 0.5rem 0;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.mobile-menu-items a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0.75rem;
  left: 50%;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-menu-items a:hover:after {
  width: 30%;
}

.mobile-menu-items a:hover {
  color: #4a00e0;
  transform: translateY(-3px);
}

.mobile-menu-items .cta-button {
  margin-top: 1.5rem;
  width: 80%;
  padding: 1rem;
  font-size: 1.125rem;
}

.mobile-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #4a00e0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  background-color: rgba(74, 0, 224, 0.1);
  transform: rotate(90deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 48;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.menu-social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
  color: white;
}

/* Hamburger Menu Button Animation */
.hamburger {
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 51;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1f2937;
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #4a00e0;
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #4a00e0;
}

/* No-scroll class to prevent background scrolling */
body.no-scroll {
  overflow: hidden;
}

/* Mobile-specific styles */
@media (max-width: 900px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  #mobile-menu-button {
    display: block;
  }
  .first-btn {
    display: none !important;
  }

  /* Active mobile menu animation */
  .mobile-menu-items a {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  #mobile-menu.active .mobile-menu-items a {
    transform: translateY(0);
    opacity: 1;
  }

  /* Staggered animation for menu items */
  #mobile-menu.active .mobile-menu-items a:nth-child(1) {
    transition-delay: 0.1s;
  }
  #mobile-menu.active .mobile-menu-items a:nth-child(2) {
    transition-delay: 0.15s;
  }
  #mobile-menu.active .mobile-menu-items a:nth-child(3) {
    transition-delay: 0.2s;
  }
  #mobile-menu.active .mobile-menu-items a:nth-child(4) {
    transition-delay: 0.25s;
  }
  #mobile-menu.active .mobile-menu-items a:nth-child(5) {
    transition-delay: 0.3s;
  }
  #mobile-menu.active .mobile-menu-items a:nth-child(6) {
    transition-delay: 0.35s;
  }
  #mobile-menu.active .mobile-menu-items .cta-button {
    transition-delay: 0.4s;
  }
}
.container {
  max-width: 1536px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  padding-top: 5rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .hero-section .content-wrapper {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .hero-content {
    width: 100% !important;
  }
  .hero-title h1 {
    font-size: 32px !important;
  }
  .feature-cards {
    bottom: 0rem !important;
    right: 0rem !important;
  }
}

/* Hero Content */
.geometric-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}

.shape-circle {
  border-radius: 50%;
}

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

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, #ffe29f 0%, #ffa99f 48%, #ff719a 100%);
  bottom: -50px;
  left: 10%;
  animation: float-slow 12s ease-in-out infinite alternate;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(to right, #accbee 0%, #e7f0fd 100%);
  top: 30%;
  left: -50px;
  animation: float-slow 10s ease-in-out infinite;
}

.shape-square {
  width: 120px;
  height: 120px;
  background: linear-gradient(to top, #d299c2 0%, #fef9d7 100%);
  bottom: 20%;
  right: 10%;
  transform: rotate(45deg);
  animation: rotate-slow 20s linear infinite;
}

.shape-rectangle {
  width: 200px;
  height: 100px;
  background: linear-gradient(to right, #ee9ca7, #ffdde1);
  top: 60%;
  right: -50px;
  transform: rotate(-15deg);
  animation: float-slow 18s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes rotate-slow {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(405deg);
  }
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed), background-color var(--transition-speed);
  box-shadow: 0 4px 12px rgba(255, 87, 51, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 87, 51, 0.3);
  background-color: #e84a2e;
}

.stats-container {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero-image-container {
  position: relative;
  overflow: visible;
}

.hero-image {
  border-radius: 12px;
  max-width: 90%;
  margin-left: auto;
  z-index: 3;
  filter: drop-shadow(0 0 0.5rem #8e2de2);
  transition: var(--transition);
}
.hero-image:hover {
  filter: drop-shadow(0 0 1rem #4a00e0);
  transform: scale(1.1);
}

.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 87, 51, 0.05) 100%
  );
  top: -20%;
  right: -20%;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(26, 34, 56, 0.05) 100%
  );
  bottom: -15%;
  right: 10%;
}

.trainer-badge {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 56px;
  height: 56px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 4;
  animation: float 3s ease-in-out infinite;
}

.trainer-badge-inner {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.testimonial-bar {
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.testimonial-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.testimonial-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.testimonial-divider {
  width: 3px;
  height: 40px;
  background-color: var(--gray-300);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #111827;
  border: 2px solid #4a00e0;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 8px;
  animation: slideUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.register-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #4a00e0, #8e2de2);
  transition: height 0.3s ease;
  z-index: -1;
}

.register-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.register-btn:hover::before {
  height: 100%;
}

.design-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.5s ease;
}

.design-circle-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.15)
  );
  top: 10%;
  left: -150px;
  filter: blur(40px);
}

.design-circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(255, 111, 97, 0.1),
    rgba(255, 184, 140, 0.15)
  );
  bottom: 10%;
  right: 10%;
  filter: blur(30px);
}

.design-circle-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  top: 40%;
  right: 40%;
  filter: blur(25px);
}

.design-circle-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.08),
    rgba(142, 45, 226, 0.12)
  );
  top: 20%;
  left: 20%;
  filter: blur(35px);
}

.design-circle-5 {
  width: 180px;
  height: 180px;
  background: linear-gradient(
    135deg,
    rgba(255, 111, 97, 0.05),
    rgba(255, 184, 140, 0.1)
  );
  bottom: 30%;
  left: 30%;
  filter: blur(28px);
}

.design-line {
  position: absolute;
  z-index: 0;
  transition: transform 0.5s ease;
}

.design-line-1 {
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.3)
  );
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
}

.design-line-2 {
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 111, 97, 0.1),
    rgba(255, 184, 140, 0.3)
  );
  bottom: 20%;
  left: 20%;
  transform: rotate(-30deg);
}

.design-line-3 {
  width: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.3)
  );
  top: 50%;
  left: 10%;
  transform: rotate(60deg);
}

.design-line-4 {
  width: 180px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 111, 97, 0.1),
    rgba(255, 184, 140, 0.3)
  );
  bottom: 10%;
  right: 20%;
  transform: rotate(-45deg);
}

.design-dot-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 4px);
  grid-template-rows: repeat(4, 4px);
  grid-gap: 15px;
  transform: rotate(45deg);
  z-index: 0;
  transition: transform 0.5s ease;
}

.design-dot-grid-1 {
  top: 30%;
  right: 5%;
}

.design-dot-grid-2 {
  top: 60%;
  left: 10%;
}

.design-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(74, 0, 224, 0.3);
}

/* Particle Animation */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(74, 0, 224, 0.5);
  pointer-events: none;
  animation: particleFade 2s ease-out forwards;
}
.trainer-badge-inner {
  background: linear-gradient(to right, #4a00e0, #8e2de2);
  animation: pulse 2s infinite;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.accent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, #4a00e0, #8e2de2); */
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
  color: white;
  font-size: 24px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px 10px rgba(255, 107, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

@keyframes particleFade {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0) translate(var(--moveX), var(--moveY));
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero {
    padding: 7rem 0 3rem;
  }
  .cta-button {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-container {
    order: -1;
    margin-bottom: 2rem;
    margin-top: 100px;
  }

  .hero-image {
    margin: 0 auto;
    max-width: 80%;
  }

  .shape-1,
  .shape-2 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .stats-container {
    gap: 2rem;
  }
}

@media (max-width: 750px) {
  .testimonial-bar {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-divider {
    height: 3px;
    width: 100px;
  }
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Fluid Typography */
.text-fluid-4xl {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.text-fluid-6xl {
  font-size: clamp(3rem, 8vw, 5rem);
}

/* Hidden class for JavaScript toggling */
.hidden {
  display: none;
}

/* About Section Styles */
.about-section {
  padding: 120px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(200px, -200px);
  z-index: 1;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(-150px, 150px);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.highlight {
  color: #4a00e0;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 5px;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.2)
  );
  z-index: -1;
}

.section-underline {
  width: 0px;
  height: 0px;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Trainer Profile */
.trainer-profile {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.trainer-image-container-2 {
  flex: 0 0 360px;
  position: relative;
}

.trainer-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trainer-image-2 {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.trainer-image-wrapper:hover .trainer-image-2 {
  transform: scale(1.05);
}

.trainer-experience {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: white;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 20px rgba(74, 0, 224, 0.3);
}

.experience-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.trainer-bio {
  flex: 1;
}

.trainer-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.trainer-title {
  font-size: 1.1rem;
  color: #4a00e0;
  font-weight: 600;
  margin-bottom: 20px;
}

.trainer-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
}

.credential i {
  color: #4a00e0;
  font-size: 1.2rem;
}

.bio-text {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.trainer-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #4a00e0;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.2;
}

.trainer-contact {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.trainer-contact-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 87, 51, 0.3);
}
@media (max-width: 991px) {
  .trainer-contact-button {
    display: flex;
    width: fit-content;
    margin: 10px auto;
  }
}

.trainer-contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 87, 51, 0.3);
  background-color: #2d55dada;
  color: white;
}

/* Specialties Section */
.specialties-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.subsection-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  text-align: center;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.specialty-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.specialty-card:hover {
  transform: perspective(1000px) rotateX(5deg) translateY(-10px);
  box-shadow: 0 15px 35px rgba(74, 0, 224, 0.1);
  border-color: var(--primary-color);
}

.specialty-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.15)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1);
}

.specialty-icon i {
  font-size: 2rem;
  color: #4a00e0;
  transition: color 0.3s ease;
}

.specialty-card:hover .specialty-icon i {
  color: var(--primary-color);
}

.specialty-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.specialty-card p {
  color: #6b7280;
  line-height: 1.5;
}

.specialty-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 99, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.specialty-card:hover .specialty-overlay {
  transform: translateY(0);
  opacity: 1;
}

.learn-more-button {
  padding: 0.5rem 1rem;
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.learn-more-button:hover {
  background-color: var(--gray-100);
}

/* Philosophy Section */
.philosophy-section {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.philosophy-content {
  flex: 1;
}

.philosophy-quote {
  position: relative;
  padding: 30px 0 30px 50px;
  margin-bottom: 30px;
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 3rem;
  color: rgba(74, 0, 224, 0.2);
}

.philosophy-quote blockquote {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  font-style: italic;
}

.philosophy-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.philosophy-principles {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
}

.principle h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.principle-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.principle p {
  color: #6b7280;
  line-height: 1.6;
  padding-left: 50px;
}

.philosophy-conclusion {
  font-size: 1.1rem;
  color: #4b5563;
  font-weight: 500;
}

.about-cta-button {
  display: flex;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(74, 0, 224, 0.3);
  margin: 30px auto;
  width: fit-content;
}

.about-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(74, 0, 224, 0.4);
  color: white;
}

.philosophy-image {
  flex: 0 0 450px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-img {
  width: 100%;
  height: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(74, 0, 224, 0.3)
  );
}

.philosophy-image:hover .philosophy-img {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .trainer-profile {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .trainer-image-container-2 {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 auto;
  }

  .trainer-experience {
    right: 0;
  }

  .trainer-credentials {
    justify-content: center;
  }

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

  .philosophy-section {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .philosophy-image {
    flex: 0 0 auto;
    max-width: 600px;
    margin: 0 auto;
  }
}

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

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

  .subsection-title {
    font-size: 1.8rem;
  }

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

  .trainer-stats {
    flex-direction: column;
    gap: 20px;
  }

  .philosophy-quote blockquote {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }

  .trainer-name {
    font-size: 1.8rem;
  }

  .trainer-image-container-2 {
    width: 100%;
  }

  .trainer-experience {
    width: 90px;
    height: 90px;
  }

  .experience-number {
    font-size: 2rem;
  }

  .credential {
    flex-direction: column;
    gap: 5px;
  }

  .philosophy-quote {
    padding: 20px 0 20px 40px;
  }

  .quote-icon {
    font-size: 2.5rem;
  }

  .principle h4 {
    font-size: 1.1rem;
  }

  .principle p {
    padding-left: 30px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(-100px, -100px);
  z-index: 1;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(150px, 150px);
  z-index: 1;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.highlight {
  color: #4a00e0;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 5px;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.2)
  );
  z-index: -1;
}

.section-underline {
  width: 80px;
  height: 0px;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Categories */
.services-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-tab {
  background: none;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  border-color: transparent;
  color: white;
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.2);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

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

.service-icon-wrapper {
  margin-bottom: 25px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.15)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #4a00e0;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  transform: rotate(5deg) scale(1.1);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 0.95rem;
}

.service-detail i {
  color: #4a00e0;
  font-size: 1.1rem;
}

.service-cta {
  display: inline-block;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
  align-self: flex-start;
}

.service-cta:hover {
  box-shadow: 0 8px 20px rgba(74, 0, 224, 0.4);
  transform: translateY(-3px);
  color: white;
}

/* Featured Service */
.featured-service {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #4a00e0, #8e2de2) border-box;
  box-shadow: 0 15px 40px rgba(74, 0, 224, 0.15);
}

.service-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
}

/* Service Packages */
.service-packages {
  margin-bottom: 80px;
}

.subsection-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 0, 224, 0.1);
}

.featured-package {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #4a00e0, #8e2de2) border-box;
  box-shadow: 0 15px 40px rgba(74, 0, 224, 0.15);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4a00e0;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 5px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
}

.package-feature i {
  color: #4a00e0;
  font-size: 1.2rem;
}

.package-feature.inactive {
  color: #9ca3af;
}

.package-feature.inactive i {
  color: #9ca3af;
}

.package-cta {
  display: block;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.package-cta:hover {
  box-shadow: 0 8px 20px rgba(74, 0, 224, 0.4);
  transform: translateY(-3px);
  color: white;
}

/* Services CTA */
/* Services CTA (continued) */
.services-cta {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  border-radius: 20px;
  padding: 60px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(74, 0, 224, 0.3);
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
}

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

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-button-2 {
  display: inline-block;
  background-color: white;
  color: #4a00e0;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-package {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }

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

  .subsection-title {
    font-size: 1.8rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .featured-package {
    grid-column: span 1;
  }

  .services-cta {
    padding: 40px 30px;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .services-categories {
    gap: 10px;
    margin-bottom: 40px;
  }

  .category-tab {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 30px 25px;
  }

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

  .service-icon i {
    font-size: 1.8rem;
  }

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

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .services-categories {
    flex-direction: column;
    max-width: 250px;
    margin: 0 auto 40px;
  }

  .category-tab {
    width: 100%;
    text-align: center;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-cta {
    width: 100%;
    text-align: center;
  }

  .package-badge {
    right: 50%;
    transform: translateX(50%);
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .package-cta {
    width: 100%;
  }
}

/* Animation Effects */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.featured-service {
  animation: pulse 3s infinite ease-in-out;
}

.featured-package {
  animation: pulse 3s infinite ease-in-out;
  animation-delay: 1.5s;
}

/* Hover Effects */
.service-card:hover .service-title {
  color: #4a00e0;
}

.package-card:hover .package-title {
  color: #4a00e0;
}

/* Accessibility Focus States */
.category-tab:focus,
.service-cta:focus,
.package-cta:focus,
.cta-button:focus {
  outline: 2px solid #4a00e0;
  outline-offset: 2px;
}

/* Custom Scrollbar */
.services-section::-webkit-scrollbar {
  width: 10px;
}

.services-section::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.services-section::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  border-radius: 5px;
}

.services-section::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3b00b3, #7e28c9);
}

.contact-section {
  padding: 100px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.95)
    ),
    url("/api/placeholder/1200/800") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.05;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  opacity: 0.05;
  bottom: -200px;
  right: -200px;
  z-index: 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: var(--transition);
  padding: 10px;
  border-radius: 5px;
}

/* .info-item:hover {
      background-color: var(--light-purple);
      transform: translateX(5px);
  } */

.info-item .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(74, 0, 224, 0.3);
  transition: var(--transition);
}

.info-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.info-item .content h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.info-item .content p {
  color: var(--text-light);
  line-height: 1.5;
}

.social-links {
  display: flex;
  margin-top: 30px;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: var(--transition);
  cursor: pointer;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.4);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-medium);
  font-weight: 500;
  transition: var(--transition);
}

.form-control {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-control:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(142, 45, 226, 0.15);
}

.form-group:focus-within label {
  color: var(--secondary-color);
  font-weight: 600;
}

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

.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-group.error .form-control {
  border-color: var(--error-color);
  background-color: rgba(255, 56, 96, 0.05);
}

.form-group.error .error-message {
  display: block;
}

.form-group.success .form-control {
  border-color: var(--success-color);
  background-color: rgba(35, 209, 96, 0.05);
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: width 0.4s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(142, 45, 226, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.loading .submit-btn {
  pointer-events: none;
  opacity: 0.8;
}

.submit-btn .btn-text {
  transition: var(--transition);
  display: inline-block;
}

.submit-btn .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

.loading .submit-btn .btn-text {
  opacity: 0;
}

.loading .submit-btn .spinner {
  display: block;
}

.form-submitted {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-submitted .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 40px;
  animation: scaleIn 0.5s ease forwards;
  box-shadow: 0 10px 20px rgba(142, 45, 226, 0.3);
}

.form-submitted h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.form-submitted p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-back {
  background: #f0f0f0;
  color: var(--text-dark);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back:hover {
  background: var(--gray-medium);
}

/* Progress indicator */
.progress-indicator {
  height: 5px;
  background: #f0f0f0;
  margin-bottom: 30px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 3px;
  transition: width 0.3s ease;
}

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

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-info,
.contact-form {
  animation: fadeIn 0.8s ease forwards;
}

.contact-info {
  animation-delay: 0.2s;
}

.contact-form {
  animation-delay: 0.4s;
}

/* Form tooltip */
.tooltip {
  position: absolute;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  white-space: nowrap;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--secondary-color);
}

.form-group.focus .tooltip {
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form {
    padding: 30px 25px;
  }
}

/* Accessibility focus styles */
.form-control:focus-visible,
.submit-btn:focus-visible,
.btn-back:focus-visible,
.social-link:focus-visible {
  outline: 3px solid rgba(142, 45, 226, 0.5);
  outline-offset: 2px;
}

/* Character counter */
.character-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 8px;
  border-radius: 10px;
  display: none;
}

.form-group.focus .character-counter {
  display: block;
}

.footer {
  background-color: var(--bg-dark);
  color: var(--text-light-2);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--primary-color) 0%,
    rgba(74, 0, 224, 0) 70%
  );
  opacity: 0.1;
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--secondary-color) 0%,
    rgba(142, 45, 226, 0) 70%
  );
  opacity: 0.1;
  z-index: 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 45px;
  margin-right: 10px;
}

.footer-logo h2 {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.footer-about p {
  color: var(--text-medium-2);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-2);
  font-size: 18px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social-icon:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.social-icon i {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--text-medium-2);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 14px;
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: var(--text-light-2);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-item i {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 16px;
}

.footer-contact-info h5 {
  font-size: 15px;
  margin-bottom: 5px;
}

.footer-contact-info p,
.footer-contact-info a {
  color: var(--text-medium-2);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: var(--text-light-2);
}

.newsletter-form {
  position: relative;
  margin-top: 20px;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  border-radius: var(--border-radius-2);
  color: var(--text-light-2);
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.08);
}

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

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  padding: 0 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: calc(var(--border-radius) - 2px);
  color: var(--text-light-2);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.newsletter-btn i {
  font-size: 18px;
}

.footer-middle {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.footer-app-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: var(--border-radius-2);
  transition: var(--transition);
  text-decoration: none;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.app-store-btn i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--text-light-2);
}

.app-store-text {
  display: flex;
  flex-direction: column;
}

.app-store-text span:first-child {
  font-size: 12px;
  color: var(--text-medium-2);
}

.app-store-text span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light-2);
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 25px;
}

.partner-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(1.8);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-item img {
  max-height: 100%;
  max-width: 100px;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--text-medium-2);
  font-size: 14px;
}

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

.footer-bottom-links a {
  color: var(--text-medium-2);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-light-2);
}

.payments-accepted {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icon {
  width: 40px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 5px;
  transition: var(--transition);
}

.payment-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.payment-icon i {
  font-size: 18px;
  color: var(--text-light-2);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-light-2);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
  border: none;
  outline: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 0, 224, 0.4);
}

.footer-award {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-2);
  border: 1px solid var(--border-color);
}

.footer-award i {
  font-size: 30px;
  color: gold;
}

.award-content span {
  display: block;
}

.award-content span:first-child {
  font-weight: 600;
  color: var(--text-light-2);
  margin-bottom: 3px;
}

.award-content span:last-child {
  font-size: 13px;
  color: var(--text-medium-2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-partners {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .payments-accepted {
    justify-content: center;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Hover effect for icons */
.icon-hover-effect {
  position: relative;
  overflow: hidden;
}

.icon-hover-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.icon-hover-effect:hover::before {
  width: 100%;
  height: 100%;
}

/* Accessibility focus styles */
.social-icon:focus-visible,
.footer-links a:focus-visible,
.newsletter-input:focus-visible,
.newsletter-btn:focus-visible,
.app-store-btn:focus-visible,
.footer-bottom-links a:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  } */

/* Gallery Section Styles */
.gallery-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(200px, -200px);
  z-index: 1;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(-150px, 150px);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  color: var(--primary-color);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
  padding: 0 10px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.section-subtitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title span {
  position: relative;
  z-index: 1;
}

.section-title::before {
  content: "";
  position: absolute;
  height: 10px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.2;
  width: 100%;
  bottom: 5px;
  left: 0;
  z-index: 0;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  background: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark-2);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: var(--transition);
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  width: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 0, 224, 0.2);
}

.filter-btn.active {
  box-shadow: 0 8px 25px rgba(74, 0, 224, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  height: 300px;
  border-radius: var(--border-radius-2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--box-shadow-2);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Feature items - make some items span multiple cells */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 620px;
}

/* For smaller screens, remove spanning */
@media (max-width: 768px) {
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
  }
}

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

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-category {
  font-size: 14px;
  color: var(--text-light-2);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.2s;
}

.gallery-item:hover .gallery-item-category {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-icon {
  transform: translateY(0);
  opacity: 1;
}

/* Video item indicator */
.gallery-item.video-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.8;
  transition: var(--transition);
}

.gallery-item.video-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
  z-index: 3;
  transition: var(--transition);
}

.gallery-item.video-item:hover::after {
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  padding: 12px 35px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(74, 0, 224, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 0, 224, 0.3);
}

.load-more-btn i {
  transition: var(--transition);
}

.load-more-btn:hover i {
  transform: rotate(90deg);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 80%;
  max-width: 1000px;
  max-height: 80vh;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.lightbox.active .lightbox-content {
  opacity: 1;
  transform: scale(1);
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 5px;
}

.lightbox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.lightbox-video iframe,
.lightbox-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: white;
  color: var(--text-dark-2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
}

.lightbox-nav-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
}

.lightbox-caption h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.lightbox-caption p {
  font-size: 14px;
  opacity: 0.8;
}

/* Counter */
.lightbox-counter {
  position: absolute;
  top: -40px;
  left: 0;
  color: white;
  font-size: 14px;
}

/* Loading Spinner */
.lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* For small screens */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .lightbox-content {
    width: 90%;
  }

  .lightbox-nav {
    padding: 0 15px;
  }
}

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

  .gallery-filter {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }

  .gallery-item {
    height: 250px;
  }

  .lightbox-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .lightbox-caption {
    padding: 10px 15px;
  }

  .lightbox-caption h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }

  .gallery-item {
    height: 180px;
  }

  .gallery-item-title {
    font-size: 16px;
  }

  .gallery-item-category {
    font-size: 12px;
  }

  .lightbox-content {
    width: 95%;
  }

  .lightbox-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Isotope filtering animation */
.gallery-item {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.gallery-item.hidden {
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
}

.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Certificates Section Styles */
.certificates-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.certificates-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(200px, -200px);
  z-index: 1;
}

.certificates-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.1)
  );
  border-radius: 50%;
  transform: translate(-150px, 150px);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.section-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
  padding: 0 10px;
}
.section-subtitle::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}
.section-subtitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-title span {
  position: relative;
  z-index: 1;
}
.section-title::before {
  content: "";
  position: absolute;
  height: 0px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.2;
  width: 100%;
  bottom: 5px;
  left: 0;
  z-index: 0;
}
.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}
/* Certificates Container */
.certificates-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
/* Certificate Card */
.certificate-card {
  position: relative;
  background: white;
  border-radius: var(--border-radius-2);
  overflow: hidden;
  box-shadow: var(--box-shadow-2);
  transition: var(--transition);
  height: 360px;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.certificate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.certificate-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.certificate-card:hover .certificate-card-inner {
  transform: rotateY(180deg);
}
.certificate-front,
.certificate-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}
.certificate-front {
  padding: 30px;
  background: white;
  border-radius: var(--border-radius-2);
  border-top: 5px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(to right, var(--primary-color), var(--secondary-color));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.certificate-back {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: rotateY(180deg);
  padding: 30px;
  justify-content: center;
  text-align: center;
  border-radius: var(--border-radius-2);
}
.certificate-logo {
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
}
.certificate-logo img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}
.certificate-logo i {
  font-size: 36px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.certificate-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark-2);
}
.certificate-issuer {
  font-size: 15px;
  color: #666;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.certificate-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.certificate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.certificate-tag {
  padding: 5px 12px;
  background: #f0f0f0;
  border-radius: 20px;
  font-size: 12px;
  color: #555;
  font-weight: 500;
}
/* Back Side Styles */
.certificate-back-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.certificate-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.certificate-skills {
  margin-bottom: 25px;
}
.certificate-skills-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.certificate-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.certificate-skill {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  color: white;
}
.view-certificate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}
.view-certificate-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.view-certificate-btn i {
  font-size: 16px;
}
/* Certificate Verification Badge */
.certificate-verified {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}
/* Certificate Modal */
.certificate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.certificate-modal.active {
  opacity: 1;
  visibility: visible;
}
.certificate-modal-content {
  background: white;
  width: 90%;
  max-width: 800px;
  border-radius: var(--border-radius-2);
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  overflow-y: scroll;
  max-height: 80vh;
}
.certificate-modal.active .certificate-modal-content {
  transform: scale(1);
  opacity: 1;
}
.certificate-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.certificate-modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}
.certificate-modal-image {
  width: 58%;
  height: 300px;
  object-fit: cover;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--border-radius-2);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.certificate-modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark-2);
}
.certificate-modal-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.certificate-modal-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.certificate-modal-info-item {
  display: flex;
  flex-direction: column;
}
.certificate-modal-info-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}
.certificate-modal-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark-2);
}
.certificate-modal-description {
  margin-bottom: 30px;
  line-height: 1.8;
}
.certificate-modal-qr {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: var(--border-radius-2);
}
.certificate-modal-qr-image {
  width: 100px;
  height: 100px;
  background: white;
  padding: 10px;
  border-radius: 10px;
}
.certificate-modal-qr-text {
  flex: 1;
}
.certificate-modal-qr-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.certificate-modal-qr-description {
  font-size: 14px;
  color: #666;
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
/* For smaller screens */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
  .certificates-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .certificate-modal-content {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .certificates-container {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
  .certificate-card {
    height: 400px;
  }
  .certificate-logo {
    height: 70px;
    width: 70px;
  }
  .certificate-title {
    font-size: 18px;
  }
  .certificate-modal-content {
    padding: 20px;
  }
  .certificate-modal-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .certificate-modal-qr {
    flex-direction: column;
    text-align: center;
  }
  .certificate-modal-qr-image {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }
  .section-description {
    font-size: 14px;
  }
  .certificates-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .certificate-card {
    height: 360px;
  }
  .certificate-logo {
    height: 60px;
    width: 60px;
  }
  .certificate-title {
    font-size: 17px;
  }
  .certificate-modal-title {
    font-size: 20px;
  }
  .certificate-modal-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .certificate-card {
    height: 420px;
  }
  .certificate-back-title {
    font-size: 14px;
  }
  .certificate-back-subtitle {
    font-size: 12px;
  }
  .certificate-skills {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

.section-padding {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: var(--primary-gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 0, 224, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 0, 224, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-gradient);
  transition: all 0.5s;
  z-index: -1;
}

.btn-secondary:hover {
  color: white;
}

.btn-secondary:hover:before {
  width: 100%;
}

/* Responsive Layout */
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 15px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.85rem;
  }
}

.bmi-calculator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.bmi-calculator.active {
  opacity: 1;
  visibility: visible;
}
.bmi-container {
  background: white;
  width: 90%;
  max-width: 1500px;
  height: 80%;
  border-radius: var(--border-radius-2);
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  overflow-y: scroll;
}

.bmi-calculator.active .bmi-container {
  transform: scale(1);
  opacity: 1;
}

.bmi-calculator-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.bmi-calculator-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

/* BMI Calculator Section */
.bmi-calculator-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}

.calculator-card,
.bmi-info {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 30px;
  transition: var(--transition);
}

.calculator-card {
  position: relative;
  overflow: hidden;
}

.calculator-card:after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.1),
    rgba(142, 45, 226, 0.1)
  );
}

.calculator-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 25px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
}

.calculator-inputs {
  display: none;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.calculator-inputs.active {
  display: flex;
}

.input-group {
  flex: 1;
  min-width: 140px;
  position: relative;
}

.input-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-color);
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fafafa;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(142, 45, 226, 0.2);
  background-color: white;
}

.input-group .input-icon {
  position: absolute;
  right: 15px;
  top: 42px;
  color: var(--medium-gray);
}

#calculate-bmi {
  width: 100%;
  margin: 15px 0 25px;
}

.bmi-result {
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.result-value {
  text-align: center;
  margin-bottom: 20px;
}

#bmi-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
}

.bmi-label {
  font-size: 0.85rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.bmi-category {
  text-align: center;
  margin-bottom: 25px;
}

#bmi-category {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

#bmi-message {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.bmi-scale {
  margin-top: 30px;
}

.scale-bar {
  position: relative;
  height: 10px;
  background: var(--light-gray);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.marker {
  position: absolute;
  top: 0;
  height: 100%;
  transition: width 0.3s ease;
}

.marker[data-value="underweight"] {
  left: 0;
  width: 25%;
  background: var(--warning-color);
  border-radius: 5px 0 0 5px;
}

.marker[data-value="normal"] {
  left: 25%;
  width: 25%;
  background: var(--success-color);
}

.marker[data-value="overweight"] {
  left: 50%;
  width: 25%;
  background: var(--warning-color);
}

.marker[data-value="obese"] {
  left: 75%;
  width: 25%;
  background: var(--danger-color);
  border-radius: 0 5px 5px 0;
}

#bmi-indicator {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 25px;
  height: 25px;
  background: white;
  border: 3px solid var(--primary-light);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.bmi-result.has-value #bmi-indicator {
  opacity: 1;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--medium-gray);
  margin-top: 8px;
}

.bmi-info h3 {
  margin-bottom: 25px;
  font-size: 1.75rem;
  position: relative;
  display: inline-block;
}

.bmi-info h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.bmi-categories {
  margin-bottom: 30px;
}

.category-item {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.category-item:hover {
  transform: translateX(5px);
}

.category-item.underweight {
  border-left-color: var(--warning-color);
}

.category-item.normal {
  border-left-color: var(--success-color);
}

.category-item.overweight {
  border-left-color: var(--warning-color);
}

.category-item.obese {
  border-left-color: var(--danger-color);
}

.category-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bmi-disclaimer {
  font-size: 0.85rem;
  color: var(--medium-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-bottom: 25px;
  font-style: italic;
}

/* Additional styling */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.fitness-tips {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.tips-header {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.tip-icon {
  flex-shrink: 0;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.tip-content {
  flex-grow: 1;
}

.tip-content h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (min-width: 769px) {
  .bmi-calculator-container {
    flex-direction: row;
  }

  .calculator-card,
  .bmi-info {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  #bmi-value {
    font-size: 2rem;
  }

  #bmi-category {
    font-size: 1.25rem;
  }

  .input-group {
    min-width: 100%;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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

.pulse {
  animation: pulse 1s infinite;
}

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

.open-bmi {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 45px;
  height: 50px;
  position: fixed;
  bottom: 90px;
  right: 30px;
  cursor: pointer;
  z-index: 102;
  box-sizing: 0 5px 15px rgba(74, 0, 224, 0.3);
  border: 1px solid var(--secondary-color);
  background-color: white;
  transition: var(--transition);
}
.open-bmi img {
  width: 100%;
  height: 100%;
}

.open-bmi:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 0, 224, 0.4);
}

.popup {
  display: none; /* Hidden initially */
  position: fixed;
  bottom: 150px;
  right: 2px;
  width: fit-content;
  height: fit-content;
  /* background-color: rgba(0, 0, 0, 0.5);  */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: popup 0.5s ease forwards;
  flex-direction: column;
}
/* Popup content box */
.popup-content {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  padding: 5px;
  border-radius: 8px;
  width: 80%;
  position: relative;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.popup-content h2 {
  font-size: 12px;
  color: white;
}
/* Close button styling */
.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.popup-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}
.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--secondary-color);
}
@keyframes popup {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@media (max-width: 768px) {
  .open-bmi {
    right: 20px;
  }

  .popup {
    flex-direction: row;
    right: 70px;
    bottom: 100px;
  }
  .popup-content {
    width: 100%;
  }
  .triangle {
    position: relative;
    z-index: -1;
    border-top: 5px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid var(--secondary-color);
  }
  .popup-close {
    width: 20px;
    height: 20px;
  }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray-500);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 5px;
}
/* Firefox scrollbar styling */
body {
  scrollbar-width: thin;
  scrollbar-color: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    )
    var(--gray-500);
}
