/* Global Styles */
:root {
    --primary-color: #050a15; /* Deep Dark Navy */
    --secondary-color: #7ed957; /* Bright Green */
    --accent-color: #172a4f; /* Lighter Navy for cards */
    --text-color: #e2e8f0; /* Soft White */
    --text-muted: #94a3b8; /* Muted text */
    --bg-color: #050a15;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
}

/* Navigation */
.header {
    background: rgba(5, 10, 21, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(126, 217, 87, 0.4));
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/images/hero_bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5, 10, 21, 0.5) 0%, rgba(5, 10, 21, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #ffffff, #a8ff78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(126, 217, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 217, 87, 0.5);
    background: #6cc149;
}

/* Sections General */
.section {
    padding: 100px 5%;
    position: relative;
}

.bg-dark {
    background: #030712;
}

.bg-light { 
    background: transparent; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(126, 217, 87, 0.5);
}

/* About Section */
.about-section {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
    display: flex;
    justify-content: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.about-text strong {
    color: #ffffff;
}

.company-details {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.company-details li {
    padding: 10px 20px;
    background: rgba(126, 217, 87, 0.1);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* Services Grid (Glassmorphism) */
.services-section {
    /* Subtle background image or pattern could go here, for now it's transparent over body */
}

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

.service-card {
    background: rgba(23, 42, 79, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(126, 217, 87, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(126, 217, 87, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(126, 217, 87, 0.1);
}

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

.icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(126, 217, 87, 0.3));
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-item p {
    color: var(--text-muted);
}

.info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
    font-size: 1.1rem;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(126, 217, 87, 0.5);
}

/* Footer */
footer {
    background: #02050a;
    color: var(--text-muted);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 21, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background: white;
        margin: 6px 0;
        transition: 0.3s;
    }
}
