/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 800px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #00ff88;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-content.slide {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.hero-content.slide.active {
    opacity: 1;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #00ff88;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.slide-number {
    position: absolute;
    bottom: -80px;
    right: 0;
    font-size: 120px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: -80px;
}

.next-arrow {
    right: -80px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    animation: scroll 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
}

@keyframes scroll {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* Company Overview Section */
.company-overview {
    padding: 120px 0;
    background: #000;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.overview-text {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-left: 3px solid #00ff88;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaa;
    line-height: 1.4;
}

.overview-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #0a0a0a;
}

.services-heading {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 80px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: #00ff88;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 30px;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.8;
}

.service-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-description {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 14px;
}

.service-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-btn::after {
    content: '→';
    transition: transform 0.3s;
}

.service-btn:hover {
    background: #00ff88;
    color: #000;
    border-color: #00ff88;
}

.service-btn:hover::after {
    transform: translateX(5px);
}

/* Additional Content Section */
.additional-content {
    padding: 100px 0;
    background: #000;
}

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

.content-text {
    color: #aaa;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 50px;
    font-size: 12px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #fff;
    color: #000;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 0;
    background: #fff;
    color: #000;
    text-align: center;
}

.section-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
}

.vision-text,
.mission-text {
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #333;
}

.learn-more-btn {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 15px 50px;
    font-size: 12px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 30px;
}

.learn-more-btn:hover {
    background: #000;
    color: #fff;
}

/* Values Section */
.values {
    padding: 120px 0;
    background: #f5f5f5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 50px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.value-description {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* Hiring Section */
.hiring {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

.hiring-title {
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hiring-text {
    color: #aaa;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1.4;
}

.footer-heading {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #888;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-contact {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #00ff88;
    color: #000;
    border-color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-heading {
        font-size: 36px;
    }
    
    .hiring-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
}
