<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #0078D4;
    transition: color 0.3s ease;
}

a:hover {
    color: #005a9e;
}

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

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo-container {
    text-align: center;
    animation: pulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.logo {
    max-width: 180px; /* Reduced from 200px */
    height: auto;
    display: inline-block;
}

/* Navigation */
.main-nav {
    margin-top: 20px;
}

.menu-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-item {
    margin: 0 15px;
    position: relative;
}

.menu-item a {
    display: block;
    padding: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.has-submenu:hover .submenu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 110;
    min-width: 200px;
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 10px 15px;
    white-space: nowrap;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 40px 20px;
    background: url('intro-bg.png') no-repeat center center / cover; /* Replace with an actual background image */
    color: #fff;
    position: relative;
}
.intro::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    color: #fff;
}

.intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content Sections */
.section-content {
    padding: 40px 20px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.text-content {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
}

.image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.lazy-image {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 350px; /* Adjust as needed */
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.section-content:hover .lazy-image{
    transform: scale(1.03);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

}

/* FlexiWork Section */
.flexiwork .section-title {
    color: #0078D4; /* Blue */
}

/* FlexiLearn Section */
.flexilearn .section-title {
    color: #00B294; /* Green */
}

/* FlexiBusiness Section */
.flexibusiness .section-title {
    color: #FFB900; /* Orange */
}

/* FlexiLife Section */
.flexilife .section-title {
    color: #E81123; /* Red */
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: #f2f2f2;
}

.contact .section-title {
    color: #333;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    background-color: #0078D4;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #005a9e;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .menu-list {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        margin: 10px 0;
    }

    .submenu {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        width: 100%;
        background: #f8f8f8;
    }

    .has-submenu:hover .submenu {
        display: block;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .image-content {
        margin-top: 20px;
    }
    .lazy-image{
        max-height: 300px;
    }
}
/* Additional Styles and Effects */
.section-content:nth-child(odd) {
    transform: translateX(-5px);
    transition: transform 0.3s ease-in-out;
}

.section-content:nth-child(even) {
    transform: translateX(5px);
    transition: transform 0.3s ease-in-out;
}
.section-content:hover{
    transform: translateX(0);
}

.text-content {
    position: relative;
    z-index: 1;
}

.image-content {
    position: relative;
    z-index: 0;
    perspective: 1000px;
}
.image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    border-radius: 10px;
    z-index: 1;
}

.section-content:hover .image-content::before {
    opacity: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: currentColor;
    margin: 10px auto;
    transition: width 0.4s ease-in-out;
}

.section-content:hover .section-title::after {
    width: 150px;
}

.intro-text::first-letter {
    font-size: 2em;
    font-weight: bold;
    color: #0078D4;
    float: left;
    margin-right: 5px;
}
.menu-item:hover{
    background-color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.lazy-image {
    transform-style: preserve-3d;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.lazy-image:hover {
    transform: rotateY(10deg);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-link {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

.contact-link:hover::before {
    left: 0;
}

.menu-item {
    transition: transform 0.3s ease-in-out;
}

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

/* Glassmorphism Effect for Section Titles */
.section-title {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Neon Effect for Buttons */
.contact-link {
    box-shadow: 0 0 5px #0078D4, 0 0 10px #0078D4, 0 0 15px #0078D4;
    transition: box-shadow 0.3s ease-in-out;
}

.contact-link:hover {
    box-shadow: 0 0 10px #0078D4, 0 0 20px #0078D4, 0 0 30px #0078D4;
}
.text-content, .image-content {
    transition: transform 0.4s ease-in-out;
}

.text-content:hover {
    transform: translateX(-5px);
}

.image-content:hover {
    transform: translateX(5px);
}
/* Additional Responsive Adjustments */
@media (max-width: 480px) {
    .section-title {
        font-size: 2em;
    }

    .intro-text {
        font-size: 1em;
    }

    .text-content p {
        font-size: 1em;
    }

    .lazy-image {
        max-height: 200px;
    }
}</pre></body></html>