:root {
    --logo-dark: #004F2D; /* Deep green accent */
    --logo-light: #2CA01C; /* QuickBooks green */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --bg-default: #ffffff;
    --bg-paper: #ffffff;
}

body, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Inter','Avenir Next', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
    margin: 0; /* Remove default body margin if needed */
    padding-top: 0; /* Adjust to the navbar’s height */
}

header {
    width: 100%;
}

.logo-container {
    background-color: black; 
    display: inline-block; 
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 1rem;
    background-color: black; /* Dark header from theme */
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.logo img {
    max-height: 36px; /* Set maximum height for logo */
    height: auto;
    padding-left: 1rem;
    padding-right: 3rem;
}


.menu-items {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 1.5rem;
}

.menu-item a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color */
}

.menu-item a img {
    max-height: 36px; 
    height: auto;
    margin-right: 0.5rem;
}

.menu-item a span {
    font-size: 1rem;
    /*font-weight: bold;  Optional: make the text bold */
    font-weight:300; /* Lighter font weight for better readability */
    text-decoration: none;
    margin-left: 10px; /* Add space between image and text */
}

.menu-item:hover a {
    color: #007bff; /* Change text color on hover */
    border-bottom: 0px solid var(--logo-light); /* Add hover effect for underline */
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    position: relative;
    font-weight: bold; 
}

.menu-item img {
    max-height: 36px; 
    height: auto;
    margin-right: 0.5rem;
}

.menu-item span {
    font-size: 16px;
    color: #ffffff; /* Light text in dark header */
    text-decoration: none;
}   

.menu-item:hover {
    color: var(--logo-dark);
    border-bottom: 2px solid var(--logo-light);
}

.menu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    border-right: 1px dotted #ccc;
}

/* Hamburger Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    margin-right: 40px;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Rotate for Open Menu Effect */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Adjustments */
@media screen and (max-width: 1080px) {
    .menu-item img {
        width: 24px;
        height: 24px;
    }

    .menu-item span {
        font-size: 10px;
    }

    .overlay-text {
        top: 20%;
        width: 95%; /* keep text inside screen */
        padding: 0 10px; /* small padding on sides */
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center; /* center the text */
        transform: translateX(-50%); /* only center horizontally */
        margin: 0;
        line-height: 1.3;
    }

        .overlay-text h1 {
            font-size: 1.6rem; /* smaller heading */
            line-height: 1.3;
            margin: 0.3rem 0;
        }

        .overlay-text h2 {
            font-size: 1.3rem;
        }

        .overlay-text h3 {
            font-size: 1.1rem;
        }

        .overlay-text p {
            font-size: 0.95rem;
            line-height: 1.4;
        }
}

@media screen and (max-width: 768px) {
    .menu {
        justify-content: space-between;
        padding: 1rem;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        text-align: center;
        z-index: 1000;
    }
    .menu-item span {
        color: #fff; /* ✅ white on dark */
    }

    .menu-items.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Image with Overlay */
.image-overlay {
    position: relative;
    width:100%;
    display: block;
    text-align: center;
    margin-top: 70px;
    margin:0;
    padding:0;
    top:0;
}

.centered-image {
    display: block;
    margin: 0 auto; 
    padding: 0;
    max-height: 100vh;/*  Image height limited to 60% of the viewport */
    width: 100%; /* Maintain responsiveness */
    height: auto; /* Maintain aspect ratio */
    opacity: 30%;
    object-fit: cover; /* Crop the image to fill the container without distortion */
    object-position: top; /* Keep the top part of the image visible */
}

/*.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px; 
    text-align: center;
}*/

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* take full viewport width */
    max-width: 100%; /* never overflow */
    padding: 0 10px; /* safe side padding */
    box-sizing: border-box;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.overlay-text h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1.1;
}

.overlay-text h2 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 0px;
    line-height: 1.1;
}

.overlay-text h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.1;
}


.overlay-text p {
    font-size: 1.5rem;
    margin-top: 0px 0 0;
}

