/* Variables */
:root {
  /* Primary Colors */
  --primary-color: #0050a0;
  --primary-dark: #003d7a;
  --primary-light: #1a75c9;
  
  /* Secondary Colors */
  --secondary-color: #e63312;
  --secondary-dark: #c92d10;
  --secondary-light: #ff5a3d;
  
  /* Neutral Colors */
  --dark: #222222;
  --medium-dark: #444444;
  --medium: #666666;
  --medium-light: #999999;
  --light: #f5f5f5;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--medium-dark) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  
  /* 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-round: 50%;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

p {
  margin-bottom: var(--spacing-md);
  color: var(--medium-dark);
}

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

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

img {
  max-width: 100%;
  height: auto;
}

/* Container Modifications */
.container {
  padding: var(--spacing-lg) var(--spacing-md);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  color: var(--dark);
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-sm);
}

/* Button Styles */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width var(--transition-medium);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

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

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 51, 18, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 51, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 51, 18, 0);
  }
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-medium);
  background: var(--gradient-primary);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--white);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 70%;
}

.navbar-brand img {
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: var(--gradient-dark);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .navbar-brand img {
  transform: scale(0.9);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  color: var(--white);
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* Timeline Component for History Section */
.timeline-container {
  position: relative;
  padding: var(--spacing-md);
}

.timeline-item {
  position: relative;
  padding: var(--spacing-md) 0 var(--spacing-md) var(--spacing-xl);
  border-left: 2px solid var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: -60px;
  top: var(--spacing-md);
  width: 120px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: bold;
}

.timeline-item h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.image-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.image-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--light);
  position: relative;
}

.custom-slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  overflow: hidden;
  padding: var(--spacing-md) 0;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.slider-item {
  flex: 0 0 100%;
  padding: 0 var(--spacing-md);
}

.pricing-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.pricing-card .card-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-lg);
  text-align: center;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card .card-image {
  padding: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 200px;
}

.pricing-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.pricing-card .card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.feature-list li {
  padding: var(--spacing-sm) 0;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-md);
}

.prev-btn, .next-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: var(--spacing-sm);
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  color: var(--primary-dark);
}

.arrow-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}

.arrow-icon.left::before,
.arrow-icon.right::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  top: 4px;
}

.arrow-icon.left::before {
  left: 8px;
  transform: rotate(135deg);
}

.arrow-icon.right::before {
  right: 8px;
  transform: rotate(-45deg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin: 0 var(--spacing-md);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-round);
  background-color: var(--medium-light);
  margin: 0 var(--spacing-xs);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary-color);
}

.price-note {
  font-size: 0.875rem;
  color: var(--medium);
  font-style: italic;
}

/* Resources Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-card h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.resource-card p {
  color: var(--medium);
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  position: relative;
}

.process-timeline {
  position: relative;
  padding: var(--spacing-md) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--gradient-primary);
  left: 50px;
  top: 0;
}

.process-item {
  display: flex;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: var(--radius-round);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  z-index: 1;
}

.process-icon img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  object-fit: cover;
}

.process-number {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--gradient-secondary);
  color: var(--white);
  border-radius: var(--radius-round);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  right: 0;
  bottom: 0;
}

.process-content {
  margin-left: var(--spacing-lg);
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex: 1;
}

.process-content h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Partners Section */
.partners-section {
  background-color: var(--light);
}

.partners-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.partner-item {
  flex: 0 0 calc(25% - var(--spacing-md));
  min-width: 250px;
}

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

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

.partner-card .card-image {
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.partner-card .card-content {
  padding: var(--spacing-md);
  text-align: center;
}

.partner-card h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
}

.testimonial-item {
  flex: 0 0 100%;
  max-width: 350px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-card .card-content {
  padding: var(--spacing-lg);
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0.1;
  color: var(--primary-color);
  font-family: serif;
}

.testimonial-text {
  position: relative;
  margin-bottom: var(--spacing-lg);
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  overflow: hidden;
  margin-right: var(--spacing-md);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  margin-bottom: 0;
  color: var(--dark);
}

.author-info p {
  margin-bottom: 0;
  color: var(--medium);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-round);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--spacing-md);
  color: var(--white);
  flex-shrink: 0;
  position: relative;
}

.contact-icon::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-icon.location::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.contact-icon.phone::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.contact-icon.email::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.contact-icon.clock::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.contact-item h5 {
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--medium);
}

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

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-form-wrapper h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

.form-group label {
  color: var(--medium-dark);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.form-control, .form-select {
  border: 1px solid var(--medium-light);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 80, 160, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer-section {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
}

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

.footer-section p {
  color: var(--light);
  opacity: 0.8;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

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

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

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

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

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

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  border-radius: var(--radius-md);
  border: none;
}

.copyright {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  opacity: 0.7;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background: var(--light);
}

.success-container {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 90%;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--radius-round);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--spacing-lg);
  position: relative;
}

.success-icon::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.page-title {
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--white);
  padding: 15px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0 20px 0 0;
  color: var(--white);
}

.cookie-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

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

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

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

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

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

.card-content {
  padding: var(--spacing-lg);
  text-align: center;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Animation Utilities */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"] {
  transform: translateX(50px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* Particle Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-round);
  pointer-events: none;
  animation: float 5s infinite ease-in-out;
}

/* Media Queries */
@media (max-width: 1199.98px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .process-timeline::before {
    left: 40px;
  }
  
  .process-icon {
    width: 80px;
    height: 80px;
  }
  
  .process-icon img {
    width: 50px;
    height: 50px;
  }
  
  .partner-item {
    flex: 0 0 calc(50% - var(--spacing-md));
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .timeline-item {
    padding-left: var(--spacing-lg);
  }
  
  .timeline-item::before {
    width: 80px;
    left: -40px;
    font-size: 0.875rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin: 0 0 15px 0;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .partner-item {
    flex: 0 0 100%;
  }
  
  .testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
  }
  
  .process-icon img {
    width: 35px;
    height: 35px;
  }
  
  .process-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .process-content {
    margin-left: var(--spacing-md);
    padding: var(--spacing-md);
  }
  
  .process-timeline::before {
    left: 30px;
  }
}
.navbar-brand img{
  width: 30px;
  height: 30px;
}
.navbar{
  padding: 0;
  background: #003d7a;
}