/*--------------------------------------------------------------
# Root Variables & Base Styles
--------------------------------------------------------------*/
:root {
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Merriweather', serif;

    /* Pastel Palette & Neomorphism Base */
    --color-bg: #e0e5ec;
    --color-bg-light: #f0f3f6;
    --color-bg-dark: #c8d0e7;

    --color-primary: #a8d8ea; /* Soft Pastel Blue */
    --color-primary-dark: #86b9d1; /* Darker shade of primary */
    --color-secondary: #f7c8a0; /* Soft Pastel Peach */
    --color-accent: #b9e2d1;  /* Soft Pastel Mint */

    --color-text: #3a3f50; /* Dark grey blue for readability */
    --color-text-light: #ffffff;
    --color-text-muted: #6c757d;
    --color-text-headings: #2c303a; /* Slightly darker for main headings */

    /* Neomorphism Shadows */
    --shadow-distance: 6px;
    --shadow-blur: 12px;
    --shadow-light-color: rgba(255, 255, 255, 0.9); /* Lighter for #e0e5ec */
    --shadow-dark-color: rgba(163, 177, 198, 0.7); /* Darker for #e0e5ec */

    --neumorphic-shadow-convex:
        var(--shadow-distance) var(--shadow-distance) var(--shadow-blur) var(--shadow-dark-color),
        calc(-1 * var(--shadow-distance)) calc(-1 * var(--shadow-distance)) var(--shadow-blur) var(--shadow-light-color);
    --neumorphic-shadow-concave:
        inset var(--shadow-distance) var(--shadow-distance) var(--shadow-blur) var(--shadow-dark-color),
        inset calc(-1 * var(--shadow-distance)) calc(-1 * var(--shadow-distance)) var(--shadow-blur) var(--shadow-light-color);

    --border-radius-soft: 15px;
    --border-radius-medium: 10px;
    --border-radius-small: 8px;

    --header-height: 70px;
    --transition-speed: 0.3s ease;
}

*,
*::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);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

main {
    padding-top: var(--header-height); /* Account for fixed header */
}

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

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

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

/* General Section Styling */
.section {
    padding: 4rem 1.5rem; /* Vertical and horizontal padding */
}

