/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #F8F8F8;
    /* Soft Ivory for main background */
    color: #1D1D1D;
    /* Dark Charcoal text */
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
    /* VERY IMPORTANT: make sure navbar is on top */
}

.logo img {
    height: 50px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #1D3557;
    /* Deep Blue / Navy */
    font-weight: 500;
    padding-bottom: 6px;
}

.nav-links a:hover {
    color: #D4AF37;
    /* Gold hover accent */
}

.nav-links a.active {
    color: #1D3557;
    font-weight: 700;
    border-bottom: 3px solid #1D3557;
}

/* ================= ADMIN LOGIN BUTTON ================= */
/* Wrapper Section */
.admin-login-wrapper {
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    padding: 15px 50px;
    display: flex;
    justify-content: flex-end;  /* button ke kanan */
}

/* Button */
.admin-btn {
    background: linear-gradient(45deg, #0d6efd, #004aad);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13,110,253,0.4);
}

/* ================= HERO VIDEO SECTION ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(60%);
}

.read-more {
    padding: 14px 30px;
    background: linear-gradient(135deg, #1D3557, #457B9D);
    /* Navy gradient */
    border: none;
    color: white;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.read-more:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #457B9D, #D4AF37);
    /* Hover: add elegant gold touch */
}

/* ================= HERO TITLE UPGRADE ================= */

.hero-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: fadeUp 1.2s ease forwards;
}

.hero-title span {
    display: inline-block;
    color: #ffffff; /* gold accent */
    font-weight: 800;
    position: relative;
}

.hero-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: #D4AF37;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= MISSION SECTION ================= */

.mission-section {
    padding: 80px 20px;
    text-align: center;
}

.mission-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.mission-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1 1 400px;
}

.mission-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mission-box {
    flex: 1;
    background: #0d6efd;
    padding: 30px;
    border-radius: 15px;
    box-shadow:2px 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center; /* vertically center text */
}

.mission-box:hover {
    transform: translateY(-5px);
}

.mission-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

/* ================= VISION SECTION ================= */

.vision-section {
    padding: 140px 20px;
    background: #ffffff;
    text-align: center;

    /* Background Image */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("../images/backgroundcs.jpg") center center / cover no-repeat;;
}

.vision-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 100px;
    padding: 20px;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.vision-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.circle {
    position: relative;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #1D3557, #457B9D);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #457B9D, #D4AF37);
}

/* Popup Text */
.popup-text {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #ffffff;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 10;
}

.circle:hover .popup-text {
    opacity: 1;
    visibility: visible;
}


/* ================= BI-DIRECTIONAL SCROLL ANIMATION ================= */
/* Hidden state */
.animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Vision pop animation */
.animate-pop {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-pop.show {
    opacity: 1;
    transform: scale(1);
}

/* ================= VISITOR COUNTER ================= */
/* Visitor Column */
/* Card Wrapper */
.visitor-card {
    background: rgba(28, 28, 28, 0.6); /* semi-transparent to blend with footer */
    padding: 12px 18px;
    border-radius: 10px;
    min-width: 150px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.visitor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}


/* Top Row */
.visitor-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* Label */
.visitor-label {
    font-family: 'Quantico', sans-serif;  /* Or Orbitron */
    font-size: 24px;
    color: #ffffff; /* slightly brighter than footer text */
    opacity: 0.8;
}

/* Big Number */
.visitor-number {
    font-family: 'Quantico', sans-serif;  /* Or Orbitron */
    font-size: 24px;
    color: #4FC3F7; /* keeps pop color */
    letter-spacing: 1px;
    font-weight: 700;
}

/* Stats Below */
.visitor-stats,
.visitor-stats div {
    font-family: 'Quantico', sans-serif;
    font-size: 12px;
    color: #dddddd; /* lighter, still visible */
    line-height: 1.5;
}

/* ================= FOOTER ================= */
.ppk-footer {
    background: #1D3557;
    /* Dark Navy footer */
    padding: 50px 20px 0;
    color: #F8F8F8;
    /* Light text */
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    color: #D4AF37;
    /* Gold headings in footer */
    margin-bottom: 15px;
}
/* Footer Links - Remove Bullet */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #F8F8F8;
    transition: 0.3s ease;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #D4AF37;
}


.footer-logo {
    max-width: 150px;
    background-color: #F8F8F8;
    /* light background behind logo */
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 2px solid #D4AF37;
    /* gold accent */
    background: #1D3557;
    width: 100%;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    border-top: 2px solid #D4AF37;
    padding-top: 15px;
}

.footer-bottom a {
    color: #F8F8F8;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #D4AF37;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown hidden */
.dropdown-content {
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

/* Dropdown link */
.dropdown-content a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    box-sizing: border-box;
}

.dropdown-content a:hover {
    background: #f0f0f0;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

html {
    scroll-behavior: smooth;
}

.dropdown a i {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s;
}

/* rotate bila hover */
.dropdown:hover a i {
    transform: rotate(180deg);
}
/* ================= FOOTER LINK HOVER TEST ================= */

.ppk-footer ul.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ppk-footer ul.footer-links li {
    list-style: none !important;
    margin-bottom: 10px;
}

.ppk-footer ul.footer-links li a {
    color: #F8F8F8 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.ppk-footer ul.footer-links li a:hover {
    color: #D4AF37 !important;
    transform: translateX(15px);
}