/* General Styles */
:root {
    --primary-orange: #FF8C00; /* Dark Orange */
    --secondary-yellow: #FFD700; /* Gold/Yellow */
    --accent-orange: #FFA500; /* Brighter Orange */
    --text-dark: #333333;
    --text-dark-grey: #555555;
    --text-light: #FFFFFF;
    --text-light-grey: #CCCCCC;
    --bg-light: #FFF8E1; /* Very light yellow/cream */
    --bg-dark: #4A2B0F; /* Dark brown, almost black */
    --border-color: #E0E0E0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Standard text color */
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
}

/* Bulma Overrides & Customizations */
.button.is-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-light);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.button.is-primary:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.button.is-light {
    background-color: var(--text-light);
    border-color: var(--border-color);
    color: var(--text-dark);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button.is-light:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.button.is-outlined.is-light {
    border-color: var(--text-light);
    color: var(--text-light);
}

.button.is-outlined.is-light:hover {
    background-color: var(--text-light);
    color: var(--primary-orange);
}

.navbar {
    background-color: var(--bg-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-item img {
    max-height: 2.5rem;
}

.navbar-brand .navbar-item .has-text-dark {
    color: var(--text-dark) !important;
}

.navbar-item {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.2s ease;
}

.navbar-item:hover {
    color: var(--primary-orange);
    background-color: transparent;
}

.navbar-burger {
    color: var(--text-dark);
}

.navbar-burger:hover {
    background-color: transparent;
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* Ensure full height */
    display: flex; /* Make it a flex container */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero .hero-body {
    position: relative;
    z-index: 2;
    padding-top: 5rem; /* Adjust for fixed navbar */
    padding-bottom: 5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light) !important;
}

.hero-subtitle {
    color: var(--text-light-grey) !important;
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    text-decoration: none; /* Remove underline from buttons */
}

.emoji {
    font-size: 1.2em;
    vertical-align: middle;
}

/* Section Styling */
.section {
    padding: 5rem 1.5rem;
}

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

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

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

.has-text-light-grey {
    color: var(--text-light-grey) !important;
}

/* Services Section */
.service-content-box {
    padding: 2.5rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tabs.is-boxed a {
    color: var(--text-dark-grey);
    border-bottom-color: var(--border-color);
}

.tabs.is-boxed a:hover {
    color: var(--primary-orange);
}

.tabs.is-boxed li.is-active a {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-light);
}

.tabs.is-boxed li.is-active a:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--text-light);
}

.tab-pane {
    display: none;
}

.tab-pane.is-active {
    display: block;
}

.service-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-list li .icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works-grid .step-item {
    padding: 2rem;
    position: relative;
}

.how-it-works-grid .step-item .step-icon-wrapper {
    background-color: var(--text-light);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-orange);
}


/* Team Section */
.team-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure equal height */
    padding: 1rem;
}

.team-card {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    height: 100%; /* Make card take full height of wrapper */
    display: flex;
    flex-direction: column;
    width: 250px;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card .card-image {
    padding: 1rem;
}

.team-card .card-image img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Portfolio Section */
.portfolio-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    width: 100%;
    height: 300px; /* Fixed height for portfolio items */
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-item .before-image,
.portfolio-item .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.0s; /* No animation */
}

.portfolio-item .after-image {
    opacity: 0;
}

.portfolio-item:hover .before-image {
    opacity: 0;
}

.portfolio-item:hover .after-image {
    opacity: 1;
}

.portfolio-item .overlay-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    z-index: 10;
}

/* Industries (Genres) Section */
.genre-item-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure equal height */
    padding: 1rem;
}

.genre-item {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    height: 100%; /* Make box take full height of wrapper */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 250px;
}

.genre-item:hover {
    transform: translateY(-5px);
}

.genre-item .genre-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-orange), 0.95);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.0s; /* No animation */
    border-radius: 8px;
    flex-direction: column;
}

.genre-item:hover .genre-description {
    opacity: 1;
}

.genre-item:hover .icon,
.genre-item:hover .title {
    opacity: 0;
    transition: opacity 0.0s; /* No animation */
}

/* Testimonials Section */
.testimonial-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure equal height */
    padding: 1rem;
}

.testimonial-card {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%; /* Make card take full height of wrapper */
    display: flex;
    flex-direction: column;
}

.testimonial-card .media-left img {
    border: 2px solid var(--primary-orange);
}