.container { /* Bulma class, ensure max-width and centering */
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-title {
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    font-weight: 700;
    font-size: 2.5rem; /* Responsive font size can be added */
    margin-bottom: 1.5rem;
    text-align: center; /* As per requirement */
    text-shadow: 1px 1px 1px var(--shadow-light-color), -1px -1px 1px var(--shadow-dark-color); /* Subtle Neomorphic text effect */
}

.section .intro-text {
    font-family: var(--font-secondary);
    color: var(--color-text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: center; /* As per requirement */
    font-size: 1.1rem;
}
.section .content p, .section > p {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}
.section .content ul li {
    font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Particle Animation Container
--------------------------------------------------------------*/
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.site-header {
    background-color: var(--color-bg);
    box-shadow: var(--neumorphic-shadow-convex);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* High z-index */
    height: var(--header-height);
    transition: background-color var(--transition-speed);
}

.site-header .navbar { /* Bulma .navbar */
    background-color: transparent;
    min-height: var(--header-height);
    align-items: center; /* Vertical align items */
}

.site-header .navbar-brand .navbar-item.logo-text {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    padding-left: 1rem; /* Ensure some padding */
}

.site-header .navbar-item {
    font-family: var(--font-primary);
    color: var(--color-text);
    transition: color var(--transition-speed), background-color var(--transition-speed);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.site-header .navbar-item:hover,
.site-header .navbar-item.is-active { /* is-active might be used by JS */
    background-color: transparent; /* Override Bulma's hover background */
    color: var(--color-primary-dark);
}

.navbar-burger { /* Bulma class */
    color: var(--color-text);
    height: var(--header-height); /* Match header height */
    width: var(--header-height); /* Square burger */
}
.navbar-burger span {
    background-color: var(--color-text);
    height: 3px;
    border-radius: 3px;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}
/* Active burger icon (optional animation) */
.navbar-burger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-burger.is-active span:nth-child(2) { opacity: 0; }
.navbar-burger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


@media screen and (max-width: 1023px) {
    .site-header .navbar-menu { /* Bulma class */
        background-color: var(--color-bg-light); /* Slightly different for dropdown */
        box-shadow: var(--neumorphic-shadow-concave);
        padding: 0.5rem 0;
        border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
        position: absolute;
        width: 100%;
        left: 0;
        top: var(--header-height);
    }
    .site-header .navbar-item {
        padding: 0.75rem 1.5rem;
        display: block; /* Ensure full width clickable area */
        border-bottom: 1px solid var(--color-bg-dark);
    }
    .site-header .navbar-item:last-child {
        border-bottom: none;
    }
}

/*--------------------------------------------------------------
# General Neomorphic UI Component Styles
--------------------------------------------------------------*/

/* Buttons */
.button, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-primary);
    font-weight: 600; /* Slightly less bold for better neomorphic look */
    border-radius: var(--border-radius-medium);
    padding: 0.75em 1.75em; /* Adjusted padding */
    transition: all var(--transition-speed);
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    display: inline-block; /* For proper spacing and sizing */
    text-align: center;
    font-size: 1rem; /* Base button font size */
}

.neomorphic-button,
.button.is-primary { /* Targeting Bulma's primary as the main style */
    background-color: var(--color-bg); /* Base color for button */
    color: var(--color-text);
    box-shadow: var(--neumorphic-shadow-convex);
}
.neomorphic-button:hover,
.button.is-primary:hover {
    /* Slight press effect or brighter shadow */
    box-shadow: calc(var(--shadow-distance) - 2px) calc(var(--shadow-distance) - 2px) calc(var(--shadow-blur) - 2px) var(--shadow-dark-color),
                calc(-1 * (var(--shadow-distance) - 2px)) calc(-1 * (var(--shadow-distance) - 2px)) calc(var(--shadow-blur) - 2px) var(--shadow-light-color);
    transform: translateY(-2px);
}
.neomorphic-button:active,
.button.is-primary:active {
    box-shadow: var(--neumorphic-shadow-concave);
    transform: translateY(1px); /* Press down effect */
}

/* Primary button specific color */
.button.is-primary, .neomorphic-button.is-primary { /* If we have specific .is-primary on neomorphic-button */
    background-color: var(--color-primary);
    color: var(--color-text-light); /* White text on primary color */
}
.button.is-primary:hover, .neomorphic-button.is-primary:hover {
    background-color: var(--color-primary-dark);
}

/* Form Elements */
.neomorphic-input,
.neomorphic-textarea,
.neomorphic-select .select select /* Targeting the actual select within Bulma's wrapper */
{
    background-color: var(--color-bg-light); /* Lighter for input fields */
    border: none;
    border-radius: var(--border-radius-medium);
    padding: 0.8em 1.2em;
    font-family: var(--font-secondary);
    color: var(--color-text);
    box-shadow: var(--neumorphic-shadow-concave);
    transition: box-shadow var(--transition-speed);
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
}
.neomorphic-input::placeholder,
.neomorphic-textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.8;
}

.neomorphic-input:focus,
.neomorphic-textarea:focus,
.neomorphic-select .select select:focus {
    outline: none;
    box-shadow: inset calc(var(--shadow-distance) - 3px) calc(var(--shadow-distance) - 3px) calc(var(--shadow-blur) - 4px) var(--shadow-dark-color),
                inset calc(-1 * (var(--shadow-distance) - 3px)) calc(-1 * (var(--shadow-distance) - 3px)) calc(var(--shadow-blur) - 4px) var(--shadow-light-color),
                0 0 0 3px var(--color-primary-dark); /* Softer focus ring */
}
.neomorphic-select { /* Bulma's .select wrapper */
    border-radius: var(--border-radius-medium);
    /* The shadow is on the inner select, wrapper can be simpler */
    position: relative;
    display: block; /* Ensure it takes full width if inside a control */
    width: 100%;
}
.neomorphic-select .select { /* Bulma's inner .select div */
    width:100%;
}
.neomorphic-select .select::after { /* Customizing Bulma's arrow */
    border-color: var(--color-primary);
    right: 1.125em;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
}
.field label.label { /* Bulma class */
    font-family: var(--font-primary);
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.5rem; /* Spacing from input */
}

/* Cards */
.card { /* Base Bulma card adjustments */
    background-color: var(--color-bg);
    border-radius: var(--border-radius-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in columns */
}
.neomorphic-card {
    box-shadow: var(--neumorphic-shadow-convex);
    transition: box-shadow var(--transition-speed), transform var(--transition-speed);
}
.neomorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: calc(var(--shadow-distance) + 3px) calc(var(--shadow-distance) + 3px) calc(var(--shadow-blur) + 5px) var(--shadow-dark-color),
                calc(-1 * (var(--shadow-distance) + 3px)) calc(-1 * (var(--shadow-distance) + 3px)) calc(var(--shadow-blur) + 5px) var(--shadow-light-color);
}

.card .card-image, /* Bulma class */
.card .image-container { /* Custom class used in HTML */
    width: 100%;
    height: 220px; /* Default fixed height for card images */
    overflow: hidden;
    position: relative; /* For overlays or absolute positioned elements */
    background-color: var(--color-bg-dark); /* Placeholder color */
}
.card .card-image img,
.card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed);
}
.neomorphic-card:hover .card-image img,
.neomorphic-card:hover .image-container img {
    transform: scale(1.05); /* Subtle zoom on image hover */
}

