:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Work Sans', sans-serif;

    /* Complementary Color Scheme */
    --color-primary: #0077CC; /* Bright, professional Blue */
    --color-secondary: #FF8800; /* Vibrant Orange (Complementary) */
    --color-accent: #4CAF50; /* Eco-friendly Green for specific accents */

    --color-text-dark: #212529; /* Very dark grey for high contrast */
    --color-text-medium: #495057; /* Medium grey */
    --color-text-light: #f8f9fa; /* Light grey/off-white for dark backgrounds */
    --color-white: #FFFFFF;
    --color-black: #000000;

    --color-background-body: var(--color-white);
    --color-background-light-section: #f9f9f9; /* Subtle off-white for section differentiation */
    --color-background-footer: #2c3e50;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border-color: rgba(200, 200, 200, 0.35);
    --glass-blur-amount: 8px;
    --glass-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

    /* UI Elements */
    --border-radius-main: 12px;
    --border-radius-medium: 8px;
    --border-radius-small: 5px;
    --transition-speed: 0.3s ease-in-out;
    --navbar-height: 70px; /* Default, can be adjusted by Bulma's fixed nav */
    --section-padding: 4rem 1.5rem;

    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 5px 15px rgba(0,0,0,0.12);
    --shadow-strong: 0 8px 25px rgba(0,0,0,0.15);
}

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

body {
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    background-color: var(--color-background-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    font-weight: 600;
}
.title { /* Bulma .title */
    color: var(--color-text-dark) !important; /* Ensure high contrast */
}
.subtitle { /* Bulma .subtitle */
    color: var(--color-text-medium) !important;
}

.section-title { /* Custom class for section titles if not using Bulma's */
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem; /* Poppins looks good larger */
    font-weight: 700;
    color: var(--color-text-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}
.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--color-text-medium);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-text-medium);
}
.content p:not(:last-child), .content ul:not(:last-child) {
    margin-bottom: 1rem;
}

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

/* Global Button Styles */
.button, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75em 1.5em;
    border-radius: var(--border-radius-medium);
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.button.is-primary, button.is-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}
.button.is-primary:hover, button.is-primary:hover {
    background-color: darken(var(--color-primary), 10%) !important;
    border-color: darken(var(--color-primary), 10%) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.button.is-primary.is-outlined, button.is-primary.is-outlined {
    background-color: transparent !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}
.button.is-primary.is-outlined:hover, button.is-primary.is-outlined:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.button.is-link.is-outlined { /* Used in service cards */
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.button.is-link.is-outlined:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}


/* Layout & Sections */
.section {
    padding: var(--section-padding);
}
.section.has-background-light {
    background-color: var(--color-background-light-section) !important;
}

/* Header & Navigation */
.header.is-fixed-top {
    z-index: 1000;
    height: var(--navbar-height);
}
.glassmorphic-header .navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur-amount));
    -webkit-backdrop-filter: blur(var(--glass-blur-amount));
    border-bottom: 1px solid var(--glass-border-color);
    box-shadow: var(--glass-shadow);
    padding: 0.5rem 0; /* Adjust vertical padding */
}
.navbar-item img {
    max-height: calc(var(--navbar-height) - 2rem); /* Adjust logo size */
}
.navbar-item, .navbar-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color var(--transition-speed);
}
.navbar-item:hover, .navbar-link:hover {
    color: var(--color-primary) !important;
    background-color: transparent !important; /* Override Bulma hover bg */
}
.navbar-burger {
    color: var(--color-text-dark);
}
.navbar-burger:hover {
    background-color: rgba(0,0,0,0.05) !important;
}


/* Hero Section */
.hero-section {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    color: var(--color-white) !important; /* Ensures text is white */
}
.hero-section .hero-body {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-section .title, .hero-section .subtitle, .hero-section p {
    color: var(--color-white) !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}
.hero-cta {
    margin-top: 2.5rem !important;
    padding: 1em 2.5em !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
}

/* Glassmorphic Elements (General) */
.glassmorphic-card, .glassmorphic-container {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur-amount));
    -webkit-backdrop-filter: blur(var(--glass-blur-amount));
    border: 1px solid var(--glass-border-color);
    border-radius: var(--border-radius-main);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.glassmorphic-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-strong);
}

