/* konasan - Gaming-Inspired Dark Theme (CrazyGames Style) */

:root {
    /* Gaming Color Palette */
    --primary-orange: #ff6b35;
    --primary-orange-dark: #e55a2e;
    --primary-orange-light: #ff7a4d;
    
    --secondary-purple: #8b5cf6;
    --secondary-purple-dark: #7c3aed;
    --secondary-purple-light: #a78bfa;
    
    --accent-cyan: #00d4ff;
    --accent-cyan-dark: #00b8e6;
    --accent-green: #10b981;
    --accent-pink: #ec4899;
    
    /* Status Colors */
    --success-green: #10b981;
    --error-red: #ef4444;
    
    /* Dark Theme Colors */
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #1a1a1a;
    --bg-dark-tertiary: #2a2a2a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #252525;
    --dark-bg: #121212;
    
    /* Light Theme Colors */
    --bg-light: #ffffff;
    --text-black: #000000;
    --text-gray-light: #e5e5e5;
    --text-gray: #b3b3b3;
    --text-gray-dark: #8a8a8a;
    --text-primary: #111111;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --card-bg: #f9f9f9;
    
    /* Gray Scale */
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-gray-900: #111827;
    
    /* Text Colors */
    --text-white: #ffffff;
    
    /* Gaming Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    --gradient-gaming: linear-gradient(135deg, #ff6b35 0%, #8b5cf6 50%, #00d4ff 100%);
    
    /* Shadows */
    --shadow-gaming: 0 8px 32px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.5);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-gaming: 'Orbitron', monospace;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 4rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: #0a0a0a;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: var(--font-gaming);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gaming);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    color: var(--text-white);
}

.nav-link.btn-primary::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--primary-orange-light);
}

/* Bootstrap Integration Styles */
.navbar-brand h2 {
    margin: 0;
    color: var(--text-white);
    font-family: "Orbitron", monospace;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
}

