/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 0 2px 20px rgba(0, 114, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0072ff;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0072ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 114, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 114, 255, 0.1);
    color: #0072ff;
}

.nav-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cyber-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 114, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 114, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0072ff;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) { top: 20%; left: 20%; }
.floating-element:nth-child(2) { top: 60%; left: 80%; }
.floating-element:nth-child(3) { top: 80%; left: 30%; }
.floating-element:nth-child(4) { top: 40%; left: 70%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(0, 114, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(0, 114, 255, 0.8), 0 0 30px rgba(0, 198, 255, 0.5); }
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0072ff, #00c6ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text::before {
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(64px, 9999px, 66px, 0); }
    5% { clip: rect(30px, 9999px, 36px, 0); }
    10% { clip: rect(76px, 9999px, 84px, 0); }
    15% { clip: rect(40px, 9999px, 44px, 0); }
    20% { clip: rect(20px, 9999px, 26px, 0); }
    25% { clip: rect(90px, 9999px, 96px, 0); }
    30% { clip: rect(50px, 9999px, 56px, 0); }
    35% { clip: rect(10px, 9999px, 16px, 0); }
    40% { clip: rect(80px, 9999px, 86px, 0); }
    45% { clip: rect(35px, 9999px, 41px, 0); }
    50% { clip: rect(70px, 9999px, 76px, 0); }
    55% { clip: rect(25px, 9999px, 31px, 0); }
    60% { clip: rect(60px, 9999px, 66px, 0); }
    65% { clip: rect(45px, 9999px, 51px, 0); }
    70% { clip: rect(15px, 9999px, 21px, 0); }
    75% { clip: rect(85px, 9999px, 91px, 0); }
    80% { clip: rect(55px, 9999px, 61px, 0); }
    85% { clip: rect(5px, 9999px, 11px, 0); }
    90% { clip: rect(75px, 9999px, 81px, 0); }
    95% { clip: rect(65px, 9999px, 71px, 0); }
    100% { clip: rect(95px, 9999px, 101px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(54px, 9999px, 58px, 0); }
    10% { clip: rect(24px, 9999px, 30px, 0); }
    20% { clip: rect(74px, 9999px, 80px, 0); }
    30% { clip: rect(44px, 9999px, 50px, 0); }
    40% { clip: rect(14px, 9999px, 20px, 0); }
    50% { clip: rect(84px, 9999px, 90px, 0); }
    60% { clip: rect(34px, 9999px, 40px, 0); }
    70% { clip: rect(64px, 9999px, 70px, 0); }
    80% { clip: rect(4px, 9999px, 10px, 0); }
    90% { clip: rect(94px, 9999px, 100px, 0); }
    100% { clip: rect(84px, 9999px, 90px, 0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #0072ff;
}

.btn-secondary:hover {
    background: #0072ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2rem;
    height: 2rem;
    border-bottom: 2px solid #0072ff;
    border-right: 2px solid #0072ff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 114, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.2);
    border-color: rgba(0, 114, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0072ff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #d0d0d0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0072ff;
    font-weight: bold;
}

.service-btn {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: #0a0a0a;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 114, 255, 0.1);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0072ff;
}

.partner-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.partner-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 114, 255, 0.1);
}

.stat h3 {
    font-size: 2rem;
    color: #0072ff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #d0d0d0;
    font-size: 0.9rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 114, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    min-width: 300px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h4 {
    color: #ffffff;
    font-size: 1.2rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric:last-child {
    border-bottom: none;
}

.metric span:first-child {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.metric-value {
    color: #0072ff;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */

.contact {
    padding: 6rem 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(0, 114, 255, 0.3);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #0072ff;
    min-width: 30px;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #b0b0b0;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input,
.form-group select,
.contact-form textarea {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0072ff;
    box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.2);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0072ff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0072ff;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b0b0b0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #0072ff;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        text-align: center;
        background: rgba(16, 16, 16, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Service Pages Styles */
.service-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    font-size: 4rem;
    color: #0072ff;
    margin-bottom: 2rem;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 114, 255, 0.1);
    border: 1px solid rgba(0, 114, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #0072ff;
    font-weight: 500;
}

.service-details {
    padding: 4rem 0;
    background: #0a0a0a;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.details-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.details-content p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #d0d0d0;
    font-size: 1rem;
}

.benefits-list i {
    color: #0072ff;
    font-size: 1.2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 114, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 114, 255, 0.1);
}

.stat-card h3 {
    font-size: 2rem;
    color: #0072ff;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.services-breakdown {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.1);
}

.capability-icon {
    font-size: 2.5rem;
    color: #0072ff;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.capability-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.capability-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.capability-card ul li {
    padding: 0.5rem 0;
    color: #d0d0d0;
    position: relative;
    padding-left: 1.5rem;
}

.capability-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0072ff;
    font-weight: bold;
}

.technology-stack {
    padding: 4rem 0;
    background: #0a0a0a;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.tech-category h3 {
    color: #0072ff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-item {
    background: rgba(0, 114, 255, 0.1);
    border: 1px solid rgba(0, 114, 255, 0.2);
    padding: 0.75rem;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 114, 255, 0.2);
    border-color: rgba(0, 114, 255, 0.4);
    transform: translateX(5px);
}

.service-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-cta p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-features {
        justify-content: center;
    }
}

/* News Page Styles */
.news-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.news-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 114, 255, 0.3);
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border-color: #0072ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.featured-news {
    padding: 4rem 0;
    background: #0a0a0a;
}

