
body, html {
    margin: 0;
    padding: 0;
    overflow-x: fixed;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
}

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

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

#nprogress .bar {
    background: linear-gradient(to right, white, #8a2be2) !important;
    height: 3px !important;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color, #8a2be2);
    transition: background-color 0.3s ease;
}

.contact-button {
    font-family: 'Titillium Web', sans-serif;
    background-color: white;
    color: #6C00F8;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(108, 0, 248, 0.1);
    transition: all 0.3s ease;
}

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

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

/* start whatsapp button */
    .btn-whatsapp {
        position: fixed;
        bottom: 80px;
        right: 20px;
	font-family: 'Titillium Web', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: #6C00F8;
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        overflow: visible;
    }

    .btn-whatsapp img {
        width: 50%;
        height: 50%;
        transition: all 0.3s ease-in-out;
    }

    .btn-whatsapp .tooltip-text {
        position: absolute;
        right: 60px;
        background-color: #6C00F8;
        color: white;
        font-size: 14px;
        font-weight: 600;
        padding: 5px 10px;
        border-radius: 25px;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    .btn-whatsapp:hover {
        background-color: #2c09db;
        transition:
            background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.2s ease;
    }

    .btn-whatsapp:hover .tooltip-text {
        opacity: 1;
        transform: translateX(0);
    }

    .btn-whatsapp:hover img {
        transform: scale(1.1);
    }
/* end whatsapp button */

/* start scroll to top */
    .scroll-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #6C00F8;
        color: white;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        z-index: 1000;
    }

    .scroll-to-top.show {
        opacity: 1;
    }

    .scroll-to-top:hover {
        background-color: #2c09db;
        transition:
            background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.2s ease;
    }

    .scroll-to-top:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
/* end scroll to top */

