/*
  Theme: Péče o Zvířata & Veterinární Kurzy
  Design System: Glassmorphism & Eco-Minimalism
  Color Scheme: Bright
  Animation Style: Non-linear movements
  Fonts: Roboto (Headings), Lato (Body)
*/

/* CSS Variables */
:root {
    /* Bright & Eco Color Palette */
    --primary-color: #4CAF50; /* Bright Green - Main call to action, highlights */
    --primary-color-darker: #388E3C; /* Darker shade for hover/active states */
    --secondary-color: #00796b; /* Teal/Deep Green - Accents, secondary info */
    --secondary-color-darker: #004D40; /* Darker shade for text on accent bg or hovers */
    --accent-color-light: #A5D6A7; /* Light Green - Subtle accents, backgrounds */
    --accent-color-bright: #81C784; /* Mid-Bright Green */

    /* Neutral Colors */
    --bg-main: #F1F8E9; /* Very light green/off-white - Eco-minimalism base */
    --bg-light-section: #E8F5E9; /* Slightly darker for section differentiation */
    --bg-card-content: #FFFFFF; /* White for card content areas for readability */

    /* Text Colors */
    --text-dark: #37474F;  /* Dark Gray - Main body text for readability */
    --text-headers: #263238; /* Very Dark Gray/Black - Headings for strong contrast */
    --text-light: #FFFFFF; /* White - For dark backgrounds like Hero */
    --text-muted: #78909C; /* Lighter Gray - For secondary text, footers */
    --text-link: var(--secondary-color);
    --text-link-hover: var(--primary-color-darker);

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.35); /* Brighter, more opaque glass for readability */
    --glass-bg-header: rgba(255, 255, 255, 0.65);
    --glass-border-color: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --glass-blur: 10px;
    --glass-saturate: 150%;

    /* Fonts */
    --font-primary: 'Roboto', 'Arial', sans-serif;
    --font-secondary: 'Lato', 'Helvetica Neue', sans-serif;

    /* Spacing & Borders */
    --border-radius-sm: 0.3rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.8rem;
    --section-padding-y: 4rem;
    --header-height: 70px; /* Approximate header height */
}

/* Base & Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.7;
    padding-top: var(--header-height); /* Offset for fixed header */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-headers);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 900; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

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

a {
    color: var(--text-link);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a:hover {
    color: var(--text-link-hover);
    text-decoration: none; /* Often preferred, or underline on hover */
}

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem; /* Default Bootstrap padding-left for lists */
}

/* Section Styling */
section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem; /* Increased margin for better separation */
    font-weight: 900;
    color: var(--text-headers);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

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

/* Header / Navbar */
.navbar.fixed-top {
    background: var(--glass-bg-header);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border-bottom: 1px solid var(--glass-border-color);
    box-shadow: 0 2px 10px var(--glass-shadow);
    transition: background 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}
.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--text-headers) !important;
}
.navbar .nav-link {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius-sm);
    transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(76, 175, 80, 0.1);
}
.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}
.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(44, 62, 80, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--glass-bg-header); /* Keep glass effect in mobile menu */
        border-radius: var(--border-radius-md);
        margin-top: 0.5rem;
        padding: 1rem;
        box-shadow: 0 4px 15px var(--glass-shadow);
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    /* min-height: 90vh; Removed fixed height, driven by content or specific design */
    padding: 6rem 1rem; /* Ample padding */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* For pseudo-element overlay if not using linear-gradient in HTML */
}
.hero-section::before { /* Optional overlay if not in HTML */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    font-weight: 900;
    color: var(--text-light); /* Explicitly white */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light); /* Explicitly white */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Global Button Styles */
