@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
}

/* Root Variables */
:root {
    --primary-color: #e44d26;
    --primary-hover-color: #cc3e1b;
    --secondary-color: #f9f9f9;
    --text-color: #333;
    --text-secondary-color: #555;
    --background-color: #fff;
    --heading-font-size: 2.5rem;
    --subheading-font-size: 1.8rem;
    --body-font-size: 1rem;
}

/* Global Styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--body-font-size);
}

/* General Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 5; /* Ensure header is above other elements */
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #fff; /* Matches the logo's color */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.3rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #ffffff;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu a {
        padding: 0.5rem;
        text-align: center;
    }
}



/* Buttons */
.button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.button:hover {
    background-color: var(--primary-hover-color);
    transition: background-color 0.3s ease-in-out;
}

.button:focus {
    outline: 2px solid var(--primary-color);
}


/* General H1 Styling */
h1 {
    font-size: 2.5rem; /* Default size for larger screens */
    line-height: 1.3;
    word-break: break-word; /* Breaks long words to avoid overflow */
    text-align: center;
    margin: 0 auto;
    max-width: 90%; /* Prevents excessive width on small screens */
}



/* Intro Section */
.intro {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
}

/* Intro Section */
.content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Aligns text and image vertically */
    justify-content: space-between; /* Pushes text and image to opposite sides */
}

.graphic {
    flex: 0 0 auto; /* Prevents the graphic from shrinking */
    max-width: 300px; /* Restricts the image width */
}

.graphic img {
    width: 100%; /* Ensures the image stays responsive */
    height: auto; /* Maintains aspect ratio */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.text {
    flex: 1; /* Allows the text to take up the remaining space */
    max-width: 60%; /* Restricts text width to ensure readability */
}

/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; /* Stacks text and image vertically */
        align-items: flex-start; /* Aligns items to the start */
    }

    .text {
        max-width: 100%; /* Text takes full width on smaller screens */
    }

    .graphic {
        max-width: 100%; /* Image takes full width on smaller screens */
    }
}

.text h2 {
    font-size: var(--subheading-font-size);
    margin-bottom: 1rem;
    font-weight: 700;
}

.text p {
    font-size: var(--body-font-size);
    color: var(--text-secondary-color);
    line-height: 1.8;
}

/* Featured Projects Section */
.featured-projects {
    background-color: var(--secondary-color); /* Same as the intro section */
    padding: 4rem 2rem; /* Consistent padding */
}

.featured-projects .content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Enables wrapping for smaller screens */
    gap: 2rem; /* Adds spacing between elements */
    max-width: 1200px; /* Centers the content */
    margin: 0 auto;
    justify-content: center; /* Center-align the text */
}

.featured-projects .text {
    flex: 1; /* Makes the text fill the available space */
    max-width: 800px; /* Optional: restricts width for readability */
    text-align: center; /* Center-align the text */
}

.featured-projects .text h2 {
    font-size: var(--subheading-font-size); /* Matches intro section */
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-projects .text p {
    font-size: var(--body-font-size); /* Matches intro section */
    color: var(--text-secondary-color);
    line-height: 1.8; /* Ensures comfortable reading */
}



/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 2rem;
    text-align: center;
}

.footer h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

/* About Content Section */
.about-content {
    background-color: #f4f4f4;
    padding: 4rem 2rem;
}

.about-content .content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows the layout to adjust on smaller screens */
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about-content .text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.about-content .text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-content .graphic {
    flex: 1;
    max-width: 600px; /* Ensures the image does not dominate the layout */
}

.about-content .graphic img {
    width: 100%; /* Ensures the image is responsive */
    height: auto; /* Maintains the aspect ratio */
    border-radius: 5px; /* Optional: adds a slight rounded corner for a clean look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for a polished effect */
}

/* LinkedIn Link Styling */
.linkedin-link {
    margin-top: 1.5rem;
}

.linkedin-link a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    color: #0077b5; /* LinkedIn blue */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.linkedin-link a:hover {
    color: #005582; /* Darker LinkedIn blue on hover */
}

