body {
    margin: 0;
    font-family: Arial;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: #000;
}

.logo {
    color: #FFD700;
    font-size: 22px;
}

.logo span {
    color: white;
}

.header nav a {
    color: white;
    margin: 0 10px;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('../images/road.jpg') center/cover no-repeat;
}

.overlay {
    background: rgba(0,0,0,0.7);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* PRODUCTS */
.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 40px;
}

.card {
    background: white;
    padding: 10px;
}

/* BUTTON */
.btn {
    background: #FFD700;
    padding: 12px 20px;
    color: black;
    text-decoration: none;
}

/* RESET DEFAULT WP MENU */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;              /* THIS MAKES IT HORIZONTAL */
    align-items: center;
    gap: 25px;
}

/* REMOVE DEFAULT LI BEHAVIOR */
.menu li {
    display: inline-block;
}

/* LINKS */
.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s ease;
}

/* HOVER EFFECT (YOUR BRAND STYLE) */
.menu li a:hover {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* HEADER LAYOUT FIX */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px 40px;
}

/* COMPANY PROFILE SECTION */
.company-profile {
    padding: 80px 40px;
    background: #fff;
}

.company-profile .container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* TEXT SIDE */
.profile-text {
    flex: 1;
}

.profile-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.profile-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* IMAGE SIDE */
.profile-image {
    flex: 1;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* BUTTON */
.profile-text .btn {
    display: inline-block;
    margin-top: 15px;
    background: #FFD700;
    color: #000;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
}

.profile-text h2 {
    border-left: 5px solid #FFD700;
    padding-left: 12px;
}

@media (max-width: 768px) {
    .company-profile .container {
        flex-direction: column;
    }

    .profile-text h2 {
        font-size: 26px;
    }
}