/* Card Styles */
.card { /* Bulma card base */
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in a row */
}
.card:hover {
    transform: translateY(-5px) perspective(1000px) rotateY(1deg); /* Subtle 3D effect */
    box-shadow: var(--shadow-strong);
}
.card .card-image { /* For Bulma structure */
    border-top-left-radius: var(--border-radius-main);
    border-top-right-radius: var(--border-radius-main);
    overflow: hidden; /* Ensure image respects border radius */
    text-align: center; /* Center figure if it's inline-block */
    /* This container for the figure should be centered if the card is flex column */
}
.card .card-image figure.image { /* Bulma figure.image */
    margin: 0 auto; /* Center the figure itself */
    height: 200px; /* FIXED HEIGHT for image container */
    overflow: hidden;
    width: 100%;
}
.card .card-image figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the fixed height container */
    display: block;
    border-top-left-radius: var(--border-radius-main);
    border-top-right-radius: var(--border-radius-main);
}
.card .card-content {
    padding: 1.5rem;
    text-align: center; /* Center text content in cards */
    flex-grow: 1; /* Allows content to take up space and push footer down */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom if card-footer is not used */
}
.card .card-content .title {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: var(--color-text-dark) !important;
}
.card .card-content p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
}
.service-card .button, .resource-card .button {
    margin-top: auto; /* Pushes button to the bottom */
    align-self: center;
}

/* Specific section card adjustments if needed beyond global card style */
.resource-card .icon {
    margin-bottom: 1rem;
}
.resource-card .icon i {
    font-size: 2.5em; /* Make icon larger */
    color: var(--color-primary);
}


/* Innovation Section */
.innovation-section .styled-list {
    list-style: none;
    padding-left: 0;
}
.innovation-section .styled-list li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
}
.innovation-section .styled-list li::before {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free"; /* Or your FA version */
    font-weight: 900;
    color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Toggle Switch */
.toggle-switch-container {
    display: flex;
    align-items: center;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.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: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--color-primary);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}
input:checked + .slider:before {
  transform: translateX(22px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}


/* Insights Section - Accordion */
.accordion-container {
    /* Glassmorphic already applied if class .glassmorphic-container is used */
}
.accordion-item {
    border-bottom: 1px solid var(--glass-border-color);
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header:hover {
    color: var(--color-primary);
}
.accordion-header .icon i { /* For +/- icon */
    transition: transform var(--transition-speed);
}
.accordion-header.active .icon i {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
    background-color: rgba(0,0,0,0.02); /* Slight bg for content area */
}
.accordion-content .content { /* Bulma .content inside accordion */
    padding: 1.5rem;
    font-size: 0.95rem;
}
.accordion-content.active {
    /* max-height will be set by JS */
    /* padding: 1.5rem; (if not handled by .content) */
}


/* External Links Section */
.external-links-section .link-card-ext {
    /* Glassmorphic applied by .glassmorphic-card */
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.external-links-section .link-title-ext a {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-primary);
}
.external-links-section .link-title-ext a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}
.external-links-section .link-description-ext {
    font-size: 0.9rem;
    color: var(--color-text-medium);
}


/* Careers Section - Timeline */
.careers-section .image img {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}
/* Bulma timeline customization if needed */
.timeline .timeline-header .tag {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}
.timeline .timeline-item .timeline-marker.is-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.timeline .timeline-item .timeline-marker.is-icon i {
    color: var(--color-white);
}
.timeline .timeline-content .heading {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text-dark);
}


/* Contact Section - Form */
.contact-form-container {
    /* Glassmorphic already applied by .glassmorphic-container */
}
.contact-form-container .label {
    color: var(--color-text-dark);
    font-weight: 600;
    font-family: var(--font-primary);
}
.contact-form-container .input, .contact-form-container .textarea {
    border-radius: var(--border-radius-medium);
    border: 1px solid var(--glass-border-color); /* Subtle border for glass inputs */
    background-color: rgba(255, 255, 255, 0.7); /* Slightly more opaque for readability */
    box-shadow: none; /* Override Bulma's default input shadow if any */
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}
.contact-form-container .input:focus, .contact-form-container .textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.125em rgba(var(--color-primary-rgb, 0,119,204), 0.25); /* Focus ring */
    background-color: var(--color-white);
}
.contact-form-container .control.has-icons-left .icon {
    color: var(--color-text-medium);
}
.contact-form-container .checkbox label {
    font-size: 0.9rem;
    color: var(--color-text-medium);
}
.contact-form-container .checkbox a {
    color: var(--color-primary);
    font-weight: 500;
}
.contact-form-container .checkbox a:hover {
    text-decoration: underline;
}


