:root {
    /* Dark mode colors (default) */
    --primary-bg: #0a192f;
    --secondary-bg: #112240;
    --primary-text: #e6f1ff;
    --secondary-text: #8892b0;
    --accent-color: #64ffda;
    --accent-color-darker: #00bfa5;
    --accent-color-transparent: rgba(100, 255, 218, 0.1);
    --navbar-bg: rgba(10, 25, 47, 0.95);
    --card-bg: #112240;
    --footer-bg: #020c1b;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Share Tech Mono', monospace;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-theme: all 0.5s ease;
}

/* Light mode colors */
[data-theme="light"] {
    --primary-bg: #f8f9fa;
    --secondary-bg: #ffffff;
    --primary-text: #212529;
    --secondary-text: #495057;
    --accent-color: #007bff; /* A softer, more standard blue for light mode */
    --accent-color-darker: #0056b3;
    --accent-color-transparent: rgba(0, 123, 255, 0.1);
    --navbar-bg: rgba(248, 249, 250, 0.95);
    --card-bg: #ffffff;
    --footer-bg: #e9ecef;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(180deg, #0a192f 0%, #071426 100%);
    color: var(--primary-text);
    line-height: 1.6;
}

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

/* Header */
.navbar {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-standard);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(7, 20, 38, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo svg {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
    position: relative;
}

.nav-links a {
    color: var(--primary-text);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Offset for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.hero-section h1 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.hero-section h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.hero-section .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--secondary-text);
}

.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color-transparent);
    transition: var(--transition-standard);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

.btn-primary:hover::before {
    left: 0;
}

/* General Section Styling */
section {
    padding: 8rem 0;
    position: relative;
}

h2 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    color: var(--primary-text);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-darker));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(100, 255, 218, 0.02) 0%, transparent 70%);
    z-index: -1;
}

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

.founder-card {
    background-color: var(--secondary-bg);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition-standard);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-darker));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(100, 255, 218, 0.2);
}

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

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    transition: var(--transition-standard);
}

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

.founder-card h3 {
    font-size: 1.8rem;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.founder-bio {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    position: relative;
    background-color: rgba(10, 25, 47, 0.3);
    padding: 8rem 0;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    filter: blur(30px);
    animation: pulse-glow 8s infinite alternate;
}

.values-section h2 {
    position: relative;
    z-index: 2;
}

.values-section h2::before {
    content: 'SCALE';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: bold;
    color: rgba(100, 255, 218, 0.03);
    font-family: var(--font-secondary);
    letter-spacing: 15px;
    z-index: -1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-card {
    background-color: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(100, 255, 218, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.value-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    background-color: rgba(17, 34, 64, 0.9);
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    z-index: 2;
    transition: all 0.5s ease;
}

.value-circuit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px dashed var(--accent-color);
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.value-circuit::before,
.value-circuit::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.value-circuit::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.value-circuit::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
}

.value-card:hover .value-circuit {
    animation-duration: 10s;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-text);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: width 0.5s ease;
}

.value-card:hover h3::after {
    width: 100%;
}

.value-card p {
    color: var(--secondary-text);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Values connector - creates a visual connection between values */
.values-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.2;
    z-index: 1;
}

/* Animations for values section */
@keyframes pulse-glow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

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

/* Add a special animation for the values section when it comes into view */
.values-section .reveal.active {
    animation: value-reveal 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes value-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for value cards */
.values-grid .value-card:nth-child(1) {
    transition-delay: 0.1s;
}
.values-grid .value-card:nth-child(2) {
    transition-delay: 0.2s;
}
.values-grid .value-card:nth-child(3) {
    transition-delay: 0.3s;
}
.values-grid .value-card:nth-child(4) {
    transition-delay: 0.4s;
}
.values-grid .value-card:nth-child(5) {
    transition-delay: 0.5s;
}

/* Add a subtle particle effect to the values section */
.values-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 8px),
        radial-gradient(circle at 75% 60%, rgba(100, 255, 218, 0.1) 0%, transparent 8px),
        radial-gradient(circle at 40% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 8px),
        radial-gradient(circle at 85% 15%, rgba(100, 255, 218, 0.1) 0%, transparent 8px),
        radial-gradient(circle at 60% 40%, rgba(100, 255, 218, 0.1) 0%, transparent 8px);
    background-size: 500px 500px;
    opacity: 0.5;
    z-index: -1;
}

