:root {
  /* Tetrad color scheme */
  --primary-color: #2c58a6;
  --primary-dark: #1e3c70;
  --primary-light: #4a78c9;
  
  --secondary-color: #a62c58;
  --secondary-dark: #701e3c;
  --secondary-light: #c94a78;
  
  --tertiary-color: #58a62c;
  --tertiary-dark: #3c701e;
  --tertiary-light: #78c94a;
  
  --quaternary-color: #a6582c;
  --quaternary-dark: #703c1e;
  --quaternary-light: #c9784a;
  
  /* Neutral colors */
  --dark: #222;
  --gray-dark: #444;
  --gray: #777;
  --gray-light: #ddd;
  --light: #f8f9fa;
  --white: #fff;
  
  /* Font families */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  
  /* Border radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  
  /* Shadows */
  --shadow-inset: inset 2px 2px 5px rgba(0, 0, 0, 0.15), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
  --shadow-outset: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.6);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  
  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

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

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

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

.text-dark {
  color: var(--dark) !important;
}

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

.mb-4 {
  margin-bottom: var(--spacing-md);
}

.mb-5 {
  margin-bottom: var(--spacing-lg);
}

/* ========== Neomorphic Elements ========== */
.neomorphic-card {
  background-color: var(--light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-outset);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.neomorphic-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.12), -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.neomorphic-input {
  background-color: var(--light);
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-inset);
  padding: var(--spacing-sm);
  transition: box-shadow var(--transition-fast);
}

.neomorphic-input:focus {
  outline: none;
  box-shadow: var(--shadow-inset), 0 0 0 2px rgba(44, 88, 166, 0.3);
}

.neomorphic-btn {
  background: linear-gradient(145deg, var(--primary-light), var(--primary-color));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.neomorphic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-medium);
}

.neomorphic-btn:hover::before {
  opacity: 1;
}

.neomorphic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 88, 166, 0.3);
}

.neomorphic-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(44, 88, 166, 0.2);
}

/* ========== Buttons ========== */
.btn {
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(44, 88, 166, 0.2);
}

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

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ========== Header ========== */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  transition: all var(--transition-medium);
}

.header-section.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--dark);
  margin: 0 var(--spacing-xs);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
  margin-bottom: 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 88, 166, 0.8), rgba(166, 44, 88, 0.8));
  z-index: 0;
  opacity: 0.3;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1, 
.hero-section h2, 
.hero-section p {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.min-vh-75 {
  min-height: 75vh;
}

/* ========== History Section ========== */
.history-section {
  background-color: var(--white);
}

.history-image-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
}

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

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

.history-content {
  padding: var(--spacing-md);
}

.history-content h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-md);
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(44, 88, 166, 0.3);
}

.timeline-content {
  padding-bottom: var(--spacing-sm);
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

/* ========== Methodology Section ========== */
.methodology-section {
  background-color: var(--light);
  position: relative;
}

.methodology-section h2 {
  color: var(--primary-color);
}

.card {
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-image {
  width: 100%;
  height: 240px;
  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 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.progress-container {
  margin-top: var(--spacing-md);
}

.progress-container span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--gray-dark);
}

.progress {
  height: 10px;
  margin-bottom: var(--spacing-sm);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  border-radius: var(--border-radius-sm);
}

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

.animated-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

.animated-icon span {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--gray-dark);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.smart-goals {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.smart-goal-item {
  flex: 0 0 48%;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.smart-goal-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  margin-right: 0.5rem;
}

.expense-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.expense-category {
  flex: 0 0 48%;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.category-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
  background-size: cover;
}

.category-icon.food {
  background-color: var(--primary-light);
}

.category-icon.transport {
  background-color: var(--secondary-light);
}

.category-icon.entertainment {
  background-color: var(--tertiary-light);
}

.category-icon.utilities {
  background-color: var(--quaternary-light);
}

.inflation-protection {
  margin-top: var(--spacing-md);
}

.protection-meter {
  position: relative;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.meter-progress {
  height: 100%;
  background: linear-gradient(to right, var(--tertiary-color), var(--tertiary-light));
  border-radius: var(--border-radius-sm);
}

.meter-label {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.fund-progress {
  text-align: center;
}

.debt-strategy {
  margin-top: var(--spacing-md);
}

.strategy-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.strategy-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.strategy-icon.avalanche {
  background-color: var(--secondary-color);
}

.strategy-icon.snowball {
  background-color: var(--tertiary-color);
}

.strategy-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.strategy-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.retirement-calculator {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
}

.calculator-display {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.display-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.display-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.calculator-params {
  font-size: 0.9rem;
}

.param-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

/* ========== External Resources ========== */
.external-resources-section {
  background-color: var(--white);
}

.resource-card {
  padding: var(--spacing-md);
  height: 100%;
}

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

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

.resource-list li {
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--gray-light);
}

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

.resource-list a {
  display: block;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.resource-list a:hover {
  color: var(--primary-color);
}

.resource-title {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.resource-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* ========== Customer Stories ========== */
.customer-stories-section {
  background-color: var(--light);
}

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

.testimonial-image {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--white);
}

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

.testimonial-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.testimonial-job {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: var(--spacing-sm);
}

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

.testimonial-stats {
  display: flex;
  justify-content: space-around;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-light);
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========== Team Section ========== */
.team-section {
  background-color: var(--white);
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

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

.team-position {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.team-bio {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.social-link {
  color: var(--gray);
  transition: color var(--transition-fast);
}

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

/* ========== Contact Section ========== */
.contact-section {
  background-color: var(--light);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
}

.contact-item h3 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

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

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

.contact-form label {
  color: var(--gray-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ========== Footer ========== */
.footer-section {
  background-color: var(--dark);
  color: var(--gray-light);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
}

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

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

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

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

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

.social-links a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

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

hr {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========== Cookie Consent ========== */
.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: var(--spacing-md);
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.cookie-content {
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
}

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

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

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

/* ========== Responsive Styles ========== */
@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .smart-goal-item,
  .expense-category {
    flex: 0 0 100%;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.25rem;
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .stat-item {
    margin-bottom: var(--spacing-xs);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-btn {
    align-self: flex-end;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section p {
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .timeline {
    padding-left: 20px;
  }
  
  .timeline-marker {
    left: -20px;
    width: 14px;
    height: 14px;
  }
}

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

.terms-container,
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-soft);
}

/* ========== About Page ========== */
.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 88, 166, 0.8), rgba(166, 44, 88, 0.8));
  opacity: 0.5;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-content {
  padding: var(--spacing-xl) 0;
}

.about-section {
  margin-bottom: var(--spacing-xl);
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

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

/* ========== Read More Links ========== */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

.read-more::after {
  content: ' →';
  opacity: 0;
  transform: translateX(-5px);
  display: inline-block;
  transition: all var(--transition-fast);
}

.read-more:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ========== Animation Helpers ========== */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

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

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

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

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

[data-aos].aos-animate {
  transform: translateY(0) translateX(0);
}

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

/* ========== Additional Utility Classes ========== */
.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.h-100 {
  height: 100% !important;
}