/* style.css */

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* Typography */
  --font-family-headings: 'Manrope', sans-serif;
  --font-family-body: 'Rubik', sans-serif;

  /* Primary Colors (Split-Complementary Idea) */
  --primary-color: #0D6EFD; /* Bootstrap's Primary Blue */
  --primary-color-darker: #0a58ca;
  --primary-color-lighter: #5495ff; /* A lighter shade for gradients or highlights */
  
  --accent-color-1: #FF6B6B; /* Coral Red */
  --accent-color-1-darker: #e05252;

  --accent-color-2: #4ECDC4; /* Teal */
  --accent-color-2-darker: #3caea3;

  --secondary-color: #FFC107; /* Bootstrap's Warning Yellow - Good strong accent */
  --secondary-color-darker: #d9a406;

  /* Neutral Colors */
  --text-color-dark: #222222; /* For main text, headings on light bg */
  --text-color-medium: #333333; /* For less prominent text */
  --text-color-light: #FFFFFF; /* For text on dark bg */
  --text-color-muted: #6c757d; /* Bootstrap secondary */
  --text-color-subtle-dark: #495057;

  --bg-color-light: #F8F9FA; /* Light background for sections */
  --bg-color-white: #FFFFFF;
  --bg-color-dark: #212529; /* Dark background for footer */
  --bg-color-dark-subtle: #343a40; /* Slightly lighter dark for accents */

  /* Borders & Shadows */
  --border-radius-sm: 0.3rem;
  --border-radius-md: 0.6rem;
  --border-radius-lg: 1rem;
  --border-radius-pill: 50rem;
  --border-radius-biomorphic: 60% 40% 30% 70% / 60% 30% 70% 40%; /* Organic shape */
  --border-radius-card: var(--border-radius-md);

  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.125);
  --box-shadow-interactive: 0 0.25rem 0.75rem rgba(var(--primary-rgb, 13, 110, 253), 0.25); /* Dynamic shadow based on primary */
  --primary-rgb: 13, 110, 253; /* RGB for --primary-color */


  /* Transitions */
  --transition-speed-fast: 0.2s;
  --transition-speed-normal: 0.3s;
  --transition-speed-slow: 0.5s;
  --transition-timing-function: ease-in-out;

  /* Spacing - can leverage Bootstrap's spacing utilities mostly */
  --section-padding-y: 5rem; 

  /* Glassmorphism - example */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-blur: 8px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);

  /* Header Height - for potential offsets */
  --header-height: 70px; /* Approximate, adjust if navbar height changes */
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
body {
  font-family: var(--font-family-body);
  color: var(--text-color-medium);
  background-color: var(--bg-color-white);
  line-height: 1.7;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: var(--spacing-md, 1rem);
}
.section-title {
    font-weight: 800;
    color: var(--text-color-dark); /* Ensure high contrast */
    margin-bottom: 2.5rem; /* More space below section titles */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}
.section-title::after { /* Optional: subtle underline effect */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: var(--border-radius-pill);
}


p {
  margin-bottom: var(--spacing-md, 1rem);
  color: var(--text-color-subtle-dark);
}

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

a:hover {
  color: var(--primary-color-darker);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  /* display: block; */ /* Can sometimes help with spacing */
}

/* Utility Classes */
.section-bg-light {
  background-color: var(--bg-color-light);
}

.reveal-on-scroll {
  /*opacity: 0;*/
  transform: translateY(30px);
  transition: opacity var(--transition-speed-slow) var(--transition-timing-function), transform var(--transition-speed-slow) var(--transition-timing-function);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* For pages like privacy & terms to avoid header overlap */
.page-container {
  padding-top: 40px; /* Adjusted from 100px for better balance */
}
@media (min-width: 992px) {
  .page-container {
    padding-top: 60px;
  }
}


/*--------------------------------------------------------------
# Buttons (Global Styles)
--------------------------------------------------------------*/
.btn, button, input[type="submit"], input[type="button"] {
  font-family: var(--font-family-headings);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-pill); /* Biomorphic touch: pill shape */
  transition: all var(--transition-speed-normal) var(--transition-timing-function);
  border-width: 2px;
  box-shadow: var(--box-shadow-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-md);
}

.btn-primary, button.btn-primary { /* Bootstrap classes */
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-color-light);
}
.btn-primary:hover, button.btn-primary:hover {
  background-color: var(--primary-color-darker);
  border-color: var(--primary-color-darker);
  color: var(--text-color-light);
}