/* Responsive adjustments for values section */
@media (max-width: 992px) {
    .values-section h2::before {
        font-size: 80px;
        top: -60px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        gap: 2rem;
    }
    
    .value-card {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .values-section h2::before {
        font-size: 60px;
        top: -40px;
        letter-spacing: 8px;
    }
    
    .value-icon {
        font-size: 2rem;
    }
    
    .value-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .values-section {
        padding: 6rem 0;
    }
    
    .values-section h2::before {
        font-size: 40px;
        top: -30px;
        letter-spacing: 5px;
    }
    
    .value-card {
        padding: 2rem 1.2rem 1.5rem;
    }
    
    .value-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .value-icon {
        font-size: 1.8rem;
    }
}

/* Values Section Special Effects */
.value-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.circuit-dot {
    animation: pulse-dot 2s infinite alternate;
}

@keyframes pulse-dot {
    0% {
        transform: rotate(var(--angle)) translate(40px, 0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: rotate(var(--angle)) translate(40px, 0) scale(1.5);
        opacity: 0.8;
    }
}

/* Add a special highlight effect for the SCALE acronym */
.values-section h2 {
    position: relative;
    display: inline-block;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
    animation: pulse-width 3s infinite alternate;
}

@keyframes pulse-width {
    0% {
        width: 60px;
        opacity: 0.7;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

/* Add a tech-inspired background pattern to the values section */
.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

/* Add a subtle glow to the value cards on hover */
.value-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(100, 255, 218, 0.2),
                0 0 0 1px rgba(100, 255, 218, 0.2);
}

/* Add a special animation for the value icons */
.value-icon {
    animation: pulse-icon 3s infinite alternate;
}

@keyframes pulse-icon {
    0% {
        box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(100, 255, 218, 0.5);
    }
}

/* Services Section */
.services-section {
    background-color: rgba(17, 34, 64, 0.3);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(10, 25, 47, 0.8));
    z-index: -1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--secondary-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--accent-color-transparent), transparent);
    transition: var(--transition-standard);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.service-card:hover::after {
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color-transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--transition-standard);
}

.service-card:hover .service-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    position: relative;
    background-color: rgba(10, 25, 47, 0.5);
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at left, rgba(100, 255, 218, 0.02) 0%, transparent 70%);
    z-index: -1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-bg);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
    transition: var(--transition-standard);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--secondary-text);
    max-width: 400px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 80px;
        text-align: left;
        align-items: flex-start;
    }
    
    .process-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Contact Section */
.contact-section {
    text-align: center;
    position: relative;
    padding-bottom: 10rem; /* Add more padding to the bottom */
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(7, 20, 38, 0.8), transparent);
    z-index: -1;
}

.contact-wrapper {
    max-width: 750px;
    margin: 4rem auto 0;
    position: relative;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem;
    background-color: var(--secondary-bg);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.5rem; /* Add padding for icon */
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    background-color: rgba(17, 34, 64, 0.7);
    color: var(--primary-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-standard);
}

.contact-form textarea {
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    resize: vertical;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    color: var(--secondary-text);
    transition: color 0.3s ease;
}

