/*
 * Arcturus - Beautiful Modern Design
 * Perfect Color Harmony + Smooth Animations
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Perfect Color Palette */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --secondary: #F97316;
    --secondary-dark: #EA580C;
    --secondary-light: #FB923C;
    --accent: #10B981;
    --purple: #8B5CF6;
    --cyan: #06B6D4;
    --pink: #EC4899;

    /* Neutrals */
    --dark: #111827;
    --dark-light: #1F2937;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --grad-secondary: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --grad-dark: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    --grad-accent: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --grad-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --grad-hero: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(37, 99, 235, 0.5);
    --shadow-secondary: 0 10px 40px -10px rgba(249, 115, 22, 0.5);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-base: 15px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--text-base);
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    line-height: 1.5;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img.loaded {
    opacity: 1;
}



a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.7);
    }
}

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

    100% {
        left: 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* padding: 20px 0; */
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.logo-icon {
    width: 140px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    z-index: 2;
    transition: all 0.4s var(--bounce);
    box-shadow: var(--shadow-secondary);
}

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

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.navbar.scrolled .logo-text {
    color: var(--dark);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    color: var(--gray-800);
    padding-left: 20%;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 6px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-800);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--grad-secondary);
    border-radius: 3px;
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--grad-secondary) !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-secondary);
    border: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(249, 115, 22, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s var(--ease);
}

.navbar.scrolled .mobile-toggle {
    background: var(--primary);
}

.navbar.scrolled .mobile-toggle span {
    background: white;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10px 0 10px;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: -200px;
    right: -200px;
    animation: morphBlob 15s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: -100px;
    left: -100px;
    animation: morphBlob 12s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    top: 50%;
    left: 30%;
    animation: float 8s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* padding: 10px 20px; */
    border-radius: 50px;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
}

.hero-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    border: none;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--grad-secondary);
    color: white;
    box-shadow: var(--shadow-secondary);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-4px);
}

.btn-dark {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.6);
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-number span {
    color: var(--secondary);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 8px;
}

.hero-visual {
    animation: fadeInRight 1s ease 0.3s both;
    position: relative;
    padding-top: 90px;
}

.hero-visual img {
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.hero-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-card-1 {
    /* bottom: -40px; */
    bottom: 0px;
    left: -70px;
}

.hero-card-2 {
    /* top: -20px; */
    top: 10px;
    right: -70px;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-card-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary);
}

.hero-card-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.hero-card-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.hero-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 20px 0;
}

.section-light {
    background: var(--gray-50);
}

.section-white {
    background: white;
}

.section-dark {
    background: var(--grad-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.section-badge i {
    color: var(--secondary);
}

.section-title {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: all 0.4s var(--bounce);
}

.card:hover .card-icon {
    background: var(--grad-secondary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-secondary);
}

.card:hover .card-icon span {
    filter: brightness(0) invert(1);
}

.card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    /* margin-bottom: 10px; */
    font-weight: 700;
}

.card p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.5;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 10px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 14px;
}

/* ========== KEY CAPABILITIES ========== */
.key-caps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 20px;
}

.key-cap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease);
}

.key-cap-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.key-cap-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.key-cap-item strong {
    color: white;
}

/* ========== INTERACTIVE PRODUCT CARDS ========== */
.product-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.product-main-card {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease);
}

/* Card Front - Default State */
.card-front {
    position: relative;
    height: 100%;
    min-height: 320px;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    transition: all 0.5s var(--ease);
}

#cv-card .card-front {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

#genai-card .card-front {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
}

#iot-card .card-front {
    background: linear-gradient(135deg, #059669 0%, #34D399 100%);
}

.card-icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}

.card-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    animation: morphBlob 8s ease-in-out infinite;
    transition: all 0.5s var(--ease);
}

.card-icon-wrap i {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    color: white;
    line-height: 100px;
    width: 100%;
    text-align: center;
    transition: all 0.5s var(--bounce);
}

.card-front h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-front p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hover-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s var(--ease);
    pointer-events: none;
}

/* Hover Effects on Card */
.product-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-main-card:hover .card-icon-bg {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.product-main-card:hover .card-icon-wrap i {
    transform: scale(1.2);
}

.product-main-card:hover .card-glow {
    transform: translate(-50%, -50%) scale(1);
}

.product-main-card:hover .hover-hint {
    opacity: 0;
}

/* Card Expanded - Shows on Hover */
.card-expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.4s var(--ease);
    z-index: 3;
    overflow-y: auto;
    border-radius: 24px;
}

