
:root {
  
  --primary: #FF6D00;
  --primary-dark: #E05E00;
  --primary-light: #FF8C3A;
  --secondary: #006DFF;
  --secondary-dark: #005CCE;
  --secondary-light: #4591FF;
  --accent: #00D4FF;
  --accent-dark: #00B4D9;
  --accent-light: #47E1FF;
  
  
  --dark: #1A1A1A;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #EEEEEE;
  --off-white: #F9F9F9;
  --white: #FFFFFF;
  
  
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-neo: 8px 8px 0px rgba(0, 0, 0, 0.8);
  
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-width: 2px;
  --border-neo: 3px solid var(--dark);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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


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

.title.is-1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.title.is-2 {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

.section-title {
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
}

.has-text-centered .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: var(--medium-gray);
}


.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

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

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

.animated-button {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.animated-button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s;
}

.animated-button:hover:after {
  left: 100%;
}

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


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-lg) 0;
  position: relative;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.column {
  padding: 1rem;
  flex-grow: 1;
  flex-basis: 0;
}

.column.is-one-third {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

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

.column.is-two-thirds {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

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

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

.is-centered {
  justify-content: center;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

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

.logo img {
  max-height: 50px;
}

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

.navbar-end {
  display: flex;
  margin-left: auto;
}

.navbar-item {
  padding: 0 var(--space-sm);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: color 0.3s;
}

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

.navbar-burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s;
}


.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-body {
  position: relative;
  z-index: 10;
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}


.card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: fit-content;
  border: var(--border-neo);
  margin-bottom: 10px;
}

.event-card:hover, .portfolio-card:hover, .resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-neo);
}

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

.card-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
  margin: 0 auto;
}

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

.card-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-footer {
  padding: var(--space-sm);
  margin-top: auto;
}

.description {
  margin-bottom: var(--space-md);
  color: var(--medium-gray);
}

.date-time {
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.event-details {
  margin-top: auto;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}


.events-section {
  background-color: var(--off-white);
}


.calendar-section {
  background-color: var(--white);
}

.calendar-container {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.current-month {
  margin: 0;
}

.calendar-events {
  margin-top: var(--space-md);
}


.research-section {
  position: relative;
  color: var(--white);
}
.research-section{
  .title,.subtitle,.research-stats{
    position: relative;
    z-index: 10;
  }
}
.research-content {
  position: relative;
  z-index: 10;
  margin-bottom: var(--space-md);
}

.research-stats {
  margin-top: var(--space-md);
}

.stat-box {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  transition: transform 0.3s ease;
  height: 100%;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}


.resources-section {
  background-color: var(--off-white);
}

.resource-card {
  height: 100%;
}


.portfolio-section {
  background-color: var(--white);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-md);
  gap: var(--space-xs);
}

.filter-button {
  margin: 0 var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--light-gray);
  color: var(--dark);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color 0.3s;
}

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

.portfolio-gallery {
  margin-top: var(--space-md);
}

.portfolio-item {
  margin-bottom: var(--space-md);
}

.testimonials-carousel {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-lg);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-md);
}

.carousel-slide {
  padding: var(--space-sm);
}

.testimonial-card {
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}


.vision-section {
  position: relative;
  color: var(--white);
}

.vision-content {
  position: relative;
  z-index: 10;
}

.value-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  height: 100%;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--accent);
}

.value-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.mission-statement {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent);
}


.contact-section {
  background-color: var(--off-white);
}

.contact-info {
  margin-bottom: var(--space-md);
}

.info-item {
  margin-bottom: var(--space-md);
}

.info-item h3 {
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

.info-item p {
  margin-bottom: var(--space-xs);
}

.info-item a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.map-container {
  margin-bottom: var(--space-md);
}

.google-map {
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: var(--border-neo);
}

.contact-form-container {
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: var(--border-neo);
}

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

.label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--dark);
}

.input, .textarea, .select select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  transition: border-color 0.3s;
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary);
  outline: none;
}

.control {
  position: relative;
}

.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.checkbox input {
  margin-right: var(--space-xs);
}
.title:not(.is-spaced)+.subtitle{
  margin-top: 0!important;
}

.footer {
  background-color: var(--dark)!important;
  color: var(--light-gray);
  padding: var(--space-lg) 0;
}

.footer .title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

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

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

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.social-links a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}

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

.newsletter {
  margin-top: var(--space-md);
}

.newsletter-form {
  margin-top: var(--space-xs);
}

.has-addons {
  display: flex;
}

.is-expanded {
  flex-grow: 1;
}

.copyright {
  margin-top: var(--space-md);
  color: var(--medium-gray);
  font-size: 0.9rem;
}


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

.reveal-card {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}


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

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

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


.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--off-white);
  padding: var(--space-md);
}

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

.success-message {
  max-width: 600px;
  margin-bottom: var(--space-md);
}


.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-lg);
}

.content-page .container {
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.content-page h1 {
  margin-bottom: var(--space-md);
}

.content-page h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-page p, .content-page ul, .content-page ol {
  margin-bottom: var(--space-md);
}


@media screen and (max-width: 1024px) {
  .title.is-1 {
    font-size: 3rem;
  }
  
  .title.is-2 {
    font-size: 2.5rem;
  }
  
  .column.is-one-third {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: var(--space-sm);
    box-shadow: var(--shadow-md);
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: var(--space-sm);
    width: 100%;
    display: block;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .column.is-one-third, .column.is-half, .column.is-two-thirds {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .value-box, .stat-box {
    margin-bottom: var(--space-md);
  }
}

@media screen and (max-width: 480px) {
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .title.is-3 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: var(--space-md) 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .filter-button {
    margin-bottom: var(--space-xs);
  }
}