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

html {
    scroll-behavior: smooth;
}

/* REMOVE WORDPRESS WIDTH LIMITS */

.wp-site-blocks,
.site,
.site-content,
.entry-content,
main {

    max-width: 100% !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;
}

/* BODY */

body {

    background:
        url('../images/background.jpg') center center / cover no-repeat fixed;

    background-color: #05070d;

    color: white;

    font-family: Arial, sans-serif;

    overflow-x: hidden;
}

/* DARK OVERLAY */

.gf-background-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background:
        rgba(3,7,15,0.82);

    z-index: -3;
}

/* PARTICLES */

#particles-js {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: -2;
}

#particles-js canvas {

    position: fixed;

    top: 0;

    left: 0;

    z-index: -2;
}

/* CONTENT Z-INDEX */

.gf-header,
.gf-hero,
.gf-section,
.gf-footer {

    position: relative;

    z-index: 2;
}

/* HEADER */

.gf-header {

    position: fixed;

    top: 0;

    width: 100%;

    background:
        rgba(0,0,0,0.35);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(255,255,255,0.05);

    z-index: 999;
}

.gf-header-container {

    max-width: 1400px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 40px;
}

/* LOGO */

.gf-logo-img {

    width: 240px;

    height: auto;

    transition: 0.3s ease;
}

.gf-logo-img:hover {

    filter:
        drop-shadow(0 0 15px rgba(0,255,204,0.45));
}

/* MENU */

.gf-menu {

    display: flex;

    gap: 35px;

    list-style: none;
}

.gf-menu a {

    color: white;

    text-decoration: none;

    font-size: 16px;

    font-weight: 500;

    transition: 0.3s ease;
}

/* HOVER GLOW */

.gf-menu a:hover {

    color: #00ffcc;

    text-shadow:
        0 0 5px rgba(0,255,204,0.7),
        0 0 10px rgba(0,255,204,0.5);
}

/* HERO */

.gf-hero {

    min-height: 100vh;

    max-width: 1400px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

    padding:
        140px 40px 80px 40px;
}

.gf-hero-left {

    flex: 1;
}

.gf-hero-right {

    flex: 1;

    display: flex;

    justify-content: center;
}

/* HERO IMAGE */

.gf-hero-image {

    width: 100%;

    max-width: 650px;

    animation:
        floatHero 6s ease-in-out infinite;

    filter:
        drop-shadow(0 0 40px rgba(0,255,204,0.15));
}

@keyframes floatHero {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* HERO TEXT */

.gf-small {

    color: #00ffcc;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.gf-hero h1 {

    font-size: 82px;

    line-height: 1.05;

    margin-bottom: 30px;
	color: white;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7), 0 0 20px rgba(0, 255, 204, 0.5);
}

.gf-description {

    font-size: 20px;

    line-height: 1.7;

    color: #c5c5c5;

    margin-bottom: 40px;

    max-width: 650px;
}

/* BUTTONS */

.gf-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

.gf-btn,
.gf-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 55px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.gf-btn {

    background: #00ffcc;

    color: black;
}

.gf-btn-outline {

    border:
        1px solid #00ffcc;

    color: #00ffcc;
}

.gf-btn:hover,
.gf-btn-outline:hover {

    box-shadow:
        0 0 20px rgba(0,255,204,0.35);

    transform:
        translateY(-3px);
}

/* TERMINAL */

.gf-terminal {

    display: inline-block;

    background:
        rgba(0,0,0,0.55);

    border:
        1px solid rgba(0,255,204,0.18);

    border-radius: 12px;

    padding: 16px 22px;

    color: #00ffcc;

    font-family: monospace;

    backdrop-filter: blur(8px);

    box-shadow:
        0 0 20px rgba(0,255,204,0.08);
}

/* SECTIONS */

.gf-section {

    max-width: 1400px;

    margin: auto;

    padding:
        120px 40px;
}

.gf-section h2 {

    font-size: 52px;

    margin-bottom: 30px;
	 text-shadow:
    0 0 10px rgba(0, 255, 204, 0.7),
    0 0 20px rgba(0, 255, 204, 0.5);
}

.gf-section-intro {

    max-width: 850px;

    color: #c5c5c5;

    line-height: 1.8;

    font-size: 18px;
}

/* GRID */

.gf-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    margin-top: 50px;
}

/* CARDS */

