/* ===========================
   Global Styles
   =========================== */
:root {
    --primary-color: #E1A730;
    --secondary-color: #262626;
    --dark-bg: #262626;
    --dark-bg-light: #333333;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: #404040;
    --gradient: linear-gradient(135deg, #E1A730 0%, #C89428 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

section {
    position: relative;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background: rgba(38, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo-svg {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo-svg {
    transform: scale(1.05);
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.navbar-nav .nav-link {
    color: var(--text-muted) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.btn-custom {
    background: var(--gradient) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
}

.btn-custom::after {
    display: none;
}

/* Language Dropdown */
.dropdown-menu {
    background: rgba(38, 38, 38, 0.98);
    border: 1px solid rgba(225, 167, 48, 0.3);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background: rgba(225, 167, 48, 0.2);
    color: var(--primary-color);
}

.dropdown-item img {
    margin-right: 0.5rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #262626;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(38, 38, 38, 0.5) 0%, rgba(38, 38, 38, 0.4) 100%),
        radial-gradient(circle at 20% 50%, rgba(225, 167, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 167, 48, 0.08) 0%, transparent 50%);
    z-index: 1;
}

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

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

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

.hero-text-animated {
    display: inline;
    transition: opacity 0.6s ease-in-out;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(225, 167, 48, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-muted);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    border-color: var(--text-light);
}

.hero-image {
    position: relative;
    height: 500px;
    z-index: 2;
}

.floating-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card h3 {
    margin-top: 1rem;
    font-size: 2rem;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--text-muted);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===========================
   Section Styles
   =========================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    background: var(--dark-bg-light);
    padding: 5rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(225, 167, 48, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    margin-left: 5px;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 5rem 0;
}

.about-image {
    position: relative;
    height: 500px;
}

.about-card-1,
.about-card-2 {
    position: absolute;
    border-radius: 20px;
    background: var(--gradient);
}

.about-card-1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.about-card-2 {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #C89428 0%, #B8851F 100%);
    opacity: 0.8;
}

.about-content {
    padding-left: 2rem;
}

.about-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.startup-info {
    margin-top: 2rem;
}

.startup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(225, 167, 48, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.startup-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.startup-badge span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(225, 167, 48, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(225, 167, 48, 0);
    }
}

.startup-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.startup-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.projects-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 167, 48, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.preview-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.preview-icon i {
    font-size: 1.75rem;
    color: white;
}

.preview-content {
    flex: 1;
}

.preview-content h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.preview-content p {
    color: var(--text-muted);
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.badge-coming-soon {
    display: inline-block;
    background: rgba(225, 167, 48, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-mvp-ready {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-demo-prep {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.booksy-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    animation: none !important;
}

.unite-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    animation: none !important;
}

.booksy-icon:hover {
    animation: bounce 0.6s ease !important;
}

.unite-icon:hover {
    animation: shake 0.6s ease !important;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: progressPulse 2s ease-in-out infinite;
}

.progress-bar-success {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.progress-bar-blue {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 1.5s infinite;
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stats-container {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio-section {
    background: var(--dark-bg-light);
    padding: 5rem 0;
}

.project-detail {
    margin-bottom: 3rem;
}

.project-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project-image-wrapper:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.project-image-wrapper .project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-image-wrapper .badge-mvp-ready {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.project-image-wrapper .badge-demo-prep {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.project-content {
    padding: 0 2rem;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.project-title i {
    color: var(--primary-color);
}

.project-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.project-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
}

.meta-item span {
    color: var(--text-muted);
}

.project-progress {
    margin-top: 2rem;
}

.project-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 4rem 0;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 38, 38, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===========================
   Partners & Investors Section
   =========================== */
.partners-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.seeking-intro {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.startup-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(225, 167, 48, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.startup-badge-large i {
    font-size: 1.5rem;
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.opportunity-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(225, 167, 48, 0.2);
}

.opportunity-card.featured {
    background: rgba(225, 167, 48, 0.05);
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.opportunity-icon i {
    font-size: 2.5rem;
    color: white;
}

.opportunity-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.opportunity-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.opportunity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opportunity-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.opportunity-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

.investment-highlights {
    padding: 2rem 0;
}

.investment-highlights h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(225, 167, 48, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.highlight-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.highlight-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cta-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.cta-box p {
    color: var(--text-muted);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.partners-stats {
    padding: 2rem;
}

.partner-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.partner-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.partner-stat-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.partners-grid h4 {
    color: var(--text-light);
    font-size: 1.5rem;
}

.partner-logo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 167, 48, 0.2);
}

.partner-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.partner-logo-placeholder i {
    font-size: 2.5rem;
    color: white;
}

.partners-section .lead {
    color: var(--text-muted);
    line-height: 1.8;
}

.partners-section h3 {
    font-size: 2rem;
    font-weight: 700;
}

.partners-section p {
    color: var(--text-muted);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(225, 167, 48, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer p {
    color: var(--text-muted);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form .input-group .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px 0 0 10px;
    color: var(--text-light);
}

.newsletter-form .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--text-light);
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
}

.footer hr {
    border-color: var(--border-color);
    opacity: 0.3;
}

.footer a {
    color: var(--text-muted);
}

.footer a:hover {
    color: var(--primary-color);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 3rem;
        height: 300px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .project-content {
        padding: 2rem 0 0 0;
    }

    .project-title {
        font-size: 1.75rem;
    }

    .project-subtitle {
        font-size: 1.1rem;
    }

    .cta-box {
        margin-top: 3rem;
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .investment-highlights h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-meta {
        gap: 0.5rem;
    }

    .meta-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .startup-badge-large {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .opportunity-card {
        padding: 2rem 1.5rem;
    }

    .highlight-item {
        gap: 1rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }
}

/* ===========================
   Animations
   =========================== */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-duration: 0.3s;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(225, 167, 48, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 167, 48, 0.3);
    color: var(--primary-color);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(225, 167, 48, 0.25);
    border-color: rgba(225, 167, 48, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(225, 167, 48, 0.2);
}

.back-to-top i {
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 767px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        border-radius: 12px;
    }

    .back-to-top i {
        font-size: 1.3rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border-top: 2px solid var(--primary-color);
    padding: 25px;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner-btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cookie-banner-btn-primary:hover {
    background: #d39620;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 167, 48, 0.3);
}

.cookie-banner-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-banner-btn-outline:hover {
    background: rgba(225, 167, 48, 0.1);
    border-color: #d39620;
}

@media (max-width: 991px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 20px 15px;
    }

    .cookie-banner-text h4 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease-in;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid rgba(225, 167, 48, 0.2);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

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

.cookie-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(225, 167, 48, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
}

.cookie-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(225, 167, 48, 0.1);
    color: var(--primary-color);
}

.cookie-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.cookie-section {
    margin-bottom: 30px;
}

.cookie-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cookie-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(225, 167, 48, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: rgba(225, 167, 48, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-category-header h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-category-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 30px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Buttons */
.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cookie-btn-primary:hover {
    background: #d39620;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 167, 48, 0.3);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(225, 167, 48, 0.2);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-modal-footer .cookie-btn {
    flex: 1;
    min-width: 150px;
}

/* Responsive */
@media (max-width: 767px) {
    .cookie-modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .cookie-modal-header {
        padding: 20px;
    }

    .cookie-modal-header h2 {
        font-size: 1.5rem;
    }

    .cookie-modal-body {
        padding: 20px;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-switch {
        align-self: flex-end;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}