<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --carnival-yellow: #e5b463;
    --carnival-yellow-hover: #f59e0b;
}

:root {
    --primary-font: "Nunito Sans", serif;
    --secondry-font: "Gilda Display", serif;
    --tagline-font: "Style Script", serif;
}

body {
    font-family: var(--primary-font);
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
    line-height: 32px;
}
h1,
h2,
h3,
h4 {
    font-family: var(--secondry-font);
}
/* hide logout button */
.hide {
    display: none;
}
/* hide logout button */
.scroll-top {
    position: fixed;
    visibility: hidden;

    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--carnival-yellow);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    text-decoration: none !important;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(
        in srgb,
        var(--carnival-yellow-hover),
        transparent 20%
    );
    color: #fff;
}

.scroll-top.active {
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 15px;
}

/* search-result */
#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: -38px;
    z-index: 1000;
}
#search-results ul {
    background: var(--carnival-yellow);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

#search-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 15px;
}

#search-results li:last-child {
    border-bottom: none;
}

#search-results li:hover {
    background-color: #f5f5f5;
}

/* Highlight animation after scroll */
.highlighted {
    animation: highlight 1.5s ease;
}

@keyframes highlight {
    from {
        background-color: yellow;
    }
    to {
        background-color: transparent;
    }
}
/*  Search-result  */

.navbar {
    transition: top 0.3s ease-in-out;
}
.active a {
    color: var(--carnival-yellow) !important;
}

.bg-dark {
    background: linear-gradient(
        180deg,
        rgba(40, 7, 7, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 100%
    ) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
.navbar-brand {
    align-items: center;
    gap: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    color: var(--carnival-yellow);
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    font-family: "Style Script", serif !important;
    color: rgba(251, 191, 36, 0.8);
    font-size: clamp(1.25rem, 1.119rem + 0.51vw, 1.5rem);
    margin: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 5px 10px !important;
    transition: color 0.3s ease;
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
}

.nav-link:hover {
    color: var(--carnival-yellow) !important;
}

.search-box {
    position: relative;
    max-width: 160px;
}

.search-input {
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--carnival-yellow);
    color: var(--carnival-yellow);
    border-radius: 50px;
    padding-right: 40px;
}

.search-input::placeholder {
    color: var(--carnival-yellow);
}

.search-input:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.1);
    color: white;
}

.search-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--carnival-yellow);
}

.btn-signup {
    background: var(--carnival-yellow);
    color: #0c0c0c;
    border-radius: 50px;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: var(--carnival-yellow-hover);
    transform: scale(1.05);
}

.navbar-toggler {
    border-color: rgba(251, 191, 36, 0.3);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28251, 191, 36, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.home-hero {
    /* position: relative; */
    min-height: 96vh;
}
.hero {
    position: relative;
    min-height: 80vh;
}
.content {
    padding-top: 250px;
}
.content h1 {
    font-family: var(--secondry-font);
    text-align: center;
    font-size: clamp(1.56rem, 0.676rem + 4.43vw, 4rem);
    line-height: 72px;
    color: #f0f0f0;
}
.content p {
    font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
    color: #f0f0f0;
    font-weight: bold;
    letter-spacing: 0.64px;
    text-align: center;
}
.btn-get-started {
    margin-top: 100px;
    background: var(--carnival-yellow);
    color: black;
    border-radius: 0;
    padding: 8px 12px;
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* animation-delay: 400ms; */
}

.btn-get-started:hover {
    background: var(--carnival-yellow-hover);
    transform: scale(1.05);
}

.btn-get-started svg {
    transition: transform 0.3s ease;
}

.btn-get-started:hover svg {
    transform: translateX(4px);
}

.slider {
    /* max-width: 1200px; */
    padding: 0 100px;
    /* width: 95%; */
}
.slider-wrapper {
    position: relative;
}
.slider-wrapper .client-list {
    display: grid;
    font-size: 0;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(4, 1fr);
}

.client-list .client-item {
    /* width: 486px; */
    height: 255px;
    padding: 20px 10px;
    background-color: #ffffff;
    transition: transform 0.5s ease-in-out;
}

.slider-desc {
    font-size: clamp(1.75rem, 1.619rem + 0.51vw, 2rem);
}

#clientSlider {
    display: flex;
    overflow: hidden;
    /* width: 100%; */
}

