/* GLOBAL */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

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

/* LOGO */
.logo img {
    width: 60px;
}

/* NAV */
nav {
    display: flex;
    gap: 12px;
    perspective: 600px;
}

/* NAV BOXES (GREY + 3D) */
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;

    border: 2px solid #555;
    border-radius: 6px;

    background: #000;

    transition: all 0.3s ease;
}

/* NAV HOVER */
nav a:hover {
    background: #ff6a00;
    border-color: #ff6a00;

    transform: translateY(-6px) scale(1.05);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.6),
        0 0 10px #ff6a00,
        0 0 20px rgba(255,106,0,0.7);
}

/* ENQUIRY BUTTON */
.btn {
    margin-left: 20px;
    margin-right: 40px;

    background: linear-gradient(45deg, #ff6a00, #ff8c00);
    padding: 14px 25px;
    color: white;
    border-radius: 6px;
    font-weight: 600;

    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 15px #ff6a00;
}

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

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.4)
    );
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    padding-left: 80px;
}

/* HERO BOX (BIG + BOLD) */
.hero-box {
    display: inline-block;
    padding: 35px 40px;

    border: 3px solid #ff6a00;
    border-radius: 12px;

    background: rgba(0,0,0,0.5);
    color: white;

    transition: 0.3s;
}

/* HERO TEXT */
.hero-box h1 {
    font-size: 85px;
    font-weight: 800;
    margin: 15px 0;
}

.hero-box p {
    font-size: 22px;
    margin: 10px 0;
}

.hero-box .small {
    font-size: 20px;
    opacity: 0.9;
}

/* HERO HOVER */
.hero-box:hover {
    transform: translateY(-8px) scale(1.04);

    box-shadow:
        0 0 20px #ff6a00,
        0 0 40px rgba(255,106,0,0.7),
        0 0 60px rgba(255,106,0,0.4);
}

/* SERVICES */
.services {
    background: #0c0c0c;
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    color: #ff6a00;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* CARD */
.card {
    background: #1a1a1a;
    padding: 35px;
    flex: 1;

    border-radius: 10px;
    border: 2px solid #ff6a00;

    transition: 0.3s;
}

/* CARD HOVER */
.card:hover {
    transform: translateY(-12px) scale(1.02);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.6),
        0 0 15px #ff6a00,
        0 0 30px rgba(255,106,0,0.6);
}

/* CARD TEXT */
.card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ICON */
.icon {
    font-size: 35px;
    color: #ff6a00;
    margin-bottom: 15px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 25px;
    padding: 15px;
    border-radius: 50%;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    .hero-box h1 {
        font-size: 40px;
    }

    .hero-box p {
        font-size: 16px;
    }

    .hero-content {
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
    }
}