.product-main-card:hover .card-expanded {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.product-main-card:hover .card-front {
    opacity: 0;
    transform: scale(1.1);
}

.expanded-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#cv-card .expanded-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

#genai-card .expanded-header {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
}

#iot-card .expanded-header {
    background: linear-gradient(135deg, #059669 0%, #34D399 100%);
}

.expanded-header i {
    font-size: 1.5rem;
    color: white;
}

.expanded-header h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.expanded-content {
    padding: 25px 30px;
}

/* Solution Groups for CV Card */
.solution-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.4s ease both;
}

.solution-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.solution-group:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-group:nth-child(2) {
    animation-delay: 0.15s;
}

.solution-group:nth-child(3) {
    animation-delay: 0.2s;
}

.solution-group:nth-child(4) {
    animation-delay: 0.25s;
}

.solution-group h5 {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-group h5 i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.solution-group ul {
    list-style: none;
    padding-left: 5px;
}

.solution-group ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.solution-group ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.solution-group ul li u {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Product Highlights for GenAI and IoT Cards */
.product-highlight {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease);
    animation: fadeInUp 0.4s ease both;
}

.product-highlight:nth-child(1) {
    animation-delay: 0.1s;
}

.product-highlight:nth-child(2) {
    animation-delay: 0.2s;
}

.product-highlight:last-child {
    margin-bottom: 0;
}

.product-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.product-highlight.large {
    flex-direction: column;
    text-align: center;
}

.product-highlight.large .product-highlight-icon {
    margin: 0 auto 15px;
}

.product-highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.product-highlight-info h5 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-highlight-info h5 a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-highlight-info h5 a:hover {
    color: var(--secondary);
}

.product-highlight-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-highlight-info p u {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.feature-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.2);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-tags span i {
    font-size: 0.7rem;
}

/* ========== STATS ========== */
.stats-section {
    padding: 30px 0;
    background: var(--grad-hero);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: block;
}

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

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 500;
}

/* ========== PRODUCTS ========== */
.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: all 0.4s var(--ease);
}

.product-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-item:nth-child(even) {
    direction: rtl;
}

.product-item:nth-child(even)>* {
    direction: ltr;
}

.product-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grad-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-secondary);
}

