@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.hero-section {
    background-image: url("../images/logo.jpg");
    background-color: black;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2%;
}


@media (max-width: 800px) {
    .hero-section {
        background-image: url("../images/logo.jpg");
        background-color: black;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 90vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 2%;
    }

}


@media (max-width: 600px) {
    .hero-section {
        background-image: url("../images/logo.jpg");
        background-color: black;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 55vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 2%;
    }

}

.subhero-section,
.about-section,
.solutions-section,
.industries-section,
.choose-section,
.process-section,
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    width: 100%;
    padding-top: 3%;
}

.subhero-headlines {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1920px) {
    .subhero-headlines {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 35%;
    }
}

@media (max-width: 800px) {
    .subhero-headlines {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
    }
}


@media (max-width: 600px) {
    .subhero-headlines {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 85%;
    }
}

.subhero-headlines h1,
.subhero-headlines h2,
.subhero-headlines h3 {
    color: white;
    text-align: center;
    margin: 10px 0;
    letter-spacing: 1px;
    font-weight: 600;
}

.subhero-headlines h1 {
    text-shadow: 0 -1px 1px #7f7f7f, 0 2px 10px rgba(127, 127, 127, .7);
}

@media (max-width: 1920px) {
    .subhero-headlines h1 {
        font-size: 50px;
    }
}


@media (max-width: 800px) {
    .subhero-headlines h1 {
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .subhero-headlines h1 {
        font-size: 40px;
    }
}

.subhero-buttons {
    margin: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subhero-buttons a {
    background-color: #E6BB5C;
    color: black;
    /* margin: 2%;
    text-align: center;
    border-radius: 15px;
    padding: 5%; */
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;

    padding: 15px 30px;
    border-radius: 12px;
    border: none;

    box-shadow:
        0 0 0.5px #E6BB5C,
        0 0 1.25px #E6BB5C,
        0 0 2.5px #E6BB5C,
        0 0 5px rgba(230, 187, 92, 0.8);

    transition: 0.3s ease;
    margin: 5% 0;
}

.subhero-buttons a:hover {
    box-shadow:
        0 0 1.25px #E6BB5C,
        0 0 2.5px #E6BB5C,
        0 0 5px #E6BB5C,
        0 0 10px rgba(230, 187, 92, 1);
}


.about-headline h2,
.solutions-headline h2,
.industries-headline h2,
.choose-headline h2,
.process-headline h2,
.contact-headline h2{
    color: #E6BB5C;
    font-size: 40px;
    text-shadow:
        0 -1px 1px rgba(255, 230, 170, 0.5),
        0 2px 6px rgba(230, 187, 92, 0.45);
    text-align: center;    
}

@media (max-width: 1920px) {

    .about-text,
    .industries-text {
        width: 40%;
    }
}

@media (max-width: 800px) {

    .about-text,
    .industries-text {
        width: 60%;
    }
}

@media (max-width: 600px) {

    .about-text,
    .industries-text {
        width: 90%;
    }
}

.about-text p,
.contact-text p {
    color: white;
    text-align: center;
    font-size: 22px;
    margin: 10px 0;
    letter-spacing: 1px;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 50%;
    margin-top: 1%;

}

@media (max-width: 1500px) {

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 80%;
    }
}

@media (max-width: 1000px) {

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 70%;
    }
}

@media (max-width: 800px) {

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 90%;
    }
}

.solution {
    background-color: black;
    border: 2px solid #E6BB5C;
    border-radius: 15px;
    padding: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
}

.solution h3 {
    color: #E6BB5C;
    text-align: center;
    font-size: x-large;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution p {
    color: white;
    text-align: center;
    margin-top: 2%;
    font-size: larger;
}

.industries-text p {
    color: white;
    text-align: center;
    font-size: 22px;
    margin: 10px 0;
    letter-spacing: 1px;
    font-weight: 600;
}


.industries-grid-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* max-width: 50%; */
    margin-top: 2%;
}

@media (max-width: 1500px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        /* max-width: 80%; */
    }
}