.btn-explore {
    background: var(--carnival-yellow);
    color: black;
    border-radius: 0;
    padding: 8px 18px;
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1rem);
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.tagline-logo img {
    display: block;
    margin: 0 auto;
    padding-top: 35px;
    /* width: 297px;
  height: 297px; */
}

.tagline-content h1 {
    /* font-family: var(--tagline-font); */
    color: var(--carnival-yellow);
    margin: 0;
    text-shadow: 0px 4px 4px #000;
    font-family: "Style Script";
    font-size: clamp(1.875rem, 0.895rem + 3.81vw, 3.75rem);
    font-weight: 400;
    line-height: 48px;
}
.tagline-content p {
    color: #f0f0f0;
    text-shadow: 0px 4px 4px #000;
    font-family: "Nunito Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: clamp(1.75rem, 1.619rem + 0.51vw, 2rem);
    padding-top: 70px;
    letter-spacing: 0.4px;
}

.learn-more-btn {
    padding: 8px 65px;
}
.coming-events .title {
    color: var(--carnival-yellow);
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: var(--Golden-40, #e5b463);
    font-family: "Gilda Display";
    font-size: clamp(1.563rem, 1.072rem + 1.9vw, 2.5rem);
    font-weight: 400;
    line-height: 72px;
    padding: 30px 0;
}
.coming-events .event-title {
    font-weight: bold;
}

.coming-events .event-desc {
    font-family: var(--primary-font);
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.4px;
}

.services .title {
    color: var(--carnival-yellow);
    font-family: var(--secondry-font);
    font-size: clamp(1.75rem, 1.227rem + 2.03vw, 2.75rem);
    font-weight: 400;
    line-height: 72px;
}
.services .services-desc {
    color: #f0f0f0;
    font-family: var(--primary-font);
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.4px;
}

.services h2 {
    color: #f0f0f0;
}

/* tetimonial */
.testimonial h1 {
    font-size: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
    font-family: var(--secondry-font);
}

.testimonial-card {
    transition: all 0.5s ease-in-out;
    transform: translateX(50%) scale(0.75);
    opacity: 0.5;
    z-index: 10;
}

.testimonial-card.center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 20;
}

.testimonial-card.left {
    transform: translateX(-60%) scale(0.75);
    opacity: 0.5;
    z-index: 10;
}

.testimonial-card.right {
    transform: translateX(60%) scale(0.75);
    opacity: 0.5;
    z-index: 10;
}

.testimonial-image {
    width: 12rem;
    height: 12rem;
    border: 2px solid var(--carnival-yellow);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
    max-width: 100dvw;
    margin-left: 550px;
    /* margin: 0 auto; */
}

.testimonial-content {
    width: clamp(12rem, -5.455rem + 87.27vw, 60rem);
    top: 100%;
    opacity: 0;
    pointer-events: none;
    margin-left: 100px;
}
.testimonial-content p {
    font-size: clamp(0.75rem, 0.568rem + 0.91vw, 1.25rem);
}
.testimonial-card.active .testimonial-content {
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.5s ease-out forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dots {
    display: flex;
    margin-left: 200px;
    margin-top: 430px;
}
.dot {
    width: 0.75rem;
    height: 0.75rem;
    padding: 0;
    border: 1px solid black;
    background-color: white;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: black;
}

.why-us-title {
    font-family: var(--secondry-font);
    font-size: clamp(1.875rem, 0.895rem + 3.81vw, 3.75rem);
    font-weight: 400;
    line-height: 72px;
}
.why-us li {
    /* color: #f0f0f0; */
    font-family: var(--primary-font);
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.4px;
    padding: 10px 0;
}

/* .start-journey {
  min-height: 35vh;
} */
.description {
    padding: 60px 280px;
}
.description h3 {
    color: var(--carnival-yellow);
    font-family: var(--secondry-font);
    font-size: clamp(1.75rem, 1.227rem + 2.03vw, 2.75rem);
    font-weight: 400;
    line-height: 72px;
}
.description p {
    color: #f0f0f0;
    font-family: var(--primary-font);
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1.25rem);
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}

