<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css */

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&amp;family=Roboto&amp;display=swap");

/* CSS Variables for Theme */
:root {
  /* Primary Colors */
  --primary-color: #ff6b6b;
  --secondary-color: #ffd93d;
  --accent-color: #6bcb77;
  --background-gradient: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcb77);

  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Text Colors */
  --text-color: #ffffff;
  --heading-color: #ffffff;
  --subtext-color: #cccccc;
  --button-text-color: #000000;

  /* Accent Colors */
  --hover-color: #ffa07a;
  --link-color: #ffd93d;
  --link-hover-color: #ff6b6b;

  /* Utility Colors */
  --dark-overlay: rgba(0, 0, 0, 0.5);
  --footer-bg: rgba(0, 0, 0, 0.8);

  /* Transition Durations */
  --transition-speed: 0.3s;
}

/* Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: background 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  transition: transform var(--transition-speed);
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #61c797;

  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  transition: color var(--transition-speed);
}

nav ul li a:hover {
  color: var(--hover-color);
}

.logo a {
  color: #61c797;
  font-size: 26px;
  text-decoration: none;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #ccc;
  margin: 5px;
  transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--heading-color);
  background: var(--background-gradient);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-overlay);
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero .btn {
  background: var(--secondary-color);
  color: var(--button-text-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-speed),
    transform var(--transition-speed);
  text-decoration: none;
  display: inline-block;
}

.hero .btn:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

.btn {
  background: var(--secondary-color);
  color: var(--button-text-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-speed),
    transform var(--transition-speed);
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

/* About Us Section */
.about {
  padding: 100px 0;
  background: #ffffff;
}

.about h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.about .content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about .image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.about .text {
  flex: 1;
  min-width: 300px;
}

.about .text p {
  margin-bottom: 20px;
  color: #555;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f9f9f9;
}

.services h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform var(--transition-speed),
    background var(--transition-speed);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.service-item:hover {
  transform: translateY(-10px);
  background: var(--secondary-color);
}

.service-item .icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  color: #555;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #ffffff;
}

.features h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

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

.feature-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform var(--transition-speed),
    background var(--transition-speed);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.feature-item:hover {
  transform: translateY(-10px);
  background: var(--primary-color);
}

.feature-item h3 {
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 10px;
  color: #333;
}

.feature-item p {
  color: #555;
}

/* Our Process Section */
.process {
  padding: 100px 0;
  background: #f9f9f9;
}

.process h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: background var(--transition-speed);
}

.accordion-item.active {
  background: var(--secondary-color);
}

.accordion-item h3 {
  font-family: "Archivo Black", sans-serif;
  padding: 15px;
  cursor: pointer;
  position: relative;
  color: #000;
  transition: color var(--transition-speed);
}

.accordion-item h3::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform var(--transition-speed);
}

.accordion-item.active h3::after {
  content: "-";
}

.accordion-content {
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.accordion-content p {
  padding: 15px 0;
  color: #555;
}

/* Innovation Section */
.innovation {
  padding: 100px 0;
  background: #ffffff;
}

.innovation h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.innovation .content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.innovation .image img {
  width: 100%;
  max-width: 500px;

  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.innovation .text {
  flex: 1;
  min-width: 300px;
}

.innovation .text p {
  margin-bottom: 20px;
  color: #555;
}

/* Team Section */
.team {
  padding: 100px 0;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform var(--transition-speed),
    background var(--transition-speed);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.team-member:hover {
  transform: translateY(-10px);
  background: var(--accent-color);
}

.team-member img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 10px;
  color: #333;
}

.team-member p {
  color: #555;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: #ffffff;
}

.portfolio h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

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

.portfolio-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  transition: transform var(--transition-speed),
    background var(--transition-speed);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  background: var(--secondary-color);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
  background-size: cover;
  background-repeat: no-repeat;
}

.portfolio-item h3 {
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 10px;
  color: #333;
}

.portfolio-item p {
  color: #555;
}

/* Instructors Section */
.instructors {
  padding: 100px 0;
  background: #f9f9f9;
}

.instructors h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.instructor {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform var(--transition-speed),
    background var(--transition-speed);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.instructor:hover {
  transform: translateY(-10px);
  background: var(--accent-color);
}

.instructor img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.instructor h3 {
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 5px;
  color: #333;
}

.instructor p {
  color: #555;
}

/* Events Calendar Section */
.events {
  padding: 100px 0;
  background: #ffffff;
}

.events h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.calendar {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f9f9f9;
}

.contact h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact form {
  flex: 1;
  min-width: 300px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: background var(--transition-speed);
}

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

.contact form label {
  display: block;
  margin-bottom: 5px;
  color: #000;
  font-weight: bold;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  font-size: 1rem;
  transition: background var(--transition-speed);
}

.contact form input:focus,
.contact form textarea:focus {
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.contact form .btn {
  background: var(--secondary-color);
  color: var(--button-text-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-speed),
    transform var(--transition-speed);
  text-decoration: none;
  display: inline-block;
}

.contact form .btn:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

.contact .contact-info {
  flex: 1;
  min-width: 250px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  color: var(--text-color);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: background var(--transition-speed);
}

.contact .contact-info p {
  margin-bottom: 15px;
  color: #000000;
}

.contact .contact-info p strong {
  color: var(--secondary-color);
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1rem;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-media {
  display: flex;
  gap: 15px;
}

.social-media a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color var(--transition-speed), transform var(--transition-speed);
}

.social-media a:hover {
  color: var(--secondary-color);
  transform: scale(1.2);
}

.footer-info {
  font-size: 0.9rem;
  color: #ccc;
}

/* Success Page */
.success-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f0f4f8;
  text-align: center;
}

.success-message h1 {
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 20px;
  color: #4caf50;
  font-size: 2.5rem;
}

.success-message p {
  margin-bottom: 30px;
  color: #555;
  font-size: 1.2rem;
}

.success-message a {
  background: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: background var(--transition-speed),
    transform var(--transition-speed);
}

.success-message a:hover {
  background: #45a049;
  transform: scale(1.05);
}

/* Privacy and Terms Pages */
.privacy,
.terms {
  padding-top: 100px;
  padding: 50px 20px;
  background: #ffffff;
  min-height: 100vh;
}

.privacy h2,
.terms h2 {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 30px;
  color: #333;
}

.privacy p,
.terms p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  color: #555;
}

/* General Link Styles */
.read-more {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
  transition: color var(--transition-speed),
    text-decoration var(--transition-speed);
}

.read-more:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* Media Queries */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: var(--footer-bg);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.p-20 {
  padding: 20px;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-20 {
  gap: 20px;
}

.hidden {
  display: none;
}
</pre></body></html>