.card-content { /* Bulma class */
    padding: 1.5rem;
    color: var(--color-text);
    font-family: var(--font-secondary);
    flex-grow: 1; /* Allow content to fill space */
    display: flex;
    flex-direction: column;
}
.card-content .title, .card-content .subtitle {
    color: var(--color-text-headings); /* Ensure titles are dark */
}
.card-content .title {
    font-family: var(--font-primary);
    margin-bottom: 0.75rem;
    font-size: 1.3rem; /* Card title size */
}
.card-content .subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.card-content p, .card-content .content { /* Bulma .content */
    font-family: var(--font-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1; /* Text takes available space */
}
.card-content .button { /* Button inside card */
    margin-top: auto; /* Push button to bottom if card heights are equalized */
    align-self: flex-start; /* Align button to start of flex axis */
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero { /* Bulma class */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--color-text-light); /* Default text color for hero */
}
.hero.is-fullheight .hero-body { /* Bulma classes */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* Ensure padding on smaller screens */
    position: relative; /* For overlay */
    z-index: 1;
}
.hero::before { /* Parallax-like overlay for background image */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)); /* Dark overlay */
    z-index: 0;
}

.hero-content-overlay { /* Custom class for content wrapper if needed */
    position: relative; /* Ensure content is above ::before pseudo-element */
    z-index: 1;
    text-align: center;
    max-width: 800px; /* Limit width of text content */
    /* padding: 2rem; background: rgba(0,0,0,0.1); border-radius: var(--border-radius-soft); */ /* Optional inner box */
}
.hero .title.hero-title { /* Targeting specific class in HTML */
    font-family: var(--font-primary);
    color: var(--color-text-light) !important; /* IMPORTANT: Hero text is white */
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* Enhanced text shadow */
}
.hero .subtitle.hero-subtitle { /* Targeting specific class in HTML */
    font-family: var(--font-secondary);
    color: var(--color-text-light) !important; /* IMPORTANT: Hero text is white */
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9; /* Slight transparency for subtitle */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.hero .button {
    font-size: 1.1rem; /* Larger button text in hero */
    padding: 0.9em 2em;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us-section .neomorphic-image-container {
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-shadow-convex);
    overflow: hidden; /* Ensure image respects border-radius */
}
.about-us-section .neomorphic-image-container img {
    border-radius: var(--border-radius-soft); /* Match container */
}

.statistical-widgets .stat-widget.neomorphic-card {
    padding: 1.5rem;
    text-align: center;
}
.stat-widget .stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}
.stat-widget .stat-label {
    font-family: var(--font-secondary);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.3;
}

