/* ================= 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;
}

/* ================= SERVICES HERO ================= */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url("../images/ppkBuilding.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.services-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.services-hero p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

/* ================= SERVICES SECTION ================= */
.services-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, #FFFFFF, #F2F2F2);
    border-radius: 22px;
    overflow: hidden;
    padding: 0;  
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

/* Service Content */
.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    color: #1D3557;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Service List */
.service-content ul {
    list-style: none;
    padding-left: 0;
}

.service-content ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: #333;
}

.service-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #D4AF37;
    /* Gold accent */
    font-weight: bold;
}

/* ================= 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);
}