/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.6;
}

section {
    padding: 60px 8%;
}

/* ================= NAVBAR ================= */
.header {
    background-color: #111;
    padding: 15px 8%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 200px;
    background-color: white;
    padding: 5px;
    border-radius: 6px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.brand-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.nav-links a:hover,
.nav-links .active {
    color: #ff8800;
}

/* ================= HERO ================= */
.hero {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 90px 8%;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 17px;
    max-width: 650px;
    margin: auto;
    opacity: 0.9;
}

/* ================= BUTTONS ================= */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.primary-btn {
    background-color: #ef9104;
    color: #ffffff;
}

.secondary-btn {
    border: 2px solid #ef9104;
    color: #ef9104;
}

.secondary-btn:hover {
    background-color: #ef9104;
    color: #ffffff;
}

/* ================= SERVICES ================= */
.services-section {
    padding: 80px 10%;
    background-color: #f8f9fb;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #fcad04;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    color: #555;
}

/* ================= TEAM ================= */
.team-section {
    padding: 80px 10%;
    background-color: #f4f6f8;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.leader-highlight {
    background: white;
    padding: 40px;
    border-left: 6px solid #fcad04;
    margin-bottom: 70px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.leader-highlight h3 {
    color: #fcad04;
    margin-bottom: 20px;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.exec-card {
    background: white;
    padding: 30px;
    border-top: 5px solid #fcad04;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.exec-card:hover {
    transform: translateY(-6px);
}

.position {
    font-weight: bold;
    color: #fcad04;
    margin-bottom: 15px;
}

/* ================= EQUIPMENT ================= */
.operations {
    background-color: #f4f4f4;
}

.equipment-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.equipment-grid img {
    width: 100%;
    max-width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.equipment-grid img:hover {
    transform: scale(1.03);
}

/* ================= CTA ================= */
.cta {
    background-color: #ef9104;
    color: #ffffff;
    text-align: center;
    padding: 50px 8%;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 25px 8%;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
/* ================= ABOUT PAGE ================= */

.about-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 900px;
    margin: auto;
}

.about-card {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 6px solid #ef9104;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 6px;
}

.about-card h2 {
    color: #ef9104;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
/* ================= CORE VALUES REFINED ================= */

/* ================= CORE VALUES SIMPLE ================= */

.why-orion {
    background-color: #f8f9fb;
    padding: 80px 10%;
}

.why-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.why-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.why-list li {
    font-size: 17px;
    margin: 12px 0;
    font-weight: 500;
    color: #333;
}


/* ================= CLIENTS REFINED ================= */

.content {
    padding: 80px 10%;
    background-color: #ffffff;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
}

.content p {
    max-width: 800px;
    margin-bottom: 30px;
    color: #555;
}

.client-list ul {
    columns: 2;
    column-gap: 50px;
    list-style: none;
    padding: 0;
}

.client-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-left: 18px;
}

.client-list li::before {
    content: "•";
    color: #ef9104;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .client-list ul {
        columns: 1;
    }
}
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    z-index: 1000;
}
