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

body {
    font-family: 'Inter', sans-serif;
    background: #1D1D1F;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.language-toggle button {
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.language-toggle button:hover {
    background: #005BB5;
}

/* Navigation Bar (Apple Style) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(29, 29, 31, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-left: 30px;
}

.navbar .logo a {
    color: #FFFFFF;
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin-right: 30px;
    padding: 0;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #D3D3D7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #0071E3;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    font-size: 1.5rem;
    color: #D3D3D7;
    margin-bottom: 2rem;
    animation: fadeIn 2s ease-in-out;
}

.cta-button {
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    animation: fadeIn 2.5s ease-in-out;
}

.cta-button:hover {
    background: #005BB5;
    transform: scale(1.05);
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-overlay video {
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Vision Section (Clickable Slides with Images) */
.vision-section {
    padding: 100px 50px;
    background: #F5F5F7;
    text-align: center;
}

.vision-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1D1D1F;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.vision-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.vision-slide {
    display: none;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-in-out;
}

.vision-slide.active {
    display: block;
}

.vision-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.vision-slide h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1D1D1F;
    margin-bottom: 10px;
}

.vision-slide p {
    font-size: 1.2rem;
    color: #1D1D1F;
    line-height: 1.6;
}

.vision-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.vision-controls button {
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.vision-controls button:hover {
    background: #005BB5;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Path Section (Timeline with Bubbles) */
.path-section {
    padding: 100px 50px;
    background: #1D1D1F;
    text-align: center;
}

.path-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0071E3;
    z-index: -1;
}

.timeline-bubble {
    width: 60px;
    height: 60px;
    background: #0071E3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: bubblePop 1s ease-in-out;
}

.timeline-bubble:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px #0071E3;
}

.timeline-bubble span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
}

.path-details {
    margin-top: 30px;
    padding: 20px;
    background: #F5F5F7;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #1D1D1F;
    font-size: 1.2rem;
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes bubblePop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Values Section (Icons and Buttons) */
.values-section {
    padding: 100px 50px;
    background: #FFFFFF;
    text-align: center;
}

.values-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1D1D1F;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #F5F5F7;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.5s ease-in-out;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2rem;
    color: #0071E3;
    margin-bottom: 10px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1D1D1F;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 1rem;
    color: #1D1D1F;
    margin-bottom: 10px;
}

.value-card button {
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.value-card button:hover {
    background: #005BB5;
}

/* Principles Section */
.principles-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #0C1C2B 0%, #1D1D1F 100%);
    text-align: center;
}

.principles-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.principles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle {
    background: rgba(245, 245, 247, 0.1);
    border: 1px solid #00AEEF;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.5s ease-in-out;
}

.principle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00AEEF;
}

.principle h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.principle p {
    font-size: 1rem;
    color: #D3D3D7;
    line-height: 1.6;
}

/* Commitments Section */
.commitments-section {
    padding: 100px 50px;
    background: #F5F5F7;
    text-align: center;
}

.commitments-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1D1D1F;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.commitments-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.5s ease-in-out;
}

.commitment:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.commitment h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1D1D1F;
    margin-bottom: 10px;
}

.commitment p {
    font-size: 1rem;
    color: #1D1D1F;
    line-height: 1.6;
}

/* Acknowledgments Section (Carousel) */
.acknowledgments-section {
    padding: 100px 50px;
    background: #1D1D1F;
    text-align: center;
}

.acknowledgments-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 10px;
    text-align: center;
}

.carousel-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
}

.carousel-item p {
    font-size: 1rem;
    color: #D3D3D7;
}

@keyframes scroll {
    0% { transform: translate cX(0); }
    100% { transform: translateX(-100%); }
}

/* Companies Section (Rotating Disc) */
.companies-section {
    padding: 100px 50px;
    background: #0C1C2B;
    text-align: center;
}

.companies-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.disc-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.disc {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #1D1D1F 0%, #0C1C2B 100%);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    border: 2px solid #00AEEF;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.disc-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #00AEEF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

#wdc-button { top: 10%; left: 50%; transform: translateX(-50%); }
#xeltis-button { top: 30%; left: 80%; }
#clyrix-button { top: 50%; left: 90%; }
#quantara-button { top: 70%; left: 80%; }
#nova7-button { top: 90%; left: 50%; transform: translateX(-50%); }
#betalife-button { top: 70%; left: 20%; }
#paxzero-button { top: 50%; left: 10%; }
#skylink-button { top: 30%; left: 20%; }
#terrasim-button { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.disc-button:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px #00AEEF;
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px #00AEEF; }
    50% { box-shadow: 0 0 15px #00AEEF; }
    100% { box-shadow: 0 0 5px #00AEEF; }
}

.disc-button span {
    font-size: 0.8rem;
    color: #FFFFFF;
}

.company-details {
    width: 400px;
    background: #F5F5F7;
    border-radius: 10px;
    padding: 20px;
    display: none;
    color: #1D1D1F;
}

.company-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.company-details p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Wanna Collaborate Section */
.collaborate-section {
    padding: 100px 50px;
    background: url('/assets/images/global-economy.jpg') no-repeat center/cover;
    background-attachment: fixed;
    position: relative;
    animation: backgroundPan 30s linear infinite;
}

.collaborate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 31, 0.8);
}

@keyframes backgroundPan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.collaborate-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.collaborate-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.collaborate-content p {
    font-size: 1.2rem;
    color: #D3D3D7;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.collaborate-content form {
    background: rgba(245, 245, 247, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease-in-out;
}

.collaborate-content label, .collaborate-content input, .collaborate-content select, .collaborate-content textarea {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 1rem;
    color: #1D1D1F;
}

.collaborate-content input, .collaborate-content select, .collaborate-content textarea {
    background: #FFFFFF;
    border: 1px solid #D3D3D3;
    padding: 10px;
    border-radius: 5px;
}

.collaborate-content .cta-button {
    display: block;
    margin: 20px auto 0;
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #F5F5F7;
    border: 1px solid #D3D3D3;
    border-radius: 10px;
    padding: 10px;
    display: none;
}

.chatbot-header {
    background: #0071E3;
    color: #FFFFFF;
    padding: 5px;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.chatbot-messages {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    color: #1D1D1F;
}

.chatbot-input {
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex-grow: 1;
    background: #FFFFFF;
    border: 1px solid #D3D3D3;
    color: #1D1D1F;
    padding: 5px;
    border-radius: 5px;
}

.chatbot-input button {
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0071E3;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-toggle i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #1D1D1F;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #D3D3D3;
}

footer p {
    font-size: 1rem;
    color: #D3D3D7;
}

footer a {
    color: #0071E3;
    text-decoration: none;
}

footer a:hover {
    color: #005BB5;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}