/* Root Variables */
:root {
    --primary-color: #d3d7ef;
    --secondary-color: #c8c7e8;
    --accent-color: #1B1A55;
    --background-dark: #070F2B;
    --text-light: #f5f5f5;
    --text-gray: #333333;
    --pink-accent: #c8c7e8;
    --gradient-primary: linear-gradient(135deg, #ae643b 0%, #ffffff 100%);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 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 */
.mdr-hero {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(90deg, var(--background-dark) 60%, #0D1543 100%);
    position: relative;
}

.mdr-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    padding-right: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(146, 144, 195, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Section Title Standard */
.section-title {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Three Flexible Formats Section */
.formats-section {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 40px;
}

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

.format-card:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 40px;
    color: var(--pink-accent);
    margin-bottom: 20px;
}

.format-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 24px;
}

.format-card p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* SIEM Tool Section */
.siem-section {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.9), rgba(7, 15, 43, 0.95));
}

.siem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.siem-card {
    background-color: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.siem-card:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-number {
    font-size: 36px;
    color: var(--pink-accent);
    font-weight: bold;
    min-width: 40px;
    line-height: 1;
}

.card-content h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 20px;
}

.card-content p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}
/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.solution-card {
    background-color: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.solution-card:hover::before {
    transform: translateX(0);
}

.solution-card:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-card i {
    font-size: 40px;
    color: var(--pink-accent);
    margin-bottom: 20px;
}

.solution-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 20px;
}

.solution-card p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Security Features Section */
.security-features {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.9), rgba(7, 15, 43, 0.95));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 40px;
    color: var(--pink-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Cyber Defenders Section */
.cyber-defenders {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.defenders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.defender-card {
    background-color: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.defender-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-accent), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.defender-card:hover::after {
    transform: translateX(0);
}

.defender-card:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.defender-card h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 15px;
}

.defender-card p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Market Section */
.market-section {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.market-card {
    background-color: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.market-card .card-number {
    font-size: 36px;
    color: var(--pink-accent);
    margin-bottom: 15px;
}

.market-card h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 15px;
}

.market-card p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Drivers Section */
.drivers-section {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.9), rgba(7, 15, 43, 0.95));
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.driver-card {
    background-color: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.driver-card:hover {
    transform: translateX(5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
}

.driver-card .card-number {
    font-size: 36px;
    color: var(--pink-accent);
    margin-bottom: 15px;
}

.driver-card h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 15px;
}

.driver-card p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Research Team Section */
.research-team {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.team-member {
    background-color: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.team-member:hover {
    transform: translateY(-5px);
    background-color: rgba(83, 92, 145, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-image:hover img {
    transform: scale(1.1);
}

.member-info h3 {
    color: var(--pink-accent);
    font-size: 32px;
    margin-bottom: 20px;
}

.member-details {
    display: grid;
    gap: 20px;
}

.info-block {
    background-color: rgba(83, 92, 145, 0.15);
    border-radius: 10px;
    padding: 20px;
}

.info-block h4 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 10px;
}

.info-block p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

.experience-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.experience-table td {
    padding: 15px;
    border: 1px solid rgba(146, 144, 195, 0.2);
    color: var(--secondary-color);
}

.experience-table tr:hover {
    background-color: rgba(83, 92, 145, 0.2);
}

.achievement-card {
    background-color: rgba(83, 92, 145, 0.15);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.achievement-card .number {
    background-color: rgba(255, 105, 180, 0.1);
    color: var(--pink-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.achievement-card .content h4 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 10px;
}

.achievement-card .content p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.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-color);
}

.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);
    color: var(--background-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-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-section h3 {
    color: var(--secondary-color);
    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(--text-light);
}

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


/* Responsive Designs */
@media screen and (max-width: 1200px) {
    .formats-grid,
    .solution-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mdr-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-content {
        padding-right: 0;
    }

    .badge {
        justify-content: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .market-grid,
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
   

    .format-card,
    .siem-card,
    .solution-card,
    .feature-card,
    .market-card,
    .driver-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .info-item {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4da6;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid var(--pink-accent);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error and Success States */
.error {
    border-color: #ff4444 !important;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
}

.success {
    border-color: #00C851 !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

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

    body {
        background-color: white;
        color: black;
    }

    .hero-content h1,
    .section-title {
        color: black;
        -webkit-text-fill-color: black;
    }

    .team-member,
    .format-card,
    .solution-card,
    .feature-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: none;
        box-shadow: none;
    }
}