@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;
}

body {
    font-family: "IBM Plex Sans", sans-serif; /* Updated font to match the provided screenshot */
    background-color: #ffffff; /* White background */
    color: #1C2021;
}

/* Header and Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays above other elements */
}

/* Fix content being hidden behind header */
body {
    padding-top: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img {
    height: 40px;
    cursor: pointer;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 3rem; /* Adds space between logo and menu */
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #1C2021; /* Fix invalid color */
    font-weight: normal;
    transition: color 0.3s ease;
}

/* Request a Quote Button */
.request-quote {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #ffffff !important; /* Force white text */
    background-color: #005ce2 !important; /* Ensure blue background */
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-left: auto; /* Pushes 'Request a Quote' to the right */
    border: 2px solid transparent; /* Ensures styling applies */
}

.request-quote:hover {
    background-color: #0052cc;
}

/* Fix for Button Not Applying Styles */
a.request-quote {
    display: inline-block !important;
}

/* Ensure Hover Effect Works */
.nav-menu a:hover {
    color: #005ce2;
}

/* Hamburger Menu (Hidden by Default) */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002; /* Ensure it stays above everything */
}

/* Hamburger Menu Bars */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1C2021; /* Fixed color */
    border-radius: 5px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Ensures it appears below the header */
        right: 0;
        width: 100%; /* Ensures it takes up full width */
        background-color: #ffffff; /* White */
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Ensure Hamburger is visible on mobile */
    .hamburger {
        display: flex;
    }
}

/* Ensure Hamburger is HIDDEN on Desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}




/* Section Styles */
main h2 {
    font-size: 2.5rem; /* Increased size for better proportions */
    margin-bottom: 0.5rem;
    color: #1C2021;
    text-align: left;
    font-weight: bold;
    padding-left: 1rem;
}

main p.section-description {
    font-size: 1rem;
    color: #1C2021; 
    text-align: left;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.products, .services {
    padding: 2rem 1rem;
}

.products h2, .services h2 {
    margin-bottom: 0.5rem;
}

.products p.section-description, .services p.section-description {
    margin-bottom: 2rem;
}

/* Product and Service Containers */
.product-container, .service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Always 2 products per row */
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Adjust for Mobile Screens */
@media (max-width: 768px) {
    .product-container, .service-container {
        grid-template-columns: 1fr; /* 1 product per row on mobile */
    }
}

.product, .service {
    background-color: #F1F1F1; /* light grey background */
    color: #1C2021;  /* Black text */
    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;
}

.product:hover, .service:hover {
    transform: translateY(-5px);
}

.product h3, .service h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1C2021; /* Black text */
    font-weight: bold;
}

.product p, .service p {
    font-size: 1rem;
    color: #1C2021; /* Black text */
    margin-bottom: 1.5rem;
}

.learn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #1C2021; /* Black text */
    background-color: #ffffff; /* White background */
    border: 1px solid #1C2021; /* Black border */
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    align-self: start;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more:hover {
    background-color: #1C2021; /* Black background on hover */
    color: #ffffff; /* White text on hover */
}
/* Center the H2 inside the Products Section */
.products h2 {
    text-align: center;
}
/* Product Features List */
.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #1C2021; /* Black text */
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
}

