/* ===================================
   CSS Variables & Base Styles
   =================================== */
:root {
    /* Colors */
    --primary-color: #4F7FFF;
    --primary-dark: #3461E6;
    --primary-light: #6B95FF;
    --secondary-color: #FF6B9D;
    --accent-color: #00D9FF;
    --success-color: #00E676;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F7FFF 0%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B9D 0%, #FFA06B 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

    /* Dark theme colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #151a35;
    --bg-tertiary: #1e2442;
    --text-primary: #ffffff;
    --text-secondary: #b4b9d4;
    --text-muted: #7a7f99;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(79, 127, 255, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cursor Glow Effect - Desktop Only */
.cursor-glow {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle, rgba(79, 127, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

/* Show cursor glow only on devices with mouse */
@media (hover: hover) and (pointer: fine) {
    body:hover .cursor-glow {
        opacity: 1;
    }
}

/* Hide cursor glow on touch devices */
@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

/* Enhanced hover effects for interactive elements */
a, button, .service-card, .portfolio-item, .tech-icon-item {
    transition: all 0.3s ease;
}

a:hover, button:hover {
    filter: brightness(1.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

/* ===================================
   Buttons
   =================================== */
.cta-button {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

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

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 127, 255, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 127, 255, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.2) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease;
}

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

.floating-card {
    position: absolute;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 100px;
    left: 50px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: pulseGlow 4s ease infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

/* ===================================
   Ajeer Showcase
   =================================== */
.ajeer-section {
    background: var(--bg-secondary);
}

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

.showcase-visual {
    position: relative;
}

.mockup-container {
    position: relative;
    animation: floatSlow 6s ease-in-out infinite;
}

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

.device-mockup {
    background: linear-gradient(135deg, #1e2442 0%, #2a3154 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--glass-border);
}

.device-screen {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.demo-content {
    padding: 2rem;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.demo-logo {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-search {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border-radius: 20px;
    font-size: 0.875rem;
}

.demo-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-card {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    transition: all var(--transition-base);
}

.service-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.feature-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 600;
}

.showcase-content {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(79, 127, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.showcase-cta {
    display: flex;
    gap: 1rem;
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(79, 127, 255, 0.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.service-icon svg {
    stroke: white;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* Cloud Platform Logos */
.cloud-logos .tech-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    padding: 1rem;
}

.cloud-logos .tech-icon-item:hover .tech-logo-circle {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.cloud-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.tech-category {
    text-align: center;
}

.tech-category-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.tech-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.tech-icon-item:hover {
    transform: translateY(-10px);
}

.tech-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all var(--transition-base);
}

.tech-icon-item:hover .tech-icon-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.tech-icon-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===================================
   About / Founders Section
   =================================== */
.about-section {
    background: var(--bg-secondary);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.founder-card {
    padding: 0;
    overflow: hidden;
}

.founder-image {
    padding: 3rem;
    background: var(--gradient-primary);
    position: relative;
    text-align: center;
}

.founder-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
    font-weight: 800;
}

.avatar-text {
    color: white;
}

.founder-role-badge {
    padding: 0.5rem 1.5rem;
    background: white;
    color: var(--primary-dark);
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.founder-info {
    padding: 3rem;
}

.founder-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder-highlights {
    margin-bottom: 2rem;
}

.founder-highlights h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.founder-highlights ul {
    list-style: none;
}

.founder-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.founder-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.certifications {
    margin-bottom: 2rem;
}

.certifications h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.link-button {
    padding: 0.75rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.link-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.value-proposition {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.value-proposition h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-section {
    background: var(--bg-primary);
}

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

.portfolio-item {
    overflow: hidden;
    padding: 0;
    transition: all var(--transition-base);
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
}

.ajeer-preview {
    background: linear-gradient(135deg, #4F7FFF 0%, #00D9FF 100%);
}

.banking-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ai-preview {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.ml-preview {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blockchain-preview {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.cloud-preview {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-link:hover {
    gap: 1rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-info-card {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.benefit-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.direct-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.detail-icon {
    font-size: 1.5rem;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--primary-light);
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-container {
    padding: 0;
}

.contact-form-container h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.form-half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Budget Slider */
.budget-slider-container {
    position: relative;
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--bg-tertiary);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 1rem;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 127, 255, 0.4);
    transition: all var(--transition-base);
}

.budget-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 127, 255, 0.4);
    border: none;
    transition: all var(--transition-base);
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(79, 127, 255, 0.6);
}

.budget-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(79, 127, 255, 0.6);
}

.budget-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right,
        var(--primary-color) 0%,
        var(--primary-color) var(--slider-progress, 10%),
        var(--bg-tertiary) var(--slider-progress, 10%),
        var(--bg-tertiary) 100%);
}

.budget-slider::-moz-range-track {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--bg-tertiary);
}

.budget-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#budgetValue {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.budget-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(0, 230, 118, 0.2);
    border: 1px solid var(--success-color);
    color: var(--success-color);
    display: block;
}

.form-message.error {
    background: rgba(255, 107, 157, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    display: block;
}

/* ===================================
   Wizard Form
   =================================== */

/* Progress Indicator */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
    z-index: 2;
}

.progress-step.active .step-circle {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-glow);
}

.progress-step.completed .step-circle {
    background: rgba(79, 127, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-color);
}

.progress-line {
    width: 120px;
    height: 2px;
    background: var(--glass-border);
    margin: 0 1rem;
    align-self: flex-start;
    margin-top: 24px;
}

/* Wizard Steps */
.wizard-form {
    position: relative;
    min-height: 500px;
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.step-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    margin-top: -0.5rem;
}

/* Service Selection Grid */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.service-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.service-option.selected {
    background: rgba(79, 127, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(79, 127, 255, 0.3);
}

.service-option-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-option h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-option p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Budget Tiers */
.budget-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.budget-tier {
    padding: 2rem 1.5rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.budget-tier:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.budget-tier.selected {
    background: rgba(79, 127, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(79, 127, 255, 0.3);
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.budget-tier h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tier-range {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.budget-tier p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-navigation .cta-button {
    flex: 1;
}

.form-navigation .cta-button.secondary {
    background: var(--bg-tertiary);
    border: 2px solid var(--glass-border);
}

.form-navigation .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-primary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===================================
   Animations & Utilities
   =================================== */
.animate-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-visual {
        height: 400px;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .ajeer-showcase {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 2.5rem;
    }

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

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        transition: left var(--transition-base);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem 0;
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    /* Hide floating cards on mobile - they clutter the view */
    .floating-card {
        display: none;
    }

    .hero-visual {
        display: none;
    }

    .hero-container {
        gap: 2rem;
    }

    /* Stats - Horizontal scroll on small mobile */
    .hero-stats {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 2rem;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .stat {
        min-width: 120px;
        scroll-snap-align: center;
    }

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

    /* Sections */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    section {
        padding: 3rem 0;
    }

    /* Services & Portfolio */
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .portfolio-item {
        padding: 2rem 1.5rem;
    }

    /* Technology Stack */
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-icons {
        justify-content: flex-start;
    }

    .tech-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cloud-logos .tech-logo-circle {
        width: 70px;
        height: 70px;
        padding: 0.875rem;
    }

    .tech-icon-item span {
        font-size: 0.8rem;
    }

    /* Founders */
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founder-info {
        padding: 2rem 1.5rem;
    }

    /* Value Proposition */
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Section */
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Budget Slider - Better touch target */
    .budget-slider {
        height: 12px;
        margin-bottom: 1.5rem;
    }

    .budget-slider::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }

    .budget-slider::-moz-range-thumb {
        width: 28px;
        height: 28px;
    }

    #budgetValue {
        font-size: 1.75rem;
    }

    /* Wizard Form Mobile */
    .form-progress {
        padding: 0;
        margin-bottom: 2rem;
    }

    .progress-line {
        width: 60px;
        margin: 0 0.5rem;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .budget-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wizard-form {
        min-height: 400px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

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

    /* Mockup adjustments */
    .mockup-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .showcase-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .showcase-cta .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    .hero-title {
        font-size: 1.875rem;
        letter-spacing: -0.5px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

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

    /* Buttons - Minimum 44px touch target */
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    /* Badge */
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

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

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

    /* Hero adjustments */
    .hero {
        padding: 100px 0 40px;
    }

    section {
        padding: 2.5rem 0;
    }

    /* Service Cards */
    .service-card,
    .portfolio-item {
        padding: 1.5rem 1.25rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-title {
        font-size: 1.375rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-features li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        padding-left: 1.75rem;
    }

    /* Tech badges */
    .tech-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Showcase */
    .showcase-title {
        font-size: 1.75rem;
    }

    .showcase-description {
        font-size: 1rem;
    }

    .device-mockup {
        padding: 12px;
    }

    .demo-content {
        padding: 1.25rem;
    }

    .demo-logo {
        font-size: 1.25rem;
    }

    .demo-services {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        text-align: center;
    }

    /* Founder Cards */
    .founder-name {
        font-size: 1.5rem;
    }

    .founder-title {
        font-size: 0.9rem;
    }

    .founder-bio {
        font-size: 0.95rem;
    }

    .cert-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Contact Form */
    .contact-form-container h3 {
        font-size: 1.375rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    /* Budget slider - Even better for touch */
    .budget-slider::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }

    .budget-slider::-moz-range-thumb {
        width: 32px;
        height: 32px;
    }

    #budgetValue {
        font-size: 1.5rem;
    }

    .budget-hint {
        font-size: 0.8rem;
    }

    /* Direct contact details */
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .detail-icon {
        font-size: 1.25rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    /* Portfolio */
    .portfolio-title {
        font-size: 1.25rem;
    }

    .portfolio-description {
        font-size: 0.9rem;
    }

    .tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    /* Value proposition */
    .value-proposition h3 {
        font-size: 1.5rem;
    }

    .value-item h4 {
        font-size: 1rem;
    }

    .value-item p {
        font-size: 0.875rem;
    }

    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .hamburger,
    .scroll-indicator,
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .glass-card {
        border: 1px solid #ddd;
        background: white;
    }
}