@media screen and (max-width: 768px) {
    .centered-image {
        max-height: none;  /* Increase image height to fill the viewport */
        height: 100%;       /* Ensure it takes up full height */
        object-fit: cover;  /* Cover the container without leaving gaps */
        margin: 0;
        padding: 0;
    }

    /*.centered-image {
        display:relative;
    }*/

    .overlay-text h1 {
        font-size: 1.5rem; /* Reduced from 2rem */
    }

    .overlay-text h2 {
        font-size: 1.25rem; /* Adjust if needed */
    }

    .overlay-text h3 {
        font-size: 1.25rem; /* Adjust if needed */
    }

    #overlay-text-subheading {
        display: none;
    }

    .overlay-text p {
        font-size: 0.9rem; /* Reduced from 1rem */
    }

    .overlay-text {
        width: 90%; /* Reduce width for better fit */
        padding: 0 5px; /* Reduce padding */
        top: 50%; /* Move text higher on the image */
        transform: translate(-50%, -20%);
    }

    .image-overlay {
        margin: 0;
        padding: 0;
    }

}

/* Overlay Container */
.scroll-down-overlay {
    position: absolute;
    bottom: 20px; /* stay at bottom of hero */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: fadeIn 1.5s ease-in-out;
    width: 100%; /* ensure logos stay centered */
}

    /* remove the old arrow */
    .scroll-down-overlay::after {
        content: none;
    }
/* Keyframe Animation for Bouncing Effect */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Smooth Fade-in Effect */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hide Overlay When User Scrolls Down */
@media screen and (max-width: 768px) {
    .scroll-down-overlay {
        font-size: 1rem;
    }
}

/*.scroll-down-hidden {
    display: none;*/ /* Hide overlay after scrolling */
/*}*/


/* Button Container Styling */
.button-container {
    position: relative;
    margin-top: 10px; /* Add space under the overlay text */
    display: flex;
    justify-content: center; /* Center buttons in the container */
    gap: 20px; /* Add space between the buttons */
}

.overlay-button {
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
     color: #fff; 
    /*color: #FFCC00; EU gold */
    background-color: var(--logo-light);  /*Button color */
    /* background-color: #003399;  EU Flag color */
    text-decoration: none; /* Remove underline from links */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block; /* Behave like a button */
}

.overlay-button:hover {
    background-color: var(--logo-dark); /* Darker blue on hover */
}

/* Styles for Customer Logos Section */
.customer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        background-color: white;
}

.customer-logos-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: filter 0.3s ease-in-out;
}

.logo-img:hover {
    filter: grayscale(0%);
}

@media screen and (max-width: 768px) {
    .logos-container {
        justify-content: flex-start;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        scroll-behavior: smooth;
        max-width: 90vw;
    }

    .logo-item {
        flex: 0 0 auto;
        margin-right: 10px;
    }

    .logo-img {
        max-height: 50px;
    }
}
/* Additional Content Below the Image 
.additional-content {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    color: #333;
}*/

/* Section with Text and Image */
/* General Styles for Sections */
/*section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
}*/

section {
    scroll-margin-top: 80px; /* size of navbar height */
}

section.image-left-section,
section.image-right-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    gap: 20px;
    box-sizing: border-box;
}

section .content {
    flex: 1;
    text-align: center;
}

section .image {
    flex: 1;
    text-align: center;
}

section .image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* Rounded corners */
}

/* Specific Styles for Left Image Section */
.image-left-section, .image-right-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    height: auto; /* Adjust height dynamically */
    padding: 0;
    margin: 0;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom:20px;
}

    .image-left-section .image-content,
    .image-right-section .image-content {
        flex: 1;
        max-width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

        .image-left-section .image-content img,
        .image-right-section .image-content img {
            width: 100%; /* Take full width of the container */
            height: auto; /* Maintain aspect ratio */
            object-fit: contain; /* Ensures the image scales correctly */
            display: block;
            border-radius: 12px; /* rounded corners */
            box-shadow: 0 6px 18px rgba(0,0,0,0.1); /* soft shadow */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--logo-light);
            box-sizing: border-box;
        }

        .image-left-section .image-content img:hover,
        .image-right-section .image-content img:hover {
            transform: scale(1.03); /* subtle zoom on hover */
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
        }


.image-left-section .content, 
.image-right-section .content {
    flex: 0 0 50vw; /* Ensure image container takes exactly 50% width */
    max-width: 50vw; /* Explicitly limit width to half the screen */
    width: 50%; /* Make content take up 50% of the screen */
    object-fit: contain; /* Maintain aspect ratio */
    padding: 0; /* Remove any default padding */
    margin: 0; /* Remove any default margin */
}

