/* ✅ General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
}

/* ✅ Header Styling */
header {
    background: #1a1a1a;
    padding: 15px 0;
    width: 100%;
    position: fixed; /* ✅ Keeps it at the top */
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✅ Ensures left-right spacing */
    width: 80%;
    margin: auto;
}

/* ✅ Logo Styling */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ✅ Aligns text left */
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0;
}

.tagline {
    font-size: 14px;
    font-weight: normal;
    color: white;
    opacity: 0.8;
    margin-top: 0;
    letter-spacing: 1px;
}

/* ✅ Navigation Styling */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

nav ul li a:hover {
    color: #ffd700;
}

/* ✅ Responsive Navigation */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}

/* ✅ Hero Section */
.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 160px 20px; /* ✅ Prevents overlap with header */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffd700;
    color: #121212;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e6b800;
}

/* ✅ Our Expertise Section (Matches Portfolio) */
.services {
    padding: 60px 0;
    background: #1a1a1a;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 30px;
}

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

.service-item {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
}

.service-item h3 {
    color: #ffd700;
    font-size: 22px;
}

.service-item p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.3);
}

/* ✅ Industries Section */
.industries {
    padding: 60px 0;
    background: #1a1a1a;
    text-align: center;
}

.industries h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 30px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-content: center;
}

.industry-item {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.3);
}

.industry-item h3 {
    color: #ffd700;
    font-size: 22px;
}

.industry-item p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}

.industry-item ul {
    list-style: none;
    padding: 0;
}

.industry-item ul li {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 8px;
}


/* ✅ Portfolio Section (Matches Expertise Section) */
.portfolio {
    padding: 60px 0;
    background: #1a1a1a;
    text-align: center;
}

.portfolio h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 30px;
}

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

.portfolio-item {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.3);
}

/* ✅ Contact Section */
/* ✅ Contact Section (Styled Like Portfolio & Expertise) */
.contact {
    padding: 60px 0;
    background: #1a1a1a;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 30px;
}

.contact-box {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 10px;
}

.contact-box a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.contact-box a:hover {
    color: white;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.3);
}


/* ✅ Footer */
footer {
    background: #1a1a1a;
    padding: 20px 0;
}

footer p {
    font-size: 14px;
    color: #ccc;
}
