/* Navigation */
.navbar {
    background: var(--background);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 24px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s ease;
    animation: logoReveal 1s ease forwards, logoFloat 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-links li {
    position: relative;
    perspective: 1000px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.35rem;
    display: inline-block;
    padding: 0.6em 0;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 160px 0 120px;
    text-align: center;
    margin: 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(-1px) scale(1.5);
    z-index: -1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    perspective: 1px;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.9;
    z-index: -1;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Services Grid */
.services {
    padding: 120px 0;
    /*background: var(--background);*/
    background-image: url("https://www.globalexpartners.com/images/background-image-layer-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.9;
    z-index: -1;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.achievements {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-top: 3rem;
    gap: 2rem;
}

/* Team Grid */
.team-section {
    padding: 120px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: 0;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

/* Contact Layout */
.contact {
    padding: 120px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    z-index: 1001;
    transition: width 50ms ease-out;
    transform-origin: left;
    will-change: width;
}

/* Section Headers */
section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Container Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}