:root {
  /* Color Palette - Pastel Theme */
  --primary-color: #5D9CEC;
  --primary-dark: #4A89DC;
  --primary-light: #8EBAFE;
  --secondary-color: #F7C1BB;
  --secondary-dark: #E8A8A1;
  --secondary-light: #FFDFD9;
  --accent-color: #A0D468;
  --accent-dark: #8CC152;
  --accent-light: #C9F0A9;
  --neutral-dark: #333333;
  --neutral-medium: #666666;
  --neutral-light: #EEEEEE;
  --white: #FFFFFF;
  --black: #000000;
  --success: #48CFAD;
  --warning: #FFCE54;
  --danger: #ED5565;
  --info: #5D9CEC;
  
  /* Shadows */
  --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);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Global Button Styles */
.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none !important;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.button.is-small {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: all var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

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

.navbar-menu {
  display: flex;
}

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

.navbar-item {
  color: var(--neutral-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
}

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

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

.navbar-burger span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 2px;
  background-color: var(--neutral-dark);
  transition: all var(--transition-fast);
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

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

.hero .title,
.hero .subtitle {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(93, 156, 236, 0.2),
    rgba(160, 212, 104, 0.2)
  );
  animation: particles-animation 20s linear infinite;
}

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

/* Services Section */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

.card-content .title {
  color: var(--neutral-dark);
  margin-bottom: var(--space-sm);
}

.card-content p {
  color: var(--neutral-medium);
  flex: 1;
}

/* Statistics Section */
.box {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  height: 100%;
}

.counter {
  color: var(--primary-color);
  font-weight: 700;
}

/* Projects Section */
.success-story {
  margin-bottom: var(--space-lg);
}

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: var(--space-md);
  text-align: center;
}

.results div {
  background-color: var(--primary-light);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
}

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

/* Clientele Section */
.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

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

.sector-item {
  padding: var(--space-md);
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  height: 100%;
}

.sector-item h4 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

/* Resources Section */
.resource-box {
  height: 100%;
}

.resource-list {
  list-style: none;
}

.resource-list li {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--neutral-light);
}

.resource-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.resource-list h4 {
  margin-bottom: var(--space-xs);
}

.publication-item {
  display: flex;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.publication-item img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.publication-item div {
  flex: 1;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.tool-item {
  background-color: var(--primary-light);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  text-align: center;
}

.tool-item h4 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

/* Success Stories Section */
.success-story .card-content {
  padding: var(--space-lg);
}

.success-story .subtitle {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* Testimonials Section */
.testimonial-card {
  height: 100%;
}

.testimonial-card .media {
  margin-bottom: var(--space-md);
}

.testimonial-card .image {
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-card .stars {
  color: var(--warning);
  margin-top: var(--space-sm);
  font-size: 1.25rem;
}

/* Press Section */
.press-card .card-image {
  height: 200px;
}

.press-card .card-content {
  padding: var(--space-lg);
}

/* Media Section */
.video-container {
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 24px;
  transition: all var(--transition-medium);
}

.video-container:hover .play-button {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.presentation-card .card-image {
  height: 180px;
}

/* Contact Section */
.contact-form-container {
  height: 100%;
}

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

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

.input, .textarea, .select select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  transition: border-color var(--transition-fast);
}

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

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

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

/* Footer */
.footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-xl);
}

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

.footer p {
  color: var(--neutral-light);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  margin-bottom: var(--space-lg);
}

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

.footer-links a {
  color: var(--neutral-light);
  transition: color var(--transition-fast);
}

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

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

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

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

.success-container {
  max-width: 600px;
  margin: 0 auto;
}

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

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-3xl);
}

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

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: var(--space-sm) var(--space-lg);
  }
  
  .navbar-burger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .column {
    padding: 0.75rem;
  }
  
  .results {
    grid-template-columns: 1fr;
  }
  
  .publication-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .publication-item img {
    margin-bottom: var(--space-sm);
  }
}

/* Animation Utilities */
.animate__animated {
  animation-duration: 1s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Custom ScrollReveal Animation Styles */
[data-sr-id] {
  visibility: hidden;
}

/* Special Page Styles */
.about-page .team-member {
  text-align: center;
}

.about-page .team-member img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto var(--space-md);
}

.contacts-page .map-container {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

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

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

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

.mb-6 {
  margin-bottom: 4rem;
}
.navbar-burger{
  display: none !important;
}