.linkedin-link img {
    width: 16px; /* Small icon size */
    height: 16px; /* Ensures the icon stays proportional */
    margin-right: 0.5rem; /* Space between the icon and text */
    vertical-align: middle;
}

/* Value Proposition Section */
.value-proposition {
    background-color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.value-proposition h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #000;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Space between items */
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center; /* Centering items */
}

.value-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1 1 calc(50% - 2rem); /* Two columns on large screens */
    max-width: 500px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .values-list {
        flex-direction: column; /* Stacks elements vertically */
        align-items: center;
    }

    .value-item {
        flex: 1 1 100%; /* Full width on small screens */
        max-width: 100%;
        text-align: center;
    }
}

/* Default H1 Styling for Larger Screens */
h1 {
    font-size: 2rem; /* Reduced size for desktop */
    line-height: 1.3;
    word-break: break-word; /* Break long words to avoid overflow */
    text-align: center;
    margin: 0 auto;
    max-width: 90%; /* Prevents excessive width on screens */
}



/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.contact-info {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info a {
    color: #e44d26;
    font-weight: bold;
    text-decoration: none;
}


/* Contact Labels */
.contact-label {
    font-size: 1rem;
    color: #A0A0A0; /* Grey text */
    margin-bottom: 0.2rem;
}

/* Contact Info */
.contact-info {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1C2021; /* Black text */
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
        margin-top: 2rem;
    }
}

/* Articles Section */
.articles-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.articles-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #000;
}

.articles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.article-item {
    background-color: #f9f9f9;
    padding: 1.5rem;
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.article-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.article-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.read-more {
    font-weight: bold;
    text-decoration: none;
    color: #e44d26;
}

.read-more:hover {
    text-decoration: underline;
}

/* Resources Section */
.resources-section {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
}

.resources-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #000;
}

.resources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.resource-item {
    background-color: #fff;
    padding: 1rem;
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.download-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e44d26;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.download-link:hover {
    background-color: #cc3e1b;
}

/* Article Content Section */
.article-content {
    padding: 4rem 2rem;
    background-color: #fff;
}

.article-content .content-wrapper {
    max-width: 800px; /* Limits the width for better readability */
    margin: 0 auto; /* Centers the block horizontally */
    text-align: left; /* Aligns the text to the left */
    line-height: 1.8; /* Increases line spacing for readability */
    color: #333;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.article-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.article-content ul {
    margin-left: 2rem; /* Indents the list for clear distinction */
    margin-bottom: 1.5rem;
}

.article-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.article-content ul li strong {
    color: #000; /* Highlights key points */
}

/* Expert-led Consulting Section */
.expert-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5vw;
    width: 100%;
}

.expert-container {
    background-color: #000;
    border-radius: 15px;
    padding: 3rem;
    max-width: 1440px;
    width: 100%;
    color: white;
}

.expert-subtitle {
    font-size: 1rem;
    color: #A0A0A0;
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.expert-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.expert-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 250px;
}

.highlight-point {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-point::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 1rem;
    background-color: #e44d26;
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.request-quote-btn {
    background-color: #e44d26;
    color: white;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-block; /* Important: avoids full-width stretch */
    margin-top: 1rem;       /* Adds space from text above */
	margin-bottom: 1.5rem; /* ⬅️ Adds space below the button */
    align-self: flex-start; /* Prevents stretching in flex containers */
}

.request-quote-btn:hover {
    background-color: #cc3e1b;
    transition: background-color 0.3s ease;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .expert-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .request-quote-btn {
        align-self: center;
    }
}

/* Service Suite Section */
.service-suite {
    padding: 4rem 2rem;
    background-color: #fff;
}

.service-suite h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Service Grid Container */
.service-container {
    display: grid;
    grid-template-columns: 1fr; /* Always one column */
    gap: 1.5rem;
    max-width: 800px; /* Optional: narrows layout for better readability */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Service Item */
.service {
    background-color: #f1f1f1;
    color: #1c2021;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #1c2021;
}

.service p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #1c2021;
}

/* Read More Button */
.read-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    color: #1c2021;
    border: 1px solid #1c2021;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    background-color: #1c2021;
    color: #ffffff;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}
/* Service Section Heading */
.service-heading {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.service-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c2021;
}
