label[for="captcha"] {
    color: #0f172a;
}



.contact-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.contact-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.captcha-label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 600;
}

.about-gilliam-security {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    background: linear-gradient(
        135deg,
        #071a2d 0%,
        #0a2540 50%,
        #12345a 100%
    );
    color: #ffffff;
}

.about-hero-section {
    text-align: left;
    margin-bottom: 40px;
}

.about-hero-section h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-hero-tagline {
    font-size: 22px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-mission-pillars,
.about-story-section,
.about-tola-section,
.about-impact-section,
.about-vision-section {
    margin-bottom: 30px;
}

.about-pillar-grid,
.about-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.about-pillar,
.about-impact-card {
    background: #07111f;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-tola-map {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    font-weight: 600;
}

.about-quote-section {
    background: #0f172a;
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 60px;
}

.about-quote-section blockquote {
    font-size: 24px;
    font-style: italic;
    margin: 0;
}

.about-vision-section {
    text-align: center;
    background: #07111f;
    padding: 40px;
    border-radius: 12px;
}

h2 {
    margin-bottom: 20px;
}

/* =========================
   Case Studies
   ========================= */

.case-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-card2 {
    background: #0b2341;
    border: 1px solid #1e90ff;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease;
}

.case-card2:hover {
    transform: translateY(-5px);
}

.case-card2 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.case-content2 {
    padding: 1.5rem;
}

.case-content2 h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.case-content2 p {
    color: #cfd8e3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-btn2 {
    display: inline-block;
    color: #29a3ff;
    text-decoration: none;
    font-weight: 600;
}

.card-btn2:hover {
    color: #ffffff;
}

.card ul {
    padding-left: 25px;
    margin: 5px 0 10px;
}

.card li {
    margin-bottom: 3px;
    line-height: 1.3;
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   Global Styles
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #07111f;
    color: #eaf2ff;
    line-height: 1.6;
}


/* =========================
   Header & Navigation
   ========================= */

header {
    position: sticky;
    top: 0;
    background: rgba(4, 12, 24, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #17345d;
}

.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
}

.menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.links {
    display: flex;
    gap: 8px;
}

.links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transition: .6s;
    pointer-events: none;
}

.links a.active {
    color: #ffffff;
    background: rgba(10,132,255,.18);
    border: 1px solid #0A84FF;
    box-shadow:
        0 0 10px rgba(10,132,255,.40);
}

.links a:hover::before {
    left: 100%;
}

.links a {
    position: relative;
    text-decoration: none;
    color: #d0d7e2;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all .3s ease;
    overflow: hidden;
}

.links a:hover {
    color: #ffffff;
    background: rgba(10, 132, 255, 0.12);
    border: 1px solid rgba(10,132,255,.65);
    box-shadow:
        0 0 8px rgba(10,132,255,.45),
        0 0 18px rgba(10,132,255,.25);
    text-shadow:
        0 0 10px rgba(255,255,255,.7);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;

    font-weight: 700;
    font-size: 1.4rem;
}

.logo img {
    height: 62px;
}

.top-nav a {
    position: relative;
    padding: 12px 24px;
    border-radius: 8px;
    color: #d5dee8;
    text-decoration: none;
    overflow: hidden;
    transition: all .3s ease;
}


/* =========================
   Hero Section
   ========================= */

.hero {

    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 0 5%;

    overflow: hidden;

    background-color: #020b18;
}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,11,24,1) 0%,
            rgba(2,11,24,.95) 35%,
            rgba(2,11,24,.75) 55%,
            rgba(2,11,24,.25) 100%
        ),
        url("images/datacenter.jpg");

    background-size: cover;
    background-position: center center;

    filter: blur(4px);

    transform: scale(1.08);

    z-index: 1;
}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;
}


h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}


/* =========================
   Buttons
   ========================= */

.btn {
    display: inline-block;

    background: #0a84ff;
    color: #fff;

    padding: 14px 24px;
    border-radius: 8px;

    text-decoration: none;
}


/* =========================
   Sections
   ========================= */

.section {
    padding: 80px 5%;
}

.banner {
    padding: 60px 5%;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}


/* =========================
   Cards / Grid
   ========================= */

.grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(240px, 1fr)
    );
    gap: 24px;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #0A84FF;
    box-shadow:
        0 20px 40px rgba(0,0,0,.4),
        0 0 20px rgba(10,132,255,.2);
}

.card-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0A84FF;
}

.card-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #0A84FF;
    color: #0A84FF;
    background: transparent;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease;
}

.card-btn:hover {
    background: rgba(10,132,255,.12);
    color: #ffffff;
    box-shadow:
        0 0 10px rgba(10,132,255,.4);
    text-decoration: none;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card-features li {
    color: #d4dfeb;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.card-features li::before {
    content: "✓";
    color: #0A84FF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card p {
    color: #b7c4d4;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 28px;
    background: rgba(10,132,255,.12);
    color: #3bb9ff;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:

    linear-gradient(
        90deg,
        #0A84FF,
        #37B6FF
    );
}

.card {
    background: #0d1f36;
    border: 1px solid rgba(10,132,255,.20);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.card3 {
    background: #0d1f36;
    border: 1px solid rgba(10,132,255,.20);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.card2 {
    background: #0d1f36;
    border: 1px solid rgba(10,132,255,.20);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.logo-container {
    height: 180px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-container img {
    max-width: 100%;

    width: auto;
    height: auto;
}

.logo-container2 {
    height: 180px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-container2 img {
    max-width: 100%;

    width: auto;
    height: auto;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.resource-card {
    background: #0d2744;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 30px;
}

.resource-card h3 {
    margin-bottom: 12px;
}

.resource-card p {
    color: #c5d3e3;
    line-height: 1.6;
}

/* =========================
   Footer
   ========================= */

.footer {
    background: #06101c;
    padding: 40px;
    text-align: center;
}

/* =======================================
   CONTACT PAGE
======================================= */

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */

.contact-hero {
    background: linear-gradient(
        135deg,
        #071a2d,
        #0b2545
    );
    padding: 90px 0;
    text-align: center;
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-subtitle {
    color: #dbeafe;
    font-size: 20px;
    max-width: 750px;
    margin: auto;
}

/* MAIN */

.contact-content {
    background: #f8fafc;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}


.contact-info h2 {
    color: #07111f !important;
}

.contact-info p {
    color: #07111f !important;
}

.contact-card h3 {
    color: #07111f !important;
}

.contact-card p {
    color: #07111f !important;
}

.contact-info h2,
.contact-form-card h2 {
    color: #07111f;
    margin-bottom: 20px;
}

.contact-card {
    color: #eaf2ff;
    background: white;
    border-left: 4px solid #d4af37;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

/* FORM */

.contact-form-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
}

.contact-button {
    width: 100%;
    background: #0b2545;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.contact-button:hover {
    background: #123c70;
}

/* CTA */

.contact-cta {
    background: #0b2545;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #0b2545;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* MOBILE */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 42px;
    }
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {

    .menu {
        display: block;
    }

    .links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #07111f;
        z-index: 9999;
    }

    .links.show {
        display: flex;
    }

    .links a {
        color: white;
        display: block;
        width: 100%;
        padding: 18px 24px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
}

h1,
h2 {
    font-size: 2rem;
    font-weight: 700;
}