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

:root {
    --primary-blue: #00d9ff;
    --primary-green: #00ff88;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --text-light: #e0e7ff;
    --text-gray: #a0aec0;
    --glow-blue: 0 0 20px rgba(0, 217, 255, 0.5);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

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

.main-nav {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    box-shadow: var(--glow-green);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
    box-shadow: var(--glow-blue);
    background: rgba(0, 217, 255, 0.1);
}

.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 255, 136, 0.1));
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent, var(--darker-bg));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-blue);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-button, .cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: var(--glow-blue);
    border: none;
    cursor: pointer;
}

.cta-button:hover, .cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
}

.main-content {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.intro-section {
    margin-bottom: 4rem;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.features-grid {
    margin-bottom: 4rem;
}

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

.feature-card {
    background: rgba(10, 14, 39, 0.7);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--glow-blue);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-green);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-desc {
    color: var(--text-gray);
}

.tech-showcase {
    margin-bottom: 4rem;
}

.tech-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tech-img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.tech-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.tech-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.tech-list li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 15px;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.main-footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-blue);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-section p, .footer-links a {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

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

.social-links a {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--text-gray);
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 255, 136, 0.1));
}

.page-title {
    font-size: 3rem;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.blog-post-card {
    background: rgba(10, 14, 39, 0.7);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
}

.post-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.blog-post-card:hover .post-image {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.post-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.about-story {
    margin: 3rem 0;
}

.story-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.team-card {
    background: rgba(10, 14, 39, 0.7);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    margin-bottom: 1rem;
    box-shadow: var(--glow-blue);
}

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

.team-role {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.values-section {
    margin: 3rem 0;
}

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

.value-card {
    background: rgba(10, 14, 39, 0.7);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

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

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info-section, .contact-form-section {
    background: rgba(10, 14, 39, 0.7);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-block p, .info-block a {
    color: var(--text-gray);
    text-decoration: none;
}

.info-block a:hover {
    color: var(--primary-blue);
}

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

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

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

.form-input, .form-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    padding: 0.8rem;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--darker-bg);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: var(--dark-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    margin: 15% auto;
    padding: 2rem;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.8);
}

.modal-close {
    color: var(--text-gray);
    float: right;
    font-size: 2rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary-blue);
}

.modal-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--darker-bg);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.post-article {
    padding: 2rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--text-gray);
    font-size: 1rem;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.article-content h3 {
    color: var(--primary-green);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.3);
}

.back-to-blog, .next-post {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-to-blog:hover, .next-post:hover {
    color: var(--primary-green);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    border-top: 2px solid var(--primary-blue);
    padding: 2rem;
    z-index: 1500;
    box-shadow: 0 -5px 30px rgba(0, 217, 255, 0.5);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cookie-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--darker-bg);
}

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

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.cookie-link {
    color: var(--primary-green);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .tech-details {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}