/* Contact Form Section */
.contact-form-box {
    padding: 2.5rem;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-box .label {
    font-weight: 600;
}

.contact-form-box .input,
.contact-form-box .textarea {
    border-color: var(--border-color);
    transition: border-color 0.2s ease;
}

.contact-form-box .input:focus,
.contact-form-box .textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.125em rgba(255, 140, 0, 0.25);
}

.submit-button {
    text-decoration: none;
}

/* FAQ Section */
.faq-item {
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.faq-item .title {
    margin-bottom: 0.5rem;
}

.faq-item .content {
    display: block; /* Always visible for search-only */
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-dark);
    padding: 4rem 1.5rem;
    color: var(--text-light-grey);
}

.footer-section .footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-section .footer-logo img {
    filter: brightness(0) invert(1); /* Make logo white for dark background */
    max-height: 2.5rem;
}

.footer-section .title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--text-light-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.icon-text .icon {
    margin-right: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark); /* Dark background for visibility */
    color: var(--text-light);
    padding: 1rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.cookie-banner .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner .cookie-message {
    flex-grow: 1;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner .cookie-message a {
    text-decoration: underline;
    color: var(--secondary-yellow) !important;
}

.cookie-banner .buttons {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.cookie-banner .button.is-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-light);
}

.cookie-banner .button.is-light {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: var(--primary-orange);
}

.cookie-banner .is-hidden {
    display: none !important;
}

/* Toaster Notification */
#toaster-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.notification.is-success {
    background-color: #48c78e; /* Bulma success green */
    color: #fff;
}

.notification.is-danger {
    background-color: #f03a5f; /* Bulma danger red */
    color: #fff;
}

.notification .delete {
    background-color: rgba(10, 10, 10, 0.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) { /* Tablet and below */
    .navbar-menu {
        background-color: var(--bg-light);
    }
    .navbar-item {
        padding-left: 1.5rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero .hero-body {
        padding-top: 10rem;
        padding-bottom: 3rem;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-message {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .cookie-banner .buttons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) { /* Mobile */
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section {
        padding: 3rem 1rem;
    }
    .tabs.is-centered ul {
        flex-wrap: wrap;
    }
    .tabs.is-centered li {
        flex-grow: 1;
    }
    .tabs.is-boxed a {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        font-size: 0.85rem;
    }
    .service-content-box {
        padding: 1.5rem;
    }
    .team-card, .testimonial-card, .genre-item, .portfolio-item {
        margin-bottom: 1rem;
    }
    .footer-section .column {
        margin-bottom: 2rem;
    }
    .footer-section .column:last-child {
        margin-bottom: 0;
    }
}

/* Ensure buttons don't have text-decoration */
.button {
    text-decoration: none !important;
}/* New Styles for .dataTrustFrame and its children */

.dataTrustFrame {
    /* Padding for the main content frame */
    padding: 2.5rem 1.5rem; 
}

.dataTrustFrame h1 {
    /* Heading 1 styles */
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem; /* Top margin for separation */
    margin-bottom: 1.5rem;
}

.dataTrustFrame h2 {
    /* Heading 2 styles */
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
}

.dataTrustFrame h3 {
    /* Heading 3 styles */
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.dataTrustFrame h4 {
    /* Heading 4 styles */
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600; /* Slightly less bold */
    color: var(--text-dark);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.dataTrustFrame h5 {
    /* Heading 5 styles */
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.dataTrustFrame p {
    /* Paragraph styles */
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark-grey);
    margin-bottom: 1rem;
}

.dataTrustFrame ul {
    /* Unordered list styles */
    list-style: disc; /* Standard disc bullet points */
    margin-left: 1.5rem; /* Indent the list */
    margin-bottom: 1rem;
    color: var(--text-dark-grey); /* Inherit text color */
}

.dataTrustFrame ul li {
    /* List item styles */
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive adjustments for headings within .dataTrustFrame */
@media screen and (max-width: 768px) {
    .dataTrustFrame {
        padding: 1.5rem 1rem; /* Adjust padding for smaller screens */
    }

    .dataTrustFrame h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .dataTrustFrame h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .dataTrustFrame h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .dataTrustFrame h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .dataTrustFrame h5 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
}
.card-image img {
    height: 145px !important;
}
.privacy-policy-container,
.policy-section-container,
.disclaimer-wrapper,
.user-agreement {
    max-width: 800px;
}
@media screen and (991px < width < 1260px) {
    .navbar-end {
        display: none;
    }
}