.navbar-brand:hover h2 {
    color: var(--primary-orange);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.btn {
    background: var(--primary-orange);
    color: var(--text-white) !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.navbar-nav .nav-link.btn:hover {
    background: var(--primary-red);
    color: var(--text-white) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link.btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
        text-align: center;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
}

/* Bootstrap Mobile Responsive Enhancements */

/* Navigation Bootstrap Integration */
.navbar {
    background: var(--bg-dark) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0 !important;
    min-height: 60px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    color: var(--text-white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar-brand h2 {
    margin: 0;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--text-white);
    font-size: 1.75rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.navbar-brand:hover h2 {
    color: var(--primary-orange);
}

.navbar-toggler {
    border: none;
    color: var(--text-white);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-gray-300) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link.btn-primary {
    background: var(--primary-orange) !important;
    color: var(--text-white) !important;
    border: none !important;
    border-radius: 0.375rem !important;
}

.navbar-nav .nav-link.btn-primary:hover {
    background: var(--primary-red) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.btn-primary::after {
    display: none;
}

/* Mobile Navigation Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-dark-secondary);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link::after {
        bottom: -5px;
    }
    
    .navbar-nav .nav-link.btn-primary {
        margin-top: 1rem;
    }
    
    .navbar-brand h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Navigation Styles */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-gaming);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gaming);
}

/* Hero Section */
/* Hero Section */
.hero {
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    padding: 8rem 0 6rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,107,53,0.3)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Mobile Hero Container Override */
@media (max-width: 768px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-gaming);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.badge i {
    color: var(--primary-orange) !important;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-block;
}

.badge span {
    font-weight: 500;
    color: var(--text-gray-light);
    font-size: 0.9rem;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.platform-badge {
    background: var(--bg-dark-tertiary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-gaming);
    color: var(--text-gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.platform-badge i {
    color: #ff6b35 !important;
}

.platform-badge:hover {
    transform: translateY(-3px);
    border-color: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Unique Hexagonal Stats Layout */
.stats-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.hexagon-container {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-hexagon {
    position: absolute;
    width: 140px;
    height: 160px;
    background: var(--bg-card);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin: 20px; /* Added spacing between hexagons */
}

.stat-hexagon:nth-child(1) {
    transform: translate(-170px, -50px);
    animation: float-1 6s infinite ease-in-out;
}

.stat-hexagon:nth-child(2) {
    transform: translate(-50, -80px);
    animation: float-2 7s infinite ease-in-out;
}

.stat-hexagon:nth-child(3) {
    transform: translate(170px, -80px);
    animation: float-3 8s infinite ease-in-out;
}

.stat-hexagon:nth-child(4) {
    transform: translate(0, 110px);
    animation: float-4 5s infinite ease-in-out;
}

@keyframes float-1 {
    0%, 100% { transform: translate(-170px, -50px); }
    50% { transform: translate(-160px, -65px); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(-50, -20px); }
    50% { transform: translate(0, -35px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(170px, -80px); }
    50% { transform: translate(160px, -10px); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 110px); }
    50% { transform: translate(0, 95px); }
}

.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.5;
    background-image: 
        linear-gradient(90deg, transparent 49%, var(--primary-orange) 49%, var(--primary-orange) 51%, transparent 51%),
        linear-gradient(90deg, transparent 49%, var(--secondary-purple) 49%, var(--secondary-purple) 51%, transparent 51%),
        linear-gradient(90deg, transparent 49%, var(--accent-cyan) 49%, var(--accent-cyan) 51%, transparent 51%);
    opacity: 0.5;
    background-size: 200px 1px;
    background-position: center;
    animation: flow-lines 3s infinite linear;
}

@keyframes flow-lines {
    0% {
        background-position: 0 0, -50px 30px, 50px 60px;
    }
    100% {
        background-position: 200px 0, 150px 30px, 250px 60px;
    }
}

.stat-content {
    text-align: center;
    padding: 1rem;
    transform: scale(0.9);
}

.stat-hexagon:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.stat-content h3 {
    font-family: var(--font-gaming);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Trusted By Section */
.trusted-by {
    background: var(--bg-dark-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.trusted-by h3 {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    color: var(--text-gray);
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0 4rem 0;
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    background: var(--bg-card-hover);
}

.service-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gaming);
}

.service-icon i {
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-gaming);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.service-card ul li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-icon {
    background: var(--bg-card);
    border: 2px solid var(--primary-orange);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    background: var(--primary-orange);
    color: var(--text-white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* Solutions Section */
.solutions {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-100);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    background: var(--primary-blue);
    color: var(--text-white);
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon i {
    font-size: 1.5rem;
}

.solution-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.solution-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-content li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.solution-content li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-gray-100);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* Why Choose Section */
.why-choose {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-dark-tertiary);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-gaming);
    transform: translateY(-5px);
}

.feature-icon {
    background: var(--primary-orange);
    color: var(--text-white);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-100);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--text-white);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Hero Section */
.contact-hero {
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    padding: 8rem 0 4rem;
    margin-top: 60px;
    text-align: center;
}

.contact-hero-content h1 {
    font-family: var(--font-gaming);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Get Started Section */
.get-started {
    padding: var(--section-padding);
    background: var(--bg-dark-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.get-started-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.get-started-content h2 {
    font-family: var(--font-gaming);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.get-started-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.get-started-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray-100);
}

.contact-icon {
    background: var(--primary-blue);
    color: var(--text-white);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.integration-benefits {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray-100);
}

.integration-benefits h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.integration-benefits ul {
    list-style: none;
}

.integration-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.integration-benefits li i {
    color: var(--success-green);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    position: relative;
    border: 1px solid var(--primary-orange);
    border-radius: 10px;
    padding: 2.5rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gaming);
    animation: scanline 3s linear infinite;
    opacity: 0.7;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(1000%);
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-form input, 
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-white);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(255, 107, 53, 0.2);
    font-family: var(--font-gaming);
    letter-spacing: 0.5px;
}

.contact-form input:focus, 
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    outline: none;
}

.contact-form label {
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-gaming);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Contact form submit button inherits from navigation button styling 
   The button.nav-link.btn-primary selector below provides all necessary styling */

button.nav-link.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gaming);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin-top: 1rem;
}

button.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    color: var(--text-white);
}

button.nav-link.btn-primary::after {
    display: none;
}

button.nav-link.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Form Status Styles */
.form-status {
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-red);
    border: 1px solid var(--error-red);
}

