:root {
    --dark-gray: #1a1a1a;
    --space-gray: #2d2d2d;
    --tech-blue: #0a84ff;
    --metal-gold: #d4af37;
    --light-text: #f5f5f5;
    --medium-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-gray);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Bar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(26, 26, 26, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
}

.logo span {
    color: var(--metal-gold);
}

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

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

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

.nav-cta {
    background-color: var(--tech-blue);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: #0066cc;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(to right, var(--dark-gray) 40%, rgba(42, 42, 42, 0.8));
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

.hero-slogan {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-slogan span {
    color: var(--metal-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-tag {
    background-color: var(--space-gray);
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    border-left: 3px solid var(--tech-blue);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-primary {
    background-color: var(--tech-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--medium-gray);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    border-color: var(--tech-blue);
    color: var(--tech-blue);
}

.hero-visualization {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.globe-container {
    width: 500px;
    height: 500px;
    position: relative;
}

.globe {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 50px rgba(10, 132, 255, 0.3);
    animation: rotate 40s linear infinite;
    /**background: radial-gradient(circle at 30% 30%, var(--tech-blue), var(--dark-gray));**/
    background: url('../images/earth.png') no-repeat center/cover;
    background-size: 110%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--metal-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.globe-point::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--metal-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.data-panel {
    position: absolute;
    bottom: 20%;
    right: 0;
    background-color: rgba(45, 45, 45, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.data-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-value {
    font-weight: 700;
    color: var(--metal-gold);
}

/* Office Locations Styles */
        .office-locations {
            padding: 5rem 5%;
            background-color: var(--space-gray);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--light-text);
        }
        
        .section-title span {
            color: var(--metal-gold);
        }
        
        .section-subtitle {
            text-align: center;
            color: #aaa;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .locations-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .location-card {
            background-color: var(--dark-gray);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s;
            border-top: 3px solid var(--tech-blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .location-card:hover {
            transform: translateY(-10px);
        }
        
        .location-image {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .location-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
        }
        
        .location-content {
            padding: 1.5rem;
        }
        
        .location-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .location-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--metal-gold);
        }
        
        .location-title {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }
        
        .location-desc {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .location-features {
            list-style-type: none;
            margin-top: 1rem;
        }
        
        .location-features li {
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        
        .location-features li i {
            color: var(--tech-blue);
            font-size: 0.8rem;
        }

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

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

.service-card {
    background-color: var(--space-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
    border-left: 4px solid var(--tech-blue);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--metal-gold);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style-type: none;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--tech-blue);
}

/* Partners Section Styles */
.partners {
    padding: 5rem 5%;
    background-color: var(--space-gray);
}

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

.partner-card {
    background-color: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 180px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(10, 132, 255, 0.3);
}

.partner-logo {
    max-width: 140px;
    max-height: 80px;
    filter: grayscale(100%) brightness(120%);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) brightness(100%);
}

.partner-name {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

/* Contact Section Styles */
.contact {
    padding: 5rem 5%;
    background-color: var(--dark-gray);
}

.contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background-color: var(--space-gray);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--light-text);
}

.submit-btn {
    background-color: var(--tech-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0066cc;
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--metal-gold);
}

.footer-tagline {
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--tech-blue);
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .services-tags {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .globe-container {
        width: 400px;
        height: 400px;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-slogan {
        font-size: 2.5rem;
        margin-top: 1rem;
    }
    
    .globe-container {
        width: 450px;
        height: 450px;
        margin-bottom: 30px;
    }
    
    .data-panel {
        position: absolute;
        width: 100%;
        margin-top: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
        height: 160px;
    }
}

/* Team Section Styles */
.team {
    padding: 5rem 5%;
    background-color: var(--dark-gray);
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background-color: var(--space-gray);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--tech-blue);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-image {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.team-content {
    padding: 1.5rem;
}

.team-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tech-blue), var(--metal-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    border: 3px solid var(--space-gray);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.team-avatar i {
    font-size: 2rem;
    color: white;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--light-text);
}

.team-role {
    color: var(--metal-gold);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.team-location {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.team-location i {
    color: var(--tech-blue);
}

.team-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}