/* ================= 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;
}

/* ================= HERO SECTION ================= */
.about-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

/* Video Background */
.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark Overlay */
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Hero Content */
.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1D3557;
}

/* ================= CARDS (OVERVIEW & OBJECTIVES) ================= */
.about-cards {
    position: relative;
    padding: 120px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        #0d6efd;
    overflow: hidden;
}

.about-cards::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(29, 53, 87, 0.18);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.about-cards::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.18);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}


.card-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    flex: 1 1 400px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 15px;
    color: #1D3557;
}

.card p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* ================= CLIENTS SECTION ================= */
.about-clients {
    padding: 80px;
}

.about-clients h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1D3557;
}

.client-card {
    text-align: center;
}

.client-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 12px;
}

.client-card p {
    font-weight: 600;
    font-size: 14px;
    color: #1D3557;
}

/* Grid helpers */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ================= TEAM SECTION ================= */
.about-team {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* vertical list */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

/* BIGGER CARD */
.team-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* BIG IMAGE */
.team-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}

/* RIGHT SIDE */
.team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* each row */
.info-row {
    display: flex;
    gap: 10px;
}

/* label kiri */
.label {
    font-weight: bold;
    width: 110px;
    color: #333;
}

/* value kanan */
.value {
    color: #555;
}.about-team {
    padding: 60px 20px;
}

/* FULL WIDTH LOOK */
.team-list {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* BIG CARD */
.team-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 35px 40px;
    border-radius: 18px;
    background: #f5f5f5;
}

/* IMAGE BESAR */
.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
}

/* TEXT AREA */
.team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* NAMA */
.team-name {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* JAWATAN */
.team-role {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* DEPARTMENT / COMPANY */
.team-dept {
    font-size: 16px;
    color: #777;
    margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .about-hero {
        height: 70vh;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .card {
        padding: 20px;
    }
}


/* ================= 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-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;
}

.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);
}