/*--------------------------------------------------------------
# Our Process Section
--------------------------------------------------------------*/
.process-card .card-image { height: 200px; } /* Specific height */
.process-card .card-content .title { font-size: 1.25rem; }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-card .media-left .image img {
    border-radius: 50%; /* Rounded profile pictures */
    box-shadow: var(--neumorphic-shadow-convex); /* Subtle shadow on avatar */
}
.testimonial-card .media-content .title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.testimonial-card .media-content .subtitle {
    font-size: 0.85rem;
}
.testimonial-card .content { /* Actual testimonial text */
    font-style: italic;
    padding-top: 0.75rem;
    font-size: 1rem;
    border-top: 1px solid var(--color-bg-dark);
    margin-top: 1rem;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners-section .partner-logos .column {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logos .image-container {
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-medium);
    padding: 1rem;
    box-shadow: var(--neumorphic-shadow-convex);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.partner-logos .image-container:hover {
    transform: scale(1.05) translateY(-3px);
     box-shadow: calc(var(--shadow-distance) + 2px) calc(var(--shadow-distance) + 2px) calc(var(--shadow-blur) + 3px) var(--shadow-dark-color),
                calc(-1 * (var(--shadow-distance) + 2px)) calc(-1 * (var(--shadow-distance) + 2px)) calc(var(--shadow-blur) + 3px) var(--shadow-light-color);
}
.partner-logos .image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Resources Section
--------------------------------------------------------------*/
.resource-card .card-image { height: 240px; } /* Specific height */
.resource-card .resource-button {
    margin-top: 1rem;
}

/*--------------------------------------------------------------
# External Links Section
--------------------------------------------------------------*/
.external-link-card .card-content .title a {
    color: var(--color-primary-dark);
    font-family: var(--font-primary);
    font-weight: 600;
}
.external-link-card .card-content .title a:hover {
    text-decoration: underline;
}
.external-link-card .card-content .content {
    font-size: 0.9rem;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section .neomorphic-form {
    background-color: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-shadow-convex);
}
.contact-section .field:not(:last-child) {
    margin-bottom: 1.25rem; /* Spacing between form fields */
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: var(--color-bg-dark); /* Darker pastel for footer */
    color: var(--color-text);
    padding: 3rem 1.5rem 2rem; /* Reduced bottom padding */
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    box-shadow: inset 0px var(--shadow-distance) var(--shadow-blur) rgba(0,0,0,0.05); /* Subtle top shadow */
}
.site-footer .footer-title {
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}
.site-footer ul {
    list-style: none;
    padding-left: 0; /* Remove default padding */
}
.site-footer ul li {
    margin-bottom: 0.5rem;
}
.site-footer ul li a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-speed);
}
.site-footer ul li a:hover {
    color: var(--color-primary);
}
.site-footer p {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}
.site-footer .column:last-child p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Modals
--------------------------------------------------------------*/
.modal.is-active { /* Bulma class for active modal */
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-background { /* Bulma class */
    background-color: rgba(10, 10, 10, 0.8); /* Darker overlay */
}
.modal .neomorphic-modal { /* Custom class on modal-card */
    background-color: var(--color-bg);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-shadow-convex);
    max-width: 560px;
    width: calc(100% - 30px); /* Responsive width */
    margin: auto;
    overflow: hidden; /* Changed from visible to hidden as head/foot are inside */
}
.neomorphic-modal .modal-card-head,
.neomorphic-modal .modal-card-foot { /* Bulma classes */
    background-color: var(--color-bg-light);
    border-color: var(--color-bg-dark);
    padding: 1.25rem 1.5rem;
    align-items: center;
    position: relative;
}
.neomorphic-modal .modal-card-head {
    border-bottom: 1px solid var(--color-bg-dark);
}
.neomorphic-modal .modal-card-foot {
    border-top: 1px solid var(--color-bg-dark);
    justify-content: flex-end; /* Align buttons to the right */
}
.neomorphic-modal .modal-card-title { /* Bulma class */
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    font-size: 1.4rem;
    margin-bottom: 0; /* Bulma handles spacing if needed */
}
.neomorphic-modal .modal-card-body { /* Bulma class */
    padding: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg); /* Body background */
    font-size: 1rem;
}
.modal .delete { /* Bulma's close button */
    background-color: rgba(0,0,0,0.2); /* Softer delete button */
    border-radius: 50%;
}
.modal .delete:hover {
    background-color: rgba(0,0,0,0.3);
}
.modal .delete::before, .modal .delete::after {
    background-color: var(--color-text-light); /* Cross color */
}