.btn-secondary, button.btn-secondary { /* If you use Bootstrap's .btn-secondary */
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-color-dark);
}
.btn-secondary:hover, button.btn-secondary:hover {
  background-color: var(--secondary-color-darker);
  border-color: var(--secondary-color-darker);
  color: var(--text-color-dark);
}

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

/* Interactive button style for key CTAs */
.btn-interactive {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-interactive::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left var(--transition-speed-slow) var(--transition-timing-function);
  z-index: -1;
}
.btn-interactive:hover::before {
  left: 100%;
}
.btn-sm { /* For "Read More" type links */
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}


/*--------------------------------------------------------------
# Header / Navbar
--------------------------------------------------------------*/
.header .navbar {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.95) !important; /* Slight transparency */
  backdrop-filter: blur(var(--glass-blur)); /* Glassmorphism if supported */
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.header .navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color) !important;
}
.header .nav-link {
  font-family: var(--font-family-headings);
  font-weight: 600;
  color: var(--text-color-medium) !important;
  margin: 0 var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--border-radius-sm);
  transition: color var(--transition-speed-fast), background-color var(--transition-speed-fast);
}
.header .nav-link:hover, .header .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(var(--primary-rgb), 0.05);
}
.header .navbar-toggler {
    border-color: rgba(var(--primary-rgb), 0.3);
}
.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(var(--primary-rgb), 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  /* min-height: 80vh; Removed explicit min-height, natural height based on content */
  padding: 8rem 0; /* Generous padding for visual impact */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; /* For biomorphic shapes or overlays */
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1, .hero-section .hero-title {
  color: var(--text-color-light) !important; /* IMPORTANT for readability on image */
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero-section p, .hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.9) !important; /* IMPORTANT */
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero-section .hero-cta {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
}

/* Biomorphic shape for hero (optional decoration) */
.biomorphic-shape-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0) 70%);
  border-radius: var(--border-radius-biomorphic);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/*--------------------------------------------------------------
# History Section (Timeline)
--------------------------------------------------------------*/
.timeline {
  position: relative;
  padding: var(--spacing-md) 0;
}
.timeline::before { /* The central line */
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color-lighter);
  transform: translateX(-50%);
  border-radius: var(--border-radius-pill);
}
.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xxl);
  width: 50%;
}
.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: calc(50% + 30px); /* Space for the line and circle */
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: calc(50% + 30px); /* Space for the line and circle */
}
/* Circle on the timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  top: 15px; /* Align with title or content start */
  width: 20px;
  height: 20px;
  background: var(--bg-color-white);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}
.timeline-item:nth-child(odd)::after {
  right: -10px; /* (width/2) */
  transform: translateX(50%);
}
.timeline-item:nth-child(even)::after {
  left: -10px; /* (width/2) */
  transform: translateX(-50%);
}
.timeline-content {
  padding: var(--spacing-lg);
  background: var(--bg-color-white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--box-shadow-md);
  position: relative; /* For arrow */
}
.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}
.timeline-text {
  font-size: 0.95rem;
  color: var(--text-color-medium);
}
/* Arrow for timeline content */
.timeline-content::before {
    content: "";
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--bg-color-white);
}
.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--bg-color-white) transparent transparent;
}


@media (max-width: 991.98px) {
  .timeline::before { left: 30px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
  .timeline-item:nth-child(odd) { left: 0; text-align: left;}
  .timeline-item:nth-child(even) { left: 0; padding-left: 70px; } /* Reset left positioning */
  .timeline-item::after { left: 20px; /* (30px - width/2) + border_width */ }
  .timeline-item:nth-child(odd)::after, .timeline-item:nth-child(even)::after {
    transform: translateX(-50%);
  }
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        border-width: 10px 15px 10px 0;
        border-color: transparent var(--bg-color-white) transparent transparent;
  }
}

/*--------------------------------------------------------------
# Cards (General Styling for Customer Stories, Case Studies, Projects, etc.)
--------------------------------------------------------------*/
.card {
  border: none;
  border-radius: var(--border-radius-card);
  box-shadow: var(--box-shadow-md);
  transition: transform var(--transition-speed-normal), box-shadow var(--transition-speed-normal);
  background-color: var(--bg-color-white);
  /* display: flex; flex-direction: column; /* Already default for Bootstrap cards */
}
.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--box-shadow-lg);
}
.card .card-image { /* Wrapper for image if used */
  overflow: hidden; /* Ensures image respects border-radius of this container */
  border-radius: var(--border-radius-card) var(--border-radius-card) 0 0; /* Top corners rounded */
  /* height: 220px; /* Example fixed height for images in cards */
  /* display: flex; /* For centering the img tag itself if it's smaller */
  /* align-items: center; */
  /* justify-content: center; */
}
.card .card-image img, .card > .card-img-top {
  width: 100%;
  height: 220px; /* Fixed height for consistent card images */
  object-fit: cover; /* STROGO: Ensures image covers the area, cropping if necessary */
  border-radius: var(--border-radius-card) var(--border-radius-card) 0 0; /* For card-img-top */
}

