:root {
    --primary: #30318b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --background-light: #f1f5f9;
    --border-color: #e4ebf2;
    --box-shadow: rgba(4, 47, 46, 0.05) 0px 20px 25px -5px, rgba(4, 47, 46, 0.05) 0px 8px 10px -6px;

    /* swiper css variable */
    --swiper-theme-color: white;
    --swiper-navigation-size: 25px;
    --swiper-navigation-sides-offset: -30px;

    --bs-primary: red;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: var(--background-light);
    color: var(--text-dark);
    font-size: 14px;
}

.header {
    background-color: white;
}

.navbar .right-logo {
    width: 185px;
}

.showcase-top-section {
    position: relative;
    text-align: center;
    color: var(--primary);
    background-image: url(images/bc-main.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 60vh;
}

.showcase-top-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(225, 225, 255, 0.3);
}

.showcase-top-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(white 10%, transparent);
}

.showcase-top-section .container {
    position: relative;
    z-index: 1;
}

.showcase-top-section .title,
.showcase-top-section .subtitle {
    font-weight: 600;
}

.showcase-top-section .title {
    letter-spacing: 14px;
    font-size: 3.5rem;
    margin-bottom: 0;
}

.showcase-top-section .subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.showcase-bottom-section {
    background-color: #3E97FF;
    min-height: 32vh;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.showcase-bottom-section .description {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    max-width: 700px;
    margin: auto;
}

.mySwiper {
    max-width: 500px;
}

.swiper-slide {
    padding: 1rem;
}

.swiper-slide a {
    background-color: white;
    height: 76px;
    width: 76px;
    display: grid;
    place-content: center;
    border-radius: 14px;
    transition: all .25s ease-in-out;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.swiper-slide img {
    width: 60px;
}

.swiper-slide .logo-si-jukir {
    height: 60px;
    width: auto;
}

.swiper-slide a:hover {
    transform: scale(1.1);
}

.hero-website {
    position: relative;
    max-width: 576px;
}

.hero-website-card {
    position: relative;
}

.hero-website-body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    z-index: 1;
    position: relative;
}

.hero-website-body .website-item {
    background-color: white;
    height: 76px;
    width: 76px;
    display: grid;
    place-content: center;
    border-radius: 12px;
    transition: all .25s ease-in-out;
}

.hero-website-body .website-item img {
    width: 60px;
}

.hero-website-body .website-item .logo-si-jukir {
    height: 60px;
    width: auto;
}

.hero-website-body .website-item:hover {
    transform: scale(1.1);
}

.websites-section {
    margin-top: 3rem;
}

.websites-section-list {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: auto;
}

.website-card {
    padding: 24px;
    border-radius: 24px;
    background-color: white;
    position: relative;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.website-card-name {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.2rem;
    gap: 1rem;
    color: var(--text-dark);
}

.website-card-logo {
    width: 3rem;
}

.website-card-info {
    margin: 1.5rem 0;
    font-size: 14px;
    color: var(--text-light);
}

.website-link {
    background-color: var(--primary);
    color: white;
    display: inline-flex;
    border: none;
    align-items: center;
    border-radius: 999px;
    justify-content: center;
    text-decoration: none;
    font-size: .875rem;
    line-height: 1.25rem;
    padding-left: .875rem;
    padding-right: .875rem;
    height: 2rem;
}

.website-link:hover {
    opacity: 0.85;
}

.website-link-icon {
    height: 1.5rem;
    width: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: 0.2rem;
}

.website-link-icon span {
    display: inline-block;
    position: absolute;
    transition: transform 0.3s;
}

.website-link-icon span:first-child {
    transform: translateX(-2rem);
}

.website-link-icon span:last-child {
    transform: translateX(0);
}

.website-link:hover .website-link-icon span:first-child {
    transform: translateX(0);
}

.website-link:hover .website-link-icon span:last-child {
    transform: translateX(2rem);
}

.website-card-cta {
    display: flex;
    gap: 0.75rem;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer {
    background-color: white;
    border-top: 1px solid var(--border-color);
}

.footer .company-info {
    color: var(--text-light);
    font-size: 14px;
}

.footer .nav-link {
    font-size: 14px;
    color: var(--text-light);
}

.footer .nav-link:hover {
    color: var(--primary);
}

.footer .copyright-notice {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .navbar .right-logo {
        width: 140px;
    }

    .showcase-top-section .title {
        font-size: 2.5rem;
    }

    .showcase-top-section .subtitle {
        font-size: 1.5rem;
    }

    .showcase-bottom-section .description {
        padding-bottom: 0;
    }

    .mySwiper {
        max-width: 280px;
    }

    .websites-section-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .website-card-info {
        font-size: 14px;
    }
}