/* ==========================================
   Prometech Solutions
   Main Stylesheet
========================================== */


/* ---------- Global Reset ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ---------- Header ---------- */

header {
    background: #071A33;
    color: white;
    padding: 18px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 180px;
    height: auto;
}



.contact {
    font-weight: bold;
    color: #00C8FF;
}
a {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Spaces the icon away from the text */
  text-decoration: none;
  color: #ffffff; /* White text */
  font-family: sans-serif;
  margin-right: 20px;
}

a:hover {
  color: #007bff; /* Turns blue when hovered */
}

/* ---------- Hero Section ---------- */

.hero {
    background:
    linear-gradient(
        rgba(7,26,51,.85),
        rgba(7,26,51,.85)
    ),
    url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;
    padding: 100px 0;
}


.hero h1 {
    font-size: 48px;
    max-width: 850px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 35px;
}


/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    background: #008CFF;
    color: white;
    padding: 14px 28px;
    border-radius: 5px;
    margin-right: 12px;
    font-weight: bold;
    transition: .3s;
}

.btn:hover {
    background: #006dcc;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: #071A33;
}


/* ---------- Solutions Section ---------- */

.solutions {
    padding: 70px 0;
}

h2 {
    text-align: center;
    font-size: 36px;
    color: #071A33;
    margin-bottom: 45px;
}


.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.card {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #008CFF;
    transition: transform .3s ease;
}


.card:hover {
    transform: translateY(-5px);
}


.card h3 {
    color: #071A33;
    margin-bottom: 15px;
    font-size: 22px;
}


/* ---------- Why Section ---------- */

.why {
    background: #071A33;
    color: white;
    padding: 70px 0;
}


.why h2 {
    color: white;
}


.why ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
}


.why li {
    padding: 12px;
    font-size: 18px;
}


.why li:before {
    content: "✓";
    color: #00C8FF;
    font-weight: bold;
    margin-right: 12px;
}


/* ---------- Call To Action ---------- */

.cta {
    background: #00C8FF;
    color: #071A33;
    padding: 60px 0;
    text-align: center;
}


.cta h2 {
    color: #071A33;
}


.cta .btn {
    background: #071A33;
    margin-top: 20px;
}


/* ---------- Footer ---------- */

footer {
    background: #050F20;
    color: white;
    padding: 35px 0;
}


footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}


footer p {
    font-size: 14px;
}


/* ---------- Mobile Responsive ---------- */

@media(max-width: 900px) {

    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }


    .cards {
        grid-template-columns: 1fr;
    }


    footer .container {
        flex-direction: column;
        text-align: center;
    }

}

/* ==========================================
   Forms
========================================== */


.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}


.contact-form label {
    display: block;
    font-weight: bold;
    color: #071A33;
    margin-bottom: 8px;
    margin-top: 18px;
}


.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;
    padding: 14px;

    border: 1px solid #d5dbe5;
    border-radius: 5px;

    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;

    background: #ffffff;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    outline: none;
    border-color: #008CFF;
    box-shadow: 0 0 5px rgba(0,140,255,.25);

}


.contact-form textarea {
    resize: vertical;
}


.contact-form button {
    margin-top: 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}



/* ==========================================
   Lists Inside Service Cards
========================================== */


.card ul {

    margin-top: 15px;
    padding-left: 20px;

}


.card li {

    margin-bottom: 8px;

}



/* ==========================================
   Links
========================================== */


.card a,
.solutions a {

    color: #008CFF;

}


.card a:hover {

    color: #006dcc;

}



/* ==========================================
   Better Mobile Form Layout
========================================== */


@media(max-width:900px) {

    .contact-form {

        padding: 25px;

    }

}

/* ==========================================
   Mobile Navigation
========================================== */


.menu-toggle {

    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 30px;

    cursor: pointer;

}



@media(max-width:900px) {


header .container {

    position: relative;

}



.menu-toggle {

    display: block;

}



nav {

    display: none;

    flex-direction: column;

    width: 100%;

    text-align: center;

    background: #071A33;

    padding: 20px 0;

}



nav.active {

    display: flex;

}



nav a {

    padding: 12px;

}


.contact {

    display: none;

}


}