:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #fbbf24;
    --blue-dark: #1e3a8a;
    --blue-light: #60a5fa;
    --yellow-primary: #fbbf24;
    --yellow-light: #fde047;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border-color: rgba(148, 163, 184, 0.1);
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #fbbf24 100%);
    --gradient-2: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-yellow: linear-gradient(135deg, #fbbf24 0%, #fde047 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow-yellow: 0 0 30px rgba(251, 191, 36, 0.3);
}

/* Light Mode Variables */
:root[data-theme="light"] {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --blue-dark: #1e3a8a;
    --blue-light: #3b82f6;
    --yellow-primary: #f59e0b;
    --yellow-light: #fbbf24;
    --dark-bg: #f8fafc;
    --darker-bg: #ffffff;
    --card-bg: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: rgba(30, 64, 175, 0.15);
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #fbbf24 100%);
    --gradient-2: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-yellow: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.2);
    --shadow-glow-yellow: 0 0 30px rgba(251, 191, 36, 0.2);
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-color);
}

.navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: inline-block;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    display: block;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0px 0 50px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.badge-custom {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-outline-light {
    border: 2px solid rgba(248, 250, 252, 0.2);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.hero-stats {
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Cards */
.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    border-color: var(--primary-color);
}

.floating-card:nth-child(1) i {
    color: var(--primary-color);
}

.floating-card.delay-1 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
    border-color: var(--accent-color);
}

.floating-card.delay-1 i {
    color: var(--accent-color);
}

.floating-card.delay-2 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
    border-color: var(--primary-color);
}

.floating-card.delay-2 i {
    color: var(--primary-color);
}

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

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

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Products Section */
.products-section {
    background-color: var(--dark-bg);
}

