:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --background: #0a0a0a;
    --surface: #111111;
    --border: #333333;
    --shadow: rgba(0, 0, 0, 0.8);
    --glow: rgba(0, 212, 255, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.50);
    backdrop-filter: blur(60px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;   /* Add this */
    top: 0;                /* Top of screen */
    left: 0;               /* Left of screen */
    padding: 1rem;         /* Optional: space from edges */
    z-index: 1000;         /* Optional: make sure it stays on top */
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    margin-left: 0;        /* Remove negative margin */
}

.nav-logo:hover {
    transform: scale(1.25);
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right:0px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    position: absolute;  /* or 'fixed' if you want it to stay on scroll */
    top: 0;
    right: 0;
    padding: 1rem;        /* Optional spacing from edge */
    z-index: 1000;
    margin-left: 0;       /* Remove the large margin */
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    overflow: hidden;
}
.about-hero .hero-subtitle.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    padding-left: 2rem;
}

.hero-welcome {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-main {
    display: block;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-highlight {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-sub {
    display: block;
    color: var(--text-secondary);
    font-size: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 400px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

/* Geometric Sphere */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    position: relative;
}

.geometric-sphere {
    position: relative;
    width: 400px;
    height: 400px;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translate(-50%, -50%) rotateX(45deg) rotateY(45deg);
    border-radius: 20px;
    box-shadow: 0 0 60px var(--glow);
    animation: coreRotate 20s linear infinite;
}

.sphere-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: ringRotate 15s linear infinite;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation: ringRotate 25s linear infinite reverse;
    border-style: dashed;
    opacity: 0.4;
}

.ring-3 {
    width: 360px;
    height: 360px;
    animation: ringRotate 35s linear infinite;
    border-width: 1px;
    opacity: 0.3;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    transform-origin: center;
}

.line-1 {
    top: 50%;
    left: 10%;
    right: 10%;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-2 {
    top: 30%;
    left: 20%;
    right: 20%;
    transform: rotate(45deg);
    animation: lineGlow 3s ease-in-out infinite 0.5s;
}

.line-3 {
    top: 70%;
    left: 20%;
    right: 20%;
    transform: rotate(-45deg);
    animation: lineGlow 3s ease-in-out infinite 1s;
}

.line-4 {
    top: 50%;
    left: 25%;
    right: 25%;
    transform: rotate(90deg);
    animation: lineGlow 3s ease-in-out infinite 1.5s;
}

.glow-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow);
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.node-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 1rem;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.control-btn:hover,
.control-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--background);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-secondary.large {
    padding: 15px 31px;
    font-size: 1rem;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--surface);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features Grid - 4 columns on desktop */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.feature-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* About Hero */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.bg-element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.bg-element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 6s;
}

/* Mission Section */
.mission {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Orbital Animation */
.visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.orbit-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 150px;
    height: 150px;
    animation: rotate 10s linear infinite;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation: rotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 250px;
    height: 250px;
    animation: rotate 20s linear infinite;
}

.planet {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--glow);
}

.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--glow);
    animation: pulse 2s infinite;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--surface);
}

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

.value-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

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

.value-icon {
    margin-bottom: 1.5rem;
}

.icon-hexagon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary-color);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Team Section */
.team {
    padding: 100px 0;
}

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