.contact-form input:focus + i,
.contact-form textarea:focus + i {
    color: var(--accent-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
    background-color: rgba(17, 34, 64, 0.9);
}

.contact-form button {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.contact-form button .btn-text {
    transition: var(--transition-standard);
}

.contact-form button i {
    transition: transform 0.4s ease;
}

.contact-form button:hover i {
    transform: translateX(5px) rotate(5deg);
}

/* Success Message */
.success-message {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
    position: fixed; /* Changed from absolute to fixed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: calc(100% - 2rem); /* Accounts for mobile margins */
    max-width: 600px; /* Maximum reasonable width */
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-sizing: border-box;
    z-index: 1000; /* Ensure it appears above other content */
    margin: 0 auto;
}

.success-message.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive adjustments */
@media (min-width: 480px) {
    .success-message {
        padding: 2.5rem 1.5rem;
        width: 90%;
    }
}

@media (min-width: 768px) {
    .success-message {
        padding: 3rem 2rem;
        width: 80%;
    }
}

@media (max-width: 360px) {
    .success-message {
        padding: 1.5rem 0.75rem;
        border-radius: 8px;
        width: calc(100% - 1rem);
    }
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    animation: pulse-success 2s infinite;
}

.success-message h3 {
    font-size: 2.2rem;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-text);
    border: 2px solid var(--secondary-text);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-secondary);
    transition: var(--transition-standard);
}

.btn-secondary:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}

@keyframes pulse-success {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
    }
}

/* Light mode adjustments for contact form */
[data-theme="light"] .contact-form {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
    background-color: rgba(240, 242, 245, 0.7);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary-text);
}

[data-theme="light"] .contact-form input:focus,
[data-theme="light"] .contact-form textarea:focus {
    background-color: #fff;
}

[data-theme="light"] .success-message {
    background-color: var(--secondary-bg);
    border-color: var(--accent-color);
}

[data-theme="light"] .success-message h3 {
    color: var(--primary-text);
}

[data-theme="light"] .success-message p {
    color: var(--secondary-text);
}

[data-theme="light"] .btn-secondary {
    color: var(--secondary-text);
    border-color: var(--secondary-text);
}

[data-theme="light"] .btn-secondary:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}


/* Form message feedback */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-family: var(--font-secondary);
    animation: fadeIn 0.5s ease forwards;
    transition: opacity 0.5s ease;
}

.form-message.success {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.form-message.error {
    background-color: rgba(255, 76, 76, 0.1);
    color: #ff4c4c;
    border: 1px solid #ff4c4c;
}

.form-message.sending {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-text);
    border: 1px solid var(--secondary-text);
}

.form-message.fade-out {
    opacity: 0;
}

