/* CSS Custom Properties for Theme Colors and Typography */
:root {
  /* Primary Colors - Complementary Color Scheme */
  --primary-color: #3B82F6;
  --primary-light: #60A5FA;
  --primary-dark: #2563EB;
  --secondary-color: #F59E0B;
  --secondary-light: #FBBF24;
  --secondary-dark: #D97706;
  
  /* Accent Colors */
  --accent-purple: #8B5CF6;
  --accent-pink: #EC4899;
  --accent-teal: #14B8A6;
  --accent-orange: #F97316;
  
  /* Neutral Colors */
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --background-light: #F9FAFB;
  --background-dark: #111827;
  --surface: #FFFFFF;
  --surface-elevated: rgba(255, 255, 255, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  
  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Borders & Shadows */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 4px 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);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.title.is-1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.title.is-2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  position: relative;
    margin-bottom: 40px!important;;
}

.title.is-2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
}

/* Navigation Enhancements */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: all var(--transition-normal);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand .navbar-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-item {
  font-family: var(--font-body);
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  color: var(--text-primary) !important;
}

.navbar-item:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-item:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

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

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

.button.is-primary:hover, .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: var(--gradient-primary);
  filter: brightness(1.1);
}

.button.is-secondary, .btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.button.is-secondary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.button.is-white.is-outlined {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.button.is-white.is-outlined:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  backdrop-filter: blur(10px);
}

/* Section Spacing */
.section {
  padding: var(--spacing-xxl);
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, var(--background-light) 0%, rgba(59, 130, 246, 0.02) 100%);
}

/* Hero Section */
.hero-header {
  position: relative;
  z-index: 100;
}

.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - 3.25rem);
  position: relative;
  background-attachment: fixed;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center;
  display: flex;
  align-items: center;
}

.hero-gradient {
  background: var(--gradient-hero), url('image/modern-digital-workspace-with-multiple-screens-and-sleek-interface.jpg');
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center;
  background-attachment: fixed;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

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

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

.hero-image {
  position: relative;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: all var(--transition-slow);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Card Styles */
.card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

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

.card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 100%;
}

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

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

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Statistics Section */
.stat-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0;
  transition: all var(--transition-normal);
}

.stat-card:hover::before {
  opacity: 0.1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

/* Success Stories */
.success-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.success-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-5px) rotate(-1deg);
}

.content-carousel {
  position: relative;
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 1px solid rgba(236, 72, 153, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--accent-pink);
  transform: translateY(-5px);
}

.media-left .image {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-pink);
}

.media-left img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

/* Sustainability Section */
.sustainability-stats .column {
  text-align: center;
}

.sustainability-stats .title {
  color: var(--accent-teal);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Press Section */
.press-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.press-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px) rotate(0.5deg);
}

.press-gallery .card-image {
  height: 250px;
}

/* Contact Section */
.contact-form{
  width: 100%;
}
.contact-form-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.1);
}

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

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

.input, .textarea {
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.input:focus, .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: var(--surface);
}

.contact-info {
  padding: var(--spacing-lg);
}

.contact-item {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-image {
  margin-top: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Resource Cards */
.resource-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(20, 184, 166, 0.05) 100%);
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.resource-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px) rotate(-0.5deg);
}

/* Footer */
.footer {
  background: var(--background-dark) !important;
  color: var(--text-light);
  padding: var(--spacing-xxl)  var(--spacing-lg) ;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

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

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

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

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -15px;
}

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

.contact-footer a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.2s;
}

.fade-in.delay-2 {
  animation-delay: 0.4s;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left.delay-1 {
  animation-delay: 0.3s;
}

.slide-in-left.delay-2 {
  animation-delay: 0.6s;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Curved Grid Elements - Minimalist with Curved Grids */
.section:nth-child(odd) {
  transform: skew(-1deg);
  margin: var(--spacing-lg) 0;
}

.section:nth-child(odd) .container {
  transform: skew(1deg);
}

.columns {
  gap: var(--spacing-lg);
}

.column {
  transition: all var(--transition-normal);
}

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

/* Glassmorphism Effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Privacy and Terms Pages */
.privacy-content, .terms-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.privacy-content p, .terms-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

/* Read More Links */
.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: all var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero.is-fullheight-with-navbar {
    background-attachment: scroll;
  }
  
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    transform: none;
    margin-top: var(--spacing-lg);
  }
  
  .section {
    padding: var(--spacing-lg) ;
  }
  
  .section:nth-child(odd) {
    transform: none;
    margin: 0;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .button {
    margin-bottom: var(--spacing-sm);
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
  }
  
  .title.is-1 {
    font-size: 2rem;
  }
  
  .title.is-2 {
    font-size: 1.75rem;

  }
  
  .hero-body {
    
    padding: var(--spacing-lg) ;
    padding-top: 100px;
  }
  
  .card-content {
    padding: var(--spacing-md);
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  .navbar, .hero-image, .buttons {
    display: none !important;
  }
  
  .section {
    padding: var(--spacing-sm) ;
    break-inside: avoid;
  }
  
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --surface: #ffffff;
    --primary-color: #0066cc;
  }
  
  .button {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 2px solid var(--text-primary);
  }
}

@media screen and (min-width: 769px), print {
    .column.is-one-third, .column.is-one-third-tablet {
        flex: none;
        width: 30%;
    }
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
 
}