/* Global Variables */
:root {
  /* Primary Colors - Split-Complementary Palette */
  --primary-color: #4a6dbd;
  --primary-dark: #345191;
  --primary-light: #6a8fd5;
  --complementary-color: #bd7a4a;
  --complementary-dark: #a05e33;
  --accent1-color: #65bd4a;
  --accent1-dark: #4a9034;
  --accent2-color: #bd4a9e;
  --accent2-dark: #91346f;

  /* Neutral Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #212529;

  /* Glassmorphism */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;

  /* Typography */
  --heading-font: "Playfair Display", serif;
  --body-font: "Source Sans Pro", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Animations */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

p {
  margin-bottom: var(--spacing-sm);
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.text-white {
  color: var(--text-light) !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-1 {
  margin-bottom: var(--spacing-xs) !important;
}

.mt-1 {
  margin-top: var(--spacing-xs) !important;
}

.mb-2 {
  margin-bottom: var(--spacing-sm) !important;
}

.mt-2 {
  margin-top: var(--spacing-sm) !important;
}

.mb-3 {
  margin-bottom: var(--spacing-md) !important;
}

.mt-3 {
  margin-top: var(--spacing-md) !important;
}

.mb-4 {
  margin-bottom: var(--spacing-lg) !important;
}

.mt-4 {
  margin-top: var(--spacing-lg) !important;
}

.mb-5 {
  margin-bottom: var(--spacing-xl) !important;
}

.mt-5 {
  margin-top: var(--spacing-xl) !important;
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: var(--spacing-md);
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px 0 var(--glass-shadow);
}

/* Buttons */
.button {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-light {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.button.is-light:hover {
  background-color: #f0f0f0;
  color: var(--primary-dark);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.button.is-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-medium);
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

img {
  object-fit: cover;
}

.navbar-brand {
  display: flex;
  align-items: center;

  box-sizing: border-box;
  justify-content: space-between;
}

@media (max-width: 1022px) {
  .navbar-brand {
    width: 100%;
  }
}

.navbar-brand h1 {
  margin-bottom: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  position: relative;
  background: none;
  border: none;
}

.navbar-burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 26px;
  background: var(--primary-color);
  border-radius: 3px;
  left: calc(50% - 13px);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-menu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin-left: 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.navbar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

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

/* Hero Section */
.hero {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-body {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) 0;
}

.hero .title,
.hero .subtitle,
.hero-text {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.hero .buttons {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

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

/* About Section */
.about-section {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.about-section .title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.about-section .title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--complementary-color);
}

.about-section .subtitle {
  color: var(--complementary-dark);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
}

.about-section .image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

.about-section .image:hover {
  transform: scale(1.03);
}

/* Services Section */
.services-section {
  padding: var(--spacing-xl) 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./image/texture-light.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
}

.services-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-section .card-image {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.services-section .card-image img {
  transition: transform var(--transition-medium);
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.services-section .card:hover .card-image img {
  transform: scale(1.05);
}

.services-section .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services-section .title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.progress-container {
  margin-top: auto;
}

.progress {
  height: 10px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: #e9ecef;
}

.progress.is-primary::-webkit-progress-value {
  background-color: var(--primary-color);
  background-image: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-light)
  );
}

.progress.is-primary::-moz-progress-bar {
  background-color: var(--primary-color);
  background-image: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-light)
  );
}

.progress-container span {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* Statistics Section */
.statistics-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./image/texture-dark.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.statistics-section .title,
.statistics-section .subtitle {
  color: var(--text-light);
}

.statistics-section .title::after {
  background-color: var(--text-light);
}

.stat-box {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--complementary-color);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.stat-box p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Instructors Section */
.instructors-section {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.instructors-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.instructors-section .card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructors-section .card-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.instructors-section .card:hover .card-image img {
  transform: scale(1.05);
}

.instructors-section .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instructors-section .title {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.instructors-section .subtitle {
  color: var(--complementary-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  padding: var(--spacing-xl) 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.behind-scenes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./image/texture-light.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: var(--primary-color);
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--complementary-color)
  );
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-md);
  padding-left: 45px;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px var(--primary-color);
  z-index: 1;
}

.timeline-content {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transform: rotate(45deg);
  border-left: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.timeline-content .title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

/* Resources Section */
.resources-section {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.resources-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resources-section .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resources-section .title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.resources-section .button {
  margin-top: auto;
}

/* Research Section */
.research-section {
  padding: var(--spacing-xl) 0;
  background-color: #f9f9f9;
  position: relative;
}

.research-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./image/texture-light.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
}

.research-section .image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.research-section .title {
  color: var(--primary-dark);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.tag.is-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.tag.is-medium {
  font-size: 1rem;
}

/* Press Section */
.press-section {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.press-item {
  display: flex;
  align-items: flex-start;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.press-logo {
  flex: 0 0 128px;
  margin-right: var(--spacing-md);
}

.press-content {
  flex: 1;
}

.press-content .title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.press-date {
  font-size: 0.85rem;
  color: #777;
  margin-top: var(--spacing-sm);
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-xl) 0;
  background-color: #f9f9f9;
  position: relative;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./image/texture-light.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

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

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

.image-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) 60%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-md);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.overlay-content {
  color: var(--text-light);
}

.overlay-content .title {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.contact-info {
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.contact-item .icon {
  margin-right: var(--spacing-sm);
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 50px;
  text-align: center;
}

.contact-item .title {
  margin-bottom: var(--spacing-xs);
  color: var(--primary-dark);
}

.contact-form .label {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  width: 100%;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 109, 189, 0.2);
  outline: none;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer .title {
  color: var(--text-light);
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.newsletter-form .input {
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 0.75rem;
}

.newsletter-form .button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--text-light);
  z-index: 9999;
  padding: var(--spacing-md);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  margin-right: var(--spacing-md);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xl);
  background-color: #f9f9f9;
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 4rem;
  color: var(--accent1-color);
  margin-bottom: var(--spacing-md);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 120px;
  padding-bottom: var(--spacing-xl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.privacy-content h3,
.terms-content h3 {
  color: var(--primary-color);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar-end {
    flex-direction: column;
  }

  .navbar-item {
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 0.5rem;
  }

  .navbar-burger {
    display: block;
  }

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

  .hero .subtitle {
    font-size: 1.5rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .timeline-marker {
    width: 30px;
    height: 30px;
  }

  .press-item {
    flex-direction: column;
  }

  .press-logo {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-content p {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-item .icon {
    margin-right: 0;
    margin-bottom: var(--spacing-xs);
  }

  .timeline-content::before {
    display: none;
  }
}

/* Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

/* Animated Elements */
.animated-icon {
  animation: float 3s ease-in-out infinite;
}

.pulse-icon {
  animation: pulse 2s ease-in-out infinite;
}

/* Parallax Effect */
.parallax {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
