@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    display: flex;
    flex-direction: column;
    background-color: #0F172A;
    min-height: 100vh;
    overflow-x: hidden
}

.inner-content-divider {
    width: 50%;
    height: 2px;
    background-color: #b6c0c6;
    margin-bottom: 20px;
}

/* NAV BAR */
.desktop-nav {
    width: 100%;
    background-color: #0F172A;
}

.desktop-nav-inner {
    width: 100%;
    height: 100px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.nav-logo {
    width: 100px;
    height: 90px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* HERO SECTION */
.hero-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #b6c0c6;
    border-bottom: 0.5px solid #b6c0c6;
}

.hero-image {
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 70%;
    left: 5%;
    display: inline;
    color: white;
    width: 400px;
    height: 100px;
    text-align: center;
    padding: 10px;
    background-color: transparent;
}
.hero-overlay h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: #0F172A 3px 3px 4px;
}

.overlay-company-name {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffd700;
    display: block;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 400;
    text-shadow: #0F172A 2px 2px 3px;
}

/* ABOUT US SECTION */
.container {
    min-height: 80vh;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 4rem 2rem;
    gap: 1.5rem;
}

.about-us-content {
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.about-us-image {
    height: 500px;
    width: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.container h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: #566d7c 3px 3px 4px;
}

.container p {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: #566d7c 1px 1px 3px;
}

/* SERVICES SECTION */
.services-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.service-card {
    height: 300px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #3e5869;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #e3e9ec;
    gap: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.services-icon {
    height: 128px;
    width: 128px;
}

.service-card p {
    color: #0F172A;
    font-size: 20px;
    font-weight: 500;
    text-shadow: none;
    margin-bottom: 0;
}

.question-card {
    height: 200px;
    width: 55%;
    border: 2px solid #3e5869;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #e3e9ec;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.question-icon {
    height: 128px;
    width: 128px;
}

.question-card h3 {
    color: #3e5869;
    font-size: 28px;
    font-weight: 700;
    text-shadow: none;
    margin-bottom: 10px;
}

.question-card p {
    color: #0F172A;
    font-size: 20px;
    font-weight: 500;
    margin-left: 20px;
    text-shadow: none;
    margin-bottom: 0;
}

/* CONTACT SECTION */
.contact-cont {
    min-height: 400px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 4rem 2rem;
    gap: 1.5rem;
}

.contact-cont h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: #566d7c 3px 3px 4px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.contact-button {
    height: 100px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#email-button {
    background-color: #ffd700;
    border: 2px solid #363636;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    color: #0F172A;
}

#email-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

#call-button {
    background-color: dodgerblue;
    border: 2px solid #363636;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    color: white;
}

#call-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

/* FOOTER */
.site-footer {
    background-color: #1a2744;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
    border-top: 2px solid #3e5869;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #3e5869;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.footer-brand p {
    font-size: 16px;
    color: #b6c0c6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #b6c0c6;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-contact p {
    font-size: 16px;
    color: #b6c0c6;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #b6c0c6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7a8a;
}
/* ABOUT-US.HTML */
.page-info {
    width: 65%;
    font-size: 22px;
    line-height: 1.6;
}
/*FORM PAGE*/
form{
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 2px solid #3e5869;
    border-radius: 10px;
    padding: 1rem;

}
form label{
    font-size: 20px;
}
.form-input{
    width: 100%;
    padding: 1rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}
input{
    height: 40px;
    border-radius: 10px;
    padding: 1rem;
}
textarea{
    height: 100px;
    border-radius: 10px;
    padding: 1rem;
}
.submit-button{
    height: 40px;
    background-color: transparent;
    border: 2px solid #3e5869;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.submit-button:hover:hover{
    transform: translateY(-1px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: #b6c0c6;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .about-us-content {
        width: 85%;
        flex-direction: column;
    }

    .about-us-image {
        width: 100%;
        height: 350px;
    }

    .question-card {
        width: 85%;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav-inner {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .nav-links ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image {
        height: 600px;
    }

    .hero-overlay {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

    .container h2,
    .contact-cont h2 {
        font-size: 36px;
    }

    .container p {
        font-size: 20px;
    }

    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        max-width: 300px;
    }

    .question-card {
        width: 90%;
        flex-direction: column;
        height: auto;
        padding: 2rem;
        text-align: center;
    }

    .question-card p {
        margin-left: 0;
        margin-top: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-button {
        width: 250px;
        height: 80px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .overlay-company-name {
        font-size: 24px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .container h2,
    .contact-cont h2 {
        font-size: 28px;
    }

    .inner-content-divider {
        width: 80%;
    }
}