.image-left-section {
    /* background-color: rgb(203, 241, 253);  Light blue background */
    /*background-color: white;  rgb(250, 250, 250);  Light gray background */
    background-color: #DBEDEE;
    /* Very light green background #ECF6EF light blue #DBEDEE*/
    /*background: linear-gradient(to bottom, #79C5FF,#B5DAFC );*/
}

    .image-left-section .text-content {
        /*width: 50vw;*/
        max-width: 50%;
        display: flex; /* Use flexbox for alignment */
        flex-direction: column; /* Stack text elements vertically */
        justify-content: center; /* Center text vertically */
        align-items: center; /* Center text horizontally */
        text-align: center; /* Ensure text alignment */
        margin: 0px; /* Remove any default margin */
    }

.image-left-section .text-content h2 {
    margin-bottom: 10px; 
    margin-bottom: 10px; 
    font-weight:500; /* Lighter font weight for better readability */
}

.image-left-section .text-content p {
    margin-top: 0; /* Remove any default margin above the paragraph */
    
}

/* Specific Styles for Right Image Section */
.image-right-section {
    /* background-color: rgb(203, 241, 253);  Light blue background */
    /*background-color: white;  Light gray background */
    background-color: #ECF6EF;
    /* Very light green background #ECF6EF light blue #DBEDEE*/
    /*background-color: #558AB3;
    background: linear-gradient(to bottom, #79C5FF,#B5DAFC ); 
    width: 100%;  */
}

.image-right-section .text-content {
    width: 50vw; 
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack text elements vertically */
    justify-content: center; /* Center text vertically */
    align-items: center; /* Center text horizontally */
    text-align: center; /* Ensure text alignment */
}

    .image-right-section .text-content h2 {
        margin-bottom: 10px; /* Reduce space below the heading */
        font-weight: 500;
    }

    .image-right-section .text-content p {
        margin-top: 0; /* Remove any default margin above the paragraph */
        margin-left: 20px;
        margin-right: 20px;
    }


@media screen and (max-width: 768px) {
    /* Stack image on top of text for both sections */
    .image-left-section,
    .image-right-section {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align content */
        text-align: center; /* Center text for better alignment */
        padding: 15px 5%;
    }

    /* Adjust text alignment */
        .image-left-section .text-content,
        .image-right-section .text-content {
            width: 100% !important; /* full width */
            max-width: 100% !important;
            margin: 5px 0; /* smaller gap */
            padding: 0 10px;
            text-align: center; /* keep centered */
            order: 1 !important; 
            margin-top: 0px;
        }

        .image-left-section .image,
        .image-right-section .image {
            order: 2 !important; 
            width: 100%; 
            max-width: 500px; 
            margin: 10px 0;
            margin-bottom:0px;
        }

        .image-left-section .button-container,
        .image-right-section .button-container {
            order: 3 !important;
            margin-top: 10px;
        }
}


/* Responsive Design 
@media screen and (max-width: 768px) {
    section {
        flex-direction: column;
    }

    section .content,
    section .image {
        order: unset; 
    }

    section .content {
        text-align: center; 
    }
}*/


/* Submenu Styling */
.submenu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    position: absolute;
    top: 100%; /* Position submenu below the parent menu item */
    left: 0;
    background-color: var(--logo-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Hide submenu by default */
    z-index: 1000; /* Ensure submenu is above other elements */
}

.submenu li {
    padding: 5px 20px;
}

.submenu li a {
    color: white;/*TODO move style color white from HTML to CSS*/
    text-decoration: none;
    display: block;
    padding: 5px 10px;
}

.submenu li a:hover {
    background-color: var(--logo-dark);
}

/* Show Submenu on Hover */
.menu-item:hover .submenu {
    display: block; /* Show the submenu */
}

/* Interactive Image Section */
.interactive-image-section {
    padding: 40px 10%;
    text-align: center;
}

.interactive-image-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.interactive-image-heading-lg {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #f8f8f8;
}

.interactive-image-container {
    display: flex;
    justify-content: center;
}

