/* CSS Variables - Triadic Color Scheme */
:root {
  /* Primary Colors - Triadic */
  --primary-color: #ff6b35;
  --secondary-color: #35ff6b;
  --tertiary-color: #6b35ff;
  
  /* Gradient Variations */
  --primary-gradient: linear-gradient(135deg, #ff6b35, #ff8c42);
  --secondary-gradient: linear-gradient(135deg, #35ff6b, #42ff8c);
  --tertiary-gradient: linear-gradient(135deg, #6b35ff, #8c42ff);
  
  /* Dynamic Color Transitions */
  --dynamic-bg-1: linear-gradient(45deg, #ff6b35, #6b35ff, #35ff6b);
  --dynamic-bg-2: linear-gradient(135deg, #35ff6b, #ff6b35, #6b35ff);
  --dynamic-bg-3: linear-gradient(225deg, #6b35ff, #35ff6b, #ff6b35);
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #343a40;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(255, 255, 255, 0.9);
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.title.is-1 { font-size: 3.5rem; }
.title.is-2 { font-size: 2.5rem; }
.title.is-3 { font-size: 2rem; }
.title.is-4 { font-size: 1.5rem; }
.title.is-5 { font-size: 1.25rem; }
.title.is-6 { font-size: 1rem; }

.subtitle {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Global Button Styles */
.btn, 
.button,
button,
input[type="submit"] {
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn:before,
.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-normal);
}

.btn:hover:before,
.button:hover:before {
  left: 100%;
}

.button.is-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.button.is-light:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header Styles */
.navbar {
  background: var(--overlay-dark);
  padding: var(--spacing-sm) 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.navbar.is-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar-item {
  color: var(--white);
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
}

@media (max-width: 1024px) {
  .navbar-item {
    color: #000;
  }
}


.navbar-item:hover {
  color: var(--primary-color);
  background: transparent;
}

.navbar-item:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

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

.navbar-burger {
  color: var(--white);
}

/* Hero Section */
#hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-body {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 2;
}

.hero .title {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Parallax Container */
.parallax-container {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section.has-background-light {
  background: var(--bg-light);
}

/* Card Styles */
.card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

/* Services Section */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }

/* Gallery Section */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Team Section */
.team-card {
  text-align: center;
}

.team-card .card-image {
  height: 300px;
  border-radius: 50%;
  width: 200px;
  margin: 0 auto var(--spacing-md);
}

.team-card .card-image img {
  border-radius: 50%;
}

/* Portfolio Section */
.portfolio-card .card-image {
  height: 300px;
}

/* Success Stories Section */
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
}

.testimonial-card .media-left .image-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.testimonial-card .media-left img {
  border-radius: 50%;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: var(--spacing-sm);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: var(--spacing-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-gradient);
  color: var(--white);
  transition: all var(--transition-normal);
}

.faq-question:hover {
  background: var(--tertiary-gradient);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--spacing-md);
  max-height: 200px;
}

/* Events Calendar */
.event-card {
  border-left: 4px solid var(--secondary-color);
}

.event-card .media {
  margin-bottom: var(--spacing-sm);
}

/* Webinars Section */
.box {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md);
  transition: all var(--transition-normal);
}

.box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Resource Cards */
.resource-card {
  text-align: center;
  background: var(--white);
  transition: all var(--transition-normal);
}

.resource-card:hover {
  background: var(--bg-light);
}

/* Contact Section */
.contact-info {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--gray-light);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-form {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: var(--spacing-md);
}

.label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.input, .textarea {
  border: 2px solid #e9ecef;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: all var(--transition-normal);
}

.input:focus, .textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

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

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

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

.footer a {
  color: #fff !important;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.social-links a {
  display: inline-block;
  margin-right: var(--spacing-sm);
  padding: var(--spacing-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dynamic-bg-1);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

.success-content {
  text-align: center;
  background: var(--overlay-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

/* Privacy and Terms Pages */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

.legal-content {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: var(--spacing-lg) 0;
}

/* Utility Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.has-text-centered {
  text-align: center;
}

.has-text-dark {
  color: var(--text-primary) !important;
}

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

.has-text-light {
  color: var(--gray-medium) !important;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .title.is-1 { font-size: 2.5rem; }
  .title.is-2 { font-size: 2rem; }
  .title.is-3 { font-size: 1.5rem; }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .card-content {
    padding: var(--spacing-sm);
  }
  
  .contact-info,
  .contact-form {
    padding: var(--spacing-md);
  }
  
  .hero-body {
    padding: var(--spacing-md) 0;
  }
  
  .parallax-container {
    background-attachment: scroll;
  }
  
  .team-card .card-image {
    width: 150px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-lg: 1.5rem;
  }
  
  .title.is-1 { font-size: 2rem; }
  .title.is-2 { font-size: 1.5rem; }
  
  .button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .card-image {
    height: 200px;
  }
  
  .team-card .card-image {
    width: 120px;
    height: 150px;
  }
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tertiary-gradient);
}

/* Focus States for Accessibility */
button:focus,
.button:focus,
.input:focus,
.textarea:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Text */
.section h2,
.section h3 {
  color: var(--text-primary);
  text-shadow: none;
}

.has-background-light .title,
.has-background-light .subtitle {
  color: var(--text-primary);
}

/* Glassmorphism Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

.navbar-burger span {
  background-color: rgb(255 255 255) !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}