/* start navbar */
    .navbar {
        padding-top: 15px;
        padding-bottom: 15px;
        transition: all 0.3s ease;
        position: sticky;
        top: 0;
        z-index: 1020;
        font-family: 'Titillium Web', sans-serif;
        background-color: #120E41;
    }

    .nav-logo {
        max-width: 150px;
        height: auto;
    }

    .navbar-nav .nav-link {
        color: white !important;
        margin: 0 10px;
        position: relative;
        transition: all 0.3s ease;
        font-family: 'Titillium Web', sans-serif;
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 50%;
        background-color: white;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-nav .nav-link.active {
        font-weight: 700;
    }

    .btn-contact-us,
    .btn-contact-us-mobile {
        font-family: 'Titillium Web', sans-serif;
    }

    .btn-contact-us {
        background-color: white;
        color: #6C00F8;
        border: 2px solid white;
        border-radius: 25px;
        padding: 10px 20px;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .btn-contact-us:hover {
        background-color: #120E41;
        color: white;
        border-color: white;
        transform: scale(1.05);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .dropdown-menu {
        background-color: white !important;
        font-family: 'Titillium Web', sans-serif;
    }

    .dropdown-item {
        color: #120E41 !important;
        transition: background-color 0.3s ease;
    }

    .dropdown-item.active {
        color: white !important;
        background-color: #6C00F8;
    }

    .dropdown-item:hover {
        color: white !important;
        background-color: #6C00F8;
    }

    @media (min-width: 992px) {
        .navbar-nav .dropdown:hover .dropdown-menu,
        .navbar-nav .dropdown .nav-link:hover + .dropdown-menu,
        .navbar .dropdown:hover .dropdown-menu {
            display: block;
            top: 100%;
            margin-top: var(--bs-dropdown-spacer);
        }
    }

    @media (max-width: 991.98px) {
        .mobile-language-dropdown {
            position: absolute;
            right: 80px;
            top: 50%;
            transform: translateY(-50%);
        }

        .dropdown-menu[data-bs-popper] {
            top: 135%;
            left: -47px;
            margin-top: var(--bs-dropdown-spacer);
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .mobile-language-dropdown {
            right: 110px;
        }

        .dropdown-menu[data-bs-popper] {
            top: 135%;
            left: -47px;
            margin-top: var(--bs-dropdown-spacer);
        }
    }

    .mobile-language-dropdown .dropdown-toggle {
        display: flex;
        align-items: center;
        color: white;
        text-decoration: none;
    }

    .mobile-language-menu {
        min-width: 150px;
        right: 0;
        left: auto;
        top: 100%;
    }

    /* Mobile Styles */
    @media (max-width: 991px) {
        .offcanvas {
            background-color: white;
            width: 100% !important;
        }

        .offcanvas-header {
            background-color: #120E41;
        }

        .offcanvas .nav-link {
            color: #120E41 !important;
            padding: 10px 15px;
            transition: all 0.3s ease;
        }

        .offcanvas .nav-link:hover {
            background-color: rgba(18,14,65,0.1);
        }

        .offcanvas .nav-link.active {
            border-left: 4px solid #120E41;
            font-weight: 700;
            background-color: rgba(18,14,65,0.05);
        }

        .contact-us-mobile-container {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            padding: 0 15px;
        }

        .btn-contact-us-mobile {
            background-color: #120E41;
            color: white;
            border-radius: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-contact-us-mobile:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
    }
/* end navbar */

/* start banner promotion */
    .banner-promotion {
        background-color: transparent;
        padding: 50px 9%;
    }

    .banner-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .banner-content {
        background-color: #6C00F8;
        border-radius: 20px;
        display: flex;
        position: relative;
        color: white;
        padding: 30px;
    }

    .banner-image-container {
        position: relative;
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-image {
        max-width: 140%;
        position: absolute;
        bottom: -39px;
        left: -70px;
        z-index: 10;
        transition: transform 0.3s ease;
    }

    .banner-cards-container {
        width: 28%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .banner-card {
        display: flex;
        align-items: center;
        border-radius: 15px;
        padding: 15px;
        gap: 15px;
        transition: all 0.3s ease;
        width: 300px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .banner-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    }

    .direct-campaign {
        background-color: #E7F5E8;
    }

    .media-placement {
        background-color: #FFF9EE;
    }

    .social-media {
        background-color: #FEEDFA;
    }

    .card-image-container {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        transition: transform 0.3s ease;
    }

    .banner-card:hover .card-icon {
        transform: rotate(360deg);
    }

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

    .card-text-container h4 {
        font-family: 'Titillium Web', sans-serif;
        margin: 0 0 10px 0;
        font-size: 18px;
        color: black;
        font-weight: 700;
    }

    .card-text-container p {
        font-family: 'Titillium Web', sans-serif;
        margin: 0;
        color: black;
        font-size: 14px;
    }

    .banner-contact-section {
        width: 50%;
        display: flex;
        align-items: center;
        padding-left: 30px;
    }

    .vertical-divider {
        width: 2px;
        height: 100%;
        background-color: white;
        margin-right: 30px;
    }

    .contact-content h3 {
        margin: 0 0 15px 0;
        font-size: 40px;
        font-weight: 700;
        font-family: 'Titillium Web', sans-serif;
    }

    .contact-content p {
        margin: 0 0 20px 0;
        color: white;
        font-family: 'Titillium Web', sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    @media (max-width: 1286px) {
        .banner-content {
            flex-direction: row;
            text-align: left;
            align-items: stretch;
            padding: 30px;
            padding-bottom: 30px;
        }

        .banner-contact-section {
            width: 45%;
            order: 0;
            margin-bottom: 0;
            text-align: left;
            display: flex;
            flex-direction: row;
            align-items: center;
            padding-left: 30px;
        }

        .banner-cards-container {
            width: 30%;
            align-items: flex-start;
            margin-bottom: 0;
            gap: 20px;
        }

        .banner-card {
            width: 100%;
            max-width: 300px;
        }

        .banner-image-container {
            width: 20%;
            position: relative;
            bottom: 0;
            left: 0;
            margin-bottom: 0;
        }

        .banner-image {
            position: absolute;
            max-width: 140%;
            bottom: -39px;
            left: -70px;
        }

        .vertical-divider {
            display: block;
            margin-right: 30px;
        }

        .contact-content h3 {
            font-size: 35px;
        }

        .contact-content p {
            font-size: 18px;
        }
    }

    @media (max-width: 1024px) {
        .banner-content {
            flex-direction: column;
            text-align: center;
            align-items: center;
            padding-bottom: 250px;
            position: relative;
        }

        .banner-contact-section {
            width: 100%;
            order: -1;
            margin-bottom: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-left: 0;
        }

        .banner-cards-container {
            width: 100%;
            align-items: center;
            margin-bottom: 30px;
        }

        .banner-card {
            width: 100%;
            max-width: 300px;
        }

        .banner-image-container {
            width: 100%;
            position: absolute;
            bottom: -8px;
            left: 0;
            display: flex;
            justify-content: center;
            margin-bottom: 0;
        }

        .banner-image {
            position: relative;
            max-width: 300px;
            bottom: 0;
            left: 0;
            margin: 0 auto;
        }

        .vertical-divider {
            display: none;
        }
    }

    @media (max-width: 576px) {
        .banner-promotion {
            padding: 30px 0;
        }

        .banner-container {
            padding: 0 10px;
        }

        .banner-content {
            padding-bottom: 200px;
        }
        .contact-content h3 {
            font-size: 23px;
        }

        .contact-content p {
            font-size: 15px;
        }

        .banner-image {
            max-width: 250px;
        }

        .vertical-divider {
            display:none;
        }
    }

    @media (max-width: 320px) {
        .contact-content h3 {
            font-size: 21px;
        }

        .contact-content p {
            font-size: 13px;
        }
    }
/* end banner promotion */

/* start footer */
    footer {
        background-image: url('../img/background_footer.png');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 50px 9% 50px 9%;
        position: relative;
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-left img {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .footer-bold-text {
        font-family: 'Titillium Web', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: white;
        margin-bottom: 18px;
    }

    .footer-white-text {
        font-family: 'Titillium Web', sans-serif;
        font-size: 16px;
        color: white;
        margin-bottom: 10px;
    }

    .footer-center {
        display: flex;
        gap: 140px;
    }

    .footer-location {
        padding: 20px 0px 25px 0px;
    }

    .footer-menu ul,
    .footer-event ul {
        list-style-type: none;
        padding: 0;
    }

    .footer-menu ul li,
    .footer-event ul li {
        margin-bottom: 18px;
    }

    .footer-menu a,
    .footer-event a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-menu a:hover,
    .footer-event a:hover {
        color: #cccccc;
    }

    .contact-link {
        text-decoration: none;
        display: block;
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
        perspective: 1000px;
    }

    .contact-link:hover .contact-box {
        transform: scale(1.03) rotateX(2deg);
        box-shadow: 0 10px 20px rgba(108, 0, 248, 0.3);
    }

    .contact-link:active .contact-box {
        transform: scale(0.97) rotateX(-2deg);
        box-shadow: 0 5px 10px rgba(108, 0, 248, 0.2);
        transition:
            transform 0.1s ease,
            box-shadow 0.1s ease;
    }

    .contact-box {
        background-color: #6C00F8;
        border-radius: 15px;
        display: flex;
        align-items: center;
        padding: 13px;
        gap: 15px;
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
        will-change: transform, box-shadow;
    }

    .whatsapp-icon {
        transition: transform 0.3s ease;
    }

    .contact-link:hover .whatsapp-icon {
        transform: rotate(360deg);
    }
    .footer-bottom-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

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

    .copyright {
        font-family: 'Titillium Web', sans-serif;
        font-size: 14px;
        color: white;
    }

    .btn-view-map {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
        font-size: 15px;
        font-weight: bold;
        font-family: 'inter', sans-serif;
        color: #6A1B9A;
        background-color: #FFFFFF;
        border: 2px solid #6A1B9A;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-view-map i {
        font-size: 18px;
        color: #6A1B9A;
    }

    .btn-view-map:hover {
        background-color: #6A1B9A;
        color: #FFFFFF;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(106, 27, 154, 0.4);
    }

    .btn-view-map:hover i {
        color: #FFFFFF;
    }

    @media (max-width: 1024px) and (min-width: 769px) {
        .footer-container {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-left,
        .footer-center,
        .footer-right {
            width: 100%;
            margin-bottom: 30px;
        }

        .footer-center {
            display: flex;
            gap: 100px;
        }

        .footer-bold-text {
            text-align: left !important;
        }
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-left,
        .footer-center,
        .footer-right {
            width: 100%;
            margin-bottom: 30px;
        }

        .footer-center {
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
        }

        .footer-right .contact-box {
            width: 100%;
        }

        .footer-bold-text {
            text-align: left !important;
        }
    }
/* end footer */
