/* ===== CSS Variables ===== */
:root {
  --primary-color: #485fc7;
  --primary-dark: #374aa6;
  --primary-light: #5a70d8;
  --secondary-color: #f5f5f5;
  --accent-color: #3d3d3d;
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #222222;
  --text-white: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #2a2a2a;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-normal: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --border-radius: 4px;
}

/* ===== Base Styles ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

.section {
  padding: 5rem 0;
}

/* ===== Header Styles ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.navbar-brand {
  font-weight: 700;
}

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

.navbar-item {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  font-weight: 500;
  transition: all var(--transition-fast);
}

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

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--text-color);
  left: 0;
  transition: all var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: 7px;
}

.navbar-burger span:nth-child(2) {
  top: 14px;
}

.navbar-burger span:nth-child(3) {
  top: 21px;
}

.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);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-body {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 6rem 0;
}

.hero-body .title,
.hero-body .subtitle,
.hero-body p {
  color: var(--text-white);
}

.hero-foot {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
  animation: bounce 2s infinite;
}

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

/* ===== Button Styles ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-align: center;
  line-height: 1.2;
}

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

.button:active {
  transform: translateY(0);
}

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

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

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

.button.is-outlined {
  background-color: transparent;
  border: 2px solid currentColor;
}

.button.is-primary.is-outlined {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.button.is-light.is-outlined {
  color: white;
  border-color: white;
}

.button.is-light.is-outlined:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 0.85rem 1.75rem;
}

.button.is-fullwidth {
  width: 100%;
}

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

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

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content .title {
  margin-top: 0;
}

.card-content a.button {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== Section Styles ===== */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background-color: var(--bg-light);
}

.title.is-2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* ===== Process Section ===== */
#process .card-content .title {
  position: relative;
  padding-bottom: 0.5rem;
}

#process .card-content .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

/* ===== Portfolio Section ===== */
#portfolio .card-image {
  height: 250px;
}

#portfolio .card-image img {
  height: 100%;
}

/* ===== Insights Section ===== */
#insights .card-content a.button {
  margin-top: 1rem;
}

/* ===== Webinars Section ===== */
#webinars .card-image {
  height: 300px;
}

#webinars .level {
  margin-top: auto;
}

.tag {
  background-color: var(--primary-light);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.tag.is-info {
  background-color: #3e8ed0;
}

/* ===== Resources Section ===== */
#resources .card-image {
  height: 220px;
}

/* ===== Instructors Section ===== */
#instructors .card-image {
  height: 300px;
  border-radius: 50% 50% 0 0;
}

#instructors .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#instructors .card-content {
  text-align: center;
}

#instructors .subtitle.is-6 {
  color: var(--text-light);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* ===== Stories Section ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel .card {
  margin-bottom: 3rem;
}

.testimonial-carousel .card-content {
  position: relative;
}

.media {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.media-left {
  margin-right: 1rem;
}

.image.is-64x64 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.image.is-64x64 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  margin-top: 1rem;
  color: #ffc107;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== Events Section ===== */
#events .card-image {
  height: 250px;
}

/* ===== Accolades Section ===== */
#accolades .card-image {
  height: 200px;
}

#accolades .has-text-grey {
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

/* ===== Contact Section ===== */
#contact .card {
  height: 100%;
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input, .textarea, .select select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: 'Open Sans', sans-serif;
  transition: all var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(72, 95, 199, 0.2);
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox input {
  margin-right: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer .title {
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

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

.footer ul li a:hover {
  color: white;
  text-decoration: none;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  display: inline-block;
  margin-right: 1rem;
}

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

.newsletter .input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

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

.newsletter .input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== Success Page ===== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

/* ===== Cookie Popup ===== */
#cookiePopup {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
}

#acceptCookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--primary-dark);
}

/* ===== Privacy & Terms Pages ===== */
.page-content {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.page-content .container {
  max-width: 800px;
}

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

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.5rem;
}

.mt-6 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

.mb-6 {
  margin-bottom: 2rem;
}

.pb-5 {
  padding-bottom: 1.5rem;
}

.is-fullheight {
  min-height: 100vh;
}

/* ===== Responsive Design ===== */
@media (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    flex-direction: column;
  }

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

  .navbar-item {
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar-burger {
    display: block;
  }

  .columns {
    flex-direction: column;
  }

  .column {
    width: 100% !important;
  }

  .hero-body {
    padding: 4rem 0;
  }

  .buttons {
    justify-content: center;
  }

  .card-image {
    height: auto !important;
  }

  #process .card,
  #portfolio .card,
  #insights .card,
  #resources .card,
  #instructors .card,
  #stories .card,
  #events .card,
  #accolades .card {
    margin-bottom: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .column.is-one-third,
  .column.is-half {
    width: 50% !important;
  }
}

@media (max-width: 768px) {
  .title.is-1 {
    font-size: 2.5rem;
  }

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

  .title.is-3 {
    font-size: 1.75rem;
  }

  .title.is-4 {
    font-size: 1.5rem;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .navbar-item {
    padding: 0.5rem 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
}

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

.fade-in {
  animation: fadeIn var(--transition-normal);
}

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

/* ===== Columns Layout ===== */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.column.is-full {
  flex: none;
  width: 100%;
}

.column.is-three-quarters {
  flex: none;
  width: 75%;
}

.column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

.column.is-half {
  flex: none;
  width: 50%;
}

.column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.column.is-one-quarter {
  flex: none;
  width: 25%;
}

.is-multiline {
  flex-wrap: wrap;
}

.is-vcentered {
  align-items: center;
}
.footer{
  background: #333333!important;
}