.interactive-image {
    max-width: 100%;
    height: auto;
    /*border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

/* Area Highlight (Optional for Debugging) */
area {
    outline: none;
}

/* Centered Heading Section */
.centered-heading-section {
    text-align: center; /* Center-align the entire section */
    padding: 20px 5%; /* Add padding around the section */
    background-color: white; /* f8f8f8 Light gray background */
    display: flex;
    flex-direction: column; /* Stack the heading and image vertically */
    align-items: center; /* Center both heading and image horizontally */
}

.centered-heading {
    font-size: 2.5rem; /* Larger font size for emphasis */
    /*font-weight: bold;*/
    font-weight: 300;
    margin-bottom: 5px; /* Space between heading and image */
    color: #333;
    text-align: center; /* Ensure the heading text is centered */
    
}

.centered-heading-3 {
    font-size: 1.5rem; /* Larger font size for emphasis */
    font-weight: bold;
    margin-bottom: 5px; /* Space between heading and image */
    color: #333;
    text-align: center; /* Ensure the heading text is centered */
}


.centered-text {
    font-size: 1rem; /* Larger font size for emphasis */
    font-weight: bold;
    margin-bottom: 5px; /* Space between heading and image */
    color: #333;
    text-align: center; /* Ensure the heading text is centered */
}

.centered-div {
    display: flex;
    justify-content: center; /* Centers elements horizontally */
    align-items: center;    /* Centers elements vertically */
}

.centered-image-container {
    width: 100%; /* Make the image container full width */
    max-width: 1200px; /* Limit the maximum width */
    margin: 0 auto; /* Center the container */
}

.centered-image-heading {
    display: block;
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    /* border-radius: 8px;  Optional: Rounded corners */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  Optional: Subtle shadow */

    margin: 0 auto;
    max-height: 85vh;  /*Image height limited to 60% of the viewport */
    object-fit: cover; /* Crop the image to fill the container without distortion */
    object-position: top; /* Keep the top part of the image visible */
}


/* Testimonial Section */
/*.testimonial-section {
    background: #f8f8f8;
    padding: 40px 0;
    width: 100%;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;*/ /* ✅ Center the grid */
    /*padding: 0 20px;
}

.testimonial-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}


.testimonial-header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    display: flex;*/ /* Enables flexbox */
    /*align-items: center;*/ /* Aligns items vertically */
    /*justify-content:center;*/ /* Centers items horizontally */
    /*gap: 10px;*/ /* Adds space between elements */
/*}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
    color: #333;
}

.testimonial-title {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1;
    color: #666;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}*/

.testimonial-section {
    background: #ffffff; /* linear-gradient(to bottom, #ffffff, #f8f9fb);*/
    padding: 40px 20px;
    text-align: center;
}

.testimonial-heading-group {
    margin-bottom: 40px;
}

.testimonial-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /*font-weight: bold;*/
    font-weight: 300;
    margin-bottom: 10px;
    color: #222;
}

.testimonial-subheading {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    max-width: 320px;
    transition: transform 0.3s ease;
    position: relative;
}

    .testimonial-box:hover {
        transform: translateY(-5px);
    }

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--logo-light);
}



.testimonial-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 0.95rem;
    font-style: italic;
    color: #888;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}


/* Button Styling */
.testimonial-button {
    margin-top: 30px;
}

.see-more-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff; /* Blue background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Link Styling */
.see-more-link {
    text-decoration: none; /* Remove underline from the link */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .testimonial-container {
        flex-direction: column; /* Stack the boxes vertically on smaller screens */
        padding: 0 5px; /* Reduce side padding */
    }

    .testimonial-box {
        width: 100%; /* Full width on smaller screens */
        /*max-width: none;  Remove the max-width constraint */
        max-width: 100%;
    }
}

/* Two-Sided Section */
.two-sided-section {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    gap: 20px;
    padding: 40px 10%;
    background-color: white;
}

.left-side, .right-side {
    flex: 1; /* Ensure both sides take equal width */
    max-width: 50%; /* Equal widths for both sides */
    padding: 0 20px; /* Add consistent padding on both sides */
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content at the top */
    
}

.contact_testimonial-box {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact_testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact_testimonial-title {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #666;
}

.contact_testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.right-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content at the top */
    padding: 0 20px;
}

.form-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    margin-top: -15px; /* Adjust the form heading to align with the first testimonial */
}

.contact-section {
    padding: 10% 5%;
    background-color: #f8f9fb;
    display: flex;
    flex-direction: column; /* Stack the heading and image vertically */
    align-items: center;
}

.contact-section .header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-section img {
    width: 50%;
    /*height: 200px;*/
    margin-right: 20px;
}

.contact-section form {
    flex: 1;
}

.contact-section form input,
.contact-section form textarea,
.contact-section form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.contact-section form button {
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
}
/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .two-sided-section {
        flex-direction: column; /* Stack sections vertically on smaller screens */
    }

    .left-side, .right-side {
        max-width: 100%; /* Full width on smaller screens */
    }

    .form-heading {
        margin-top: 0; /* Reset margin on smaller screens */
    }
}


