/*
Theme Name: Integrated Oil Solution (IOS)
Theme URI: https://ios.com
Author: IOS
Description: Custom WordPress theme for Integrated Oil Solution
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
}

header {
    background: #ffffff;
    border-bottom: 3px solid #6BBF59;
    padding: 15px 40px;
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    color: #6BBF59;
    text-decoration: none;
}

nav ul {
    list-style: none;
    float: right;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #6BBF59;
}

.hero {
    background: #f5f7f6;
    padding: 80px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 38px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #6BBF59;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.section {
    padding: 60px 40px;
}

.section h2 {
    color: #6BBF59;
}

.values {
    background: #e9f6e6;
    padding: 20px;
    border-left: 5px solid #6BBF59;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.logo img {
    max-height: 55px;
    width: auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo container */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Image logo */
.logo-image img {
    max-height: 55px;
    width: auto;
}

/* Text logo */
.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #6BBF59;
    text-decoration: none;
    white-space: nowrap;
}

/* Header layout */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Bottom Contact Section */
.contact-bottom {
    background: #f5f7f6;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #6BBF59;
}

.contact-bottom h3 {
    color: #6BBF59;
    margin-bottom: 15px;
}

.contact-bottom p {
    margin: 8px 0;
    font-size: 16px;
}

.contact-bottom a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-bottom a:hover {
    color: #6BBF59;
}
/* Hero background image with IOS color blend */
.hero-bg {
    position: relative;
    background: 
        linear-gradient(
            rgba(107, 191, 89, 0.75),
            rgba(107, 191, 89, 0.75)
        ),
        url("assets/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

/* Improve text visibility */
.hero-bg h1,
.hero-bg p {
    color: #ffffff;
}

/* Optional: stronger contrast for button */
.hero-bg .btn {
    background: #ffffff;
    color: #6BBF59;
    font-weight: 600;
}

.hero-bg .btn:hover {
    background: #e9f6e6;
}