.gf-card {

    position: relative;

    background:
        rgba(10,15,25,0.85);

    border:
        1px solid rgba(0,255,204,0.12);

    border-radius: 20px;

    padding: 40px 30px;

    min-height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-size: 20px;

    font-weight: 600;

    backdrop-filter: blur(8px);

    overflow: hidden;

    transition: 0.3s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

.gf-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00ffcc,
            transparent
        );

    transition: 0.5s ease;
}

.gf-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0,255,204,0.45);

    box-shadow:
        0 0 25px rgba(0,255,204,0.18);
}

.gf-card:hover::before {

    left: 100%;
}

/* ABOUT */

.gf-about-box {

    background:
        rgba(10,15,25,0.75);

    border:
        1px solid rgba(0,255,204,0.08);

    border-radius: 20px;

    padding: 40px;

    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

.gf-about-box p {

    margin-bottom: 25px;

    line-height: 1.8;

    color: #c5c5c5;

    font-size: 18px;
}

/* PGP */

.email-tooltip {

    margin-top: 40px;

    background:
        rgba(10,15,25,0.75);

    border:
        1px solid rgba(0,255,204,0.08);

    border-radius: 18px;

    padding: 30px;
}

.email-tooltip summary {

    cursor: pointer;

    color: #00ffcc;

    font-size: 18px;

    font-weight: bold;
}

.pgp-key {

    margin-top: 20px;

    background: #05070d;

    color: #00ffcc;

    padding: 20px;

    border-radius: 12px;

    overflow-x: auto;

    font-family: monospace;
}

/* FOOTER */

.gf-footer {

    padding: 80px 40px;

    text-align: center;

    background:
        rgba(0,0,0,0.5);

    backdrop-filter: blur(10px);
}

.gf-footer-links {

    margin: 30px 0;
}

.gf-footer-links a {

    margin: 0 15px;

    color: #00ffcc;

    text-decoration: none;
}

/* MOBILE */

@media (max-width: 980px) {

    .gf-hero {

        flex-direction: column;

        text-align: center;
    }

    .gf-hero h1 {

        font-size: 52px;
    }

    .gf-hero-image {

        max-width: 420px;
    }

    .gf-header-container {

    flex-direction: row;

    justify-content: space-between;

    align-items: center;

    }

    .gf-menu {

        gap: 18px;
    }

    .gf-logo-img {

        width: 180px;
    }

    .gf-buttons {

        justify-content: center;
    }
}
/* =========================================
   PROJECT CARDS ONLY
========================================= */

.gf-project-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 60px;
}

/* PROJECT CARD */

.gf-project-card {

    background:
        rgba(10,15,25,0.88);

    border:
        1px solid rgba(0,255,204,0.10);

    border-radius: 20px;

    padding: 35px;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* TOP GLOW LINE */

.gf-project-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00ffcc,
            transparent
        );

    transition: 0.5s ease;
}

/* HOVER */

.gf-project-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(0,255,204,0.45);

    box-shadow:
        0 0 30px rgba(0,255,204,0.18);
}

.gf-project-card:hover::before {

    left: 100%;
}

/* PROJECT TITLE */

.gf-project-card h3 {

    color: #00ffcc;

    font-size: 24px;

    margin-bottom: 20px;

    line-height: 1.4;

    text-shadow:
        0 0 8px rgba(0,255,204,0.25);
}

/* PROJECT TEXT */

.gf-project-card p {

    color: #ffffff;

    line-height: 1.8;

    font-size: 16px;
}

/* =========================================
   WHATSAPP BUTTON
========================================= */

.gf-whatsapp-wrapper {

    margin-top: 40px;
}

.gf-whatsapp-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 28px;

    border-radius: 14px;

    text-decoration: none;

    background:
        rgba(10,15,25,0.85);

    border:
        1px solid rgba(0,255,204,0.12);

    color: white;

    transition:
        0.3s ease;

    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* HOVER */

.gf-whatsapp-btn:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,255,204,0.45);

    box-shadow:
        0 0 25px rgba(0,255,204,0.2);

    color: #00ffcc;
}

/* ICON */

.gf-whatsapp-icon {

    width: 334px;

    height: 334px;

    object-fit: contain;
}

.gf-whatsapp-btn span {

    font-size: 16px;

    font-weight: 600;
}
/* =========================================
   MOBILE NAVIGATION FIX
========================================= */

/* NAV */

.gf-nav {

    position: relative;
}

/* DESKTOP MENU */

.gf-menu {

    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;
}

/* HAMBURGER */

.gf-hamburger {

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    cursor: pointer;

    width: 40px;

    height: 40px;

    z-index: 1002;
}