.circular-image-li {
    width: 30px;  /* Adjust size as needed */
    height: 30px; /* Ensure it's a square */
    border-radius: 50%; /* Makes it a perfect circle */
    object-fit: cover; /* Ensures the image covers the area properly */
    display: block;
    border: 1px solid var(--logo-dark); /* Optional: Adds a border around the circle */
}

/* Footer Styling */
.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 10%;
    background-color: #333;
    color: #fff;
}

.footer-section {
    flex: 1;
    max-width: 30%; /* Ensure three sections fit side-by-side */
    margin: 10px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffcc00; /* Highlight on hover */
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffcc00; /* Highlight on hover */
}

.footer-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.footer-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.footer-submit-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color:var(--logo-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-submit-btn:hover {
    background-color: var(--logo-dark);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-section {
        max-width: 100%; /* Stack sections vertically on smaller screens */
        margin-bottom: 20px;
    }
}


/* Custom Section */
.custom-section {
    padding: 40px 10%;
    /*background-color: #f8f8f8;*/
    background-color:#ffffff;
    text-align: center;
    flex-direction: column;
}

/* Row 1: Main Heading */
.custom-main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Row 2: Text and Image */
.custom-row-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.custom-text-container {
    flex: 1;
    text-align: left;
}

.custom-text-container h3 {
    font-size: 2rem;
    ffont-weight: bold;
    margin-bottom: 10px;
}

.custom-text-container p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
}

.custom-image-container {
    flex: 1;
    text-align: center;
}

.custom-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Row 3: Boxes */
.custom-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box; 
}

.custom-boxes-container-3boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box; 

}

.custom-box {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;          /* Ensures it doesn't exceed container width */
    max-width: 100%;      /* Prevents it from overflowing */
    box-sizing: border-box; /* Includes padding and border in width */
    margin: 0 auto;       /* Centers the box if necessary */
    overflow-wrap: break-word; /* Prevents long words from overflowing */
}

.custom-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-box .subheading {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #777;
}

.custom-box p {
    font-size: 1rem;
    color: #555;
}

/* Row 4: Button */
.custom-button-container {
    margin-top: 20px;
}

