@font-face {
  font-family: 'myfont';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-style: normal;
}

:root {
    --text-color: #ffffff;
    --primary: #7198f0;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    --darkest: #000000;
    --darker: #0a0a0a;
    --dark: #111111;
    --mid: #1a1a1a;
    --light: #2a2a2a;
    --lighter: #94a3b8;
    --lightest: #cbd5e1;

    --text-gradient: linear-gradient(45deg, var(--accent), var(--lighter));
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.08);
    --glass-dark: rgba(0, 0, 0, 0.9);

    --border-radius-primary: 8px;
    --border-radius-secondary: 12px;

    --font-family-primary: 'myfont', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* KEYFRAMES */
@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes logoSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* END OF KEYFRAMES */

/* MAIN STUFF */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-primary);
}

body {
    background: var(--darker);
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

.container {
    margin: auto;
    max-width: min(90%, 1140px);
    padding: var(--spacing-xl);
}

.cta-button {
    border: none;
    margin: 0 20px;
    cursor: pointer;
    overflow: hidden;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow-md);
    pointer-events: auto !important;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-values h2,
.team-section h2,
.faq-section h2,
#founder-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: var(--font-weight-semibold);
}

.nexussec-content-border {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid var(--mid);
    border-radius: var(--border-radius-secondary);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.no-js .fade-me {
    opacity: 1;
    transform: none;
}

.js .fade-me {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1000ms cubic-bezier(.22, .9, .29, 1),
        transform 1000ms cubic-bezier(.22, .9, .29, 1);
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity;
}

.js .fade-me.in-view {
    opacity: 1;
    transform: none;
}

/* END OF MAIN STUFF */

/* SECTION HOME */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse 100% 100% at top, #0a325c, transparent);
    overflow: hidden;
}

#hero::before {
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, var(--darker), 20%, transparent);
}

#hero-content {
    margin-top: 50px;
    text-align: center;
    position: relative;
    pointer-events: none;
    display: flex;
    flex-flow: wrap;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 1140px;
    z-index: 10;
}

#hero-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    color: whitesmoke;
    max-width: 900px;
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-xl);
}

#hero-subtitle span {
    white-space: pre;
    color: var(--primary);
    opacity: 100%;
    border-bottom: 2px solid var(--primary);
    font-weight: var(--font-weight-semibold);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

#features-title,
#resources-title,
#services-title,
#hero-title,
#contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-xs);
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/*
==================
    INDEX.HTML
==================
*/

#consultation-button {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

#consultation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.5s ease;
}

#consultation-button:hover::before {
    left: 100%;
}

#get-demo-button {
    background: rgba(37, 99, 235, 0.1);
    transition: 0.5s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

#get-demo-button:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

/* SECTION COMPANIES */
#companies-image-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1.5rem 0;
}


#companies-image-container::before,
#companies-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

#companies-image-container::before {
    left: 0;
    background: linear-gradient(to right, var(--darker), transparent);
}

#companies-image-container::after {
    right: 0;
    background: linear-gradient(to left, var(--darker), transparent);
}

.logos-track {
    animation: logoSlide 30s infinite linear;
    display: inline-block;
}


.logos-track img {
    height: 75px;
    margin: 0px 40px;
}


/*.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid var(--mid);
    border-radius: var(--border-radius-primary);
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    margin: var(--spacing-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tech-logo:hover {
    background: linear-gradient(145deg, var(--mid), var(--light));
    border-color: var(--primary);
    color: var(--text-color);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}*/

#companies-text {
    font-size: 1.25rem;
    text-align: center;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-lg);
    color: var(--lighter);
}

/* SECTION OUR ABOUT */
/*
#section-two-h1 {
    position: relative;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#section-two-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

#section-two-goals h2 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
}

#section-two-goals p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--lighter);
}
*/
/* SECTION OUR SERVICES */
#section-our-services {
    background: linear-gradient(55deg, transparent, rgba(65, 105, 225, 0.5), transparent);
    text-align: center;
    position: relative;
}

#section-our-services::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 20%;
    height: 100%;
    background-attachment: fixed !important;
    background: url(https://images.pexels.com/photos/6466141/pexels-photo-6466141.jpeg?cs=srgb&dl=pexels-sejio402-6466141.jpg&fm=jpg&w=1920&h=1280);
}

