
:root {
  --primary-color: linear-gradient(135deg, #6c8eff, #48d0b0);
  --primary-hover: linear-gradient(135deg, #5b7cec, #3ab89c);
  --money-accent: linear-gradient(135deg, #ffb347, #ff8c00);
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Background Patterns */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(108, 142, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(72, 208, 176, 0.05) 0%, transparent 20%);
  z-index: -1;
}

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

/* Hero Section */
.about-hero {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--money-accent);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
  animation: float 10s ease-in-out infinite 2s;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

/* Mission Section */
.mission {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.mission h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-card {

  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;

}


.mission-card::before{
    content: ' " ';
    position: absolute;
    font-size: 100px;
    font-family: 'Cinzel', sans-serif;
    top: -10px;
    left: 0;
    color: #3ab89c;
}

.mission-card::after{
    content: ' " ';
    position: absolute;
    font-size: 100px;
    font-family: 'Cinzel', sans-serif;
    right: 30px;
    bottom: -70px;
    color: #3ab89c;
}

/* Trainers Section */
.trainers {
  padding: 80px 0;
  background: #f9fafb;
  position: relative;
}

.trainers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(108, 142, 255, 0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 L0,0 Z"></path></svg>');
  background-size: cover;
  z-index: 0;
}

.trainers h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.trainer-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(108, 142, 255, 0.1);
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trainer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(108, 142, 255, 0.2);
}

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

.trainer-card h3 {
  margin-bottom: 5px;
}

.trainer-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.linkedin-btn {
  display: inline-block;
  background: #0077b5;
  color: white !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  font-size: 14px;
  margin-top: 10px;
  transition: var(--transition);
}

.linkedin-btn:hover {
  transform: scale(1.1);
  background: #006097;
}

/* Success Stories */
.success-stories {
  padding: 80px 0;
  position: relative;
}

.success-stories::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(249, 250, 251, 1), rgba(249, 250, 251, 0));
  z-index: 0;
}

.success-stories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: var(--money-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.story-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 180, 71, 0.1);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-card h3 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-card h3 i {
  color: #ffb347;
}

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

.company {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(108, 142, 255, 0.1);
  border-radius: 30px;
  font-size: 0.8rem;
  color: #6c8eff;
}

/* Agenda Section */
.agenda {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
  position: relative;
}

.agenda h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.agenda-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  min-width: 250px;
  background: var(--bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(108, 142, 255, 0.1);
}

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

.step-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .agenda-steps {
    flex-direction: column;
  }
}