.product-content h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-tagline {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.product-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* .product-features { margin-bottom: 30px; } */
.product-features {
    list-style: none;
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

/* .product-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 1.05rem; color: var(--gray-700); } */
.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
}

/* .product-features .icon { width: 28px; height: 28px; background: var(--grad-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; } */
.product-features li .icon {
    width: 22px;
    height: 22px;
    background: var(--grad-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--ease);
    position: relative;
    border: 1px solid var(--gray-100);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-name {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ========== CLIENTS ========== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* .client-card {
    background: hwb(33 2% 94% / 0.253);
    padding: 10px;
    border-radius: 17px;
    text-align: center;
    transition: all 0.4s var(--ease);
    border: 2px solid transparent;
} */

/* .client-card {
    min-width: 220px;
    height: 120px;
    background: #111827;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */

/* .client-card img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
} */



.clients-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.clients-track {
    display: flex;
    gap: 10px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.clients-slider::before,
.clients-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, #3486d7, transparent);
}

@media (max-width: 768px) {
    .client-card {
        min-width: 180px;
        height: 100px;
    }
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover (nice UX) */
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.client-card:hover {
    /* background: white; */
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.client-card img {
    /* height: 30px; */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s var(--ease);
    margin: 0 auto;
    max-width: 200px;
    max-height: 90px;
    object-fit: contain;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-card {
    min-width: 150px;
    height: 100px;
    background: #4db1dc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.client-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 700;
}

/* ========== CTA ========== */
.cta {
    padding: 30px 0;
    background: var(--grad-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 80px 0 40px;
    background: var(--grad-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    font-size: 1rem;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scaleIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    transition: all 0.4s var(--ease);
    border-left: 4px solid transparent;
}

.contact-card:hover {
    border-left-color: var(--secondary);
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--grad-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    color: var(--gray-500);
    font-size: 1rem;
}

.contact-card a:hover {
    color: var(--secondary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-form p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-group label span {
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s var(--ease);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--grad-secondary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.alert {
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.faq-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    transition: background 0.3s var(--ease);
}

.faq-header:hover {
    background: var(--gray-50);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--grad-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.4s var(--ease);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-body {
    max-height: 300px;
}

.faq-body p {
    padding: 0 25px 20px;
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.4s var(--bounce);
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
}

.social-icon.linkedin:hover {
    background: #0077B5;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: var(--grad-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 999;
    box-shadow: var(--shadow-secondary);
    cursor: pointer;
    border: none;
}

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

.back-to-top:hover {
    transform: translateY(-6px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

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

    .hero-visual {
        display: none;
    }

    .cards-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-main-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile - Single Column */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile Navigation Styles */
    .navbar .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 70px 20px 30px;
        padding-left: 20px !important;
        z-index: 1000;
        overflow-y: auto;
        margin: 0;
    }

    .navbar .nav-links.active {
        display: flex !important;
    }

    .navbar .nav-links li {
        width: 100%;
        max-width: 300px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar .nav-links li:first-child {
        margin-top: 0;
    }

    .navbar .nav-links li:last-child {
        border-bottom: none;
        margin-top: 10px;
    }

    .navbar .nav-links a {
        display: block !important;
        padding: 16px 20px;
        font-size: 1.1rem;
        color: white !important;
        transition: all 0.3s ease;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar .nav-links a:hover,
    .navbar .nav-links a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #F97316 !important;
    }

    .navbar .nav-links a::after {
        display: none;
    }

    .navbar .nav-links .nav-cta {
        display: inline-flex;
        width: auto;
        margin-top: 10px;
        padding: 14px 30px;
        background: linear-gradient(135deg, #F97316, #FB923C);
        border-radius: 50px;
        color: white !important;
    }

    /* Mobile Toggle Button - Always Visible */
    .mobile-toggle {
        display: flex !important;
        position: fixed !important;
        right: 5px !important;
        top: 30px !important;
        z-index: 1002 !important;
        flex-direction: column;
        gap: 6px;
        /*padding: 12px;*/
        background: rgba(37, 99, 235, 0.9);
        border-radius: 10px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-toggle span {
        width: 26px;
        height: 3px;
        background: white !important;
        border-radius: 3px;
        transition: all 0.3s ease;
        display: block;
    }

    .mobile-toggle.active {
        background: rgba(249, 115, 22, 0.95);
    }

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

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

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

    /* Override for scrolled state */
    .navbar.scrolled .mobile-toggle {
        background: rgba(37, 99, 235, 0.95);
    }

    .navbar.scrolled .mobile-toggle span {
        background: white !important;
    }

    .navbar.scrolled .mobile-toggle.active {
        background: rgba(249, 115, 22, 0.95);
    }

    /* Logo Mobile */
    .logo-icon {
        width: 100px;
        height: 45px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-text span {
        display: inline;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero .container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 6px);
        text-align: center;
        padding: 16px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    /* Section Styles */
    .section {
        padding: 50px 0;
    }

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

    .section-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Key Capabilities Mobile */
    .key-caps {
        flex-direction: column;
        padding: 20px 16px;
        gap: 10px;
        margin-bottom: 30px;
    }

    .key-cap-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .key-cap-item i {
        font-size: 1rem;
        min-width: 24px;
    }

    /* Product Cards Mobile */
    .product-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-main-card {
        min-height: 260px;
    }

    .product-main-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .card-front {
        padding: 30px 20px;
        min-height: 260px;
    }

    .card-icon-wrap {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .card-icon-wrap i {
        font-size: 1.8rem;
        line-height: 65px;
    }

    .card-front h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .card-front p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hover-hint {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

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

    /* Expanded Card Mobile */
    .expanded-header {
        padding: 18px;
    }

    .expanded-content {
        padding: 15px 18px;
    }

    .solution-group {
        margin-bottom: 12px;
    }

    .solution-group h5 {
        font-size: 0.9rem;
    }

    .solution-group ul li {
        font-size: 0.8rem;
        padding: 3px 0;
    }

    /* Cards Grid */
    .cards-grid,
    .stats-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 24px 20px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .card-icon span {
        font-size: 1.5rem;
    }

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-box {
        padding: 20px 12px;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    /* Clients */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card {
        padding: 15px 10px;
    }

    /* Testimonials */
    .testimonial {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Product Items */
    .product-item {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 25px;
    }

    .product-item:nth-child(even) {
        direction: ltr;
    }

    /* About & Contact */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* CTA Section */
    .cta {
        padding: 50px 20px;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-stat {
        flex: 0 0 100%;
        padding: 14px 10px;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

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

    .key-cap-item {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .card-front h3 {
        font-size: 1.05rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .logo-icon {
        width: 80px;
        height: 40px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cta h2 {
        font-size: 1.4rem;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }
}