/* LINES */

.gf-hamburger span {

    width: 30px;

    height: 3px;

    background: #00ffcc;

    border-radius: 20px;

    transition: all 0.3s ease;
}

/* ACTIVE ICON */

.gf-hamburger.active span:nth-child(1) {

    transform:
        rotate(45deg)
        translate(6px, 6px);
}

.gf-hamburger.active span:nth-child(2) {

    opacity: 0;
}

.gf-hamburger.active span:nth-child(3) {

    transform:
        rotate(-45deg)
        translate(7px, -7px);
}

/* MOBILE */

@media (max-width: 980px) {

    /* SHOW HAMBURGER */

    .gf-hamburger {

        display: flex !important;
    }

    /* MOBILE MENU */

    .gf-menu {

        position: absolute;

        top: 70px;

        right: 0;

        width: 260px;

        background:
            rgba(5,7,13,0.97);

        border:
            1px solid rgba(0,255,204,0.15);

        border-radius: 18px;

        padding: 30px;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        backdrop-filter: blur(10px);

        box-shadow:
            0 0 30px rgba(0,255,204,0.12);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition: all 0.3s ease;
    }

    /* OPEN MENU */

    .gf-menu.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    /* LINKS */

    .gf-menu a {

        width: 100%;

        display: block;

        font-size: 18px;
    }

    /* HEADER */

    .gf-header-container {

        flex-direction: row !important;

        justify-content: space-between;

        align-items: center;
    }
}
/* =========================================
   OSINT TOOLS PAGE
========================================= */

.gf-tools-page {

    padding:
        180px 40px 120px;

    position: relative;

    z-index: 2;
}

.gf-tools-container {

    max-width: 1400px;

    margin: auto;
}

/* TITLE */

.gf-tools-title {

    font-size: 72px;

    margin-bottom: 25px;

    color: #00ffcc;

    text-shadow:
        0 0 15px rgba(0,255,204,0.25);
}

/* WARNING */

.gf-tools-warning {

    font-size: 18px;

    line-height: 1.9;

    color: #d0d0d0;

    max-width: 900px;

    margin-bottom: 80px;
}

/* SECTION */

.gf-tools-section {

    margin-bottom: 90px;
}

.gf-tools-section h2 {

    color: white;

    font-size: 38px;

    margin-bottom: 35px;
}

/* GRID */

.gf-tools-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

/* TOOL CARD */

.gf-tool-card {

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    min-height: 120px;

    padding: 25px;

    border-radius: 18px;

    text-decoration: none !important;

    color: white !important;

    font-size: 18px;

    font-weight: 600;

    background:
        rgba(10,15,25,0.88);

    border:
        1px solid rgba(0,255,204,0.12);

    backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* HOVER */

.gf-tool-card:hover {

    transform:
        translateY(-6px);

    color: #00ffcc !important;

    border-color:
        rgba(0,255,204,0.45);

    box-shadow:
        0 0 30px rgba(0,255,204,0.15);
}

/* MOBILE */

@media (max-width: 980px) {

    .gf-tools-title {

        font-size: 52px;
    }

    .gf-tools-section h2 {

        font-size: 28px;
    }

}
/* =========================================
   STICKY HEADER
========================================= */

.gf-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: rgba(5,7,13,0.85);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,255,204,0.08);
}
/* TOOL SEARCH BAR */

.gf-tool-search {

    width: 100%;

    max-width: 500px;

    padding: 14px 18px;

    margin-bottom: 40px;

    border-radius: 12px;

    border: 1px solid rgba(0,255,204,0.2);

    background: rgba(10,15,25,0.9);

    color: white;

    outline: none;

    backdrop-filter: blur(10px);
}

.gf-tool-search:focus {

    border-color: #00ffcc;

    box-shadow: 0 0 15px rgba(0,255,204,0.2);
}
/* ACTIVE NAV LINK */

.nav-link.active {

    color: #00ffcc;

    text-shadow: 0 0 10px rgba(0,255,204,0.5);
}
/* =========================================
   WORDPRESS DARK EDITOR STYLE
========================================= */

.editor-styles-wrapper {

    background: #05070d !important;

    color: #ffffff !important;
}

.editor-post-title__block {

    color: #00ffcc !important;
}

.wp-block {

    color: #ffffff !important;
}

.block-editor-writing-flow {

    background: #05070d !important;
}

.editor-styles-wrapper a {

    color: #00ffcc !important;
}