:root {
--primary-color: #00d4ff;
--secondary-color: #0099ff;
--dark-bg: #0a0e27;
--darker-bg: #050816;
--text-light: #e0e0e0;
--text-white: #ffffff;
--accent-cyan: #00ffff;
--accent-purple: #8b5cf6;
--card-bg: #1a1f3a;
--border-color: #2d3348;
--success-color: #10b981;
--warning-color: #f59e0b;
}

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

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;
overflow-x: hidden;
}

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

.main-navigation {
background: rgba(10, 14, 39, 0.95);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid var(--primary-color);
box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

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

.brand-logo img {
border-radius: 50%;
border: 2px solid var(--primary-color);
box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.brand-logo span {
font-size: 1.5rem;
font-weight: bold;
color: var(--text-white);
text-transform: uppercase;
letter-spacing: 1px;
}

.nav-menu {
display: flex;
list-style: none;
gap: 30px;
}

.nav-menu a {
color: var(--text-light);
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}

.nav-menu a:hover, .nav-menu a.active-link {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-white);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.hero-section {
display: flex;
align-items: center;
justify-content: space-between;
padding: 100px 20px;
max-width: 1200px;
margin: 0 auto;
gap: 50px;
}

.hero-content {
flex: 1;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: fadeInUp 1s ease;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 30px;
color: var(--text-light);
animation: fadeInUp 1.2s ease;
}

.hero-image {
flex: 1;
animation: fadeInRight 1.5s ease;
}

.hero-image img {
width: 100%;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.neon-button {
display: inline-block;
padding: 15px 40px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-white);
text-decoration: none;
border-radius: 50px;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
animation: fadeInUp 1.4s ease;
}

.neon-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.7);
}

.features-grid {
padding: 80px 20px;
background: rgba(26, 31, 58, 0.5);
}

.section-heading {
text-align: center;
font-size: 2.5rem;
margin-bottom: 60px;
color: var(--text-white);
}

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

.feature-item {
background: var(--card-bg);
padding: 40px 30px;
border-radius: 15px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
text-align: center;
}

.feature-item:hover {
transform: translateY(-10px);
border-color: var(--primary-color);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.icon-box {
width: 80px;
height: 80px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: var(--text-white);
}

.feature-item h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--text-white);
}

.technology-showcase {
padding: 80px 20px;
}

.tech-content {
display: flex;
align-items: center;
gap: 50px;
}

.tech-text {
flex: 1;
}

.tech-text h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--text-white);
}

.tech-benefits {
list-style: none;
margin-top: 25px;
}

.tech-benefits li {
padding: 12px 0;
display: flex;
align-items: center;
gap: 15px;
font-size: 1.1rem;
}

.tech-benefits i {
color: var(--success-color);
font-size: 1.3rem;
}

.tech-visual {
flex: 1;
}

.tech-visual img {
width: 100%;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.statistics-banner {
padding: 60px 20px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.stat-box {
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: bold;
color: var(--text-white);
margin-bottom: 10px;
}

.stat-label {
font-size: 1.1rem;
color: var(--text-white);
opacity: 0.9;
}

.cta-section {
padding: 100px 20px;
text-align: center;
background: rgba(26, 31, 58, 0.5);
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--text-white);
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.site-footer {
background: var(--darker-bg);
padding: 60px 20px 20px;
border-top: 2px solid var(--primary-color);
}

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

.footer-column h4 {
color: var(--text-white);
margin-bottom: 20px;
font-size: 1.3rem;
}

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

.footer-column ul li {
margin-bottom: 10px;
}

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

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

.registration-number {
margin-top: 15px;
font-size: 0.9rem;
opacity: 0.8;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--border-color);
color: var(--text-light);
}

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 80px 20px;
text-align: center;
}

.page-header h1 {
font-size: 3rem;
color: var(--text-white);
margin-bottom: 15px;
}

.blog-grid-section {
padding: 80px 20px;
}

.blog-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 40px;
}

.blog-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.blog-image-wrapper {
position: relative;
overflow: hidden;
}

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

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

.new-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--warning-color);
color: var(--text-white);
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
}

.blog-card-content {
padding: 25px;
}

.blog-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 0.9rem;
color: var(--text-light);
}

.blog-card h2 {
font-size: 1.5rem;
margin-bottom: 15px;
}

.blog-card h2 a {
color: var(--text-white);
text-decoration: none;
transition: color 0.3s ease;
}

.blog-card h2 a:hover {
color: var(--primary-color);
}

.read-more-link {
color: var(--primary-color);
text-decoration: none;
font-weight: bold;
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 15px;
transition: gap 0.3s ease;
}

.read-more-link:hover {
gap: 15px;
}

.newsletter-section {
padding: 80px 20px;
background: rgba(26, 31, 58, 0.5);
}

.newsletter-box {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.newsletter-box h2 {
font-size: 2.5rem;
margin-bottom: 15px;
color: var(--text-white);
}

.newsletter-form {
display: flex;
gap: 15px;
margin-top: 30px;
}

.newsletter-form input {
flex: 1;
padding: 15px 25px;
border: 2px solid var(--border-color);
background: var(--card-bg);
color: var(--text-white);
border-radius: 50px;
font-size: 1rem;
}

.newsletter-form input:focus {
outline: none;
border-color: var(--primary-color);
}

.about-mission {
padding: 80px 20px;
}

.mission-content {
display: flex;
align-items: center;
gap: 50px;
}

.mission-text {
flex: 1;
}

.mission-text h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--text-white);
}

.mission-image {
flex: 1;
}

.mission-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.team-section {
padding: 80px 20px;
background: rgba(26, 31, 58, 0.5);
}

.team-intro {
text-align: center;
font-size: 1.2rem;
margin-bottom: 50px;
color: var(--text-light);
}

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