@media (max-width: 1000px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        /* max-width: 70%; */
    }
}

@media (max-width: 800px) {

    .industries-grid {
        grid-template-columns: 1fr;
        /* max-width: 90%; */
    }
}


.industry {
    width: 330px;
    height: 330px;
    background-color: black;
    border: 2px solid #E6BB5C;
    border-radius: 300px;
    /* padding: 50%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 220px; */
}


.industry h3 {
    color: white;
    text-align: center;
    font-size: 35px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.industry i {
    color: #E6BB5C;
    font-size: 40px;
    margin-top: 20px;
}

.choose-list {
    padding-top: 1%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.choose-list ul {
    color: white;
    /* text-align: center; */
    font-size: 32px;
    margin: 10px 0;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 800px) {

    .choose-list {
        padding-top: 1%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 95%;
        padding: 0 5%;
    }

    .choose-list ul {
        color: white;
        /* text-align: center; */
        font-size: 22px;
        margin: 10px 0;
        letter-spacing: 1px;
        font-weight: 600;
    }
}

.process-text,
.contact-text {
    width: 40%;
    padding-top: 1%;
}

.process-text p {
    color: white;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 1500px) {

    .process-text,
    .contact-text {
        width: 70%;
    }
}

@media (max-width: 1000px) {

    .process-text,
    .contact-text {
        width: 80%;
    }
}

@media (max-width: 800px) {

    .process-text,
    .contact-text {
        width: 90%;
    }
}

.contact-form {
    background-color: black;
    margin: 2% 0;
    padding: 2% 3%;
    border: 2px solid #E6BB5C;
    border-radius: 15px;
    width: 30%;
}


@media (max-width: 1500px) {

    .contact-form {
    background-color: black;
    margin: 2% 0;
    padding: 2% 3%;
    border: 2px solid #E6BB5C;
    border-radius: 15px;
    width: 30%;
}
}

@media (max-width: 1000px) {

   .contact-form {
    background-color: black;
    margin: 2% 0;
    padding: 2% 3%;
    border: 2px solid #E6BB5C;
    border-radius: 15px;
    width: 30%;
}
}

@media (max-width: 800px) {

  .contact-form {
    background-color: black;
    margin: 2% 0;
    padding: 2% 3%;
    border: 2px solid #E6BB5C;
    border-radius: 15px;
    width: 90%;
}
}

.input-box {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    margin: 7% 0;
    width: 100%;
}

.contact-form form label {
    color: #E6BB5C;
    font-size: 25px;
    padding-bottom: 10px;
}

.contact-form form input {
    font-size: 1.2rem;
    border: 1px solid #E6BB5C;
    border-radius: 7px;
    padding: 2%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: black;
    color: white;
}


.contact-form form select {
    background-color: black;
    border: 1px solid #E6BB5C;
    padding: 2%;
    border-radius: 7px;
    color: #E6BB5C;
    font-size: 1.2rem;
}

.contact-form form select option{
    background-color: black;
    border: 1px solid #E6BB5C;
    color: #E6BB5C;
    font-size: 1.2rem;
}


.contact-form form textarea {
    width: 100%;
    padding: 2%;
    font-size: 1.2rem;
    border: 1px solid #E6BB5C;
    border-radius: 7px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: black;
    color: white;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: #E6BB5C;
    box-shadow: 0 0 5px rgba(230, 187, 92, 0.5);
}


#submit-box {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#submit-box button {
    font-size: 1.2rem;
    width: 96%;
    background-color: #E6BB5C;
    color: black;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s ease;
    border: none;
    font-weight: bold;
}

#submit-box button:hover {
    transform: scale(1.1);
}

#submit-box button:disabled {
    background-color: #999999;
    color: #eeeeee;
    cursor: not-allowed;
    transform: none;
}

#responseMsg {
    font-size: 1.2rem;
    margin-top: 5%;

}

#responseMsg.success {
    color: green;
}

#responseMsg.error {
    color: red;
}