/* Loading state for submit button */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Footer Section */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gaming);
    z-index: 5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    align-items: start;
}

.footer-section h3 {
    font-family: var(--font-gaming);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-section h4 {
    font-family: var(--font-gaming);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Enhanced Footer Link Styling */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
    line-height: 1.4;
    position: relative;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    padding: 0.4rem 0;
    font-weight: 500;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

/* Company info link styling */
.footer-section .company-info strong {
    color: var(--accent-cyan);
    font-weight: 600;
    font-family: var(--font-gaming);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section .company-info p {
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-gray-light);
}

/* Enhanced grid pattern for company info */
.footer-section .company-info::before {
    content: '';
    position:
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 15px 15px;
    pointer-events: none;
    opacity: 0.6;
    z-index: -1;
}

/* Footer section header styling */
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--gradient-gaming);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

/* Footer Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-section:first-child {
        grid-column: span 3;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        grid-column: span 1;
    }
    
    .footer-section:nth-child(5) {
        grid-column: span 3;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-section:first-child {
        grid-column: span 2;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
        text-align: left;
    }
}

/* Enhanced Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-top: 1rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: var(--gradient-gaming);
    opacity: 0.8;
    animation: pulse-line 3s infinite;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.8;
        width: 50%;
    }
    50% {
        opacity: 1;
        width: 70%;
    }
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
    font-family: var(--font-gaming);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Responsive footer link adjustments */
@media (max-width: 768px) {
    .footer-section ul li a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-section ul li a {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section ul li a:hover {
        transform: translateY(-2px);
        padding-left: 0.3rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* Timeline Styling for About Page */
.timeline-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    position: relative;
    min-height: 450px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    min-width: 200px;
    position: relative;
}

/* Custom zigzag positions for timeline items */
.timeline-item:nth-child(1) {
    margin-top: 0; /* 2019 - baseline (highest) */
}

.timeline-item:nth-child(3) {
    margin-top: 6rem; /* 2020 - lowest position */
}

.timeline-item:nth-child(5) {
    margin-top: -2rem; /* 2021 - higher than 2019 */
}

.timeline-item:nth-child(7) {
    margin-top: 3rem; /* 2023 - middle between 2019 and 2021 */
}

.timeline-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gaming);
    transition: all 0.3s ease;
}

.timeline-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.timeline-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    font-family: 'Orbitron', monospace;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.timeline-content p {
    color: var(--text-gray-300);
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Replaced arrows with simple lines */
.timeline-arrow:nth-child(2) {
    top: 81px; /* Match margin-top of timeline-item:nth-child(1) */
    left: 220px; /* Start closer to 2019 circle edge */
    width: 230px; /* Adjusted distance to 2020 circle */
    height: 2px; /* Line thickness */
    background-color: #ff4757; /* Line color */
    margin-top: 41px; /* Match margin-top of timeline-item:nth-child(1) */
        transform: rotate(21deg); /* Adjust diagonal alignment */
}

.timeline-arrow:nth-child(4) {
    top: calc(6rem + 6px); /* Center of 2020 circle */
    left: 525px; /* Start closer to 2020 circle edge */
    width: 250px; /* Adjusted distance to 2021 circle */
    height: 2px; /* Line thickness */
    background-color: #ff4757; /* Line color */
    margin-top: 6px; /* Match margin-top of timeline-item:nth-child(3) */
    transform: rotate(-27deg); /* Adjust diagonal alignment */
}

.timeline-arrow:nth-child(6) {
    top: calc(3rem + 16px); /* Center of 2021 circle */
    left: 850px; /* Start closer to 2021 circle edge */
    width: 230px; /* Adjusted distance to 2023 circle */
    height: 2px; /* Line thickness */
    background-color: #ff4757; /* Line color */
    margin-top: 16px; /* Match margin-top of timeline-item:nth-child(5) */
    transform: rotate(18deg); /* Adjust diagonal alignment */
}

.arrow-line {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-top: 0;
    }
    
    .timeline-arrow {
        display: none; /* Hide lines for mobile view */
    }
    
    .arrow-line {
        width: 40px;
    }
    
    .timeline-item {
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-top: 0;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    .timeline-item {
        margin: 1rem;
    }
}

/* Developer Page Specific Styles */
.nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Code styling in feature items */
.feature-item p {
    font-family: var(--font-gaming);
    font-size: 0.85rem;
    line-height: 1.4;
    background: var(--bg-dark-tertiary);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 1rem;
}

/* Enhanced button styling */
.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive adjustments for developers page */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .platform-badges {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Profile Photo Styles */
.profile-photo {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 3px solid var(--primary-orange) !important;
    transition: all 0.3s ease !important;
    margin: 0 auto 1rem !important;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-photo:hover {
    border-color: var(--primary-red) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3) !important;
}

/* Update solution-header to center profile photos */
.solution-header .profile-photo {
    margin: 0 auto 1rem;
}

/* Navigation logo link styling */
.nav-logo a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--primary-orange);
}

/* General Mobile Optimizations */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-card,
    .solution-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Bootstrap Grid Enhancements */
.row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

@media (max-width: 768px) {
    .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* Custom Bootstrap Button Styling */
.btn-primary {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: var(--text-white) !important;
}

.btn-primary:hover {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: var(--text-white) !important;
}

.btn-secondary {
    background: transparent !important;
    border-color: var(--primary-orange) !important;
    color: var(--primary-orange) !important;
}

.btn-secondary:hover {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: var(--text-white) !important;
}

/* Responsive Text Sizing */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3,
    .solution-card h3 {
        font-size: 1.25rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* Enhanced Mobile-First Responsive Design */

/* Hero Section Enhancements */
.hero {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
        margin-top: 60px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-stats {
        order: 2;
        margin-top: 3rem;
    }
}

/* Contact Hero Mobile */
.contact-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
        margin-top: 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

/* Developer Page Mobile */
.developer-hero {
    padding: 6rem 0 4rem;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .developer-hero {
        padding: 4rem 0 3rem;
        margin-top: 60px;
    }
}

/* Integration Benefits Mobile */
.integration-benefits {
    background: var(--bg-dark-secondary);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
    .integration-benefits {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Statistics Cards Mobile */
.stat-item {
    background: var(--bg-dark-secondary);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
    .stat-item {
        padding: 1.5rem;
    }
}

/* SDK Cards Mobile */
.sdk-card {
    background: var(--bg-dark-secondary);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.sdk-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .sdk-card {
        padding: 1.5rem;
    }
}

/* Code Examples Mobile */
.code-example {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .code-example {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .code-example pre {
        white-space: pre-wrap;
        word-wrap: break-word;
    }
}

/* Table Responsive */
.table-responsive {
    border-radius: 0.5rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Breadcrumb Mobile */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.9rem;
    }
}

/* Alert Mobile */
.alert {
    border-radius: 0.5rem;
    border: none;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-red);
    border: 1px solid var(--error-red);
}

/* Form Controls Mobile */
.form-control,
.form-select {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--text-white);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-dark-secondary);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
    color: var(--text-white);
}

.form-control::placeholder {
    color: var(--text-gray-400);
}

@media (max-width: 768px) {
    .form-control,
    .form-select {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Modal Mobile */
.modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.75rem;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
}

/* Dropdown Mobile */
.dropdown-menu {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.5rem;
}

.dropdown-item {
    color: var(--text-gray-300);
}

.dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

/* Tooltips Mobile */
.tooltip-inner {
    background: var(--bg-dark);
    color: var(--text-white);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Offcanvas Mobile */
.offcanvas {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

/* Carousel Mobile */
.carousel-control-prev,
.carousel-control-next {
    filter: invert(1);
}

.carousel-indicators button {
    background: var(--primary-orange);
}

/* Accordion Mobile */
.accordion-item {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--bg-dark-secondary);
    color: var(--text-white);
    border: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-dark);
    color: var(--primary-orange);
}

.accordion-body {
    background: var(--bg-dark);
    color: var(--text-gray-300);
}

/* Pagination Mobile */
.pagination .page-item .page-link {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-white);
}

.pagination .page-item.active .page-link {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.pagination .page-item .page-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

/* Progress Bar Mobile */
.progress {
    background: var(--bg-dark-secondary);
    border-radius: 0.5rem;
}

.progress-bar {
    background: var(--primary-orange);
}

/* Badge Mobile */
.badge {
    background: var(--primary-orange);
    color: var(--text-white);
}

.badge i {
    color: var(--text-white) !important;
    font-size: 1.1rem;
}

/* Override for hero badges and platform badges to keep orange icons */
.hero-badges .badge,
.platform-badges .platform-badge {
    background: var(--bg-card);
    color: var(--text-gray-light);
}

.hero-badges .badge i,
.platform-badges .platform-badge i {
    color: #ff6b35 !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Ensure platform badges maintain correct styling */
.platform-badge {
    background: var(--bg-dark-tertiary) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    color: var(--text-gray-light) !important;
}

/* Ensure hero badges maintain correct styling */
.hero-badges .badge {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    color: var(--text-gray-light) !important;
}

/* Mobile Responsive Hexagon Layout */
@media (max-width: 768px) {
    .hexagon-container {
        height: 400px;
    }
    
    .stat-hexagon {
        width: 120px;
        height: 140px;
    }
    
    .stat-hexagon:nth-child(1) {
        transform: translate(-100px, -60px);
    }
    
    .stat-hexagon:nth-child(2) {
        transform: translate(100px, -60px);
    }
    
    .stat-hexagon:nth-child(3) {
        transform: translate(-100px, 80px);
    }
    
    .stat-hexagon:nth-child(4) {
        transform: translate(100px, 80px);
    }
    
    @keyframes float-1 {
        0%, 100% { transform: translate(-100px, -60px); }
        50% { transform: translate(-100px, -70px); }
    }
    
    @keyframes float-2 {
        0%, 100% { transform: translate(100px, -60px); }
        50% { transform: translate(100px, -70px); }
    }
    
    @keyframes float-3 {
        0%, 100% { transform: translate(-100px, 80px); }
        50% { transform: translate(-100px, 70px); }
    }
    
    @keyframes float-4 {
        0%, 100% { transform: translate(100px, 80px); }
        50% { transform: translate(100px, 70px); }
    }
}

@media (max-width: 576px) {
    .hexagon-container {
        height: 500px;
    }
    
    .stat-hexagon {
        width: 100px;
        height: 120px;
        position: relative;
        margin: 10px;
    }
    
    .stat-hexagon:nth-child(1) {
        transform: translate(-80px, -80px);
    }
    
    .stat-hexagon:nth-child(2) {
        transform: translate(80px, -80px);
    }
    
    .stat-hexagon:nth-child(3) {
        transform: translate(-80px, 100px);
    }
    
    .stat-hexagon:nth-child(4) {
        transform: translate(80px, 100px);
    }
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-badges {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .platform-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .platform-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions .btn {
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .platform-badges {
        gap: 0.4rem;
    }
    
    .platform-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}