/* Footer */
.footer {
    background-color: #071425;
    text-align: center;
    padding: 3rem 0;
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin-top: 4rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    height: 35px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-link {
    color: var(--secondary-text);
    font-size: 1.2rem;
    transition: var(--transition-standard);
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .process-timeline {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        color: var(--primary-text);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1010;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: var(--transition-standard);
    }
    
    .mobile-menu-btn:focus {
        outline: none;
    }

    .hamburger-icon {
        width: 24px;
        height: 18px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primary-text);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0px;
    }

    .hamburger-icon span:nth-child(2) {
        top: 7px;
    }

    .hamburger-icon span:nth-child(3) {
        top: 14px;
    }

    .mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
        top: 7px;
        transform: rotate(135deg);
        background: var(--accent-color);
    }

    .mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
        top: 7px;
        transform: rotate(-135deg);
        background: var(--accent-color);
    }
    
    .mobile-menu-btn.active {
        color: var(--accent-color);
    }
    
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        right: 0;
        width: auto;
        min-width: 250px;
        height: calc(100vh - var(--navbar-height));
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 3rem 0;
        margin-top: -1px; /* Negative margin to ensure seamless connection */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        backdrop-filter: blur(10px);
        box-shadow: var(--box-shadow);
        z-index: 999; /* Lower than navbar z-index */
        border-top: none; /* Remove any potential border */
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0.1s;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .nav-links a::after {
        bottom: -3px;
        height: 2px;
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Other mobile adjustments */
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    section {
        padding: 5rem 0;
    }

    h2 {
        font-size: 2.4rem;
    }
    
    .founder-card {
        padding: 2rem 1.5rem;
    }
    
    /* Process section mobile */
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 80px;
        text-align: left;
        align-items: flex-start;
    }
    
    .process-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Ensure animations work on mobile */
    .fade-in, .reveal {
        will-change: opacity, transform;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
        padding: 0 0.5rem;
    }
    
    .hero-section .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
    }
    
    .founder-img {
        width: 120px;
        height: 120px;
    }
    
    .founder-card h3 {
        font-size: 1.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .section-intro {
        padding: 0 1rem;
    }
    
    /* Adjust animations for smaller screens */
    .reveal {
        transition: all 0.6s ease;
    }
    
    /* Ensure code block is readable on mobile */
    .code-block {
        padding: 1rem;
        font-size: 0.9rem;
        margin: 1.5rem 1rem;
        overflow-x: auto;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Touch Interactions */
.touch-active {
    transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.btn-primary.touch-active {
    transform: scale(0.95);
    opacity: 0.9;
}

.service-card.touch-active,
.founder-card.touch-active {
    transform: translateY(-5px);
    opacity: 0.95;
}

.process-number.touch-active {
    transform: scale(1.1);
}

.nav-links a.touch-active {
    color: var(--accent-color);
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    .fade-in, 
    .reveal,
    .service-card,
    .founder-card,
    .btn-primary,
    .process-number {
        transition-duration: 0.3s;
        animation-duration: 0.3s;
    }
    
    .delay-1, .delay-2, .delay-3 {
        animation-delay: 0.1s;
    }
}

/* Animation ready state - helps with performance */
.animations-ready .fade-in,
.animations-ready .reveal {
    will-change: opacity, transform;
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    @keyframes pulseHighlight {
        0% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(100, 255, 218, 0); }
        100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
    }
    
    .btn-primary:active {
        animation: pulseHighlight 0.8s ease;
    }
    
    /* Smoother transitions on mobile */
    .service-card,
    .founder-card,
    .process-number,
    .btn-primary {
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    }
}

/* Code-like elements */
.code-block {
    position: relative;
    padding: 1.5rem;
    background-color: rgba(17, 34, 64, 0.7);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    font-family: var(--font-secondary);
    margin: 2rem 0;
    overflow: hidden;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, var(--accent-color-transparent) 50%, transparent 51%);
    background-size: 10px 10px;
    opacity: 0.05;
}

/* Syntax Highlighting Styles */
.code-comment {
    color: #8892b0;
    font-style: italic;
}

.code-keyword {
    color: #c792ea; /* A nice purple for keywords */
}

.code-variable {
    color: #82aaff; /* A light blue for variables */
}

.code-property {
    color: #ffcb6b; /* A warm yellow for properties */
}

.code-string {
    color: #c3e88d; /* A vibrant green for strings */
}

[data-theme="light"] .code-comment {
    color: #6c757d;
}

[data-theme="light"] .code-keyword {
    color: #fd7e14;
}

[data-theme="light"] .code-variable {
    color: #20c997;
}

[data-theme="light"] .code-property {
    color: #6f42c1;
}

[data-theme="light"] .code-string {
    color: #d63384;
}


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-bg);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-darker);
}
/* LinkedIn links in founder names */
.founder-name-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

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

.founder-name-link:hover {
    color: var(--accent-color);
}

.founder-name-link:hover::after {
    width: 100%;
}
/* LinkedIn connect links with futuristic effect */
.linkedin-connect {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition-standard);
}

.connect-text {
    margin-right: 0.5rem;
    position: relative;
    z-index: 1;
}

.linkedin-connect i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.connect-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.linkedin-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color-transparent), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.linkedin-connect:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
}

.linkedin-connect:hover .connect-line {
    transform: translateX(0);
    animation: pulse-line 2s infinite;
}

.linkedin-connect:hover::before {
    opacity: 1;
}

.linkedin-connect:hover i {
    animation: glow 1.5s infinite alternate;
}

@keyframes pulse-line {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
    }
}

/* Mobile adjustments for LinkedIn connect */
@media (max-width: 768px) {
    .linkedin-connect {
        font-size: 0.85rem;
        margin-top: 1.2rem;
    }
}
/* Touch interactions for LinkedIn connect */
.linkedin-connect.touch-active {
    transform: scale(0.97);
    opacity: 0.9;
}

