/* #78b9b5 (light teal)
#0f828c (dark teal)
#065084 (navy blue)
#320a6b (indigo) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f9f9;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #065084;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar img {
    height: 60px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar a {
    text-decoration: none;
    color: #78b9b5;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.navbar a:hover {
    color: #0f828c;
    border-bottom: 2px solid #320a6b;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
}

.hero-image {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_image.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    z-index: 0;
    transform: scale(1.1);
}

.hero-text {
    position: relative;
    z-index: 1;
    /* background-color: rgba(0, 0, 0, 0.4); */
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #78b9b5;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0f7f7;
}

.hero-text button {
    background-color: #0f828c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.hero-text button:hover {
    background-color: #320a6b;
    transform: scale(1.05);
}

.what-we-do {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f4f9f9;
    color: #065084;
}

.what-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f828c;
}

.what-we-do p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;
}

.what-we-do img {
    width: 360px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .what-we-do {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .what-we-do img {
        margin-top: 2rem;
    }
}

.featured-projects {
    padding: 4rem 5vw;
    background-color: #ffffff;
    color: #065084;
    text-align: center;
}

.featured-projects .row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.featured-projects .column {
    background-color: #f4f9f9;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 45%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-projects img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.featured-projects h3 {
    font-size: 1.5rem;
    color: #0f828c;
    margin: 1rem 0 0.5rem;
}

.featured-projects p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-projects button {
    background-color: #0f828c;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.featured-projects button:hover {
    background-color: #320a6b;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .featured-projects .column {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

footer {
    background-color: #065084;
    color: #e0f7f7;
    padding: 3rem 5vw;
    font-size: 0.95rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 300px;
}

.footer-column p {
    margin: 0.5rem 0;
}

footer a {
    color: #78b9b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0f828c;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-column {
        max-width: 100%;
    }
}

.about-page-header {
    background-color: #e0f7f7;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #065084;
}

.about-page-header h1 {
    font-size: 2.5rem;
    color: #065084;
    margin-bottom: 0.5rem;
}

.our-experience {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f4f9f9;
    color: #065084;
}

.our-experience h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f828c;
}

.our-experience p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;
}

.our-experience img {
    width: 360px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.our-services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f4f9f9;
    color: #065084;
}

.our-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f828c;
}

.our-services ol {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;
    padding-left: 1.25rem;
}

.our-services li {
    margin-bottom: 0.5rem;
}

.our-services img {
    width: 360px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-page-header {
    background-color: #e0f7f7;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #065084;
}

.contact-page-header h1 {
    font-size: 2.5rem;
    color: #065084;
    margin-bottom: 0.5rem;
}

.contact-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title {
    font-weight: 600;
    color: #0f828c;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: #0f828c;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #065084;
    border-radius: 50px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid #320a6b;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #065084, #0f828c);
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 500px;
}

@media (max-width: 800px) {
    .contact-inputs {
        width: 80vw;
    }

    .contact-right {
        display: none;
    }
}

.contact-paragraph {
    background-color: #f4f9f9;
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #065084
}

.contact-paragraph h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f828c;
}

.contact-paragraph p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-paragraph a {
    color: #065084;
    text-decoration: none;
    font-weight: 500;
}

.contact-paragraph a:hover {
    text-decoration: underline;
}

.pricing-page-header {
    background-color: #e0f7f7;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #065084;
}

.pricing-page-header h1 {
    font-size: 2.5rem;
    color: #065084;
    margin-bottom: 0.5rem;
}

.projects-page-header {
    background-color: #e0f7f7;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #065084;
}

.projects-page-header h1 {
    font-size: 2.5rem;
    color: #065084;
    margin-bottom: 0.5rem;
}

.project {
    display: flex;
    align-items: left;
    gap: 1.5rem;
    background-color: #f4f9f9;
    padding: 1.5rem;
    margin: 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
}

.project img {
    width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.project-text {
    flex: 1;
}

.project-text h3 {
    margin: 0 0 0.5rem;
    color: #0f828c;
}

.project-text a {
    text-decoration: none;
    color: #0f828c;
}

.project-text a:hover {
    text-decoration: underline;
}

.project-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .project {
        flex-direction: column;
        text-align: center;
    }

    .project img {
        width: 100%;
    }
}

.extruder-page-header {
    background-color: #e0f7f7;
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #065084;
}

.extruder-page-header h1 {
    font-size: 2.5rem;
    color: #065084;
    margin-bottom: 0.5rem;
}

#carouselExampleControls {
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#carouselExampleControls .carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-description {
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    text-align: center;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 1rem 1.5rem;
    background-color: #f4f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-description p {
    margin: 0;
    color: #065084;
}