.product-showcase {
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-item span {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Product Mockups */
.product-mockup {
    position: relative;
    padding: 2rem;
}

/* Laptop Mockup */
.mockup-laptop {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 8px;
    background: linear-gradient(135deg, #334155, #1e293b);
    border-radius: 15px 15px 0 0;
    box-shadow: var(--shadow-lg);
}

.mockup-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mockup-laptop::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 15px;
    background: linear-gradient(135deg, #475569, #334155);
    border-radius: 0 0 10px 10px;
}

/* Mobile Mockup */
.mockup-mobile {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 180px;
    padding: 8px;
    background: linear-gradient(135deg, #334155, #1e293b);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.mockup-screen-mobile {
    width: 100%;
    aspect-ratio: 9/19;
    background: var(--darker-bg);
    border-radius: 18px;
    overflow: hidden;
}

/* Demo Dashboard Designs */
.demo-dashboard {
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.demo-logo {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
}

.demo-search {
    flex: 1;
    height: 35px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 8px;
}

.demo-profile {
    width: 35px;
    height: 35px;
    background: var(--gradient-2);
    border-radius: 50%;
}

.demo-content {
    display: flex;
    gap: 1rem;
    height: calc(100% - 80px);
}

.demo-sidebar {
    width: 60px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
}

.demo-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-card {
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
}

.demo-chart {
    flex: 1;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.demo-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 60%;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.3), transparent);
    clip-path: polygon(0 100%, 0 50%, 20% 60%, 40% 30%, 60% 45%, 80% 20%, 100% 40%, 100% 100%);
}

.demo-table {
    height: 100%;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
}

.demo-table::after {
    content: '';
    display: block;
    height: 20%;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    height: 100%;
}

.demo-grid::after,
.demo-grid::before {
    content: '';
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
}

.demo-kanban {
    display: flex;
    gap: 0.5rem;
    height: 100%;
}

.demo-kanban::after,
.demo-kanban::before {
    content: '';
    flex: 1;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
}

.demo-map {
    flex: 1;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.demo-map::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

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

.demo-pos-layout {
    display: flex;
    gap: 1rem;
    height: 100%;
}

.demo-pos-products {
    flex: 1.5;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.demo-pos-cart {
    flex: 1;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
}

.demo-document {
    flex: 1;
    background: rgba(248, 250, 252, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.demo-ai-layout {
    display: flex;
    gap: 1rem;
    height: calc(100% - 80px);
}

.demo-ai-preview {
    flex: 1.5;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
}

.demo-ai-results {
    flex: 1;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
}

.demo-warehouse {
    height: 100%;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}

.demo-chat-layout {
    display: flex;
    gap: 0.5rem;
    height: calc(100% - 80px);
}

.demo-chat-sidebar {
    width: 35%;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
}

.demo-chat-main {
    flex: 1;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
}

.demo-custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

/* Mobile App Demos */
.demo-mobile-app {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}

.demo-mobile-header {
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.demo-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-mobile-card {
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
}

.demo-mobile-map {
    flex: 1;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 6px;
}

.demo-chat-bubbles {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-chat-bubbles::after,
.demo-chat-bubbles::before {
    content: '';
    height: 30px;
    border-radius: 15px;
}

.demo-chat-bubbles::before {
    background: rgba(99, 102, 241, 0.2);
    width: 80%;
    align-self: flex-start;
}

.demo-chat-bubbles::after {
    background: rgba(139, 92, 246, 0.2);
    width: 70%;
    align-self: flex-end;
}

/* Tech Stack Section */
.tech-stack-section {
    background-color: var(--darker-bg);
}

.tech-card {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.tech-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Tech Squad Section */
.tech-squad-section {
    background: var(--dark-bg);
}

.squad-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.squad-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.squad-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.squad-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.squad-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Advantages Section */
.advantages-section {
    background: var(--darker-bg);
}

.advantage-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon i {
    color: var(--accent-color);
}

.advantage-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Clients Section */
.clients-section {
    background: var(--dark-bg);
    overflow: hidden;
}

.clients-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 1rem;
    overflow: hidden;
}

.client-logo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8 - 3rem * 8)); }
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* Contact Section */
.contact-section {
    background: var(--darker-bg);
    padding: 100px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.contact-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(248, 250, 252, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(248, 250, 252, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    color: var(--text-primary);
}

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

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cbd5e1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(30, 64, 175, 0.05) 35px,
            rgba(30, 64, 175, 0.05) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(251, 191, 36, 0.03) 35px,
            rgba(251, 191, 36, 0.03) 70px
        );
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1), transparent 40%);
    z-index: 0;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.company-info {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.company-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.company-name i {
    color: var(--accent-color);
}

.company-address,
.company-contact {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.company-address i,
.company-contact i {
    color: var(--accent-color);
    width: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.copyright,
.powered-by {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .product-showcase {
        padding: 2rem;
    }

    .mockup-mobile {
        position: static;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .product-showcase.reverse .mockup-mobile {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    /* Disable AOS animations on mobile to prevent scrollbar issues */
    body[data-aos-easing],
    body[data-aos-duration],
    body[data-aos-delay] {
        overflow-x: hidden !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: translate(0) scale(1) !important;
        transition: none !important;
    }

    .hero-section {
        padding: 0px 0 1.5rem;
        min-height: auto;
        overflow-x: hidden;
        width: 100%;
    }

    .hero-section > .container > .row {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        margin-top: 0px;
        padding-top: 3.5rem;
        order: 1;
    }

    .badge-wrapper {
        margin-bottom: 0.5rem !important;
    }

    .badge-custom {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hero-section .col-lg-5 {
        order: 2;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-image {
        display: flex !important;
        flex-direction: row;
        gap: 0.5rem;
        position: static;
        height: auto;
        justify-content: center;
        margin-top: 0.75rem;
        margin-bottom: 0;
        padding-bottom: 0;
        flex-wrap: wrap;
    }

    .floating-card {
        position: static !important;
        padding: 0.5rem 0.85rem !important;
        font-size: 0.75rem;
        animation: none !important;
        flex: 0 0 auto;
    }

    .floating-card i {
        font-size: 1rem;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .container {
        overflow-x: hidden;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-lg-7 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem !important;
        line-height: 1.5;
    }

    .hero-buttons {
        margin-top: 0.75rem !important;
    }

    .hero-stats {
        margin-top: 1rem;
        padding: 0.75rem 0.5rem;
        width: 100%;
        margin-bottom: 0;
    }

    .stat-item {
        margin-bottom: 0.25rem;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 1.65rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 1.875rem;
    }

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

    .product-showcase {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .floating-card span {
        font-size: 0.875rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }

    .btn-primary,
    .btn-outline-light {
        padding: 0.75rem 1.5rem;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    position: absolute;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

:root[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
    color: var(--yellow-primary);
}

:root[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* Updated Button Styles */
.btn-outline-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

:root[data-theme="light"] .btn-outline-custom {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

:root[data-theme="light"] .btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
}

.btn-detail {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-detail:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Feature Items with Icons */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.feature-item:hover .feature-icon i {
    color: var(--darker-bg);
}

.feature-content {
    flex: 1;
}

.feature-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Product Badge Yellow Variant */
.product-badge.yellow {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
    color: var(--yellow-primary);
}

/* Who Needs Section */
.who-needs-section {
    background: var(--darker-bg);
    padding: 100px 0;
}

.needs-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.needs-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.needs-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--darker-bg);
    transition: all 0.3s ease;
}

.needs-card:hover .needs-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary-color);
    color: white;
}

.needs-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.needs-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.needs-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge-product {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-product:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Update grid colors to match new theme */
.grid-overlay {
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.05) 1px, transparent 1px);
}

:root[data-theme="light"] .grid-overlay {
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.08) 1px, transparent 1px);
}

.gradient-overlay {
    background: radial-gradient(ellipse at top, rgba(30, 64, 175, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(251, 191, 36, 0.10), transparent 50%);
}

:root[data-theme="light"] .gradient-overlay {
    background: radial-gradient(ellipse at top, rgba(30, 64, 175, 0.08), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(251, 191, 36, 0.08), transparent 50%);
}

/* Update various color references */
.badge-custom {
    background: rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.3);
    color: var(--primary-color);
}

:root[data-theme="light"] .badge-custom {
    background: rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.4);
}

.navbar {
    background-color: rgba(15, 23, 42, 0.8);
}

:root[data-theme="light"] .navbar {
    background-color: rgba(248, 250, 252, 0.95);
    border-bottom-color: var(--border-color);
}

:root[data-theme="light"] .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

/* Update hover effects for light mode */
.tech-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.squad-card:hover,
.advantage-card:hover {
    border-color: var(--primary-color);
}

/* Light mode specific adjustments */
:root[data-theme="light"] body {
    background-color: var(--darker-bg);
}

:root[data-theme="light"] .products-section {
    background-color: var(--dark-bg);
}

:root[data-theme="light"] .tech-stack-section {
    background-color: var(--darker-bg);
}

:root[data-theme="light"] .tech-squad-section {
    background-color: var(--dark-bg);
}

:root[data-theme="light"] .advantages-section {
    background-color: var(--darker-bg);
}

:root[data-theme="light"] .clients-section {
    background-color: var(--dark-bg);
}

:root[data-theme="light"] .contact-section {
    background-color: var(--darker-bg);
}

:root[data-theme="light"] .footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
}

:root[data-theme="light"] .footer::before {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(30, 64, 175, 0.03) 35px,
            rgba(30, 64, 175, 0.03) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(245, 158, 11, 0.02) 35px,
            rgba(245, 158, 11, 0.02) 70px
        );
}

:root[data-theme="light"] .footer::after {
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.06), transparent 40%);
}

/* Smooth theme transition */
body,
.navbar,
.product-showcase,
.tech-card,
.squad-card,
.advantage-card,
.needs-card,
.client-logo,
.contact-form-wrapper,
.footer {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Update advantage icon colors */
.advantage-icon {
    background: rgba(251, 191, 36, 0.1);
}

.advantage-icon i {
    color: var(--accent-color);
}

/* Add yellow accent to AI product */
:root[data-theme="light"] .product-badge.yellow {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: #f59e0b;
}

/* Responsive adjustments for new sections */
@media (max-width: 767px) {
    .feature-item {
        padding: 1rem 0;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .feature-content h5 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

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

    .needs-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .needs-title {
        font-size: 1.25rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        margin-left: 0.5rem;
    }
}/* ===== ADDITIONAL STYLES FOR NEW FEATURES ===== */

/* System Ticker at Top */
.system-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 0;
    z-index: 1050;
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.ticker-item i {
    margin-right: 0.5rem;
}

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

/* Adjust navbar for ticker */
.navbar {
    position: fixed !important;
    top: 45px !important;
    left: 0;
    right: 0;
    z-index: 1040;
}

body {
    padding-top: 110px; /* ticker (45px) + navbar (~65px) */
}

/* Fixed Hamburger Menu for Mobile */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231e40af' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

:root[data-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231e40af' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Single Product Mockup Image */
.product-mockup-single {
    position: relative;
    padding: 1rem;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: scale(1.02);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse-wa 2s ease-in-out infinite;
}

@keyframes pulse-wa {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Certificates Section */
.certificates-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.certificate-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.certificate-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--darker-bg);
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.certificate-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.certificate-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    background: var(--darker-bg);
    padding: 100px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Solid Color Updates - No Gradients */
.btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

.needs-icon,
.squad-icon {
    background: var(--accent-color);
}

.needs-card:hover .needs-icon,
.squad-card:hover .squad-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(-5deg);
    color: white;
}

.stat-number {
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Badge Products Hover Yellow */
.badge-product:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
    border-color: var(--accent-color);
}

/* Tech Card Icon Solid Blue */
.tech-icon {
    color: var(--primary-color);
}

.tech-card:hover .tech-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Floating card styling moved to main section */

/* Update Button Detail */
.btn-detail:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--darker-bg);
}

/* SweetAlert2 Custom Styling */
.swal2-popup {
    background: var(--card-bg) !important;
    color: var(--text-primary) !important;
}

.swal2-title {
    color: var(--text-primary) !important;
}

.swal2-html-container {
    color: var(--text-secondary) !important;
}

.swal2-confirm {
    background: var(--primary-color) !important;
}

.swal2-confirm:hover {
    background: var(--accent-color) !important;
}

/* Team Section */
.team-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.team-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--darker-bg);
    transition: all 0.3s ease;
}

.team-card:hover .team-icon {
    background: var(--primary-color);
    transform: rotate(10deg) scale(1.1);
    color: white;
}

.team-role {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover .skill-badge {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .system-ticker {
        padding: 0.5rem 0;
        height: 40px;
    }

    .ticker-item {
        font-size: 0.8rem;
        padding: 0 1.5rem;
    }

    body {
        padding-top: 100px; /* ticker (40px) + navbar (~60px) */
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }

    .certificate-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .gallery-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .navbar {
        top: 40px !important;
    }

    body {
        padding-top: 100px; /* ticker (40px) + navbar (~60px) */
    }

    .system-ticker {
        padding: 0.4rem 0;
        height: 40px;
    }

    .ticker-item {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}
