/* css/style.css */

body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #ddd;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    margin-right: 15px;
}

.logo h1 {
    margin: 0;
    color: #ff8c00; /* Orange */
}

.logo .tagline {
    display: block;
    font-size: 0.8em;
    color: #555;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #337ab7; /* Blue */
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d9534f; /* Red */
}

/* Hero Section */
.hero {
    background-color: #e9ecef;
    padding: 50px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button.primary {
    background-color: #337ab7; /* Blue */
    color: #fff;
}

.button.primary:hover {
    background-color: #286090;
}

.button.secondary {
    background-color: #ff8c00; /* Orange */
    color: #fff;
}

.button.secondary:hover {
    background-color: #e67e00;
}

/* Core Services */
.core-services {
    padding: 40px 0;
    background-color: #fff;
}

.core-services h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.service-item h3 {
    color: #d9534f; /* Red */
    margin-top: 0;
    margin-bottom: 10px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.service-item ul li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}

.service-item ul li:last-child {
    border-bottom: none;
}

/* STREAM Innovation */
.stream-innovation {
    background-color: #e9ecef;
    padding: 40px 0;
    text-align: center;
}

.stream-innovation h2 {
    color: #333;
    margin-bottom: 15px;
}

.stream-innovation p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.stream-innovation .tagline {
    font-style: italic;
    color: #777;
}

/* Page Header (for About, Services, Contact) */
.page-header {
    background-color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-header h2 {
    color: #333;
    margin: 0;
    font-size: 2em;
}

/* About Content */
.about-content {
    padding: 40px 0;
    background-color: #fff;
}

.about-content .container p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Services Content */
.services-content {
    padding: 40px 0;
    background-color: #fff;
}

.services-content .service-category {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.services-content .service-category h3 {
    color: #d9534f; /* Red */
    margin-top: 0;
    margin-bottom: 15px;
}

.services-content .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.services-content .service-item h4 {
    color: #337ab7; /* Blue */
    margin-top: 0;
    margin-bottom: 5px;
}

.services-content .service-item p {
    color: #555;
    margin-bottom: 10px;
}

/* Contact Content */
.contact-content {
    padding: 40px 0;
    background-color: #fff;
}

.contact-content .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-details h3,
.contact-form h3 {
    color: #ff8c00; /* Orange */
    margin-bottom: 15px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    margin-bottom: 10px;
}

.contact-details ul li strong {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.contact-details ul li a {
    color: #337ab7; /* Blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details ul li a:hover {
    color: #d9534f; /* Red */
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #d9534f; /* Red */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #c9302c;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff8c00; /* Orange */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .service-grid,
    .services-content .service-list,
    .contact-content .container {
        grid-template-columns: 1fr;
    }
}