/* Footer */
.site-footer {
    background-color: var(--color-background-footer) !important;
    color: var(--color-text-light) !important;
    padding: 3rem 1.5rem 1.5rem; /* More top padding */
}
.site-footer .title {
    color: var(--color-white) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}
.site-footer p, .site-footer ul li {
    font-size: 0.95rem;
    color: var(--color-text-light) !important;
    opacity: 0.85;
}
.site-footer a {
    color: var(--color-text-light) !important;
    transition: color var(--transition-speed), opacity var(--transition-speed);
}
.site-footer a:hover {
    color: var(--color-secondary) !important;
    opacity: 1;
}
.site-footer .social-links-footer li {
    margin-bottom: 0.5rem;
}
.site-footer .social-links-footer a {
    /* Text links are fine, could add padding or small icons if desired later */
    display: inline-block;
    padding: 0.2rem 0;
}
.site-footer hr {
    background-color: rgba(255,255,255,0.15) !important;
    height: 1px;
    margin: 2rem 0;
}
.site-footer .content p { /* For copyright */
    font-size: 0.85rem !important;
    opacity: 0.7;
}


/* Page Specific Styles */
/* Success Page */
.success-page-container { /* Add this class to a wrapper div on success.html */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-background-light-section);
}
.success-page-container .success-icon {
    font-size: 5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}
.success-page-container h1 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}
.success-page-container p {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-policy-page, .terms-conditions-page { /* Add to body or main wrapper of these pages */
    padding-top: calc(var(--navbar-height) + 40px); /* Ensure content below fixed header */
}
.privacy-policy-page .content, .terms-conditions-page .content { /* Wrap content in a div with class .content for styling */
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}
.privacy-policy-page .content h2, .terms-conditions-page .content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}
.privacy-policy-page .content h3, .terms-conditions-page .content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

/* Cookie Consent Popup (from HTML) */
#cookieConsentPopup p {
    color: var(--color-white); /* Ensure text is white as per requirement */
}
#cookieConsentPopup a {
    color: #ade0ff; /* Light blue for links on dark bg */
}
#cookieConsentPopup a:hover {
    color: var(--color-white);
}
#acceptCookieButton {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none;
    text-transform: none; /* Override global button style */
    font-weight: 500; /* Override global button style */
}
#acceptCookieButton:hover {
    background-color: darken(var(--color-primary), 10%) !important;
}

/* Read More Link Style */
.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}
.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-speed);
}
.read-more-link:hover::after {
    width: 100%;
}
.read-more-link:hover {
    color: var(--color-secondary);
}


/* Responsive Adjustments (Bulma handles most, but fine-tuning) */
@media screen and (max-width: 768px) {
    .section {
        padding: 2.5rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .navbar-menu { /* Style for Bulma's mobile menu */
        background: var(--glass-bg);
        backdrop-filter: blur(var(--glass-blur-amount));
        -webkit-backdrop-filter: blur(var(--glass-blur-amount));
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
    }
    .navbar-item {
        padding: 0.75rem 1rem;
    }
    .columns.is-centered .column.is-two-thirds { /* Ensure content isn't too wide on mobile */
        width: 90% !important; /* Override Bulma if needed */
        margin: 0 auto;
    }
}

/* Parallax effect for hero background (simple version) */
/* More complex parallax requires JavaScript or more advanced CSS */
.hero-section.has-parallax-effect {
    background-attachment: fixed;
}

/* Ensure FontAwesome icons are styled if used outside specific components */
.fas, .fab, .far, .fal, .fad {
    line-height: inherit; /* Helps with alignment */
}