.featured-article {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 114, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.3);
}

.featured-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 12px;
}

.article-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category.threats {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.category.industry {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.category.updates {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.category.research {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.date {
    color: #888;
    font-size: 0.9rem;
}

.read-more {
    color: #0072ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #00c6ff;
    transform: translateX(5px);
}

.news-grid-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.news-grid-section .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.3);
}

.news-image {
    height: 200px;
    background: rgba(0, 114, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0072ff;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-widget h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.threat-alerts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.threat-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.threat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.threat-level {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.threat-level.critical {
    background: #ff4757;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.threat-level.high {
    background: #ff7675;
    box-shadow: 0 0 10px rgba(255, 118, 117, 0.5);
}

.threat-level.medium {
    background: #fdcb6e;
    box-shadow: 0 0 10px rgba(253, 203, 110, 0.5);
}

.threat-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.threat-info p {
    color: #b0b0b0;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.threat-time {
    color: #888;
    font-size: 0.7rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #0072ff;
    box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: #666;
}

.load-more-section {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.load-more-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 114, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

/* Training Page Enhancements */
.training-simulator {
    padding: 4rem 0;
    background: #0a0a0a;
}

.simulator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.simulator-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 114, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.simulator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 114, 255, 0.1), transparent);
    transition: left 0.5s;
}

.simulator-card:hover::before {
    left: 100%;
}

.simulator-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.1);
}

.simulator-icon {
    font-size: 3rem;
    color: #0072ff;
    margin-bottom: 1rem;
}

.simulator-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.simulator-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Active navigation link */
.nav-link.active {
    color: #0072ff;
    position: relative;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive updates for News and Training */
@media (max-width: 768px) {
    .news-grid-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .news-filters {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
    }
}

/* Community Page Styles */
.community-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.community-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.community-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.community-nav-btn:hover {
    background: rgba(0, 114, 255, 0.2);
    border-color: #0072ff;
    transform: translateY(-2px);
}

.community-nav-btn.active {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border-color: #0072ff;
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.3);
}

.community-section {
    display: none;
    padding: 4rem 0;
}

.community-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* News Section Styles */
.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(0, 114, 255, 0.2);
    border-color: #0072ff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border-color: #0072ff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 114, 255, 0.3);
}

