.flibberflabber-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.flibberflabber-box {
    width: 250px;
    height: 350px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.flibberflabber-box:hover {
    transform: scale(1.05);
}

.flibberflabber-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.flibberflabber-box .flibberflabber-text {
    padding: 15px;
    font-family: Arial, sans-serif;
}

.flibberflabber-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.flibberflabber-description {
    font-size: 14px;
    color: #666;
}

.blibberblabber-container {
    text-align: center;
    position: relative;
    padding: 50px 0;
}

.blibberblabber-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.blibberblabber-line-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blibberblabber-line {
    position: absolute;
    height: 4px;
    background: blue;
    width: 50%;
    left: -50%;
    animation: blibberblabber-move 2s infinite linear;
}

@keyframes blibberblabber-move {
    0% {
        left: -50%;
    }
    50% {
        left: 50%;
        transform: translateX(-50%);
    }
    100% {
        left: 100%;
    }
}

.flibberjabber-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 50px auto;
}

.flibberjabber-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: justify; /* Ensures even line-end alignment */
}

.flibberjabber-title {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.flibberjabber-slider {
    width: 250px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-left: 20px; /* Added margin to dress the image from the text */
}

.flibberjabber-images {
    display: flex;
    width: 100%;
    height: 100%;
    animation: flibberjabber-slide 6s infinite linear;
}

.flibberjabber-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes flibberjabber-slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Brief history */


.wobbly-header {
    color: #0099cc;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.quirky-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding-top: 20px;
}
.quirky-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #0099cc;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}
.funky-box {
    position: relative;
    width: 45%;
    padding: 10px;
    background: white;
    border: 2px solid #0099cc;
    border-radius: 8px;
    margin: 10px 0;
}
.funky-box.lefty {
    left: 0;
    text-align: right;
}
.funky-box.righty {
    left: 55%;
    text-align: left;
}
.funky-box h3 {
    margin: 5px 0;
    color: #0099cc;
    font-size: 18px;
    font-weight: bold;
}
.funky-box p {
    font-size: 14px;
}
.funky-box::after {
    content: '';
    position: absolute;
    top: 15px;
    width: 12px;
    height: 12px;
    background: #0099cc;
    border-radius: 50%;
    left: -18px;
}
.funky-box.righty::after {
    left: auto;
    right: -18px;
}
.weird-footer {
    background: #0099cc;
    color: white;
    padding: 10px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}
.loopy-logo {
    margin-top: 20px;
}

.this_is_weird {
    font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #e8e8e8;
}
.potato-container {
    display: flex;
    max-width: 900px;
    background: #d3d3d3; /* Grey background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
}
.banana-side {
    flex: 1;
}
.banana-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mango-text {
    flex: 1;
    padding: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .flibberflabber-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .flibberflabber-box {
        width: 90%;
        height: auto;
    }

    .flibberjabber-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        padding: 20px;
    }

    .flibberjabber-slider {
        width: 90%;
        height: 180px;
        margin-left: 0;
    }

    .flibberjabber-title {
        font-size: 20px;
    }

    .flibberjabber-text {
        font-size: 16px;
        text-align: center;
    }

    .blibberblabber-title {
        font-size: 24px;
    }

    .blibberblabber-line {
        width: 80%;
    }

    .quirky-timeline {
        padding: 20px;
    }

    .funky-box {
        width: 90%;
        left: 0 !important;
        text-align: center;
        margin: 10px auto;
    }

    .funky-box::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .weird-footer {
        text-align: center;
        font-size: 14px;
    }

    .potato-container {
        flex-direction: column;
        width: 90%;
        margin: auto;
        padding: 15px;
    }

    .banana-side {
        width: 100%;
        height: auto;
    }

    .banana-side img {
        height: auto;
        max-height: 250px;
    }

    .mango-text {
        padding: 15px;
        font-size: 16px;
        text-align: center;
    }
}

.why-choose-us {
    font-family: Arial, sans-serif;
            background-color: #f0f8ff; /* Light blue-grey background */
            margin: 0;
            padding: 0;
}

.blopblip-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff; /* White background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wiggly-title {
    font-size: 28px;
    font-weight: bold;
    color: #0077b6; /* Blue heading */
    margin-bottom: 20px;
}

.flibflab-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.flibflab-item {
    background: #e0f2f1; /* Light grey-blue box */
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.flibflab-item:hover {
    transform: scale(1.05);
}

.flibflab-number {
    font-size: 24px;
    font-weight: bold;
    color: #005f99;
}

.flibflab-text {
    font-size: 16px;
    color: #333;
}

.zigzag-testimonials {
    margin-top: 30px;
}

.zigzag-client {
    font-style: italic;
    color: #444;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
    width: 80%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flibflab-stats {
        flex-direction: column;
        align-items: center;
    }
    .flibflab-item {
        width: 80%;
    }
}

.sustainability-crs {
    font-family: Arial, sans-serif;
            background-color: #f0f8ff; /* Light blue-grey background */
            margin: 0;
            padding: 0;

}

.snorfblat-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff; /* White background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.zibbly-title {
    font-size: 28px;
    font-weight: bold;
    color: #0077b6; /* Blue heading */
    margin-bottom: 20px;
}