/* Bullet Point Checkmark */
.product-features li::before {
    content: "✔"; /* White checkmark */
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    background-color: black; /* Black circle */
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

/* Hero Section */
.hero {
    background-image: url("wecommit.jpg");
    background-size: 100% auto; /* Ensures full width, auto height */
    background-position: center top; /* Keeps it aligned properly */
    background-repeat: no-repeat;
    width: 100vw; /* Full width */
    height: 580px; /* Set exact height as per your image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Adjust for very large screens (prevent stretching) */
@media (min-width: 1600px) {
    .hero {
        background-size: contain; /* Avoids stretching */
        background-position: center top;
    }
}

/* Adjust for tablets */
@media (max-width: 1024px) {
    .hero {
        background-size: cover; /* Ensures the image still fills */
        height: auto; /* Allow flexibility */
        min-height: 580px;
    }
}

/* Adjust for mobile devices */
@media (max-width: 768px) {
    .hero {
        background-size: contain; /* Show entire image */
        background-position: center;
        height: auto;
        min-height: 400px; /* Ensure it looks good */
        padding: 2rem 1rem;
    }
}


/* Request a Quote Section */
#request-quote-section {
    text-align: center; /* Center the content in this section */
    margin-top: 2rem;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

/* About Heading */
.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1C2021; /* Dark grey text */
    margin-bottom: 1rem;
}

/* Section Description */
.about .section-description {
    font-size: 1.2rem;
    color: #005ce2; /* Blue accent */
    margin-bottom: 2rem;
    font-weight: 500;
}

/* About Container */
.about-container {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Paragraphs */
.about-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1C2021;
    margin-bottom: 1.5rem;
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 2rem 1rem; /* Add padding around the entire section */
    line-height: 1.8; /* Increase line spacing for better readability */
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content on the page */
}

.privacy-policy h2, 
.privacy-policy h3 {
    margin-bottom: 1rem; /* Add space below headings */
    color: #1C2021; /* Ensure consistent color for headings */
}

.privacy-policy p, 
.privacy-policy ul {
    margin-bottom: 1.5rem; /* Add space below paragraphs and lists */
    padding-left: 1.5rem; /* Add indentation to move text away from the left side */
}

.privacy-policy ul li {
    margin-bottom: 0.5rem; /* Add space between list items */
}

/* Terms and Conditions Section */
.terms-conditions {
    padding: 2rem 1rem; /* Add padding around the section */
    line-height: 1.8; /* Ensure readability with proper line spacing */
    max-width: 800px; /* Limit the width of the content for better focus */
    margin: 0 auto; /* Center the content on the page */
}

.terms-conditions h2, 
.terms-conditions h3 {
    margin-bottom: 1rem; /* Add space below headings */
    color: #1C2021; /* color for headings */
}

.terms-conditions p, 
.terms-conditions ul {
    margin-bottom: 1.5rem; /* Add spacing between paragraphs and lists */
    padding-left: 1.5rem; /* Move text slightly away from the left */
}

.terms-conditions ul li {
    margin-bottom: 0.5rem; /* Add space between list items */
}




/* Individual Product Page (product-a.html & product-b.html) */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0; /* Remove centering margin */
    max-width: 100%; /* Allow full width alignment */
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-left: 1rem; /* Align containers to the left */
    margin-right: 1rem; /* Add spacing on the right */
}

.product-details:hover {
    transform: translateY(-5px);
}

.product-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.product-details p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Ensure "Download Technical Specifications" button remains small everywhere */
.download-spec {
    display: inline-block;
    padding: 10px 16px;
    font-size: 16px;
    background-color: #005ce2;
    color: #ffffff;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    width: auto; /* Prevents stretching */
	max-width: 300px; /* Optional: Prevents unwanted stretching */
}

/* Hover effect */
.download-spec:hover {
    background-color: #003d82;
}

/* Ensure button is visible inside product listing (products.html) */
#products .download-spec {
    display: inline-block;
    margin-top: 10px;
}

/* Keep button styling consistent in product-a.html and product-b.html */
.product-details .download-spec {
    display: inline-block;
    margin-top: 10px;
}

/* Responsive Design - Prevent stretching */
@media (max-width: 768px) {
    .download-spec {
        width: auto; /* Keeps button small on mobile */
        max-width: 250px; /* Optional: Prevents unwanted stretching */
    }
}


/* Contact Section Styling */
.contact-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ffffff;
    color: #1C2021;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
    text-align: center;
}

/* Section Title */
.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1C2021;
    margin-bottom: 1rem;
}

/* Highlighted Contact Message */
.contact-highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1C2021;
    margin-bottom: 1rem;
}

/* Large Email Button */
.email-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #005ce2;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.email-button:hover {
    background-color: #0048b3;
}

/* Additional Paragraph */
.contact-section p {
    font-size: 1rem;
    margin-top: 1rem;
    color: #1C2021;
}

/* Email Link in Footer */
.email-link {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1C2021;
    text-decoration: none;
}

.email-link:hover {
    color: #005ce2;
}


/* Back to Products Button */
.back-to-products {
    text-align: center;
    margin-top: 20px;
}

.back-to-products .back-link {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    color: #005ce2;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #005ce2;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.back-to-products .back-link:hover {
    background: #005ce2;
    color: #ffffff;
}

/* Intro Services */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: black;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: black;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Full-Screen Image Section */
.full-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5vw; /* Adds space on the sides */
    width: 100%;
}

/* Full-Screen Image (Smaller & Responsive) */
.full-screen-image {
    width: 100%; /* Makes it much smaller than full width */
    max-width: 900px; /* Prevents it from becoming too large */
    height: auto;
    border: 1px solid black; /* Black border */
    border-radius: 15px; /* Slightly rounded corners */
    object-fit: cover; /* Ensures correct aspect ratio */
}