.footer-logo {
    width: 117px;
    height: 116px;
}

footer a {
    display: block;
    text-decoration: none;
    color: #f0f0f0;
    font-size: clamp(1rem, 0.869rem + 0.51vw, 1rem);
    padding: 2px 0;
}
footer .packages {
    text-decoration: underline;
}
footer a:hover {
    color: var(--carnival-yellow);
}

/* ************ About Page ************* */
.hero-content {
    margin-top: 150px;
}
.hero-content h1 {
    color: var(--carnival-yellow);
    font-size: clamp(1.875rem, 0.895rem + 3.81vw, 3.75rem);
}
.hero-content p {
    color: #f0f0f0;
}
.hero-img {
    margin-top: 200px;
}

.about-main h1 {
    font-size: clamp(2.188rem, 1.24rem + 3.68vw, 4rem);
    color: var(--carnival-yellow);
}
.about-main .value-desc {
    /* width: 600px; */
    margin: 0 auto;
}
.card {
    /* width: 374px; */
    height: 100%;
    border-radius: 0;
    border: 0.5px solid #dbdbdbdb;
    background-color: #f8f8f8;
    transition: 0.5s;
}
.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-text {
    flex-grow: 1;
}
.card:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.join-us h1 {
    color: var(--carnival-yellow);
    font-size: clamp(1.875rem, 1.102rem + 3.86vw, 3rem);
}
.join-us p {
    color: #f0f0f0;
}

/**********************Services*************** */
.services-title {
    color: var(--carnival-yellow);
    font-size: clamp(2.188rem, 1.24rem + 3.68vw, 4rem);
    padding-top: 230px;
    padding-left: 150px;
}
.main .icons {
    font-size: clamp(1.563rem, 0.746rem + 3.17vw, 3.125rem);
    color: var(--carnival-yellow);
}

.pay-btn {
    width: 420px;
    background-color: var(--carnival-yellow);
    border-radius: 0;
    font-size: 16px;
}
/* .payment-options a {
  text-align: center;
} */
.customize-packges {
    min-height: 100dvh;
}
.customize-packges h1 {
    font-size: clamp(2.188rem, 1.24rem + 3.68vw, 4rem);
    line-height: 72px;
    color: var(--carnival-yellow);
}
.customize-packges p {
    color: #f8f8f8;
}
.customize-packges li {
    color: #f8f8f8;
}

/********************* Packages ****************/
.pack-slider {
    padding-top: 250px;
}
.pack-slider .client-item {
    background-color: #000;
}
.packages .card {
    /* width: 250px; */
    border: none;
}

.packages .card .packages-btn {
    border-radius: 0;
    border: 1px solid #000;
    width: 210px;
}

.locations {
    position: relative;
}
.locations h1 {
    color: #f8f8f8;
    position: absolute;
    top: 70%;
    left: 20%;
    transition: all ease-in-out 0.5s;
}
.locations h1:hover {
    color: var(--carnival-yellow);
}