/*--------------------------------------------------------------
# Specific Page Styles (Success, Privacy, Terms)
--------------------------------------------------------------*/
/* Success Page */
body.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--color-bg);
    text-align: center;
    padding: 2rem;
}
.success-page .success-container {
    background-color: var(--color-bg-light);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-shadow-convex);
    max-width: 600px;
    width: 100%;
}
.success-page .success-container .title { /* Re-using .title */
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}
.success-page .success-container p {
    font-family: var(--font-secondary);
    color: var(--color-text);
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Privacy & Terms Pages */
main.static-page-content {
    padding-top: calc(var(--header-height) + 40px); /* Extra top padding */
    padding-bottom: 4rem;
}
main.static-page-content .container {
    max-width: 860px; /* Readable line length */
    background-color: var(--color-bg-light); /* Content box */
    padding: 2rem;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-shadow-convex);
}
main.static-page-content h1,
main.static-page-content h2,
main.static-page-content h3 {
    font-family: var(--font-primary);
    color: var(--color-text-headings);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}
main.static-page-content h1 { font-size: 2.2rem; }
main.static-page-content h2 { font-size: 1.8rem; }
main.static-page-content h3 { font-size: 1.5rem; }

main.static-page-content p,
main.static-page-content li {
    font-family: var(--font-secondary);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    color: var(--color-text);
    font-size: 1rem;
}
main.static-page-content ul, main.static-page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.1rem;
}
main.static-page-content a {
    font-weight: bold;
}

/* ScrollReveal initial states (JS will handle animation) */
.sr-init {
    visibility: hidden;
}
/* Example for fade-up animation with ScrollReveal */
/* [data-sr-id] { transition: all 0.6s ease-out !important; } */
/* You can define custom classes for ScrollReveal animations */


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section .intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero .title.hero-title {
        font-size: 2.2rem; /* Adjusted for mobile */
    }
    .hero .subtitle.hero-subtitle {
        font-size: 1.1rem; /* Adjusted for mobile */
    }
    .columns.is-multiline .column { /* Ensure columns stack properly on mobile */
        margin-bottom: 1.5rem; /* Add space between stacked cards */
    }
    .columns.is-multiline .column:last-child {
        margin-bottom: 0;
    }
    .site-footer {
        text-align: center; /* Center footer content on mobile */
    }
    .site-footer .columns > .column {
        margin-bottom: 1.5rem; /* Space between footer columns when stacked */
    }
    main.static-page-content .container {
        padding: 1.5rem;
    }
}

/* Utility classes (examples) */
.has-text-centered { text-align: center !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
@media (max-width: 1023px) {
    .navbar-menu{
        display: none;
    }

}