.card-body {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Make card body take available space */
}
.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}
.card-text {
  font-size: 0.95rem;
  color: var(--text-color-medium);
  flex-grow: 1; /* Text takes available space before footer/button */
  margin-bottom: var(--spacing-md);
}
.card .blockquote-footer {
    color: var(--text-color-muted);
    font-size: 0.85rem;
}
.card .btn, .card .card-link { /* Ensure buttons/links in cards are styled nicely */
    margin-top: auto; /* Push button to bottom if card-body is flex */
    align-self: flex-start; /* Default button alignment */
}
.card.text-center .btn, .card.text-center .card-link {
    align-self: center; /* Center button in text-center cards */
}


/* Biomorphic Card Style (Can be applied as an additional class or default) */
.biomorphic-card {
  /* border-radius: var(--border-radius-biomorphic); Simple biomorphic */
  border-radius: var(--border-radius-lg); /* Softer corporate */
  /* overflow: hidden; */ /* Important if using complex border-radius on main card */
}
.biomorphic-card .card-image img, .biomorphic-card > .card-img-top {
   border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0; /* Match parent */
}
.biomorphic-card-light { /* For cards on light backgrounds that need subtle distinction */
    background-color: var(--bg-color-white);
    box-shadow: var(--box-shadow-sm);
}
.biomorphic-card-light:hover {
    box-shadow: var(--box-shadow-md);
}

/* For specific project cards with icons */
.card .rounded-circle.img-fluid { /* e.g., project icons */
    width: 100px !important; /* Override Bootstrap's img-fluid potentially */
    height: 100px !important;
    object-fit: contain; /* Or 'cover', depending on icon style */
    margin: 0 auto var(--spacing-md) auto; /* Center the icon */
    padding: var(--spacing-sm);
    background-color: rgba(var(--primary-rgb), 0.1); /* Subtle bg for icon */
}

/*--------------------------------------------------------------
# Innovation Section
--------------------------------------------------------------*/
.innovation-list {
  padding-left: 0;
  list-style: none;
}
.innovation-list li {
  padding: var(--spacing-sm) 0;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--text-color-medium);
}
.innovation-list .animated-icon {
  font-size: 1.5rem;
  color: var(--accent-color-2);
  margin-right: var(--spacing-md);
  animation: bounceIcon 2s infinite ease-in-out;
}
@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Switch Component */
.switch-container {
    margin: var(--spacing-lg) 0;
}
.switch-label {
    font-weight: 500;
    color: var(--text-color-subtle-dark);
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input { 
  /*opacity: 0;*/
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--primary-color);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/*--------------------------------------------------------------
# External Resources Section
--------------------------------------------------------------*/
#external-resources .card-title a {
    color: var(--primary-color);
    font-weight: 600;
}
#external-resources .card-title a:hover {
    color: var(--primary-color-darker);
}
#external-resources .card {
    background-color: var(--bg-color-white); /* Ensure cards are distinct on light bg section */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.biomorphic-form {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,245,250,0.95));
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl) !important;
  box-shadow: var(--box-shadow-lg);
  /* Glassmorphism attempt - use with background image on parent for best effect */
  /* background: var(--glass-bg); 
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border); */
}
.contact-details strong.animated-icon {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}
.contact-details a {
    color: var(--text-color-medium);
}
.contact-details a:hover {
    color: var(--primary-color);
}

