:root {
    --color-bg: #1F2B37;
    --color-bg-dark: #151d25;
    --color-primary: #004ECA;
    --color-secondary: #00C7F0;
    --color-text: #FFFFFF;
    --color-text-muted: #a0aab5;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --header-height: 70px;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(31, 43, 55, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 199, 240, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    height: 40px;
}

.logo-text {
    height: 25px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover,
nav a.active {
    color: var(--color-secondary);
}

.btn-nav {
    border: 1px solid var(--color-secondary);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--color-secondary);
}

.btn-nav:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
    box-shadow: 0 0 15px var(--color-secondary);
}

.lang-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0.5;
}

.lang-link:hover {
    opacity: 0.8;
    background: rgba(0, 199, 240, 0.1);
}

.lang-link.active {
    opacity: 1;
    background: rgba(0, 199, 240, 0.2);
    box-shadow: 0 0 10px rgba(0, 199, 240, 0.3);
}

.flag-icon {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: radial-gradient(circle at top right, #1a2633 0%, var(--color-bg) 60%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 199, 240, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    margin-right: 15px;
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 0 20px var(--color-primary);
}

.btn-secondary {
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-secondary:hover {
    background: rgba(0, 199, 240, 0.1);
    box-shadow: 0 0 20px rgba(0, 199, 240, 0.4);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.shield-hologram {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-hologram img {
    width: 150px;
    z-index: 2;
    filter: drop-shadow(0 0 20px var(--color-primary));
    animation: float 6s ease-in-out infinite;
}

.ring {
    position: absolute;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    animation: spin 10s linear infinite;
}

.ring-2 {
    width: 140%;
    height: 140%;
    border: 1px dashed var(--color-primary);
    animation: spin 20s linear infinite reverse;
}

@keyframes float {

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

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

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

.features {
    padding: 100px 0;
    background: var(--color-bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.line {
    width: 100px;
    height: 3px;
    background: var(--color-secondary);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--color-secondary);
}

.about-section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-section-header .line {
    margin: 0;
}

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

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 100%;
}

.carousel-container {
    overflow: hidden;
    flex: 1;
    padding: 15px 0;
}

.carousel-track {
    display: flex;
    gap: 2%;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    flex: 0 0 32%;
    width: 32%;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.carousel-card .card {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .carousel-card {
        flex: 0 0 49%;
        width: 49%;
        height: 440px;
        min-height: 440px;
        max-height: 440px;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 100%;
        width: 100%;
        height: 460px;
        min-height: 460px;
        max-height: 460px;
    }
    
    .carousel-wrapper {
        gap: 10px;
    }
    
    .carousel-track {
        gap: 0;
    }
}

.carousel-btn {
    background: rgba(0, 199, 240, 0.1);
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: Arial, sans-serif;
    vertical-align: middle;
}

.carousel-btn:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
    box-shadow: 0 0 20px var(--color-secondary);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary);
}

.indicator:hover {
    background: rgba(0, 199, 240, 0.6);
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.card p {
    color: var(--color-text-muted);
}

.about {
    padding: 100px 0;
    background-color: var(--color-bg);
    position: relative;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.highlight {
    color: var(--color-secondary);
    font-weight: 700;
}

.methodology {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

.why-us {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(31, 43, 55, 0.95), rgba(21, 29, 37, 0.95));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-primary);
}

.step-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 1;
}

.process-step h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}


.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.reason-item {
    padding: 40px;
    background: rgba(0, 78, 202, 0.05);
    border: 1px solid rgba(0, 78, 202, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.reason-item:hover {
    background: rgba(0, 78, 202, 0.1);
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

footer {
    background: #0b1015;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 3px solid var(--color-primary);
}

.footer-logo {
    display: block;
    width: fit-content;
}

.footer-logo img {
    height: 40px !important;
    max-width: 200px !important;
    width: auto !important;
    max-height: 40px !important;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    display: inline-block;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-col h4 {
        margin-top: 20px;
    }
}


body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: none;
}

.card {
    background: rgba(30, 40, 50, 0.6);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card h3 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.4rem;
}

.card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.card .tech-example {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-family: monospace;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero-visual {
        transform: scale(0.8);
    }

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

@media (max-width: 1024px) and (min-width: 769px) {
    :root {
        --header-height: 68px;
    }
    
    header {
        padding: 12px 0;
    }
    
    header .container {
        flex-direction: row;
        align-items: center;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    nav a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .btn-nav {
        padding: 6px 15px;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 40px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 90px;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    header {
        padding: 10px 0;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.8rem;
    }

    .lang-toggle {
        padding: 2px;
        gap: 4px;
    }
    
    .lang-link {
        padding: 3px;
    }
    
    .flag-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        margin-top: 30px;
        max-width: 100%;
    }

    .subtitle {
        border-left: none;
        padding-left: 0;
        font-size: 1rem;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn {
        margin-right: 0;
        width: 100%;
    }

    .features {
        padding: 60px 0;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .shield-hologram {
        width: 200px;
        height: 200px;
    }

    .shield-hologram img {
        width: 100px;
    }
}

/* Legal Pages - Simple padding for header clearance */

.section-header .last-updated {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

main .about-text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

main .about-text ul li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

main .about-text ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.3em;
    font-weight: bold;
}

main .about-text ul li strong {
    color: var(--color-text);
}

main .about-text .btn {
    margin-top: 40px;
}


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

    .logo-text {
        height: 20px;
    }

    .logo-icon {
        height: 30px;
    }
}