.team-member-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.team-member-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.member-photo img {
width: 100%;
height: 350px;
object-fit: cover;
}

.member-info {
padding: 25px;
}

.member-info h3 {
font-size: 1.5rem;
color: var(--text-white);
margin-bottom: 10px;
}

.member-role {
color: var(--primary-color);
font-weight: bold;
margin-bottom: 15px;
display: block;
}

.values-section {
padding: 80px 20px;
}

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

.value-box {
background: var(--card-bg);
padding: 40px 30px;
border-radius: 15px;
border: 1px solid var(--border-color);
text-align: center;
transition: all 0.3s ease;
}

.value-box:hover {
transform: translateY(-10px);
border-color: var(--primary-color);
}

.value-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.value-box h3 {
font-size: 1.5rem;
color: var(--text-white);
margin-bottom: 15px;
}

.contact-section {
padding: 80px 20px;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
max-width: 1200px;
margin: 0 auto;
}

.contact-info h2 {
font-size: 2rem;
color: var(--text-white);
margin-bottom: 30px;
}

.contact-detail {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: var(--text-white);
flex-shrink: 0;
}

.contact-text h3 {
color: var(--text-white);
margin-bottom: 8px;
}

.company-registration {
margin-top: 30px;
padding: 20px;
background: var(--card-bg);
border-radius: 10px;
border-left: 4px solid var(--primary-color);
}

.contact-form-wrapper h2 {
font-size: 2rem;
color: var(--text-white);
margin-bottom: 30px;
}

.form-group {
margin-bottom: 25px;
}

.form-group label {
display: block;
margin-bottom: 10px;
color: var(--text-white);
font-weight: 500;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 15px;
border: 2px solid var(--border-color);
background: var(--card-bg);
color: var(--text-white);
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.map-section {
padding: 80px 20px;
background: rgba(26, 31, 58, 0.5);
}

.map-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 40px;
color: var(--text-white);
}

.map-container {
max-width: 1200px;
margin: 0 auto;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

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

.modal-content {
background: var(--card-bg);
padding: 50px;
border-radius: 15px;
text-align: center;
max-width: 500px;
border: 2px solid var(--primary-color);
position: relative;
}

.modal-close {
position: absolute;
top: 15px;
right: 20px;
font-size: 2rem;
color: var(--text-white);
cursor: pointer;
}

.modal-icon {
font-size: 4rem;
color: var(--success-color);
margin-bottom: 20px;
}

.modal-content h2 {
color: var(--text-white);
margin-bottom: 15px;
}

.post-container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}

.post-header {
margin-bottom: 40px;
}

.post-meta-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}

.back-link {
color: var(--primary-color);
text-decoration: none;
display: flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

.back-link:hover {
gap: 12px;
}

.post-date {
color: var(--text-light);
}

.post-header h1 {
font-size: 2.8rem;
color: var(--text-white);
margin-bottom: 20px;
line-height: 1.2;
}

.post-author-info {
display: flex;
gap: 30px;
color: var(--text-light);
}

.post-featured-image {
margin-bottom: 50px;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.post-featured-image img {
width: 100%;
display: block;
}

.post-content {
font-size: 1.1rem;
line-height: 1.8;
}

.lead-paragraph {
font-size: 1.3rem;
color: var(--text-white);
margin-bottom: 30px;
line-height: 1.6;
}

.post-content h2 {
font-size: 2rem;
color: var(--text-white);
margin: 40px 0 20px;
}

.post-content h3 {
font-size: 1.5rem;
color: var(--text-white);
margin: 30px 0 15px;
}

.post-content p {
margin-bottom: 20px;
}

.post-footer {
margin-top: 60px;
padding-top: 30px;
border-top: 2px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
}

.post-tags {
display: flex;
gap: 15px;
align-items: center;
}

.post-tags a {
background: var(--card-bg);
padding: 8px 15px;
border-radius: 20px;
color: var(--text-light);
text-decoration: none;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.post-tags a:hover {
background: var(--primary-color);
color: var(--text-white);
border-color: var(--primary-color);
}

.share-btn {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-white);
border: none;
padding: 10px 20px;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
transition: transform 0.3s ease;
}

.share-btn:hover {
transform: scale(1.05);
}

.related-posts {
margin-top: 80px;
}

.related-posts h3 {
font-size: 2rem;
color: var(--text-white);
margin-bottom: 30px;
}

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

.related-post-card {
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
text-decoration: none;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.related-post-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.related-post-card img {
width: 100%;
height: 150px;
object-fit: cover;
}

.related-post-card h4 {
padding: 20px;
color: var(--text-white);
font-size: 1.1rem;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--card-bg);
padding: 30px 20px;
box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
z-index: 1500;
display: none;
border-top: 2px solid var(--primary-color);
}

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

.cookie-text h3 {
color: var(--text-white);
margin-bottom: 10px;
}

.cookie-text p {
margin-bottom: 15px;
}

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

.cookie-actions {
display: flex;
gap: 15px;
margin-top: 20px;
flex-wrap: wrap;
}

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

.cookie-btn.accept-all {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--text-white);
}

.cookie-btn.customize {
background: var(--card-bg);
color: var(--text-white);
border: 2px solid var(--border-color);
}

.cookie-btn.decline {
background: transparent;
color: var(--text-light);
border: 2px solid var(--border-color);
}

.cookie-btn:hover {
transform: translateY(-2px);
}

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

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@media (max-width: 768px) {
.nav-menu {
flex-direction: column;
gap: 10px;
}

.hero-section, .tech-content, .mission-content {
flex-direction: column;
}

.hero-content h1 {
font-size: 2.5rem;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

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

.post-header h1 {
font-size: 2rem;
}

.cookie-actions {
flex-direction: column;
}
}