.btn, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius-md); /* Modern rounded corners */
    text-transform: uppercase; /* Optional: for a bolder look */
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Non-linear transition */
    border: 2px solid transparent;
    text-align: center;
    display: inline-block; /* Ensure proper alignment and sizing */
    line-height: 1.5;
    vertical-align: middle;
}
.btn:focus, button:focus, input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.35); /* Use Bootstrap's focus color or a custom one */
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-color-darker);
    border-color: var(--primary-color-darker);
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02); /* Non-linear movement */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--secondary-color-darker);
    border-color: var(--secondary-color-darker);
    color: var(--text-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: var(--text-light);
    color: var(--text-dark); /* Text color changes on hover for light outline */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

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

/* Card Styles (General & Glassmorphism) */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 24px var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden; /* Important for child elements like images */
    display: flex; /* For centering content */
    flex-direction: column; /* Stack image and content vertically */
    /* align-items: center; This centers the whole card-body content. Might be too much. */
    text-align: center; /* Center inline/inline-block content within the card */
}
.card:hover {
    transform: translateY(-8px) scale(1.01); /* Non-linear movement on hover */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.card-image { /* Container for image */
    width: 100%;
    height: 220px; /* Fixed height for image containers in cards */
    overflow: hidden;
    border-top-left-radius: var(--border-radius-lg); /* Match card's border radius */
    border-top-right-radius: var(--border-radius-lg);
    margin-bottom: 0; /* Remove default Bootstrap card-img-top margin */
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, might crop */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card:hover .card-image img {
    transform: scale(1.1); /* Subtle zoom on image hover */
}
.card-content, /* Custom class for content area */
.card-body { /* Bootstrap class */
    padding: 1.5rem;
    background-color: var(--bg-card-content); /* Solid background for readability */
    flex-grow: 1; /* Allows card body to fill remaining space */
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    text-align: left; /* Default text alignment for content */
}
.card-title {
    color: var(--text-headers);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center; /* Center card titles specifically */
}
.card-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.card-text.price-tag {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.card .btn { /* Button inside a card */
    margin-top: auto; /* Pushes button to the bottom if card is flex column */
    align-self: center; /* Center button if card-body is flex and centered */
}

/* Team Card Specifics */
.team-card .card-image {
    height: auto; /* Let image define its height within a square-ish frame */
    padding: 1.5rem 1.5rem 0; /* Space above image */
    background: transparent; /* Image is directly on glass */
    border-radius: 0;
}
.team-card .card-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* Circular team member photos */
    border: 4px solid var(--glass-border-color);
    margin: 0 auto; /* Center the image */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.team-card .card-content {
    text-align: center;
}
.team-card .card-text.text-muted {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

/* Testimonial / Success Stories Card */
.testimonial-card {
    padding: 2rem; /* More padding for testimonials */
    text-align: center;
}
.testimonial-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem auto; /* Center image */
    border: 3px solid var(--primary-color);
}
.testimonial-card .blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
}
.testimonial-card .blockquote-footer {
    margin-top: 1rem;
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Gallery Section */
.gallery-item .card { /* Card wrapper for gallery item */
    padding: 0.5rem; /* Small padding around the image itself */
}
.gallery-item .card-image {
    height: 250px; /* Consistent height for gallery images */
    border-radius: var(--border-radius-md); /* Rounded corners for images in gallery */
}

/* Statistics Section */
.statistic-widget {
    padding: 1.5rem;
    text-align: center;
    /* Glassmorphism applied by .glassmorphism-widget in HTML */
}
.animated-icon svg {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    stroke: var(--secondary-color);
    margin-bottom: 0.5rem;
    /* Animation: e.g., pulsing icon (can be done with Anime.js or CSS keyframes) */
    animation: iconPulse 2s infinite cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary-color-darker); /* Ensure contrast on lighter accent bg */
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 1rem;
    color: var(--secondary-color-darker); /* Ensure contrast */
    font-weight: 600;
}

/* Case Studies / Portfolio */
/* Uses general card styles, ensure content contrast and readability */
.case-studies-section .card-title {
    text-align: left; /* For longer titles in case studies */
}
.case-studies-section .card-text {
     text-align: left;
}

/* Vision, History, Community Sections */
/* These are more text-heavy, ensure good readability and spacing */
.vision-section img, .history-section img, .community-section img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* External Resources List */
.list-group-item.glassmorphism-list-item {
    background: var(--glass-bg);
    backdrop-filter: blur(calc(var(--glass-blur) * 0.8)) saturate(var(--glass-saturate)); /* Slightly less blur */
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) * 0.8)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 0.75rem;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.list-group-item.glassmorphism-list-item:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateX(5px);
}
.list-group-item h5 {
    color: var(--text-headers);
    font-weight: 700;
}
.list-group-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.list-group-item small.text-muted {
    color: var(--secondary-color) !important;
}

/* Contact Section & Form */
.glassmorphism-form .card { /* If form is inside a card */
    padding: 2rem; /* More padding for forms */
}
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.form-control {
    background-color: rgba(255, 255, 255, 0.7); /* More opaque for better input visibility */
    border: 1px solid var(--glass-border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}
.form-control:focus {
    background-color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.3);
    color: var(--text-dark);
}
.contact-info-card { /* For displaying contact details */
    text-align: left;
}
.contact-details li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.contact-details strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.25rem;
}
.contact-details a {
    color: var(--text-dark);
}
.contact-details a:hover {
    color: var(--primary-color);
}