.linkedin-connect.touch-active i {
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.7);
}

.typing-effect {
    border-right: 2px solid rgba(100, 255, 218, 0.75);
    animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgba(100, 255, 218, 0.75); }
}
/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: var(--box-shadow);
    transition: var(--transition-theme);
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.theme-toggle i {
    font-size: 1.5rem;
    transition: var(--transition-theme);
}

.theme-toggle .fa-sun {
    opacity: 0;
    position: absolute;
    transform: translateY(20px);
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-20px);
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent-color-transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.theme-toggle:hover::after {
    width: 100%;
    height: 100%;
}

/* Theme transition effect */
body {
    transition: background var(--transition-theme), color var(--transition-theme);
}

.navbar, .footer, .founder-card, .service-card, .value-card, .contact-form, .process-number, .code-block {
    transition: background-color var(--transition-theme), border-color var(--transition-theme), box-shadow var(--transition-theme);
}

/* Light mode specific adjustments */
[data-theme="light"] body {
    background: linear-gradient(180deg, #f0f2f5 0%, #e5e5e7 100%);
}

[data-theme="light"] .navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar.scrolled {
    background-color: var(--navbar-bg);
}

[data-theme="light"] .nav-links a {
    color: var(--primary-text);
}

[data-theme="light"] .mobile-menu-btn {
    color: var(--primary-text);
}

[data-theme="light"] .hero-section::before {
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .values-section {
    background-color: rgba(240, 242, 245, 0.5);
}

[data-theme="light"] .values-section::before {
    background-image: 
        linear-gradient(to right, rgba(0, 102, 204, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 102, 204, 0.05) 1px, transparent 1px);
}

[data-theme="light"] .value-card {
    background-color: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

[data-theme="light"] .services-section {
    background-color: rgba(240, 242, 245, 0.3);
}

[data-theme="light"] .process-section {
    background-color: rgba(240, 242, 245, 0.5);
}

[data-theme="light"] .footer {
    background-color: #e5e5e7;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

/* Mobile adjustments for theme toggle */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .theme-toggle {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .theme-toggle i {
        font-size: 1.2rem;
    }
}
/* Theme switching animation */
.theme-toggle.theme-switching i {
    animation: theme-switch-spin 0.5s ease;
}

@keyframes theme-switch-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
/* Light mode specific text color fixes */
[data-theme="light"] .hero-section h1,
[data-theme="light"] .hero-section .subtitle {
    color: var(--primary-text);
}

[data-theme="light"] .hero-section h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

[data-theme="light"] .section-intro,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] p {
    color: var(--primary-text);
}

[data-theme="light"] .founder-bio,
[data-theme="light"] .service-card p,
[data-theme="light"] .process-step p {
    color: var(--secondary-text);
}

[data-theme="light"] .value-icon {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--secondary-bg);
}

[data-theme="light"] .value-circuit {
    border-color: var(--accent-color);
}

[data-theme="light"] .value-circuit::before,
[data-theme="light"] .value-circuit::after {
    background-color: var(--accent-color);
}

[data-theme="light"] .service-card {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

[data-theme="light"] .service-icon {
    color: var(--accent-color);
}

[data-theme="light"] .service-icon::after {
    background-color: var(--accent-color-transparent);
}

[data-theme="light"] .process-timeline::before {
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
}

[data-theme="light"] .process-number {
    background-color: var(--secondary-bg);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

[data-theme="light"] .contact-form {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
    background-color: rgba(245, 245, 247, 0.7);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary-text);
}

[data-theme="light"] .btn-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

[data-theme="light"] .code-block {
    background-color: rgba(245, 245, 247, 0.7);
    border-left: 3px solid var(--accent-color);
    color: var(--primary-text);
}

[data-theme="light"] .linkedin-connect {
    color: var(--accent-color);
}

/* Contact form fixes */
.contact-form,
.contact-form input,
.contact-form textarea {
    box-sizing: border-box !important;
}

/* Update light mode form background */
[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
    background-color: rgba(240, 242, 245, 0.7);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary-text);
}
