:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --header-bg: #93F554; /* Bright green background */
    --header-text: #000000; /* Black text for better contrast */
    --brand-green: #93F554;
    --brand-green-dark: #7ad33d;
    --tech-blue: #00f7ff;
    --grid-color: rgba(147, 245, 84, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--header-bg);
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
    background-color: var(--header-bg);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    background-color: var(--header-bg);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--header-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--header-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section with Tech Elements */
.hero {
    height: 100vh;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.8)
        ),
        linear-gradient(45deg,
            #1a1a1a 0%,
            #2c3e50 50%,
            #1a1a1a 100%
        );
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(147, 245, 84, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.15) 0%, transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Grid Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background-image: 
        linear-gradient(rgba(147, 245, 84, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
    animation: gridFloat 20s linear infinite;
}

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

/* Hexagonal Pattern Container */
.hex-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.1;
}

/* Connection Nodes */
.nodes {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at center, var(--brand-green) 1px, transparent 1px),
        radial-gradient(circle at center, var(--tech-blue) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: nodeFloat 15s linear infinite;
    opacity: 0.3;
}

@keyframes nodeFloat {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 245, 84, 0.1);
    box-shadow: 
        0 0 30px rgba(147, 245, 84, 0.1),
        0 0 60px rgba(0, 247, 255, 0.1),
        inset 0 0 30px rgba(147, 245, 84, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content > *:not(.hero-image) {
    margin-left: 3rem;
    text-align: center;
}

.hero-image {
    width: 300px;
    margin-right: 3rem;
    margin-bottom: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 245, 84, 0.1);
    box-shadow: 
        0 0 30px rgba(147, 245, 84, 0.1),
        0 0 60px rgba(0, 247, 255, 0.1);
    animation: floatImage 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 20px rgba(147, 245, 84, 0.3),
        0 0 40px rgba(0, 247, 255, 0.2);
    color: var(--white);
    position: relative;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--white);
    text-shadow: 0 0 10px rgba(147, 245, 84, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero p i {
    font-size: 1.4rem;
    color: var(--brand-green);
    min-width: 1.5rem;
    text-align: center;
}

/* Add specific style for last paragraph to maintain spacing with next section */
.hero p:last-child {
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(147, 245, 84, 0.05) 0%,
        rgba(147, 245, 84, 0.02) 100%
    );
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(147, 245, 84, 0.2),
        transparent
    );
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(147, 245, 84, 0.2),
        transparent
    );
}

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

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        var(--brand-green),
        transparent
    );
}

.about p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(147, 245, 84, 0.1);
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about p {
        font-size: 1.1rem;
        padding: 1.5rem;
        line-height: 1.6;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.service-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 245, 84, 0.1);
}

/* Maintain other service card styles */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(147, 245, 84, 0.15);
}

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

.service-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--brand-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--tech-blue);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-image {
        width: 300px;
        margin-right: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        padding: 1rem;
    }

    .hero-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1.5rem;
        order: -1;
        padding: 1rem;
    }

    .hero-content > *:not(.hero-image) {
        margin-left: 0;
        text-align: center;
    }

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

    .hex-container,
    .nodes {
        display: none;
    }

    .services-grid {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        height: auto;
    }
} 