@import url('https://fonts.googleapis.com/css2?family=Kelly+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&family=Slabo+27px&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dosis');
@import url('https://fonts.googleapis.com/css?family=Bungee');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');

@font-face {
    font-family: 'Wallpoet';
    font-style: normal;
    font-weight: 400;
    src: local('Wallpoet'), url(https://fonts.gstatic.com/s/wallpoet/v11/f0X10em2_8RnXVVdUObp58Tt868H.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Iceberg';
    font-style: normal;
    font-weight: 400;
    src: local('Iceberg'), local('Iceberg-Regular'), url(https://fonts.gstatic.com/s/iceberg/v7/8QIJdijAiM7o-qnZiI8EqprnEO0.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
    --background: radial-gradient(1200px 600px at 10% -10%, rgba(109, 74, 255, .10), transparent 60%), radial-gradient(1000px 600px at 110% 10%, rgba(34, 211, 238, .08), transparent 50%), linear-gradient(180deg, #faf7ff, #f4f1ff 45%, #efeaff);
    --accent-color: #3852B4;
    --heading-color: rgb(0, 0, 0);
    --paragraph-color: rgb(43, 43, 43);
    --added-color1: rgb(255, 179, 0);
    --navbar-color-bg: #29338a;
}

*,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--heading-color)
}

::-webkit-scrollbar {
    width: 100%;
}

::-webkit-scrollbar-track {
    background: var(--heading-color);
}

::-webkit-scrollbar-thumb {
    color: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    color: var(--accent-color);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-gradient {
    background: linear-gradient(270deg,
            #ffdd00,
            #00e1ff,
            #0015ff,
            #4e4dff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

.ic.soft {
    display: inline-flex;
    align-items: center;
    font-family: "Nunito", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 13px;
    color: #4e4dff;
    cursor: pointer;
    border-radius: 12px;
    transition: all 500ms ease-in-out;
    border: 1px solid #4e4dff;
    background-color: #4d4dff2b;
}

.ic.soft i {
    margin-right: 10px;
}

.ic.soft:hover {
    background-color: #4e4dff;
    color: white;
}

.header-navbar {
    background: white;
    width: 100%;
    display: flex;
    border-bottom: 1px solid rgb(196, 196, 196);
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    align-items: center;
    left: 0;
    transition: all 300ms ease-in-out;
    padding: 10px 14px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.header-navbar.scrolled {
    background: var(--navbar-color-bg);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.header-navbar.scrolled ul li .nav-link,
.header-navbar.scrolled .toggle-desktop-btn {
    color: white;
}

.header-navbar.scrolled .navbar-mobile {
    background: var(--navbar-color-bg);
}

.header-navbar.scrolled .menu-toggle {
    color: white;
}

.header-navbar.scrolled ul li .nav-link:hover {
    color: var(--accent-color);
}

.header-navbar .content {
    position: relative;
    display: flex;
    width: 100%;
}

.header-navbar .content img {
    width: auto;
    height: 70px;
    box-sizing: border-box;
    margin-left: 20px;
}

.header-navbar ul {
    display: flex;
    position: relative;
    gap: 30px;
    margin-left: auto;
    list-style: none;
}

.header-navbar ul .li-navbar {
    margin: 0 10px;
}

.header-navbar ul .li-navbar .nav-link {
    text-decoration: none;
    color: var(--heading-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header-navbar ul .li-navbar .nav-link:hover {
    color: var(--accent-color);
}

.header-navbar .navbar-mobile {
    align-items: center;
    display: flex;
    width: 100%;
}

.header-navbar .toggle-desktop-btn {
    background-color: var(--added-color1);
    padding: 10px 12px;
    border-radius: 500px;
    width: 80px;
    text-decoration: none;
    color: var(--heading-color);
    margin-left: 30px;
    transition: all 500ms;
}

.header-navbar .toggle-desktop-btn i {
    min-width: 30px;
}

.header-navbar .toggle-desktop-btn:hover {
    background-color: black;
    color: white;
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    color: var(--dark-text);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--background);
    cursor: pointer;
    z-index: 101;
}

/* HERO - IMG SCROLLING */
.hero {
    margin-top: 95px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.818)), url('../img/Lbackground.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    flex-direction: column;
    width: 100%;
}

.hero .contianer {
    position: relative;
    width: 100%;
    z-index: 110;
}

.hero .container .img-scroll {
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    background-color: #3852B4;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 10px 10px;
}

.hero .container .img-scroll img {
    width: 48%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 0px 10px;
}

.hero .hero-content {
    padding: 40px 80px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .hero-content h1 {
    text-align: center;
    font-size: 40px;
    text-decoration: none;
}

.hero .hero-content p {
    text-align: center;
    padding-top: 20px;
    color: var(--paragraph-color)
}

.hero .content-desc {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
}

.hero a {
    text-decoration: none;
}

/* HERO - Container card */
.hero .stat {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero .stat .container-card {
    position: relative;
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4rem;
    justify-content: center;
}

.hero .stat .container-card .card {
    background-color: white;
    border-radius: 10px;
    display: flex;
    text-align: center;
    padding: 20px 26px;
    width: 200px;
    transition: all 500ms ease-in-out;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--accent-color);
}

.hero .stat .container-card a:nth-child(4) .card {
    background-color: var(--added-color1);
    border-radius: 10px;
    display: flex;
    text-align: center;
    padding: 20px 26px;
    width: 200px;
    transition: all 500ms ease-in-out;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    transform: translateY(-10px);
    border: 2px solid var(--accent-color);
}

.hero .stat .container-card .card img {
    transition: all 500ms;
}

.hero .stat .container-card .card:hover {
    background-color: var(--added-color1);
    color: white;
    transform: translateY(-10px);
}

.hero .stat .container-card .card .info {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero .stat .container-card .card h3 {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: bold;
}

.hero .stat .container-card .card .img-card img {
    width: 50%;
    height: auto;
}

.about {
    /* background-color: var(--accent-color); */
    background:
        linear-gradient(to right, #0d1a2d 10%, rgba(13, 26, 45, 0.4) 100%, transparent 100%),
        url('../img/aboutpage.jpeg');
    background-position: center right;
    background-size: cover;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    overflow: hidden;
    width: 100%;
    align-items: center;
}

.about .content {
    padding: 40px 80px;
    display: flex;
    justify-content: center;
}

.about .content .about-text {
    display: flex;
    flex-direction: column;
}

.about .content .about-text h2 {
    color: white;
    font-size: 30px;
    text-decoration: none;
}

.about .content .about-text p {
    padding-top: 20px;
    color: rgb(255, 255, 255);
    justify-content: center;
}

/* sambutan kepala sekolah */
.sambutan {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.sambutan .content {
    display: flex;
    flex-direction: column;
    padding: 40px 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.sambutan .content .kepala-sekolah {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.sambutan .content .kepala-sekolah img {
    width: 100%;
    height: auto;
}

.sambutan .content .sambutan-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    align-items: center;
}

.sambutan .content .sambutan-text h2 {
    color: var(--heading-color);
    font-size: 40px;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

.sambutan .content .sambutan-text .bapak {
    font-size: 20px;
    text-align: center;
    line-height: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.sambutan .content .sambutan-text .dropdown {
    padding-top: 20px;
    color: var(--paragraph-color);
    justify-content: center;
    text-align: justify;
}

.dropdown {
    margin-top: 20px;
    background: linear-gradient(to right, #ffffffa4), url('../img/Lbackground.webp');
    border: 2px solid #0015ff;
    padding: 40px 80px;
    max-height: 50px;
    overflow: hidden;
    border-radius: 10px;
    transition:
        max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown .box {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s 0.2s cubic-bezier(0.5, 0.2, 0, 1), opacity 0.5s cubic-bezier(0.5, 0.2, 0, 1);
}

.dropdown.open {
    max-height: 6000px;
    background: white;
    padding: 40px 80px 40px 80px;
}

.dropdown.open .box {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s 0s, opacity 0.25s ease 0.25s;
}

/* visi & misi */
.visimisi {
    display: flex;
    width: 100%;
    position: relative;
    background: linear-gradient(to right, rgba(5, 28, 108, 0.804)), url('../img/pattern.webp');
    background-position: center;
    background-size: contain;
    background-repeat: repeat;

}

.visimisi .content {
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 80px;
}

.visimisi .content .container {
    display: flex;
    width: 100%;
    position: relative;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.visimisi .content .container .box h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

.visimisi .content .container .box p {
    color: rgb(220, 220, 220);

}

/* ektrakulikuler */
.ekstra {
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(13, 26, 45, 0.644)s;
    margin-top: 80px;
}

.ekstra .container>* {
    z-index: 2;
}

.ekstra .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #0d1a2d;
    position: relative;
    gap: 20px;
    padding: 40px 80px;
    justify-content: center;
    align-items: center;
    /* background: url('../img/Lbackground.webp'); */
}

/* .ekstra .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.75) 35%,
            rgba(255, 255, 255, 0.45) 70%,
            rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
}

.ekstra .container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 26, 45, 0.95) 0%,
            rgba(13, 26, 45, 0.75) 35%,
            rgba(13, 26, 45, 0.45) 70%,
            rgba(13, 26, 45, 0.15) 100%);
    z-index: 1;
} */

.ekstra .text {
    padding: 40px 80px;
    width: 100%;
    margin-top: 30px;
    position: relative;
    background: linear-gradient(to right, #0d1a2d 10%, rgba(13, 26, 45, 0.353) 100%, transparent 100%), url('../img/banner3.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ekstra .text h2 {
    color: white;
}

.ekstra .text p {
    color: white;
}

.ekstra .container {
    padding: 40px 0;
}

.ekstra .container .ekstra-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.ekstra .container .box h2 {
    color: black;
    font-size: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

.ekstra .container .box p {
    color: var(--paragraph-color);

}

.ekstra .container .box {
    position: relative;
    width: 400px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

.ekstra .container .box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 500ms ease-in-out;
}

.ekstra .container .box:hover img {
    transform: scale(1.1);
    transition: all 400ms ease-in-out;
}

/* fasilitas */
.fasilitas {
    width: 100%;
    position: relative;
    margin-top: 80px;
}

.fasilitas .container>* {
    z-index: 2;
}

.fasilitas .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #0d1a2d;
    position: relative;
    gap: 20px;
    padding: 40px 0 40px 0;
    justify-content: center;
    align-items: center;
    /* background: url('../img/Lbackground.webp'); */
}

.fasilitas .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgb(13, 26, 45) 0%,
            rgba(13, 26, 45, 0.75) 35%,
            rgba(13, 26, 45, 0.45) 70%,
            rgba(13, 26, 45, 0.15) 100%);
    z-index: 1;
}

.fasilitas .text {
    padding: 40px 80px;
    width: 100%;
    margin-top: 30px;
    position: relative;
    background: linear-gradient(to right, #0d1a2d 10%, rgba(13, 26, 45, 0.353) 100%, transparent 100%), url('../img/banner3.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fasilitas .text h2 {
    color: white;
}

.fasilitas .text p {
    color: white;
}

.fasilitas .container .fasilitas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.fasilitas .container .box h2 {
    color: black;
    font-size: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

.fasilitas .container .box p {
    color: var(--paragraph-color);

}

.fasilitas .container .box {
    position: relative;
    width: 400px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

.fasilitas .container .box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 500ms ease-in-out;
}

.fasilitas .container .box:hover img {
    transform: scale(1.1);
    transition: all 400ms ease-in-out;
}


.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    text-align: center;
}

.card-overlay h3 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* materi ipas */
.materi-ipas {
    background: linear-gradient(to right, rgba(5, 28, 108, 0.804)), url('../img/pattern.webp');
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
    width: 100%;
    height: 60vh;
    position: relative;
    padding: 40px 80px;
}

.materi-ipas .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.materi-ipas .text h2 {
    font-size: 35px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
    position: relative;
}

.materi-ipas .text p {
    font-size: 16px;
    color: white;
    text-align: center;
    width: 100%;
    position: relative;
}

.materi-ipas .button {
    padding: 20px 80px;
    width: 100%;
    position: relative;
}

.materi-ipas .button .cuy {
    padding: 10px 20px;
    border-radius: 50px;
    outline: none;
    border: 1px solid var(--added-color1);
    background-color: var(--added-color1);
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.materi-ipas .button .cuy:hover {
    background: black;
    border: 1px solid black;
}

/* Why us */
.why-us {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.why-us .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    padding: 40px 80px;
    gap: 20px;
    align-items: center;
}

/* .why-us .whyBG::before {
    position: absolute;
    inset: 0;
    content: '';
    z-index: 0;
} */

.why-us .text h2 {
    font-size: 40px;
    color: var(--heading-color);
    text-align: center;
}

.why-us .text p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--paragraph-color);
    text-align: center;
}

.why-us-badge {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.why-us-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.benefit-item {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border: 2px solid rgba(78, 77, 255, 0.10);
    box-shadow: 0 4px 20px rgba(78, 77, 255, 0.07);
    transition: all 400ms ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4e4dff, #00e1ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 77, 255, 0.30);
    box-shadow: 0 16px 40px rgba(78, 77, 255, 0.16);
}

.benefit-item:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4e4dff 0%, #00e1ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(78, 77, 255, 0.30);
    transition: transform 400ms ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(-8deg) scale(1.1);
}

.benefit-icon i {
    color: white;
    font-size: 20px;
}

.benefit-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.benefit-text p {
    font-size: 13px;
    color: var(--paragraph-color);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .why-us-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-benefits {
        grid-template-columns: 1fr;
    }
}


/* project ipas */

.project-ipas {
    width: 100%;
    position: relative;
    padding: 0 80px 80px 80px;
}

.project-ipas .cover-project-ipas {
    width: 100%;
    position: relative;
}

.project-ipas .cover-project-ipas .judul-project-ipas h1 {
    color: var(--heading-color);
    text-align: center;
}

.project-ipas .cover-project-ipas .judul-project-ipas h2 {
    color: var(--paragraph-color);
    text-align: center;
}

.project-ipas .cover-project-ipas .kata-pengantar-project p,
.project-ipas .cover-project-ipas .visi-dan-misi p {
    color: var(--paragraph-color);
}

.project-ipas .cover-project-ipas .kata-pengantar-project h2,
.project-ipas .cover-project-ipas .visi-dan-misi h2 {
    color: var(--heading-color);
}

.project-ipas .cover-project-ipas .kata-pengantar-project h3,
.project-ipas .cover-project-ipas .visi-dan-misi h3 {
    color: var(--heading-color);
}

.project-ipas .cover-project-ipas .project-pengantar .profile-bp {
    display: flex;
    justify-content: center;
    margin: 0px auto;
    width: 100%;
}

.project-ipas .cover-project-ipas .project-pengantar .profile-bp img {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.project-ipas .cover-project-ipas .project-pengantar .kata-pengantar-project {
    width: 100%;
    text-align: justify;
}

.project-ipas .cover-project-ipas .rjj {
    background-color: white;
    padding: 40px 0;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.project-ipas .pembimbing {
    position: relative;
    width: 100%;
    padding: 40px 80px;
}

.project-ipas .pembimbing ol {
    padding-left: 30px;
}

.project-ipas .kata-pengantar-project {
    position: relative;
    width: 100%;
    padding: 40px 80px;
}

.container-sambutan {
    width: 100%;
    position: relative;
    background: linear-gradient(to right, rgba(5, 28, 108, 0.804), rgba(0, 0, 0, 0.804)), url('../img/gerbang-bp.jpeg');
    background-position: center;
    background-size: cover;
    padding: 120px 100px;
    margin: 90px 0 130px 0;
}

.container-sambutan .judul-project-ipas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
}

.container-sambutan .judul-project-ipas h1 {
    color: white;
    font-size: 35px;
    font-weight: bold;
}

.container-sambutan .judul-project-ipas p {
    color: white;
    font-size: 19px;
    line-height: 1px;
}

.container-sambutan .link-box {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 15px;
    width: 100%;
    background-size: cover;
}

.container-sambutan .link-box>div {
    background-color: #ffffff;
    border: 3px solid #1414B3;
    border-radius: 10px;
    padding: 30px 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: calc(50% - 30px);
    transition: transform 500ms ease-in-out;
    box-sizing: border-box;
}

.container-sambutan .link-box>div:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    background-color: var(--added-color1);
}

.container-sambutan .link-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
}

.container-sambutan .link-box a img {
    width: 35px;
    height: 35px;
}

.container-sambutan .link-box a h2 {
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

.project-container {
    width: 100%;
    position: relative;
    padding: 40px 80px 40px 80px;
}

.cover-project-container-ipas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    position: relative;
}

.cover-project-container-ipas .img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cover-project-container-ipas .img img {
    width: 70%;
    max-width: 700px;
    height: 340px;
    box-shadow: 0 20px 60px rgba(78, 77, 255, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
    object-fit: cover;
    border-radius: 20px;
    transition: transform 600ms ease;
}

.cover-project-container-ipas .img img:hover {
    transform: scale(1.03);
}

.cover-project-container-ipas>h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--heading-color);
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.cover-project-container-ipas>h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #4e4dff, #00e1ff);
    border-radius: 99px;
}

.cover-project-container-ipas .goal {
    background: linear-gradient(135deg, #29338a 0%, #4e4dff 100%);
    border-radius: 16px;
    padding: 30px 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 8px 32px rgba(78, 77, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.cover-project-container-ipas .goal::before {
    content: '🎯';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 80px;
    opacity: 0.08;
}

.cover-project-container-ipas .goal h1 {
    font-size: 18px;
    font-weight: 700;
    color: #ffe066;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.cover-project-container-ipas .goal p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 14px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.awalan-materi-project {
    width: 100%;
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

.awalan-materi-project h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.awalan-materi-project h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 24px;
    font-style: italic;
}

.pengertian-energi {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(135deg, #f4f1ff 60%, #e0f7fa 100%);
    border-radius: 18px;
    padding: 36px 40px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 24px rgba(78, 77, 255, 0.08);
    position: relative;
    align-items: center;
}

.pengertian-energi p {
    color: var(--paragraph-color);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    width: 100%;
}

.pengertian-energi img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-top: 10px;
    /* filter: drop-shadow(0 6px 16px rgba(78, 77, 255, 0.18)); */
    transition: transform 400ms ease;
}

.pengertian-energi img:hover {
    transform: translateY(-6px) rotate(-3deg);
}

.video-container {
    width: 100%;
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.video-player {
    width: 100%;
    max-width: 860px;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(78, 77, 255, 0.22), 0 4px 12px rgba(0, 0, 0, 0.10);
    background: #0d1a2d;
    outline: none;
    display: block;
}

.video-caption {
    text-align: center;
    padding: 10px 20px;
}

.video-caption h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.video-caption p {
    font-size: 13px;
    color: var(--accent-color);
    font-style: italic;
}

.project-container [class^="1.1"] {
    width: 100%;
    position: relative;
    margin-top: 60px;
}

.project-container [class^="1.1"] h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
}

.project-container [class^="1.1"] h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4e4dff, #00e1ff);
    border-radius: 99px;
    margin: 10px auto 0;
}

.bentuk-energi-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.bentuk-energi-box {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    width: calc(33% - 20px);
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    border: 2px solid rgba(78, 77, 255, 0.12);
    box-shadow: 0 4px 20px rgba(78, 77, 255, 0.08);
    transition: all 400ms ease;
    cursor: default;
}

.bentuk-energi-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 16px 40px rgba(78, 77, 255, 0.18);
}

.bentuk-energi-box img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    /* filter: drop-shadow(0 4px 8px rgba(78, 77, 255, 0.20)); */
    transition: transform 400ms ease;
}

.bentuk-energi-box:hover img {
    transform: scale(1.15) rotate(-5deg);
}

.bentuk-energi-box h2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.4;
}

.project-container [class^="1.2"] {
    width: 100%;
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.box-penjelasan-energi {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 18px;
    padding: 28px 32px;
    border: 2px solid rgba(78, 77, 255, 0.10);
    box-shadow: 0 4px 20px rgba(78, 77, 255, 0.08);
    transition: all 400ms ease;
    position: relative;
    overflow: hidden;
}

.box-penjelasan-energi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #4e4dff, #00e1ff);
    border-radius: 4px 0 0 4px;
}

.box-penjelasan-energi:hover {
    transform: translateX(6px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 36px rgba(78, 77, 255, 0.16);
}

.box-penjelasan-energi img:first-child {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(78, 77, 255, 0.22));
    transition: transform 400ms ease;
}

.box-penjelasan-energi:hover img:first-child {
    transform: rotate(-8deg) scale(1.1);
}

.box-penjelasan-energi .nama-energi {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.box-penjelasan-energi img:nth-child(3) {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    justify-self: center;
}

.box-penjelasan-energi #penjelasan {
    font-size: 14px;
    color: var(--paragraph-color);
    line-height: 1.8;
    text-align: justify;
    grid-column: 1 / -1;
    padding-top: 4px;
    border-top: 1px dashed rgba(78, 77, 255, 0.18);
}

/* tabbel */
.container-table {
    display: flex;
    width: 100%;
    position: relative;
    padding: 40px 80px 80px 80px
}

.container-table .table-content {
    position: relative;
    width: 100%;
}

.container-table .table-content h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
}

.container-table .table-content table {
    position: relative;
    border-radius: 10px;
    width: 100%;
    border: 2px solid #0707a4;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.container-table .table-content table thead tr {
    background-color: #0707a4;
}

.container-table .table-content table thead tr th {
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.container-table .table-content table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.container-table .table-content table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.container-table .table-content table tbody tr {
    background-color: rgb(223, 245, 255);
}

.container-table .table-content table tbody tr:nth-child(even) {
    background-color: #dfe3ff;
}

.container-table .table-content table tbody tr:hover {
    background-color: #c8ceff;
}

.container-table .table-content table tbody tr td {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--paragraph-color);
    border-bottom: 1px solid rgba(78, 77, 255, 0.10);
}

.container-table .table-content table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.container-table .table-content table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* 
.container-table .table-content table tbody tr:last-child td {
    border-bottom: none;
} */

/* contact */
.container-contact {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    margin-top: 80px;
    justify-content: center;
    align-items: center;
    padding: 50px 100px;
    background: linear-gradient(to right, rgb(10, 44, 77) 10%, rgba(10, 44, 77, 0.89) 50%, rgba(10, 44, 77, 0.419) 100%, transparent 100%), url('../img/SPMB.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container-contact .content-contact {
    max-width: 1000px;
    text-align: center;
    color: white;
}

.container-contact .content-contact h1 {
    font-size: 50px;
    font-weight: 100;
    letter-spacing: 3px;
    color: white;
}

.container-contact .content-contact p {
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
}

.container-contact .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.container-contact .row .col-1 {
    position: relative;
}

.container-contact .row .col-1 .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.container-contact .row .col-1 .inputBox input,
.container-contact .row .col-1 .inputBox textarea {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    outline: none;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: white;
    font-size: 16px;
}

.container-contact .row .col-1 .inputBox input::placeholder,
.container-contact .row .col-1 .inputBox textarea::placeholder {
    color: #c8ceff;
    font-family: 'Monstserrat', sans-serif;
}

.container-contact .row .col-1 .inputBox input[type="submit"] {
    background: white;
    color: #111;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.container-contact .row .col-2 {
    position: relative;
    padding: 30px 40px;
}

.container-contact .row .col-2 .chatBox {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.container-contact .row .col-2 .chatBox .contactInfo {
    position: relative;
    padding: 40px;
    width: 100%;
    display: flex;
    background: linear-gradient(to right, rgb(10, 44, 77) 10%, rgba(10, 44, 77, 0.89) 50%, rgba(10, 44, 77, 0.419) 100%, transparent 100%), url('../img/gerbang-bp.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    gap: 20px;
}

.container-contact .row .col-2 .chatBox .contactInfo h3 {
    font-size: 30px;
    color: white;
    font-weight: 700;
}

.container-contact .row .col-2 .chatBox .contactInfo p {
    color: white;
}

.container-contact .row .col-2 .chatBox .contactInfo .info {
    position: relative;
    list-style: none;
}

.container-contact .row .col-2 .chatBox .contactInfo .info li {
    position: relative;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: white;
}

.container-contact .row .col-2 .chatBox .contactInfo .sci {
    position: relative;
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.container-contact .row .col-2 .chatBox .contactInfo .sci li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid white;
    transition: 0.5s;
    color: white;
    text-decoration: none;
}

.container-contact .row .col-2 .chatBox .contactInfo .sci li a:hover {
    background: white;
    color: #0a2b4d;
}

/* footer */
.footer {
    width: 100%;
    height: 50vh;
    background-color: #0d1a2d;
    position: relative;
}

.footer .container {
    width: 100%;
    align-items: center;
    padding: 30px 40px;
    display: flex;
}

.footer .container .headerf {
    width: 100%;
    display: flex;
    gap: 20px;
}

.footer .container .headerf .h-text {
    align-content: center;
    width: 100%;
}

.footer .container .headerf .img {
    align-content: center;
}

.footer .container .headerf img {
    object-fit: contain;
    height: 100px;
    width: auto;
}

.footer .container .headerf p {
    color: #d4d4d4;
}

.footer .container .headerf h2 {
    font-size: 18px;
    position: relative;
    bottom: 5px;
    font-weight: bold;
    color: white;
    font-family: var(--default-font);
}

.footer .container .content {
    width: 100%;
    flex-direction: column;
}

.footer .container .content .list {
    width: 100%;
    align-content: center;
    position: relative;
}

.footer .container .content .list ul {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    list-style-type: none;
    overflow-x: auto;
    padding: 10px 0 10px 0;
    padding-left: 150px;
    padding-right: 10px;
    gap: 25px;
}

.footer .container .content .list ul li {
    font-size: 18px;
    font-family: 'poppins', sans-serif;
    transition: all 600ms;
    background: none;
    filter: none;
}

.footer .container .content .list ul li a {
    text-decoration: none;
    color: white;
}

.footer .container .content .list ul li:hover {
    background: linear-gradient(to right, #ffd500, #d4d4d4);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 213, 0, 0.439));
}

.footer .container .content .more-list {
    width: 100%;
    position: relative;
}

.footer .container .content .more-list ul {
    display: flex;
    margin: 0 auto;
    width: 100%;
    padding: 11px 14px;
    list-style-type: none;
    justify-content: center;
    gap: 45px;
}

.footer .container .content .more-list ul li {
    background: linear-gradient(to right, #ffd500, #d4d4d4);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 213, 0, 0.618));
}

.copyright {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
    background: linear-gradient(to right, #ffd500, #d4d4d4);
    border-radius: 3px;
    padding: 12px 15px;
}

.copyright p {
    color: black;
}