* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: white;
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.7);
    z-index: 100;
}

.logo img {
    width: 70px;
}

/* NAV */
nav {
    margin-left: 40px;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* BUTTON */
.btn {
    margin-left: auto;
    background: #ff6a00;
    padding: 10px 20px;
    border-radius: 4px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('../images/power.jpg') center/cover;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    padding-left: 60px;
}

.hero-content h1 {
    font-size: 50px;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    padding: 60px;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    flex: 1;
}

/* CORE VALUES */
.core-values {
    padding: 60px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

.value-card {
    background: #1a1a1a;
    padding: 30px;
}

/* ICON */
.icon {
    color: #ff6a00;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
    }

    nav.active {
        display: flex;
    }

    .cards {
        flex-direction: column;
    }
}
/* =========================
   RESTORE ALL PAGE DESIGNS
========================= */

/* INTRO */
.services-intro {
    padding: 80px 60px 40px;
    text-align: center;
}

.services-intro h2 {
    color: #ff6a00;
    margin-bottom: 20px;
}

.services-intro p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

/* WHO */
.who {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.who-box {
    max-width: 900px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
}

/* SERVICES PAGE */
.service-block {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 10px;
}

.service-block h2 {
    color: #ff6a00;
}

.service-block ul {
    padding-left: 20px;
}

/* HSE */
.hse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    padding: 60px;
}

.hse-card {
    background: #1a1a1a;
    padding: 30px;
    text-align: center;
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    padding: 60px;
}

.why-card {
    background: #1a1a1a;
    padding: 30px;
    text-align: center;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    padding: 60px;
}

.team-card {
    background: #1a1a1a;
    padding: 30px;
    text-align: center;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    padding: 60px;
}

.contact-card {
    background: #1a1a1a;
    padding: 30px;
    text-align: center;
}

/* COMPLIANCE */
.compliance {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.compliance-box {
    max-width: 900px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
}