@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #0A0A0A;
    --text-color: #A7AABB;
    --bg-color: #060606;
    --accent-color: #A93E17;
    --accent-secondary-color: #15399A;
    --divider-color: #FFFFFF0F;
    --dark-divider-color: #FFFFFF33;
    --error-color: rgb(230, 87, 87);
    --default-font: "Manrope", sans-serif;
}

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

body {
    font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000000;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff6b6b 0%, #8b5cf6 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff5252 0%, #ff7043 25%, #7c3aed 75%, #7c3aed 100%);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.language-switcher {
    position: absolute;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 65px;
}

.language-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.language-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 10px;
}

.language-dropdown.open .language-btn .arrow {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 6px;
}

.language-dropdown.open .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option:first-child {
    border-radius: 10px 10px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 10px 10px;
}

.language-option.active {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.language-switcher select {
    display: none;
}

.logo {
    position: absolute;
    left: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

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

.nav-cta {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #8b5cf6;
}

.nav-links a.active {
    color: #8b5cf6;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ff6b6b);
    border-radius: 1px;
}

.nav-cta {
    background: linear-gradient(45deg, #ff6b6b 0%, #8b5cf6 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background-position 0.4s ease;
    font-size: 0.75rem;
}

.nav-cta:hover {
    background-position: 100% 50%;
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
            linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(30, 30, 60, 0.6) 50%, rgba(99, 102, 241, 0.1) 100%),
            url('img/bg.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(ellipse at 20% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(30, 30, 60, 0.7) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(64, 224, 208, 0.08) 0%, transparent 50%),
            linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(22, 33, 62, 0.7) 100%);
    z-index: 1;
}

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

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b 0%, #8b5cf6 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-position 0.4s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background-position: 100% 50%;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partners-section,
.ai-partners-section {
    text-align: center;
}

.partners-section h3,
.ai-partners-section h3 {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.partners-logos,
.ai-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo,
.ai-partner-logo {
    color: #aaa;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.partner-logo:hover,
.ai-partner-logo:hover {
    color: #fff;
}


@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .partners-logos,
    .ai-partners-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-logos,
    .ai-partners-logos {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .partner-logo,
    .ai-partner-logo {
        font-size: 0.8rem;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-badge {
    display: inline-block;
    background: rgba(128, 128, 128, 0.1);
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.features-badge::before {
    content: "✦ ";
    color: var(--accent-color);
}

.features-badge::after {
    content: " ✦";
    color: var(--accent-color);
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-gradient {
    font-weight: 700;
    background: linear-gradient(to right, #ff6b6b, #8b5cf6, #8b5cf6);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.features-header p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background-image: url('img/service-item-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-image {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
}

.feature-image img {
    max-width: 100%;
    height: auto;
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 0.9rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.feature-card p {
    color: #aaa;
    line-height: 1.6;
    flex-grow: 1;
}

/* Skills Section */
.skills {
    padding: 2rem 0;
    background: #000000;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #aaa;
    transition: color 0.3s ease;
}

.skill-item:hover {
    color: #fff;
}

.skill-icon {
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: bold;
}

.skill-text {
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #000000;
}

.process-header {
    text-align: left;
    margin-bottom: 4rem;
}

.process-badge {
    display: inline-block;
    background: rgba(128, 128, 128, 0.1);
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.process-badge::before {
    content: "✦ ";
    color: var(--accent-color);
}

.process-badge::after {
    content: " ✦";
    color: var(--accent-color);
}

.process-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-header h2 .highlight {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-label {
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: #aaa;
    line-height: 1.6;
}

.process-image {
    position: relative;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.process-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.process-cta {
    margin-top: auto;
}

.process-cta p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff8e53;
}

@media (max-width: 1024px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .process-header {
        text-align: center;
    }
}

/* What We Do Section */
.what-we-do {
    padding: 6rem 0;
    background: #000000;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.what-we-do-card {
    background-image: url('img/service-item-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.what-we-do-card h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: white;
}

.what-we-do-skills {
    margin-bottom: 2rem;
}

.skill-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.skill-item-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #aaa;
    font-size: 0.9rem;
}

.skill-icon-new {
    color: #8b5cf6;
    font-size: 0.8rem;
}

.what-we-do-image {
    margin-top: auto;
    text-align: center;
}

.what-we-do-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.what-we-do-header {
    margin-bottom: 3rem;
}

.what-we-do-badge {
    display: inline-block;
    background: rgba(128, 128, 128, 0.1);
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.what-we-do-badge::before {
    content: "✦ ";
    color: var(--accent-color);
}

.what-we-do-badge::after {
    content: " ✦";
    color: var(--accent-color);
}

.what-we-do-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-results {
    color: var(--accent-color);
}

.what-we-do-header p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

.what-we-do-services {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.service-check {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .what-we-do-card {
        padding: 2rem;
    }
    
    .skill-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .what-we-do-header h2 {
        font-size: 2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.cta-section .container {
    background-image: url('img/cta-box-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(128, 128, 128, 0.1);
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.cta-badge::before {
    content: "✦ ";
    color: var(--accent-color);
}

.cta-badge::after {
    content: " ✦";
    color: var(--accent-color);
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.highlight-ai {
    color: #8b5cf6;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #aaa;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.btn-gradient {
    background: linear-gradient(45deg, #ff6b6b 0%, #8b5cf6 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-position 0.4s ease;
    font-weight: 600;
}

.btn-gradient:hover {
    background-position: 100% 50%;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    padding: 2.5rem 0 1.5rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    margin-bottom: 0.8rem;
    color: #8b5cf6;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.4rem;
    display: block;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
}

/* Page Header */
.page-header {
    position: relative;
    background: url(img/page-header-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 170px 0 65px;
    z-index: 1;
    text-align: center;
}

.page-header-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.breadcrumb {
    color: #aaa;
    font-size: 1rem;
}

.breadcrumb span:last-child {
    color: #fff;
}

/* About Content */
.about-content {
    padding: 6rem 0;
    background: #000000;
}

.about-header {
    text-align: center;
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(128, 128, 128, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-badge::before,
.about-badge::after {
    content: "✦";
    color: #A93E17;
    font-size: 0.7rem;
}

.about-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #000000;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(128, 128, 128, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.team-badge::before,
.team-badge::after {
    content: "✦";
    color: #A93E17;
    font-size: 0.7rem;
}

.team-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 320px;
}

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

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
}

.team-overlay h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.team-overlay p {
    color: #aaa;
    font-size: 0.75rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team-header h2 {
        font-size: 2.5rem;
    }
    
    .mission-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .mission-left,
    .mission-right {
        width: 100%;
    }
    
    .mission-right {
        order: -1;
    }
    
    .mission-image {
        width: 100%;
        max-width: 100%;
    }
    
    .mission-image img {
        width: 100%;
        height: auto;
    }
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: #000000;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(128, 128, 128, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.mission-badge::before,
.mission-badge::after {
    content: "✦";
    color: #A93E17;
    font-size: 0.7rem;
}

.mission-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: #A93E17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-text h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mission-text p {
    color: #aaa;
    line-height: 1.6;
}

.mission-right {
    position: relative;
}

.mission-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Styles */
footer {
    background: #000000 url('img/footer-bg.png') center/cover no-repeat;
    padding: 120px 0 30px 0;
    color: white;
    position: relative;
}

/* CTA Content Inside Footer */
.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 80px;
}

.cta-left h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 500px;
}

.cta-right {
    display: flex;
    align-items: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-gradient {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    outline: none;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
    transform: translateY(-2px);
}

.subscribe-btn i {
    margin-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .logo {
        position: static;
    }

    .nav-cta {
        position: static;
    }

    nav {
        justify-content: space-between;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 50px;
    }
    
    .cta-left h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Contact Details Section */
.contact-details-section {
    padding: 100px 0;
    background: #000;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
}

.contact-info-wrapper {
    padding: 3rem;
    background: url('img/contact-bg.png') center/cover no-repeat;
    border: none;
    border-radius: 20px 0 0 20px;
    position: relative;
}

.contact-info-wrapper h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-detail-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info-wrapper h2 {
    font-size: 3rem;
    font-weight: 300;
}

.map-wrapper {
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    background: transparent;
    border: none;
    padding: 0;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: grayscale(100%) invert(85%) contrast(1.2);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0 20px;
}

.mobile-nav-links li {
    margin-bottom: 10px;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 15px;
    display: block;
    border-radius: 8px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.mobile-nav-links .nav-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #8b5cf6 100%);
    color: #fff;
    margin-top: 30px;
    text-align: center;
    font-weight: 600;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-language-switcher {
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.mobile-language-switcher .language-dropdown {
    position: relative;
}

.mobile-language-switcher .language-btn {
    width: 100%;
    justify-content: space-between;
}

.mobile-language-switcher .language-options {
    position: static;
    margin-top: 10px;
    width: 100%;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
        left: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-wrapper {
        padding: 2rem;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
}