/****************** Contact us ********************/
.contact h1 {
    font-size: clamp(2.188rem, 1.24rem + 3.68vw, 4rem);
    font-family: var(--secondry-font);
    color: #f8f8f8;
    padding-top: 320px;
    padding-left: 150px;
}
.contact-form h1 {
    font-size: clamp(1.563rem, 0.582rem + 3.81vw, 3.438rem);
    color: var(--carnival-yellow);
}
.contact-form .form-control {
    background-color: #f8f8f8;
    border-color: #888;
    border-radius: 0;
    border-left: none;
}
.contact-form .input-group-text {
    border-right: none;
    align-items: baseline;
    background-color: #f8f8f8;
    border-color: #888;
    border-radius: 0;
}
.contact-form .pass-toggle .input-group-text {
    border-right: 1px solid #888 !important;
}
.contact-form .input-group-text i {
    padding-top: 12px;
    color: #888888;
}
.contact-form .input-group-text svg {
    padding-top: 4px;
}
.contact-form .input-group-text::placeholder {
    color: #888;
}
.contact-form .form-control:focus {
    border-color: #888;
    box-shadow: 0 0 5px rgb(248, 248, 248);
}
.contact-form .btn-submit {
    font-size: 20px;
    background-color: var(--carnival-yellow);
    border: none;
    border-radius: 0;
}
.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}
.question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.arrow {
    transition: transform 0.3s ease-in-out;
}
.rotated {
    transform: rotate(180deg);
}

/* login */
header hr {
    border-top: 1px solid #313131;
}
header h1 {
    font-size: clamp(1.875rem, 0.895rem + 3.81vw, 3.75rem);
    color: var(--carnival-yellow);
}
.close-btn {
    position: absolute;
    top: 10%;
    color: #0c0c0c;
}
.login-form {
    margin: 0 200px;
}
.login-form a {
    text-decoration: none;
    color: #179bd7 !important;
}
/* .login-form .form-check {
    margin-top: -35px;
} */
.login-form .form-check-input {
    border-radius: 0;
}
.footer a {
    display: block;
    text-decoration: none;
    color: #0c0c0c;
}

@media (max-width: 900px) {
    .search-box {
        width: 140px;
    }
    #search-results {
        right: 0;
    }

    .scrolled {
        height: 147px;
    }
    .content {
        top: 30%;
        left: 12px;
    }
    .btn-signup {
        font-size: 12px;
    }
    .btn-get-started {
        margin: 50px 0;
    }
    .tagline-logo img {
        width: 200px;
    }
    .web-tagline .learn-more-btn {
        padding: 8px 75px;
    }

    .testimonial {
        padding: 10px 0 !important;
    }
    .testimonial-image {
        width: 10rem;
        height: 10rem;
    }
    .testimonial-slider {
        margin-left: 100px !important;
        margin-right: 0 !important;
    }
    .testimonial-content {
        margin-left: 90px;
        /* margin: 0 auto; */
    }
    .testimonial-content p {
        line-height: 20px;
    }
    .dots {
        margin-bottom: 70px !important;
    }
    .about-main .no-padding {
        padding: 5px !important;
    }
    .about-main .card {
        width: 90dvw;
    }
    .why-us-title {
        line-height: 40px !important;
    }
    .why-us .container {
        padding: 10px 10px !important;
    }
    .why-us li {
        padding: 0;
    }
    .description {
        padding: 20px 0;
    }
    .coming-events .title {
        padding: 10px;
        line-height: 40px !important;
    }

    footer a {
        padding: 0;
    }
    .footer-btn a {
        padding-left: 35px !important;
    }
    .core-values .row {
        padding-left: 14px !important;
    }
    .card {
        width: 300px;
    }
    .silver-title {
        width: 300px !important;
    }

    .pay-btn {
        width: 300px;
    }

    .services-title {
        padding-top: 400px;
        padding-left: 20px;
        text-align: center;
    }

    .customize-packges .container {
        width: 90dvw !important;
    }
    .customize-packges .container {
        padding: 0 !important;
    }
    .customize-packges h1 {
        line-height: 40px;
    }
    /* .main h1 {
        padding-top: 100px;
    } */
    .packages .card {
        width: 75dvw;
    }
    .packages-include li {
        padding: 0 !important;
    }

    .contact h1 {
        padding-left: 40px;
    }
    .question {
        font-size: 18px !important;
    }

    .login-form {
        margin: 0;
    }
}
</pre></body></html>