#section-our-services p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

#section-our-services-h1 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
}

#section-our-services-image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    text-align: left;
}

#section-our-services-image-container h3 {
    margin-top: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

#section-our-services-image-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

.section-our-services-images {
    padding: var(--spacing-lg);
    background: radial-gradient(circle at bottom, rgb(2 96 255 / 10%), rgb(1 0 4 / 72%));
    border-radius: var(--border-radius-secondary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(27 35 62 / 50%);
}

.section-our-services-images img {
    filter: sepia(100%) hue-rotate(190deg) saturate(300%);
    border-radius: var(--border-radius-primary);
    transition: 0.25s;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* SECTION TESTIMONY */
#section-testimony {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
    padding: var(--spacing-2xl) 0;
}

#section-testimony-h1 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 7px;
    margin-bottom: var(--spacing-xl);
    color: var(--primary);
}

#testimonials {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: var(--spacing-lg);
    justify-content: center;
}

.testimonial-container {
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid var(--mid);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-secondary);
}

.testimonial-container p {
    opacity: 85%;
    line-height: 1.6;
    font-style: italic;
    color: var(--lighter);
}

.testimonial-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.section-testimony-part1 {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.section-testimony-part1 img {
    user-select: none;
    width: 75px;
    border-radius: 100%;
    border: 3px solid var(--primary);
}

.section-testimony-part2 {
    margin-top: var(--spacing-lg);
}

.testimonial-text-container {
    margin-left: var(--spacing-lg);
}

.testimonial-name {
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-profession {
    color: var(--lighter);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

/*
=====================
    SERVICES.HTML
=====================
*/

/*#section-services {
    padding: var(--spacing-2xl) var(--spacing-lg);
}*/

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

#services-title,
#services-text {
    text-align: center;
}

#services-title {
    margin: var(--spacing-2xl) 0 var(--spacing-xs);
}

#services-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--lighter);
    line-height: 1.7;
}

#services-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.services-list-content {
    display: flex;
    transition: all 0.3s ease;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
    flex-direction: row;
    justify-content: center;
}

.services-list-content h3 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.services-list-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--lighter);
}

.services-list-content img {
    width: 50%;
    height: 100%;
    filter: invert(100%);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

/*
=====================
    FEATURES.HTML
=====================
*/
#features-title {
    margin: var(--spacing-2xl) auto var(--spacing-sm);
    line-height: 1;
    text-align: center;
    padding-bottom: var(--spacing-sm);
}

#features-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) auto 0;
    place-content: center;
}

.features-list-header {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    place-content: center;
    margin-bottom: 20px;
}

.features-list-header h3 {
    font-size: var(--spacing-lg) !important;
    margin-right: auto;
    text-align: left;
}

.features-list p {
    text-align: left;
}

.feature-item {
    width: 100%;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid var(--light);
    border-radius: var(--border-radius-primary);
    box-shadow: var(--shadow-md);
}

