/* --- PROBITY STONE: MASTER THEME --- */

:root {
    --dark-bg: #1a1d21;
    --card-grey: rgba(44, 49, 54, 0.6);
    --electric-blue: #00b4ff;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* --- MASTER BACKGROUND --- */
body {
    background-image: url('image-1.jpg');
    background-size: cover;
    background-position: center 25%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* --- HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background: rgba(26, 29, 33, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px; /* Forces a consistent header height */
}

.logo {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.logo span { color: var(--electric-blue); }

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover { color: var(--electric-blue); }

/* --- LOGO IMAGE FIX --- */
.logo-link {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 45px; /* Locked height */
    width: auto;
    max-height: 45px;
    display: block;
    object-fit: contain;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    width: 100%;
    padding: 120px 10% 60px; /* Lower padding so content isn't pushed too far */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

/* The signature Blue Ribbon from your card */
        .hero::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 600px;
            height: 30px;
            background: var(--electric-blue);
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
        }

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 800px;
    color: var(--electric-blue);
}

.hero p {
    color: var(--text-light);
    max-width: 550px;
    margin-bottom: 30px;
}

/* --- BUTTONS --- */
 .btn-chevron {
            background: var(--electric-blue);
            color: white;
            padding: 15px 0px;
            width: 220px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
            transition: transform 0.3s;
            display: inline-block;
        }

.btn-chevron:hover {
    transform: translateX(10px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 5%;
        height: auto;
        flex-direction: column;
        gap: 10px;
    }

    nav { gap: 15px; }
    
    .hero {
        padding-top: 180px;
        align-items: center;
        text-align: center;
    }

    .hero h1 { font-size: 2.2rem; }
}
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Adjust this number to increase/decrease the space */
}
/* --- Updated Glassmorphism Card Style --- */
.card {
    /* 1. Base Opaque Background (a slightly lightened card-grey) */
    background: rgba(44, 49, 54, 0.6); /* Use RGBA for transparency */
    
    /* 2. Frosted Blur Effect - This blurs what is behind the card */
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); /* Crucial for Safari compatibility */

    /* 3. The "Frosted" Surface (Subtle Light Diffusion) */
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,   /* Very subtle white highlight top-left */
        rgba(44, 49, 54, 0.6) 100%       /* Blends back to card-grey bottom-right */
    );

    /* --- Existing Sizing and Transitions --- */
    padding: 1rem 3rem; 
    border-left: 6px solid var(--electric-blue);
    
    /* Subtle border catches light and defines the edge */
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    
    transition: 0.3s;
    
    /* Deeper shadow adds depth to the floating glass look */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.card:hover {
    /* Slightly lighten the glass and enhance shadow on hover */
    background: rgba(54, 60, 66, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
/* --- FOOTNOTE & PF REMOTE SOLUTIONS BUTTON --- */
.footnote-container {
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footnote-container p {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pf {
    background: rgba(75, 70, 70, 0.651);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--electric-blue);
    color: var(--text-light);
    padding: 8px 20px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
}

.btn-pf span {
    color: var(--electric-blue);
}

.btn-pf:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}