.news-card.featured {
    grid-column: span 2;
    border-color: #0072ff;
    box-shadow: 0 0 30px rgba(0, 114, 255, 0.2);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-category {
    background: rgba(0, 114, 255, 0.2);
    color: #00c6ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.news-date {
    color: #888;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    line-height: 1.4;
}

.news-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-btn {
    color: #0072ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #00c6ff;
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.1), rgba(0, 198, 255, 0.1));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 114, 255, 0.2);
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* Forum Styles */
.forum-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.forum-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forum-hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.forum-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.stat-item i {
    color: #0072ff;
    font-size: 1.2rem;
}

.forum-nav {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forum-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.forum-nav-items {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.forum-nav-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.forum-nav-btn:hover,
.forum-nav-btn.active {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border-color: #0072ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.new-post-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new-post-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
}

.forum-content {
    padding: 3rem 0;
    background: #0a0a0a;
}

.forum-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.category-list,
.contributor-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(0, 114, 255, 0.1);
    transform: translateX(5px);
}

.category-item i {
    color: #0072ff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.category-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.category-info span {
    color: #888;
    font-size: 0.8rem;
}

.contributor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contributor-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contributor-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contributor-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contributor-info > span {
    color: #0072ff;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contributor-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contributor-stats span {
    color: #888;
    font-size: 0.7rem;
}

.forum-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.2);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.user-info h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.user-info > span {
    color: #0072ff;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.25rem;
}

.post-time {
    color: #888;
    font-size: 0.7rem;
}

.post-category {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-category.threats {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.post-category.tools {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.post-category.incidents {
    background: rgba(230, 126, 34, 0.2);
    color: #e67e22;
}

.post-category.general {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.post-category.compliance {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.post-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.code-snippet {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 114, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-snippet pre {
    margin: 0;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
}

.code-snippet code {
    color: #ffffff;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: rgba(0, 114, 255, 0.1);
    border: 1px solid rgba(0, 114, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    color: #0072ff;
    font-weight: 500;
}

.post-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.action-btn:hover {
    background: rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.3);
    color: #0072ff;
    transform: translateY(-2px);
}

.like-btn:hover {
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.3);
    background: rgba(255, 71, 87, 0.1);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(16, 16, 16, 0.95);
    border: 1px solid rgba(0, 114, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ffffff;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff4757;
}

.new-post-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.new-post-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.new-post-form label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.new-post-form input,
.new-post-form select,
.new-post-form textarea {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.new-post-form input:focus,
.new-post-form select:focus,
.new-post-form textarea:focus {
    outline: none;
    border-color: #0072ff;
    box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.2);
}

.new-post-form input::placeholder,
.new-post-form textarea::placeholder {
    color: #666;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Responsive Forum Styles */
@media (max-width: 768px) {
    .forum-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .forum-nav .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .forum-nav-items {
        justify-content: center;
    }
    
    .forum-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .forum-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        font-size: 0.9rem;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-actions {
        flex-wrap: wrap;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Additional Forum Styles for Community Page */
.forum-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.3);
    color: #0072ff;
    transform: translateX(5px);
}

/* Forum stats in sidebar */
.forum-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 114, 255, 0.05);
    border-color: rgba(0, 114, 255, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0072ff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Thread list styles */
.threads-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thread-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thread-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.2);
}

.thread-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.thread-info {
    flex: 1;
}

.thread-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.thread-preview {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thread-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    min-width: 150px;
}

.thread-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.thread-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #b0b0b0;
    align-items: center;
}

.thread-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.thread-stats i {
    color: #0072ff;
}

.thread-date {
    color: #888;
    font-size: 0.8rem;
}

/* New thread button */
.new-thread-btn {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

/* Modal buttons */
.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.modal-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
}

/* Community page responsive styles */
@media (max-width: 768px) {
    .community-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .community-nav-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .forum-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .thread-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .thread-meta {
        align-items: flex-start;
        min-width: auto;
        width: 100%;
    }
    
    .thread-stats {
        justify-content: space-between;
        width: 100%;
    }
}