.custom-main-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-main-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .custom-row-container {
        flex-direction: column; /* Stack text and image vertically */
    }

    .custom-text-container {
        text-align: center;
    }

    .custom-boxes-container  {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .custom-boxes-container-3boxes {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .custom-box {
        width: 100%;  /* Full width */
        max-width: 100%;
        margin: 0 auto;
    }

}

.pricing-section {
    padding: 60px 20px;
    background-color: #f8f9fb;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /*font-weight: bold;*/
    font-weight: 300;
    margin-bottom: 40px;
}

.pricing-box-header {
    background-color: var(--logo-light); /* Orange */
    padding: 12px;
    border-radius: 6px 6px 0 0;
    margin: -25px -25px 20px -25px; /* Cancel box padding */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pricing-box-title {
    margin: 0;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

/* ✅ Side-by-side boxes for large screens */
.pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-price {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--logo-dark); /* Or #333 if you prefer */
    background-color: #f0f4f8; /* Light background to highlight */
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pricing-box {
    flex: 1 1 400px; /* allow flexibility */
    max-width: 500px;
    min-width: 300px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}


    .pricing-box ul {
        padding: 0;
        list-style: none;
        margin: 0 0 15px;
    }

    .pricing-box li {
        margin-bottom: 10px;
        font-size: 1rem;

    }

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

    .pricing-list li {
        font-size: 1rem;
        padding: 5px 0;
        display: flex;
        align-items: center;
        gap: 5px;
        border-bottom: 1px dashed #eee;
        transition: background-color 0.2s ease;
    }

        .pricing-list li:last-child {
            border-bottom: none;
        }

        .pricing-list li i {
            color: var(--logo-light); /* orange tone */
            min-width: 20px;
        }

        .pricing-list li:hover {
            background-color: #fdfdfd;
        }


.pricing-cta {
    margin-top: 20px;
}

/* ✅ Stack boxes on small screens */
@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
        align-items: center;
    }
}

.new-section {
    padding: 20px;
    background-color: #f8f9fb;
}

.content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.heading {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.section-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

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

.form-container {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .section-body {
    flex-direction: column;
  }
}

.new-section {
  padding: 20px;
  background-color: #f9f9f9;
}

.content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.heading {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.section-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.image-container {
  flex: 1;
  max-width: 500px;
}

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

.form-container {
  flex: 1;
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .section-body {
    flex-direction: column;
  }

  .image-container, .form-container {
    max-width: 100%;
  }
}


#cookie-banner_dac2 {
    font-size: 14px;
}
    #cookie-banner_dac2 button {
        background-color: var(--logo-light);
        border: none;
        color: white;
        cursor: pointer;
        font-size: 14px;
    }

/* Popup Styling */
.popup {
    display: none; /* Hidden on load */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%vw;
    height: 50%vh;
    z-index: 1000;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    border: #000;
    border-color: #000;
}

/* Popup Content: Two-Column Layout */
.popup-content {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    border: 3px solid var(--logo-dark);
    overflow: hidden; /* Ensures image does not overflow */
}

/* Left Side: Text and Button */
.popup-left {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    vertical-align: top;
}

.popup-left h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.popup-button {
    background-color: var(--logo-light); /* Orange Button */
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
}

.popup-button:hover {
    background-color: var(--logo-dark); /* Darker on hover */
}

/* Small Close Link */
.popup-close-link {
    margin-top: 10px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

.popup-close-link:hover {
    text-decoration: underline;
}

/* Right Side: Image */
.popup-right {
    width: 50%;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the right side */
}

/* Close Button (X) */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .popup-left, .popup-right {
        width: 100%;
        text-align: center;
    }

    .popup-right {
        padding: 10px;
    }

    .popup-image {
        max-height: 200px;
        width: auto;
    }
}


.hero-section {
    min-height: 100vh; /* full screen minus top menu */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: linear-gradient(to bottom, #000000, #004080);
    color: white;
}

.hero-left {
    flex: 1;
    max-width: 80%;
    display: flex;
    margin: 0 auto;
    flex-direction:column;
    align-items: center; /* vertically center content */
    justify-content: space-between; /* space between text & image */
    text-align: center;
}

    .hero-left h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 300;
        line-height: 1.2;
    }

    .hero-left .highlight {
        display: inline;
        background: linear-gradient(to right, #0ea5e9, #2ca01c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3rem;
        font-weight: 300;
        font-size: clamp(2rem, 4vw, 3rem);
        word-break: break-word;
        white-space: normal;
    }

    .hero-left .subtext {
        font-size: 1.1rem;
        color: #e5e5e5;
        margin-bottom: 2rem;
        text-align: center;
    }

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gradient-heading {
    background: linear-gradient(to right, #0ea5e9, #2ca01c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
}

    .gradient-heading i {
        background: inherit;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        flex-shrink: 0;
        margin: 0;
    }
    .gradient-heading span {
        display: inline; /* text flows naturally, wraps as needed */
    }

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #2CA01C;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background-color: #1f7a13;
    }

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

    .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .hero-right img {
        width: 100%;
        max-width: 600px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 100vh; /* keep it full screen */
        flex-direction: column;
        text-align: center;
        padding: 20px 5%; /* reduce side padding */
        justify-content: center;
    }
    .hero-left {
        max-width: 100%; /* let text use full width */
        flex: none;
    }

        .hero-left h1,
        .hero-left .highlight,
        .hero-left .subtext {
            max-width: 100%;
        }

    .hero-left h1 {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
    .hero-left .highlight {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }


    .hero-right {
        margin-top: 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        justify-content: center; /* center within the left side */
        gap: 1rem; /* spacing between buttons */
        width: 100%; /* take full width of the left column */
        margin-top: 1.5rem;
    }

}

@media (max-width: 768px) {
    .hero-buttons,
    .hero-left .subtext {
        display: none;
    }
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-bubbles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
}

.bubble {
    background-color: #ffffff;
    color: #1f2937;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    cursor: pointer;
}

    .bubble:hover {
        transform: scale(1.05);
    }

@media screen and (max-width: 768px) {
  .hero-bubbles {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.integration-logos {
    text-align: center;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #ffffff; /* keep it clean */
}

.integration-heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.integration-logos .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.integration-logos .logos img {
    height: 48px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

    .integration-logos .logos img:hover {
        filter: none;
        opacity: 1;
        transform: scale(1.05);
    }

/* Popup overlay */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

    .popup-overlay img {
        max-width: 80%;
        max-height: 80%;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
    }

.clickable-img {
    cursor: pointer;
    transition: transform 0.2s;
}

    .clickable-img:hover {
        transform: scale(1.02);
    }

.integrations {
    color: #fff;
}

    .integrations p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .integrations .logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

.logo-box {
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

    .logo-box img {
        height: 30px;
        max-width: 100px;
    }