/* Form Styling */
.form-control {
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  transition: border-color var(--transition-speed-fast), box-shadow var(--transition-speed-fast);
  background-color: var(--bg-color-white); /* Ensure good contrast */
  color: var(--text-color-dark);
}
.form-control::placeholder {
    color: var(--text-color-muted);
    opacity: 1;
}
.form-control:focus {
  border-color: var(--primary-color-lighter);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
  background-color: var(--bg-color-white); /* Maintain bg on focus */
}
.form-label {
  font-weight: 600;
  color: var(--text-color-dark);
  margin-bottom: var(--spacing-sm);
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--bg-color-dark);
  color: var(--text-color-muted);
  font-size: 0.9rem;
}
.footer h5 {
  color: var(--secondary-color); /* Use accent for footer titles */
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer p, .footer ul {
  color: #adb5bd; /* Lighter shade of muted for better readability on dark bg */
}
.footer .footer-link {
  color: #adb5bd;
  transition: color var(--transition-speed-fast), padding-left var(--transition-speed-fast);
  display: inline-block; /* For padding effect */
  padding: 0.2rem 0;
}
.footer .footer-link:hover {
  color: var(--text-color-light);
  padding-left: 5px; /* Subtle hover effect */
  text-decoration: none;
}
.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Biomorphic divider for footer (optional) */
.biomorphic-divider-footer {
  height: 50px;
  background: linear-gradient(to right, var(--bg-color-dark-subtle), var(--bg-color-dark));
  clip-path: ellipse(70% 100% at 50% 100%); /* Example biomorphic clip-path */
  margin: var(--spacing-lg) 0;
  opacity: 0.5;
}
.footer .text-center[style*="border-top"] {
    border-top-color: var(--bg-color-dark-subtle) !important;
}

/* Styling for text-based social links if needed beyond .footer-link */
.footer .list-unstyled a[target="_blank"]::after { /* Optional: external link icon */
    /* content: " \f35d"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    font-size: 0.8em;
    margin-left: 3px; */
    /* Commented out as FontAwesome is not included by default */
}


/*--------------------------------------------------------------
# Success Page (success.html)
--------------------------------------------------------------*/
/* If Barba.js adds namespace to body tag */
body[data-barba-namespace="success"] main,
/* Or if you add a specific class to the main element in success.html */
main.success-page-content {
  /* min-height: 100vh; /* This makes the main content take full viewport height */
  /* If header/footer are outside this, they will be pushed out or overlap depending on body structure */
  /* The HTML provided uses: style="min-height: 70vh;" on main. This should be fine. */
  /* Bootstrap's d-flex and align-items-center on the main tag handles centering */
}
body[data-barba-namespace="success"] main .biomorphic-card-light {
    animation: fadeInScaleUp 0.7s var(--transition-timing-function) forwards;
}
@keyframes fadeInScaleUp {
    0% {
        /*opacity: 0;*/
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
#success-icon-check { /* If the success icon has an ID for animation */
    animation: successCheckMark 0.5s ease-out forwards 0.2s; /* Delayed animation */
}
@keyframes successCheckMark {
  /*0% { transform: scale(0); opacity: 0; }*/
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}


/*--------------------------------------------------------------
# Cookie Consent Popup
--------------------------------------------------------------*/
/* Basic styling is inline in HTML as requested.
   This can be enhanced here if needed. */
#cookiePopup p {
    color: var(--text-color-light); /* Ensure text is white as per inline styles */
}
#cookiePopup #acceptCookie {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: background-color var(--transition-speed-fast);
}
#cookiePopup #acceptCookie:hover {
    background-color: var(--primary-color-darker);
}
#cookiePopup a {
    color: var(--secondary-color); /* Yellow accent for link */
}


/*--------------------------------------------------------------
# Barba.js Page Transitions (Example)
--------------------------------------------------------------*/
.barba-leave-active,
.barba-enter-active {
  transition: opacity var(--transition-speed-slow) var(--transition-timing-function);
}
.barba-leave-to,
.barba-enter-from {
  /*opacity: 0;*/
}
/* Optional: Slide transition */
/*
.barba-leave-active {
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  width: 100%;
}
.barba-enter-active {
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 0.5s;
}
.barba-leave-to {
  opacity: 0;
  transform: translateX(-100%);
}
.barba-enter-from {
  opacity: 0;
  transform: translateX(100%);
}
*/

/*--------------------------------------------------------------
# Responsive Adjustments (Examples - Bootstrap handles most)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero-section h1, .hero-section .hero-title {
    font-size: 2.2rem;
  }
  .hero-section p, .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  :root {
    --section-padding-y: 3rem;
  }
  .footer .text-md-start { /* Ensure footer content stacks nicely */
    text-align: center !important;
  }
  .footer .col-md-auto, .footer .col-lg-auto, .footer .col-xl-auto { /* Center footer columns on mobile */
    margin-bottom: var(--spacing-lg);
  }
}

/* Ensure current year span in footer is styled if needed */
#currentYear {
    /* No specific style needed, inherits from parent */
}
#lastUpdatedDate, #lastUpdatedDateTerms {
    /* No specific style needed, inherits from parent */
}
.navbar-toggler{
  display: none;
}