/* Root Variables */
:root {
    --primary: #d3d7ef;
    --secondary: #c8c7e8;
    --accent: #1B1A55;
    --dark: #070F2B;
    --light: #f5f5f5;
    --gray: #333333;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.1rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ae643b 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
    transition: all 0.3s ease;
}

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

h3 {
    font-size: 1.8rem;
    color: var(--light);
}

p {
    margin-bottom: 1rem;
    color: #dadae5;
    line-height: 1.8;
}

/* Navbar */
/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(7, 15, 43, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.company-name {
    background: linear-gradient(135deg, #ae643b 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
    transition: all 0.3s ease;
    font-size: 2rem;
    font-weight: 600;
    font-family: "Lucida Console", "Courier New", monospace;
    letter-spacing: 0.5px;
}

.company-name:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ae643b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: #f5f5f5;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(7, 15, 43, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 1rem 1.5rem;
    color: #f5f5f5;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(83, 92, 145, 0.3);
    color: #c8c7e8;
}

.dropdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(146, 144, 195, 0.1);
}

.get-secured {
    background: #c8c7e8;
    color: #070F2B;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-secured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 144, 195, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #070F2B;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        min-width: 100%;
    }

    .dropdown:hover .dropdown-content {
        display: block;
        transform: none;
    }
}

/* Additional Responsive Styles */
@media (max-width: 480px) {
    .company-name {
        font-size: 1rem;
    }
}
/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(90deg, var(--dark) 70%, #0D1543 100%);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
    padding-top: 80px;
}

.hero-content {
    padding-top: 5px;
}

.badge {
    background: rgba(146, 144, 195, 0.1);
    border: 1px solid rgba(194, 193, 218, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.get-secured {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(83, 92, 145, 0.2);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact {
    padding: 100px 20px;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-form {
    background: rgba(83, 92, 145, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 5px;
    color: var(--light);
    transition: all 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 5px;
    color: var(--light);
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Timeline Section */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 2px solid var(--secondary);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
}

/* Case Studies */
.case-studies {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.case-study-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.metric-value {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: bold;
}

/* Responsive Design */


@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.6s ease forwards;
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    animation: fadeIn 0.5s;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* MDR Services Section */
.mdr-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.mdr-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mdr-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mdr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 25px;
    margin-bottom: 1rem;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

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

.mdr-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

.mdr-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.mdr-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--light);
}

.mdr-features i {
    color: var(--secondary);
}

/* IoT Security Section */
.iot-section {
    padding: 4rem 2rem;
    background: var(--dark);
}

.iot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.iot-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

.iot-metrics {
    margin-top: 2rem;
}

.iot-metrics .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tech Features Section */
.tech-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

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

.tech-icon i {
    font-size: 2rem;
    color: var(--dark);
}

.tech-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
    background: rgba(7, 15, 43, 0.95);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

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

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    font-size: 2rem;
    color: var(--secondary);
}

/* Notification System */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    background: rgba(83, 92, 145, 0.9);
    border-radius: 8px;
    color: var(--light);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.p-2 { padding: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 2rem; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .newsletter-form,
    .social-links {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .services,
    .about,
    .contact {
        padding: 20px;
        background: none;
    }

    h1, h2, h3 {
        color: black;
        -webkit-text-fill-color: black;
    }
}
/* Protection Section */
.protection-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.protection-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.protection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.protection-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.protection-card:hover::before {
    opacity: 1;
}

.protection-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.protection-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

/* Compliance Section */
.compliance-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.compliance-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.compliance-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

.compliance-checklist {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.compliance-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--light);
    border-bottom: 1px solid rgba(146, 144, 195, 0.1);
}

.compliance-checklist li:last-child {
    border-bottom: none;
}

.compliance-checklist li i {
    color: var(--secondary);
}

/* Architecture Section */
.architecture-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.architecture-container {
    max-width: 1000px;
    margin: 0 auto;
}

.architecture-stages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stage {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.stage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stage:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stage:hover::before {
    opacity: 1;
}

.stage-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ae643b 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 80px;
}

/* Improvement Section */
.improvement-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.improvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.improvement-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.improvement-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.improvement-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.improvement-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

.improvement-progress {
    background: rgba(83, 92, 145, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.progress-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    transition: width 1s ease;
}

/* Red Team Section */
.redteam-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.redteam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.redteam-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.redteam-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.redteam-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.redteam-card:hover::after {
    opacity: 1;
}

.redteam-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.redteam-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

.redteam-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.redteam-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--light);
    border-bottom: 1px solid rgba(146, 144, 195, 0.1);
}

.redteam-features li:last-child {
    border-bottom: none;
}

.redteam-features li i {
    color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stage {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .stage-number {
        margin-bottom: 1rem;
    }

    .protection-grid,
    .compliance-grid,
    .improvement-grid,
    .redteam-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}