.feature-item p {
    font-size: calc(var(--spacing-sm) + 2px);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    margin-left: 20px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    color: lightblue;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-benefits {
    color: var(--lighter);
    text-align: left;
    list-style: none;
    list-style-position: inside;
    margin: 50px 0 0;
    vertical-align: middle;
    /*list-style: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZjRmM2YzIiBkPSJtOS41NSAxOGwtNS43LTUuN2wxLjQyNS0xLjQyNUw5LjU1IDE1LjE1bDkuMTc1LTkuMTc1TDIwLjE1IDcuNHoiLz48L3N2Zz4=);*/
}

.feature-benefits li {
    margin: 15px 0;
}

.feature-benefits li::before {
    content: "✓ ";
}

/*
======================
    RESOURCES.HTML
======================
*/
.resources-section {
    padding: var(--spacing-2xl) 0;
}

.resources-container {
    margin: 0 auto;
    transform: translateY(30px);
}

.header-and-view-all {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.header-and-view-all a {
    margin-left: auto;
    white-space: pre;
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-and-view-all a:after {
    content: "";
    display: block;
    border-bottom: 2px solid var(--primary);
    width: 0%;
    margin: auto;
    transition: 0.5s;
}

.header-and-view-all a:hover:after {
    width: 100%;
}

.header-and-view-all a:hover {
    color: var(--secondary);
}

.resources-container h2 {
    font-weight: var(--font-weight-semibold);
    font-size: 2.5rem;
}

#premium-resources {
    margin-bottom: var(--spacing-xl);
    background: radial-gradient(at top, var(--dark), var(--darker));
}

.resources-title {}

.resources-description {
    opacity: 80%;
    font-size: 1.3rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    color: var(--lighter);
    line-height: 1.7;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.resource-item {
    display: flex;
    background: var(--mid);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light);
    border-radius: var(--border-radius-primary);
    height: 100%;
    flex-direction: column;
    transition: 0.25s;
}

.resource-item p {
    line-height: 1.6;
    color: var(--lightest);
}

.resources-list img {
    max-width: 100%;
    transition: 0.5s;
    height: 200px;
    object-fit: cover;
}

.resource-item h3 {
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.resource-item a {
    color: white;
    display: flex;
    margin-top: 1rem;
    transition: 0.25s;
    border-radius: 25px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-underline-offset: 2px;
    margin: var(--spacing-lg) auto 0;
    font-weight: var(--font-weight-medium);
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.resource-item .fa-download {
    margin-right: 1rem;
}

.paid-resource-item {
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.paid-resource-item::before {
    content: 'PREMIUM';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.paid-resource-item {
    padding: 0;
    cursor: pointer;
}

.resource-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.resource-content h3 {
    font-size: 1.5rem;
}

.resource-content p {
    margin-bottom: 50px;
}

.paid-resource-item img {
    transform: scale(1.0);
    width: 100%;
}

.resource-meta {
    margin-top: auto;
}

.resource-meta div {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.resource-meta i {
    color: var(--primary);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.resource-icon i {
    font-size: 1.2rem;
    color: white;
}

/*
==================
    ABOUT.HTML
==================
*/
#about-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, transparent, rgba(50, 50, 120, 1));
}

#about-hero::before {
    content: "";
    top: 0;
    opacity: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/DEF_CON_17_CTF_competition.jpg/2560px-DEF_CON_17_CTF_competition.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

#about-hero h1 {}

#about-hero p {
    font-size: 1.3rem;
    color: var(--lightest);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-story {
    position: relative;
    background: linear-gradient(45deg, #161321, transparent, #161321);
}

.company-story::before {
    opacity: 25%;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: -1;
    background: url(https://images.pexels.com/photos/3184325/pexels-photo-3184325.jpeg?cs=srgb&dl=pexels-fauxels-3184325.jpg&fm=jpg&w=1920&h=1280) top / cover no-repeat;
    background-attachment: fixed;
}

.story-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content span {
    background: var(--text-gradient);
    font-weight: var(--font-weight-extrabold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 2rem;
}

.stat-item {
    width: 100%;
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-secondary);
    border: 1px solid grey;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(10, 50, 100, 0.5));
    backdrop-filter: blur(10px);
    position: relative;
}

.stat-item h3 {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: var(--font-weight-medium);
}

.mission-values {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
    transition: all 0.3s ease;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--lighter);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--secondary);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.bio {
    color: var(--lighter);
    line-height: 1.6;
}

.certifications {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
    padding: 4rem 0;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cert-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--lighter);
    font-size: 0.9rem;
}

.careers-section {
    padding: 1rem 0;
}

#careers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.careers-section>.container>p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--lighter);
    margin-bottom: 3rem;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.careers-info {
    position: relative;
}

#careers-lists {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.career-content {
    padding: 0;
    border-bottom: 7px solid var(--dark);
}

.career-content div {
    display: flex;
    margin: auto;
    align-items: center;
    flex-direction: column;
    padding: var(--spacing-sm);
}

.career-content h4 {
    margin-bottom: 10px;
    font-weight: var(--font-weight-normal);
}

.career-content img {
    border-top-left-radius: var(--border-radius-primary);
    border-top-right-radius: var(--border-radius-primary);
    width: 100%;
    height: -webkit-fill-available;
}

.career-content button {
    width: 10em;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    border: 1px solid var(--accent);
    border-radius: var(--border-radius-primary);
    background: transparent;
    padding: var(--spacing-xs);
    transition: 0.25s;
}

.career-content button:hover {
    color: var(--text-color);
    background: var(--secondary);
    border: 1px solid transparent;
}

#why-nexussec {
    text-align: left !important;
    background: linear-gradient(to left, rgba(77, 105, 219, 0.5), rgba(0, 0, 0, 0.75)), url(https://images.pexels.com/photos/1438081/pexels-photo-1438081.jpeg?cs=srgb&dl=pexels-marta-klement-636760-1438081.jpg&fm=jpg&w=1920&h=1282) center / cover no-repeat;
    background-position: top;
    top: 0;
    z-index: -1;
    left: 0;
    height: 100%;
    width: 100%;
}

#why-nexussec h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.careers-cta h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-normal);
}

.careers-cta h3 {
    margin: 20px 0;
}

.careers-info ul,
{
list-style: none;
padding: 0;
}

.careers-info li {
    list-style: none;
    opacity: 85%;
    font-size: 1.25rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.careers-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.careers-cta .cta-button {
    margin-top: 2rem;
}

.founder-section {}

#founder-icon-name img {
    width: 100%;
    border-radius: var(--border-radius-secondary);
}

#founder-icon-name {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

#founder-icon-name h3 {
    margin-top: 10px;
}

.founder-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.founder-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-icon i {
    color: #fff;
    font-size: 3rem;
}

.founder-content h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.founder-name {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
}

.founder-content p {
    color: var(--lighter);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/*
====================
    CONTACT.HTML
====================
*/

.contact-hero {
    padding: 4rem 0;
    position: relative;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.contact-hero::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 50%;
    height: 100%;
    background: url(https://images.pexels.com/photos/6325981/pexels-photo-6325981.jpeg?cs=srgb&dl=pexels-vanessa-garcia-6325981.jpg&fm=jpg&w=1920&h=1280) center / cover no-repeat;
    background-attachment: fixed;
}


.contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background:
        linear-gradient(var(--darker), transparent),
        url(https://images.pexels.com/photos/8867265/pexels-photo-8867265.jpeg?cs=srgb&dl=pexels-yankrukov-8867265.jpg&fm=jpg&w=1920&h=2880) center / cover no-repeat;
    background-attachment: fixed;
    filter: sepia(1) hue-rotate(180deg) saturate(200%);
    z-index: -2;
}

.contact-hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 85%;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.contact-method,
.office-hours,
.form-group input,
.form-group select,
.form-group textarea {
    backdrop-filter: blur(10px);
    background: rgba(200, 200, 255, 0.1);
    border-radius: var(--border-radius-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.2rem;
}

.method-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.method-content p {
    color: var(--lighter);
    margin: 0;
}

.method-content a {
    color: var(--lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--primary);
}

.office-hours {
    padding: 1.5rem;
}

.office-hours h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.office-hours p {
    color: var(--lighter);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.office-hours em {
    color: royalblue;
    opacity: 80%;
    font-style: normal;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group option {
    background: var(--darker);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lighter);
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
    text-underline-offset: 2px;
}

.checkbox-label a:hover {
    text-shadow: 0px 0px 20px royalblue;
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-primary);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.accordion {
    margin-bottom: 10px;
}

.accordion summary,
.accordion p {
    padding: 10px 20px;
}

.accordion summary {
    display: flex;
    background: var(--mid);
    cursor: pointer;
    font-weight: bold;
    align-items: center;
    list-style: none;
}

.accordion h3 {
    font-weight: var(--font-weight-semibold);
}

.accordion-icon {
    margin-left: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmRmZGZkIiBkPSJNMTEuMTc4IDE5LjU2OWEuOTk4Ljk5OCAwIDAgMCAxLjY0NCAwbDktMTNBLjk5OS45OTkgMCAwIDAgMjEgNUgzYTEuMDAyIDEuMDAyIDAgMCAwLS44MjIgMS41Njl6Ii8+PC9zdmc+");
    background-position: center;
    background-repeat: no-repeat;
}

.accordion-content {
    background: var(--dark);
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

summary {
    cursor: default, auto;
}

summary .icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.accordion[open] summary .icon {
    transform: rotate(180deg);
    /* rotate down arrow */
}


/*
===
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--lighter);
    line-height: 1.6;
}
===
*/

/* === HOVER STYLES, DESKTOP ONLY === */
@media (hover: hover) and (pointer: fine) {
    .testimonial-container:hover {
        box-shadow: var(--shadow-lg);
    }

    .cta-button:hover {
        box-shadow: var(--shadow-lg);
    }

    #companies-image-container:hover .logos-track {
        animation-play-state: paused;
    }

    /*  NOTE: causes distraction.  */
    /*.nexussec-content-border:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
    }*/

    .section-our-services-images:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
    }

    .section-our-services-images:hover img {
        filter: sepia(0%) hue-rotate(0deg) saturate(100%);
    }

    .resource-item:hover {
        background: #12151c;
        border-color: var(--accent);
    }

    .resource-item a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    }

    .value-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }

}

/* === RESPONSIVE CODE === */
/* Wide devices, i think* lol */
@media (max-device-width: 1024px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .contact-form-container {
        width: 100%;
    }
}

/* FOR TABLETS */
@media (max-device-width: 768px) {
    #hero {
        min-height: 100dvh;
        min-height: 100vh;
    }

    #hero-content {
        margin-left: var(--spacing-lg);
        margin-right: var(--spacing-lg);
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }

    .container {
        max-width: 95% !important;
        padding: var(--spacing-sm);
    }

    #hero-title {
        margin-bottom: 0;
    }

    #hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .resources-list {
        grid-template-columns: 1fr;
    }

    .resource-item h3 {
        font-size: 1.5rem;
    }

    .resource-item p {
        font-size: 1rem;
    }

    .companies-image img {
        margin: 0;
        width: 140px;
        max-height: 64px;
    }

    #testimonials {
        grid-template-columns: 1fr;
    }

    .testimonial-container {
        width: 100%;
    }

    #section-our-services-image-container {
        grid-template-columns: 1fr;
    }

    .header-and-view-all {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .header-and-view-all a {
        margin-left: 0;
    }

    .services-list-content {
        flex-wrap: wrap;
        text-align: left;
    }

    .services-list-content img {
        width: min(30%, 100%);
    }

    .features-list-header {
        align-items: flex-start;
    }

    .story-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        display: flex;
        margin: auto;
        align-items: center;
        justify-content: center;
    }

    .stat-item p {
        margin-left: 10px;
    }

    .story-stats {
        flex: auto;
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    #careers-lists {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .contact-info {
        width: 100%;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
    }

}

