/* root color */
:root {
    --primary-color: #1092C3;
    --secondary-color: #33B8B7;
    /* --primary-text-color: #151515;
--secondary-text-color: #3a3a3a; */
    --primary-text-color: #fff;
    --secondary-text-color: #fff;
    --gradient-color: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: var(--primary-text-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
}

/* BUTTON */
.btn-gradient {
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(to right, var(--primary-color) 20%, var(--secondary-color) 100%);
    border-color: #fff;
}


.btn-glass {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%);
    transform: skewX(-25deg);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.btn-glass:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-25deg);
    }

    100% {
        transform: translateX(100%) skewX(-25deg);
    }
}


.text-gradient {
    background: #1092C3;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 30%, #FFFFFF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    padding: 60px 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px 0;
    }
}

.hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    font-weight: 700;
    text-align: center;
    color: var(--primary-text-color);
}


@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 2rem;
    }
}

.hero .hero-subtitle {
    color: var(--primary-text-color);
    text-align: center;
}


/* SECTION */
.section {
    position: relative;
    transition: all 0.3s ease-in-out;
    background-size: cover;
    background-position: center;
}

.space-y {
    padding: 100px 0;
}

.space-top {
    padding: 100px 0 0;
}

.space-bottom {
    padding-bottom: 100px;
}

.section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.section-full {
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 992px) {

    /* .section-full {
        height: auto;
    } */

    .space-y {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .space-top {
        padding: 50px 0 0;
    }

    .section-subtitle {
        font-size: 14px;
        /* display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; */
    }


    .space-bottom {
        padding-bottom: 50px;
    }
}


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

.section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.section-subtitle {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.btn-next-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    z-index: 9999;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: move 2s ease-in-out infinite;
}

@keyframes move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.btn-next-section svg {
    width: 32px;
    height: 32px;
}



/* SECTION INDICATOR */
/* Tooltip container */
.section-indicator {
    position: fixed;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 992px) {
    .section-indicator {
        display: none;
    }
}

/* Tooltip styles */
.section-indicator .dot {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-indicator .dot.active {
    background: var(--gradient-color);
}

.section-indicator .dot:hover {
    border: 1px solid var(--primary-color);
}

.section-indicator .dot::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 16px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Show tooltip on hover */
.section-indicator .dot:hover::after {
    opacity: 1;
    visibility: visible;
}

/* html,
body {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
} */

/* .scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
} */

/* @media (max-width: 768px) {
    .scroll-container {
        scroll-snap-type: none;
    }
} */

/*
.snap-scroll {
    scroll-snap-align: start;
} */


.navbar2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 16px;
}

.navbar2 .container {
    display: flex;
    justify-content: center;
    position: relative;
}

.navbar2 .navbar-logo img {
    height: 64px;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
    .navbar2 .navbar-logo img {
        height: 50px;
    }
}

.navbar2.navbar-glass {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar2.navbar-glass .navbar-logo img {
    height: 40px;
}

.navbar2.navbar-default .navbar-logo img {
    height: 50px;
}


.toggle-menu {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    padding: 0;
    color: #fff;
}

.toggle-menu svg {
    height: 32px;
    width: 32px;
}

.lang-switch {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.lang-switch li {
    list-style: none;
}

.lang-switch li a {
    text-decoration: none;
    color: white;
}

.lang-switch li:hover a,
.lang-switch li.active a {
    text-decoration: underline;
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
    transition: all 0.3s ease-in-out;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -75.1%;
    width: 75%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 99999;
}

.side-menu-content {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding: 80px 10% 10% 10%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu li {
    margin-bottom: 20px;
    width: 100%;
}

/* has-child */

.side-menu .has-child {
    position: relative;
}

.side-menu .has-child::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000000' stroke-width='2' d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    right: 0;
    color: #000000;
    font-size: 24px;
    font-weight: 600;
}

.side-menu .has-child ul {
    margin-left: 20px;
    display: none;
}

.side-menu .has-child li:first-child {
    margin-top: 20px;
}

.side-menu .has-child.active ul {
    display: block;
}

.side-menu .has-child.active::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' transform='rotate(180)'%3E%3Cpath fill='none' stroke='%23000000' stroke-width='2' d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
}

/* end has-child */

.side-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    display: block;
    width: 100%;
}


@media (max-width: 768px) {
    .side-menu a {
        font-size: 18px;
    }

    .side-menu-content {
        padding: 60px 10% 10% 10%;
    }

    .side-menu li {
        margin-bottom: 12px;
    }
}


.side-menu a:hover {
    text-decoration: underline;
}

.side-menu .close-menu {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: none;
    color: #000000;
}

.side-menu .close-menu svg {
    height: 32px;
    width: 32px;
}

.side-menu.open {
    left: 0;
    width: 75%;
}

@media (min-width: 1024px) {
    .side-menu {
        left: -30%;
        width: 30%;
    }

    .side-menu.open {
        left: 0;
        width: 30%;
    }
}

.footer {
    position: relative;
    padding-top: 60px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.footer>* {
    position: relative;
    z-index: 1;
}

.footer .footer-logo img {
    height: 50px;
}


.footer .footer-social-media ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
}

.footer .footer-social-media a {
    text-decoration: none;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .footer-social-media a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer .footer-contact ul {
    list-style: none;
    padding-left: 0;
}

.footer .footer-contact ul li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: start;
}

.footer .footer-contact ul li a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-contact ul li svg {
    height: 20px;
    width: 20px;
}


.footer .copyright {
    padding: 20px 0;
}


.footer .copyright p {
    font-size: 14px;
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}


.footer .footer-menu ul {
    list-style: none;
    padding-left: 0;
}

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


.footer .footer-menu ul li a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-menu ul li a:hover {
    text-decoration: underline;
}

.post-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 16px;
    position: relative;
}

.post-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%);
    transform: skewX(-25deg);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.post-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}


.post-card:hover {
    border-color: var(--primary-color);
}


.post-card .post-thumbnail {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    border-radius: 8px;

}

.post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-card .post-date {
    opacity: 0.6;
    margin-bottom: 0;
    font-size: 0.8rem;
}

.post-card .post-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.post-card .post-excerpt {
    /* clamp */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

.post-card .read-more {
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.post-card:hover .read-more {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* transparent modal */
.modal-header {
    border-color: transparent;
}

.modal-content {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* bostrap 5 pagination glassmorphism */
.page-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    -webkit-backdrop-filter: blur(8px);
}

.page-item.active .page-link {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(8px);
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: none;
}