/* =====================================================
   ShorePointIT Shared Site Styles
   ===================================================== */

:root {
    --navy: #0f1f3d;
    --electric-blue: #2563eb;
    --text-main: #ffffff;
    --text-muted: #d1d5db;
    --border-light: #334155;
    --bg-light: #0f1f3d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header,
main,
footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.1rem;
}

/* =====================================================
   Header
   ===================================================== */

header {
   
    margin-bottom: 0.1rem;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
}

.brand-it {
    color: var(--electric-blue);
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

/* =====================================================
   Accent Line
   ===================================================== */

.accent-bar {
    width: 100%;
    height: 2px;
    background-color: var(--electric-blue);
    border-radius: 999px;
    margin: 1.25rem 0;
}

/* =====================================================
   Hero
   ===================================================== */

.hero {
    position: relative;
    padding: 5rem 3rem;
    border-radius: 12px;

    background:
        linear-gradient(
            90deg,
            rgba(15,31,61,.92) 0%,
            rgba(15,31,61,.82) 40%,
            rgba(15,31,61,.55) 100%
        ),
        url("../images/hero-tablet.jpg");

    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    max-width: 720px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* =====================================================
   Buttons
   ===================================================== */

.btn-primary,
.btn-secondary,
.call-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background-color: var(--electric-blue);
    color: #ffffff;
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.call-btn {
    background-color: var(--electric-blue);
    color: #ffffff;
    white-space: nowrap;
}

/* =====================================================
   CTA Box
   ===================================================== */

.cta-box {
    background-color: #11254d;
    border: 2px solid var(--electric-blue);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.cta-box h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cta-box p {
    margin: 0.25rem 0 0;
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
}

/* =====================================================
   Sections
   ===================================================== */

section {
    margin: 2rem 0;
}

section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

section p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

section ul {
    padding-left: 1.5rem;
}

section li {
    margin-bottom: 0.5rem;
}

/* =====================================================
   Oval Cards
   ===================================================== */


.oval-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}



.oval-card {
    border: 3px solid var(--electric-blue);
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    background-color: #0f1f3d;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.oval-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(37,99,235,.4);
}

.oval-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

/* =====================================================
   Contact Form
   ===================================================== */

.contact-form {
    background-color: #11254d;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--electric-blue);
    margin-top: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    background-color: #0f1f3d;
    color: #ffffff;
}

.contact-form button {
    background-color: var(--electric-blue);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
}

/* =====================================================
   Footer
   ===================================================== */

footer {
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* =====================================================
   Mobile
   ===================================================== */

@media (max-width: 768px) {

    .header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-box {
        width: 100%;
        margin-left: 0;
    }
}@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}
.about-intro {
    max-width: 850px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.leader-card {
    border: 3px solid var(--electric-blue);
    border-radius: 50px;
    background-color: #11254d;
    padding: 2rem;
    text-align: center;
}

.leader-card h2 {
    margin-top: 1rem;
    margin-bottom: .25rem;
}

.leader-card h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.leader-card ul {
    text-align: left;
    margin-top: .75rem;
}

.leader-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--electric-blue);
    margin: 0 auto 1rem auto;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--text-muted);
    font-size: .95rem;
}

@media (max-width: 900px) {

    .leadership-grid {
        grid-template-columns: 1fr;
    }

}
.brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
}

.brand-it {
    color: var(--electric-blue);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--electric-blue);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #11254d;
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 1rem;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: .75rem 0;
    }

    header > div,
    .header-row {
        flex-wrap: wrap;
    }
    body::before {
    content: "";
    position: fixed;
    top: -250px;
    left: -250px;

    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(37,99,235,.15) 0%,
        transparent 70%
    );

    pointer-events: none;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    bottom: -250px;
    right: -250px;

    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(37,99,235,.12) 0%,
        transparent 70%
    );

    pointer-events: none;
    z-index: -1;
}
``
}
.bio-photo {
    width: 250px;
    min-width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 16px;
}

.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    width: 100%;
}

.team-card img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
}
.team-card {
    text-align: center;
}
.bio-box {
    border: 3px solid var(--electric-blue);
    border-radius: 25px;
    background-color: rgba(17, 37, 77, 0.6);
    padding: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}
/* =====================================================
   HubSpot Form Text Visibility Fix
   ===================================================== */

/* Force a dark font color and proper background inside HubSpot inputs */
.hs-form-frame input[type="text"],
.hs-form-frame input[type="email"],
.hs-form-frame input[type="tel"],
.hs-form-frame textarea,
.hs-form-frame select {
    color: #0f1f3d !important; /* Dark Navy text so it stands out */
    background-color: #ffffff !important; /* Force clean white background */
    border: 1px solid #cbd5e1 !important; /* Give it a clear border definition */
}

/* Fix for the placeholder text color */
.hs-form-frame input::placeholder,
.hs-form-frame textarea::placeholder {
    color: #64748b !important;
}

/* Ensure the Phone Country Dropdown text is visible */
.hs-form-frame .hs-input select, 
.hs-form-frame .hs-fieldtype-intl-phone select {
    color: #0f1f3d !important;
}
/* =====================================================
   HubSpot Container Box Wrapper
   ===================================================== */
.form-container-box {
    background-color: #f8fafc; /* Clean, modern light background */
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--electric-blue); /* Matches your site accents */
    margin-top: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Force all text labels inside this white box to be dark navy so they are readable */
.form-container-box label,
.form-container-box span,
.form-container-box h2,
.form-container-box p {
    color: #0f1f3d !important; 
}