@media (max-device-width: 640px) {
    .stat-item {
        flex-direction: column;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }

    #companies-image-container {
        margin-bottom: 20px;
    }
}

/* FOR MOBILE PHONES */
@media (max-width: 480px) {
    .container {
        max-width: 400px;
    }

    #hero h1,
    #hero p {
        text-align: left;
    }

    .cta-button {
        margin: 7px 0;
    }

    #hero-buttons {
        display: flex;
        flex-direction: column;
        margin-right: auto;
    }

    .logos-track img {
        height: 50px;
        margin: 0px 50px;
    }

    .services-list-content img {
        width: min(75%, 200px - 50px);
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .features-list-header h3 {
        font-size: var(--spacing-md) !important;
    }

    #features-title,
    #features-text,
    #services-title,
    #services-text,
    #resources-title,
    .resources-header-stuff,
    #career-heading,
    #about-hero,
    #hero-title,
    #contact-heading,
    #contact-title {
        text-align: left;
    }

    .resources-header-stuff {
        line-height: 1.25;
    }

    #premium-resources,
    #free-resources {
        padding: 15px;
    }

    .founder-card {
        padding: 20px;
        margin: auto;
        display: flex;
        flex-direction: column;
    }

    .founder-name {
        margin: auto;
        font-size: 1.5rem;
    }

    #founder-icon-name {
        flex-direction: column;
    }

    .story-stats,
    #careers-lists,
    .values-grid {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .founder-icon {
        width: auto;
        height: auto;
    }

    #founder-icon-name img {
        width: 100%;
    }

}

/* END OF RESPONSIVE CODE */