/* Footer */
.glassmorphism-footer {
    background: var(--glass-bg-header); /* Consistent with header */
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border-top: 1px solid var(--glass-border-color);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    color: var(--text-dark); /* Darker text for footer readability */
    text-align: center;
}
.glassmorphism-footer h5 {
    color: var(--text-headers);
    margin-bottom: 1rem;
    font-weight: 700;
}
.glassmorphism-footer .list-unstyled li {
    margin-bottom: 0.5rem;
}
.glassmorphism-footer .footer-link {
    color: var(--text-dark);
    font-weight: 500;
}
.glassmorphism-footer .footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.glassmorphism-footer hr {
    border-color: rgba(0,0,0,0.15); /* Darker hr for better visibility */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.glassmorphism-footer .small {
    color: var(--text-muted);
}

/* Social Media Links in Footer (Text-based) */
.footer-social-links a {
    margin: 0 0.5rem;
    font-size: 1rem; /* Adjust size as needed */
    display: inline-block;
    padding: 0.3rem 0.5rem;
    border-radius: var(--border-radius-sm);
}
.footer-social-links a:hover {
    background-color: rgba(0,0,0,0.05); /* Subtle hover background */
}

/* Specific Page Styles */
/* Success Page */
.success-page-main { /* Apply to main element of success.html */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 74px); /* Assuming footer height around 74px */
    text-align: center;
}
.success-message-card { /* Card on success page */
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem !important; /* !important if Bootstrap overrides too strongly */
}
.success-icon svg {
    width: 80px;
    height: 80px;
    fill: var(--primary-color); /* Green checkmark */
    margin-bottom: 1rem;
    animation: successIconPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
@keyframes successIconPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Privacy & Terms Pages */
.legal-content-page main.page-content { /* Assuming <main class="page-content"> for these */
    padding-top: calc(var(--header-height) + 2rem); /* Extra padding for fixed header */
}
.legal-content h1, .legal-content h2 {
    color: var(--text-headers);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.legal-content p, .legal-content ul li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* "Read More" Link Style */
.read-more-link {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.3s ease;
}
.read-more-link::after {
    content: '→'; /* Arrow or other indicator */
    margin-left: 0.3em;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
}
.read-more-link:hover {
    color: var(--primary-color-darker);
}
.read-more-link:hover::after {
    transform: translateX(5px); /* Non-linear movement */
}

/* Utility Classes */
.text-shadow-light {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.text-shadow-dark {
    text-shadow: 1px 1px 2px rgba(255,255,255,0.1);
}

/* Parallax scrolling effect - Example for Hero (use with JS if complex) */
/* Simple CSS parallax, works best with a dedicated background element */
/* .parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

/* Cookie Consent Popup (basic styling from HTML, can be enhanced here if needed) */
#cookieConsentPopup {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    font-family: var(--font-secondary);
}
#cookieConsentPopup p {
    color: var(--text-light); /* Ensure text is light on dark background */
}
#acceptCookieButton {
    background-color: var(--primary-color) !important; /* Ensure it overrides inline styles if any conflict */
    border: none;
    color: var(--text-light) !important;
    font-weight: 600;
}
#acceptCookieButton:hover {
    background-color: var(--primary-color-darker) !important;
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.9rem; /* Slightly smaller on tablets */
        margin-bottom: 2.5rem;
    }
    .hero-section {
        padding: 4rem 1rem;
    }
    .card-image { /* Adjust card image height for tablets */
        height: 200px;
    }
    .gallery-item .card-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: calc(var(--header-height) - 10px); /* Slightly smaller header on mobile */
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    .btn, button, input[type="submit"] {
        padding: 0.65rem 1.5rem; /* Slightly smaller buttons */
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
    .card-image {
        height: 180px; /* Further adjust card image height for mobile */
    }
    .gallery-item .card-image {
        height: 180px;
    }
    .team-card .card-image img {
        width: 120px;
        height: 120px;
    }
    .statistic-widget {
        margin-bottom: 1.5rem; /* Space between stat widgets on mobile */
    }
    .footer-social-links a {
        margin: 0 0.3rem;
        font-size: 0.9rem;
    }
    /* Adjust Bootstrap columns if needed for very small screens, e.g., making them full width */
    .col-md-3.col-sm-6 { /* Example for statistics items */
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* AOS Animation Overrides (if needed for non-linear feel) */
[data-aos] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275) !important; /* Example of a non-linear ease */
}
html,body{
    overflow-x: hidden;
}