

*{
    font-family: 'Poppins', sans-serif;
}

body{
    background: #f5f7fb;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar{
    background: rgba(0, 40, 100, 0.92);
    backdrop-filter: blur(12px);
    transition: 0.3s;
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.navbar-brand{
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.3rem;
}
/* LOGO BRAND */

.logo-jala{
    object-fit: contain;
    transition: 0.4s;
    filter: drop-shadow(0 2px 5px rgba(255,255,255,0.2));
}

.navbar-brand:hover .logo-jala{
    transform: rotate(8deg) scale(1.08);
}

/* BRAND TEXT */

.brand-title{
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    line-height: 1.1;
}

.brand-subtitle{
    color: #ffd54f;
    letter-spacing: 2px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: -2px;
}

/* MOBILE */

@media(max-width: 576px){

    .brand-title{
        font-size: 0.85rem;
    }

    .brand-subtitle{
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

}

.logo-jala{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* NAV ITEM */
.navbar .nav-link{
    position: relative;
    color: #dbe8ff !important;
    font-weight: 500;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 14px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.navbar .nav-link:hover{
    color: #ffffff !important;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* UNDERLINE ANIMATION */
.navbar .nav-link::after{
    content: '';
    position: absolute;
    left: 14px;
    bottom: 6px;
    width: 0%;
    height: 2px;
    background: #ffd54f;
    transition: 0.3s;
    border-radius: 10px;
}

.navbar .nav-link:hover::after{
    width: calc(100% - 28px);
}

/* MOBILE TOUCH EFFECT */

.navbar .nav-link:focus,
.navbar .nav-link:active{
    color: #ffffff !important;
    background: rgba(255,255,255,0.12);
    transform: scale(0.98);
}

/* ACTIVE MENU */

.navbar .nav-link.active{
    color: #ffffff !important;
    background: linear-gradient(135deg, #0d6efd, #4dabff);
    box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

/* ACTIVE */
.navbar .nav-link.active{
    color: #ffffff !important;
    background: linear-gradient(135deg, #0d6efd, #4dabff);
    box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

/* ================= DROPDOWN ================= */

.dropdown-menu{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    padding: 12px 0;
    margin-top: 15px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.35s ease;

    display: block;
}

/* SHOW DROPDOWN ON HOVER */
.nav-item.dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN ITEM */
.dropdown-item{
    padding: 12px 22px;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* DROPDOWN ITEM HOVER */
.dropdown-item:hover{
    background: linear-gradient(135deg, #4993FF, #A4B0BB);
    color: white;
    padding-left: 28px;
}

/* MOBILE */
@media(max-width: 991px){

    .navbar .nav-link{
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .dropdown-menu{
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        background: rgba(255,255,255,0.08);
    }

    .dropdown-item{
        color: white;
    }

    .dropdown-item:hover{
        background: rgba(255,255,255,0.15);
    }

}

/* HERO */
.hero{
    min-height: 100vh;
    background:
    linear-gradient(rgba(0,40,100,0.75), rgba(0,40,100,0.75)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 90px;
}

.hero-box{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: fadeUp 1s ease;
}

.hero h1{
    font-size: 3rem;
    font-weight: 700;
}

.hero p{
    font-size: 1.1rem;
    margin-top: 20px;
    line-height: 1.8;
}

.btn-custom{
    background: #ffd34d;
    border: none;
    color: #003782;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-custom:hover{
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        #0d6efd,
        #4dabff,
        #6ea8fe
    );;
}

/* SECTION */
section{
    padding: 80px 0;
}

.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-weight: 700;
    color: #003782;
}

/* CARD */
.service-card{
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card i{
    font-size: 50px;
    color: #003782;
    margin-bottom: 20px;
}

/* ABOUT */
.about-img{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-img img{
    width: 100%;
    transition: 0.5s;
}

.about-img:hover img{
    transform: scale(1.05);
}

/* FOOTER */
footer{
    background: #00214d;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* WHATSAPP */
.wa-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    line-height: 60px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.wa-float:hover{
    transform: scale(1.1);
    color: white;
}

/* =========================
   SCROLL ANIMATION
========================= */

.reveal{
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width: 768px){

    .hero{
        text-align: center;
        padding: 120px 15px 80px;
    }

    .hero h1{
        font-size: 2rem;
    }

    .hero-box{
        padding: 25px;
    }

}

/* Fungsi Button */
.button-sm {
    border-radius: 30px;
    color: #FFFFFF;
    font-size: 16px;
    padding: 10px 20px;
    margin: 0 10px 0 10px;
}
.button-33 {
    box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
    cursor: pointer;
    font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.button-33:hover {
    box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
}
/* End Fungsi Button */