.team-member {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.team-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
    background: var(--surface);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--background);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.timeline-content {
    background: rgba(0, 212, 255, 0.05);
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin: 0 2rem;
    flex: 1;
    border-radius: 8px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: var(--background);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-group h4 {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

@keyframes coreRotate {
    0% { transform: translate(-50%, -50%) rotateX(45deg) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(45deg) rotateY(360deg); }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

[data-animate="slide-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

[data-animate="slide-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

/* === About-page hero tweaks === */
.about-heading {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.centered {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-heading {
        font-size: 2.4rem;
    }
    
    .hero-tagline {
        font-size: 1.6rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .geometric-sphere {
        width: 300px;
        height: 300px;
    }
    
    .hero-controls {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-content {
        margin: 1rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
/* Products Page Styles */
.products-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
}

.products-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.products-heading {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.products-section {
    padding: 100px 0;
    background: var(--surface);
}

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

.product-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.product-card.featured {
    border-color: var(--accent-color);
    background: rgba(255, 99, 54, 0.05);
}

.product-card.featured:hover {
    border-color: var(--accent-color);
    background: rgba(255, 99, 54, 0.08);
    box-shadow: 0 15px 40px rgba(255, 99, 54, 0.2);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--background);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.special {
    background: var(--accent-color);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.product-specs {
    margin-bottom: 1.2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-features {
    margin-bottom: 1.5rem;
}

.feature {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-btn {
    width: 100%;
    padding: 12px;
    margin-top: auto;
    border-radius: 8px;
}

.products-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .products-heading {
        font-size: 2.4rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .product-content {
        padding: 1rem;
    }
    
    .spec-row {
        font-size: 0.8rem;
    }
}
/* Product Showcase Section */
.product-showcase {
    padding: 100px 0;
    background: var(--background);
}

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

.showcase-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.showcase-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.showcase-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.showcase-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.showcase-specs span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Enhanced Feature Cards */
.feature-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(187deg) brightness(119%) contrast(119%);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Contact Preview */
.contact-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.contact-preview .contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-preview .contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-preview .contact-item a:hover {
    text-decoration: underline;
}

/* Enhanced CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer Enhancements */
.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-preview {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-specs {
        justify-content: center;
    }
}
/* ========================================
   IMPROVED NEWS TILES STYLING
======================================== */

.news-tiles-section {
    padding: 100px 0;
    background: var(--surface);
}

.news-tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.news-tile-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.news-tile-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.25);
}

.news-tile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.news-tile-card:hover::before {
    transform: scaleX(1);
}

.news-tile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-tile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.news-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 4px;
}

.news-source {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-tile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-headline {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.news-tile-link:hover .news-headline {
    color: var(--primary-color);
}

.news-summary {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: auto;
    font-size: 0.95rem;
    flex: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.external-link-indicator {
    font-size: 0.8rem;
    color: var(--accent-color);
    background: rgba(255, 99, 54, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Hover animations */
.news-tile-card:hover .news-logo {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.news-tile-card:hover .external-link-indicator {
    background: rgba(255, 99, 54, 0.2);
    transform: translateX(3px);
    transition: all 0.3s ease;
}

/* Press Kit Section Updates */
.press-kit-section {
    padding: 80px 0;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.press-kit-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.press-kit-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.press-kit-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.press-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.press-contact-item {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: left;
}

.press-contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.press-contact-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.press-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.press-contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-tiles-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-tile-link {
        padding: 1.5rem;
    }
    
    .news-headline {
        font-size: 1.2rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .press-contacts {
        grid-template-columns: 1fr;
    }
    
    .press-contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .news-tile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-logo {
        width: 35px;
        height: 35px;
    }
    
    .news-headline {
        font-size: 1.1rem;
    }
    
    .news-summary {
        font-size: 0.9rem;
    }
}

/* Animation delays for staggered effect */
.news-tile-card:nth-child(1) { animation-delay: 0.1s; }
.news-tile-card:nth-child(2) { animation-delay: 0.2s; }
.news-tile-card:nth-child(3) { animation-delay: 0.3s; }
.news-tile-card:nth-child(4) { animation-delay: 0.4s; }
.news-tile-card:nth-child(5) { animation-delay: 0.5s; }
.news-tile-card:nth-child(6) { animation-delay: 0.6s; }
.news-tile-card:nth-child(7) { animation-delay: 0.7s; }
.news-tile-card:nth-child(8) { animation-delay: 0.8s; }
.news-tile-card:nth-child(9) { animation-delay: 0.9s; }