.flonk-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.flonk-item {
    background: #e0f2f1; /* Light grey-blue box */
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.flonk-item:hover {
    transform: scale(1.05);
}

.blibber-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.zoop-button {
    display: inline-block;
    background: #0077b6;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.zoop-button:hover {
    background: #005f99;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flonk-section {
        flex-direction: column;
        align-items: center;
    }
    .flonk-item {
        width: 80%;
    }
}


.wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wobble-title {
    font-size: 28px;
    font-weight: bold;
    color: #0077b6;
    margin-bottom: 20px;
}

.bloop-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.splonk-item {
    background: #e0f2f1;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.splonk-item:hover {
    transform: scale(1.05);
}

.snibber-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.woop-button {
    display: inline-block;
    background: #0077b6;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.woop-button:hover {
    background: #005f99;
}

/* Contact Form */
.contact-container {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.contact-container label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-container textarea {
    height: 100px;
}

.contact-container button {
    background: #0077b6;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.contact-container button:hover {
    background: #005f99;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bloop-section {
        flex-direction: column;
        align-items: center;
    }
    .splonk-item {
        width: 80%;
    }
}

/* About _who we are */

/* General Styling */
.blabber-container, .wobble-mission, .values-section, .loopy-leadership, .wobble-history, .wacky-global, .wobble-strengths, .cta-section {
    background: #f5f8fa; /* Light grey-blue */
    padding: 40px;
    text-align: center;
}

.wonky-title {
    font-size: 28px;
    color: #007BFF;
    font-weight: bold;
}

/* Core Values */
.values-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wacky-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}

/* History Timeline */
.timeline-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.timeline-item {
    background: white;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 5px solid #007BFF;
}

.timeline-year {
    font-weight: bold;
    color: #0056b3;
}

/* Global Presence */
.funky-map {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

/* Strengths & Impact */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stats-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}

/* Leadership Section */
.leadership-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wonky-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

/* CTA */
.funky-btn {
    background: #007BFF;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

/* 🛠️ Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .blabber-container, .wobble-mission, .values-section, .loopy-leadership, .wobble-history, .wacky-global, .wobble-strengths, .cta-section {
        padding: 20px;
    }

    .wonky-title {
        font-size: 24px;
    }

    /* Core Values - Stack Items */
    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .wacky-box {
        width: 90%;
        max-width: 300px;
    }

    /* Leadership Section - Stack */
    .leadership-container {
        flex-direction: column;
        text-align: center;
    }

    .wonky-img {
        width: 120px;
        height: 120px;
    }

    /* History Timeline */
    .timeline-container {
        text-align: center;
    }

    .timeline-item {
        border-left: none;
        border-top: 5px solid #007BFF;
        padding-top: 10px;
    }

    /* Strengths & Impact - Stack */
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-box {
        width: 90%;
        max-width: 250px;
    }

    /* CTA */
    .funky-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

#biz-z3x6g6 {
    background-color: #f0f0f0;
    padding: 80px 0;
    background-image: url('https://via.placeholder.com/1200x400/cccccc/333333?text=Business+Backdrop');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.corporate-umbrella__business-tower h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.business-categories, .business-achievements, .business-future-plans {
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.business-categories h3, .business-achievements h3, .business-future-plans h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.categories-list, .business-achievements ul, .business-future-plans ul {
    list-style: none;
    padding-left: 0;
}

.categories-list li, .business-achievements li, .business-future-plans li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.business-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.business-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 28%;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.business-item:hover {
    transform: scale(1.05);
}

.business-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.business-item p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.business-item a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.business-item a:hover {
    text-decoration: underline;
}

/* history and strategy */

.circularPic_444 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}


/* General Styles */
.ancientBlueprint_999 {
    padding: 80px 0;
    background-color: #eef2f7;
    color: #2c3e50;
}

.ancientBlueprint_999 h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.whisperingText_404 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #555;
}

.lostScrolls_191, .masterPlan_666 {
    margin-bottom: 40px;
}

.lostScrolls_191 h3, .masterPlan_666 h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.lostScrolls_191 p, .masterPlan_666 p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Strategy List */
.secretFormula_007 {
    list-style: none;
    padding: 0;
}

.secretFormula_007 li {
    font-size: 1.1rem;
    padding: 8px 0;
    color: #333;
    font-weight: bold;
}

/* Graphic Section */
.timePortal_808 {
    margin-top: 60px;
    text-align: center;
}

.timePortal_808 h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.galacticFrame_515 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
}

.cosmicCanvas_404 {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile View Styles */
@media screen and (max-width: 768px) {
    .ancientBlueprint_999 {
        padding: 40px 20px;
    }

    .ancientBlueprint_999 h2 {
        font-size: 2rem;
    }

    .whisperingText_404 {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .lostScrolls_191 h3, .masterPlan_666 h3 {
        font-size: 1.5rem;
    }

    .lostScrolls_191 p, .masterPlan_666 p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .secretFormula_007 li {
        font-size: 1rem;
    }

    .galacticFrame_515 {
        width: 100%;
        padding: 0 20px;
    }

    .cosmicCanvas_404 {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