/* Responsive: Adjust image for smaller screens */
@media (max-width: 1024px) {
    .full-screen-image {
        width: 70%; /* Slightly larger for tablets */
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .full-screen-image {
        width: 80%; /* Make it bigger on small screens */
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .full-screen-image {
        width: 90%; /* Almost full width on very small screens */
        max-width: 400px;
    }
}


/* Solution Containers - Side by Side */
.solution-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Increased space between the two containers */
    padding: 2rem 5vw;
    background: white;
}

/* Each Solution Box */
.solution-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem 5vw;
    border-radius: 10px;
    width: 45%; /* Each container takes about half the space */
}

/* Remove Shadow */
.solution-box {
    box-shadow: none;
}

/* Align Left and Right */
.solution-box.left {
    justify-content: flex-start;
}

.solution-box.right {
    justify-content: flex-start; /* Keep text left-aligned */
    text-align: left;
}

/* Blue Bubble Image - Clickable */
.solution-bubble {
    width: 50px; /* Made slightly larger */
    height: 50px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    margin-right: 2rem; /* Increased space between bubble and text */
}

.solution-bubble:hover {
    transform: scale(1.1);
}

/* Text Formatting */
.solution-text {
    text-align: left; /* Ensure text is aligned to the left */
    flex: 1; /* Allows text to take up remaining space */
}

.solution-text h3 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 0.5rem;
}

.solution-text p {
    font-size: 1rem;
    color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solution-container {
        flex-direction: column;
        align-items: center;
    }

    .solution-box {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
    }

    .solution-box.right {
        justify-content: flex-start;
        text-align: left;
    }

    .solution-bubble {
        margin-bottom: 1rem;
    }
}

/* Veteran-owned Company Section */
.veteran-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5vw; /* Same padding as 3dobject.jpeg */
    width: 100%;
}

/* Black Container */
.veteran-container {
    background-color: #000000; /* Black background */
    border-radius: 15px; /* Rounded corners */
    padding: 3rem; /* Padding for spacing */
    max-width: 1440px;
    width: 100%;
    color: white;
}

/* Smaller Grey Text */
.veteran-subtitle {
    font-size: 1rem;
    color: #A0A0A0; /* Grey text */
    margin-bottom: 0.5rem;
}

/* Large White Title */
.veteran-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

/* Bottom Section: Bullet Points & Button */
.veteran-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

/* Bullet Points */
.veteran-bullets {
    display: flex;
    gap: 2rem; /* Space between bullet points */
}

.bullet-point {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: white;
}

/* Checkmark inside the Bullet */
.checkmark {
    font-size: 0.7rem;
    font-weight: bold;
    color: black;
    background-color: #005ce2; /* Blue background */
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Get Started Button */
.request-quote-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #ffffff; /* White text */
    background-color: #005ce2; /* Blue background */
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.request-quote-btn:hover {
    background-color: #003d82; /* Darker blue */
}

/* Responsive Design */
@media (max-width: 768px) {
    .veteran-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .veteran-bullets {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Intro Section */
.intro-section {
    background-color: #F1F1F1; /* Light grey background */
    background-image: url("layer.svg"); /* Layer background */
    background-size: contain; /* Ensures it fits without overpowering */
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Wrapper */
.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

/* Text on the Left */
.intro-text {
    flex: 1;
    text-align: left;
}

.intro-text h1 {
    font-size: 2.5rem;
    color: #1C2021; /* Black text */
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #A0A0A0; /* Grey text */
}

/* SVG Image on the Right */
.intro-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.intro-image img {
    width: 100%;
    max-width: 400px; /* Adjust based on design */
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .intro-image {
        justify-content: center;
    }
}
/* Intro Services Section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1C2021; /* Black text */
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background-color: white; /* White background */
    padding: 2rem 5vw;
    border-top: 1px solid #e0e0e0; /* Light grey border on top */
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Links & Copyright */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #1C2021; /* Black text */
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #005ce2; /* Blue on hover */
}

.footer-copyright {
    font-size: 0.9rem;
    color: #A0A0A0; /* Grey text */
    margin-top: 1rem;
}

/* Right Side - Logo & Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-logo {
    width: 120px; /* Adjust logo size */
    height: auto;
    margin-bottom: 1rem;
}

/* 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;
    }
}
