:root {
    --bg-dark: #050505;
    --bg-card: #0f0f13;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary: #00f2ff; /* Cyan */
    --secondary: #4361ee; /* Royal Blue */
    --accent: #7209b7; /* Purple */
    --gold: #FFC107; /* Goldish-Yellow from Logo */
    --orange: #ff9100; /* Orange */
    --success: #00ff9d;
    --gradient-main: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-glow: linear-gradient(45deg, var(--primary), var(--gold));
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Roboto Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Override Bootstrap text colors for dark theme */
.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-muted) !important;
}

.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.btn-glow {
    background: var(--secondary);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(67, 97, 238, 0.5);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(67, 97, 238, 0.8);
}

.btn-orange {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    margin-top: 20px;
}

.btn-orange:hover {
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    color: var(--gold);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2); /* Gold border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--gold); /* Gold text for logo */
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(255, 193, 7, 0.45);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.7);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

/* Cyber Brackets Effect */
.nav-links a::before, .nav-links a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: var(--primary); /* Cyan brackets for contrast */
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-links a::before {
    content: '[';
    left: -15px;
    transform: translateY(-50%) translateX(10px);
}

.nav-links a::after {
    content: ']';
    right: -15px;
    transform: translateY(-50%) translateX(-10px);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.nav-links a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(15, 15, 19, 0.95);
    min-width: 240px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    top: 100%;
    left: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none; /* Override uppercase from nav-links */
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    padding-left: 25px; /* Slide effect */
}

/* Remove brackets from dropdown items */
.dropdown-content a::before, .dropdown-content a::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(67, 97, 238, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.1) 0%, transparent 25%);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-content {
    max-width: 600px;
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Cyber Shield Animation */
.cyber-shield-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    font-size: 8rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    z-index: 2;
    filter: drop-shadow(0 0 15px var(--primary));
    animation: pulse-shield 3s infinite ease-in-out;
}

.shield-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-glow);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
    animation: pulse-glow 4s infinite alternate;
}

.orbit {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(15, 15, 19, 0.8);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.orbit-1 { animation: orbit-1 8s linear infinite; }
.orbit-2 { animation: orbit-2 12s linear infinite reverse; }
.orbit-3 { animation: orbit-3 10s linear infinite; }

@keyframes pulse-shield {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px var(--primary)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px var(--primary)); }
}

@keyframes pulse-glow {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes orbit-1 {
    0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes orbit-2 {
    0% { transform: rotate(120deg) translateX(180px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(180px) rotate(-480deg); }
}

@keyframes orbit-3 {
    0% { transform: rotate(240deg) translateX(160px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(160px) rotate(-600deg); }
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-glow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    background: rgba(0, 242, 255, 0.05);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tech Specs / How it works */
.tech-specs {
    padding: 100px 0;
    background: #08080a;
}

.specs-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.specs-content {
    flex: 1;
    min-width: 300px;
}

.specs-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.spec-item {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.spec-item.active {
    border-left-color: var(--primary);
}

.spec-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.spec-item p {
    color: var(--text-muted);
}

.terminal-window {
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    font-family: var(--font-mono);
}

.terminal-header {
    background: #252525;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-body {
    padding: 20px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.code-line {
    margin-bottom: 10px;
    display: block;
}

.code-success { color: var(--success); }
.code-primary { color: var(--primary); }
.code-cursor::after {
    content: '_';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020202;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Integration Section */
.integration {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0e 100%);
}

.code-viewer {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.code-header {
    background: #252526;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.code-tabs {
    display: flex;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 15px 25px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: var(--primary);
    background: #1e1e1e;
    border-top: 2px solid var(--primary);
}

.code-content {
    padding: 30px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d4d4d4;
    overflow-x: auto;
}

.code-pane {
    display: none;
}

.code-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Syntax Highlighting */
.keyword { color: #569cd6; } /* Keyword */
.string { color: #ce9178; } /* String */
.function { color: #dcdcaa; } /* Function */
.comment { color: #6a9955; font-style: italic; } /* Comment */
.num { color: #b5cea8; } /* Number */
.type { color: #4ec9b0; } /* Type */

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--font-mono);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        width: min(86vw, 320px);
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        background: rgba(10, 10, 12, 0.98);
        border: 1px solid rgba(255, 193, 7, 0.25);
        border-radius: 12px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    }

    header.menu-open .nav-links {
        display: flex;
    }

    .nav-links > a,
    .nav-links .dropdown > a {
        padding: 12px 16px;
    }

    .nav-links .dropdown {
        width: 100%;
    }

    .nav-links .dropdown-content {
        position: static;
        display: block;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0 8px 12px;
        animation: none;
    }

    .nav-links .dropdown-content a {
        padding: 8px 16px;
        border-bottom: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .code-header {
        padding: 0 10px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Feature Rows */
.feature-row {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-visual img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-visual-placeholder {
    width: 100%;
    height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.feature-visual-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.05) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.feature-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-main);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-family: var(--font-mono);
    font-weight: bold;
}

@media (max-width: 768px) {
    .feature-row {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .feature-list {
        text-align: left;
        display: inline-block;
    }
}

/* Hero Icons */
.hero-icons-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.technology-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.technology-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.technology-icon:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.2);
    color: #fff;
    background: rgba(0, 242, 255, 0.1);
}

.technology-icon:nth-child(2) {
    margin-top: -40px; /* Stagger effect */
    color: var(--gold);
    border-color: rgba(255, 193, 7, 0.2);
}

.technology-icon:nth-child(2):hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
    background: rgba(255, 193, 7, 0.1);
}

.technology-icon:nth-child(3) {
    color: var(--secondary);
    border-color: rgba(67, 97, 238, 0.2);
}

.technology-icon:nth-child(3):hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.2);
    background: rgba(67, 97, 238, 0.1);
}

