/* hero-styles.css is loaded separately as a preloaded asset in each page's <head>.
   Do NOT @import it here — that would cause it to be fetched twice. */
/* Google Fonts are loaded via <link> tags in each page's <head> for faster rendering.
   Do NOT add an @import here — @import inside CSS is render-blocking. */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Gradient Colors */
    --gradient-start: #667eea;
    --gradient-mid: #764ba2;
    --gradient-end: #f093fb;

    /* Secondary Gradients */
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-purple: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-orange: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-dark: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --gradient-hero: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Modern Colors */
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --accent-color: #f5576c;
    --success-color: #10b981;
    --warning-color: #f59e0b;

    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    --bg-dark: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(240, 147, 251, 0.3);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background Gradient */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(17, 153, 142, 0.08) 0%, transparent 40%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Navigation - Static Glassmorphism (Consistent across all pages) */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: none;
    /* No transition - static appearance */
}

/* Navbar Spacer - Hidden to allow the glassy nav to float over backgrounds */
.navbar-spacer {
    display: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.25));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.4));
}

.logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover .logo-text::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer Logo Styling */
.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-img {
    height: 50px;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.footer-brand .logo-text {
    font-size: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .logo-text::after {
    background: linear-gradient(90deg, #a78bfa, #667eea);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--gradient-blue);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.nav-cta:hover::before {
    left: 100%;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

/* Blog article sections should NOT have the large section padding */
.blog-content section {
    padding: 0;
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Gradient Cards - Glassmorphism */
.products {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:nth-child(2)::before {
    background: var(--gradient-purple);
}

.product-card:nth-child(3)::before {
    background: var(--gradient-green);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        var(--shadow-glow);
}

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

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.product-card:nth-child(2) .product-icon {
    background: var(--gradient-purple);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.product-card:nth-child(3) .product-icon {
    background: var(--gradient-green);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
}

.product-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-tag {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.product-card:nth-child(2) .product-tag {
    background: var(--gradient-purple);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.product-card:nth-child(3) .product-tag {
    background: var(--gradient-green);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1.05rem;

    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 12px;
}

.product-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--gradient-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.product-cta {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.product-cta:hover {
    gap: 14px;
}

/* AI Services Section - Gradient Cards */
.ai-services {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(102, 126, 234, 0.2),
        var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-icon {
    width: 88px;
    height: 88px;
    background: var(--gradient-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: var(--gradient-purple);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.service-card:nth-child(3) .service-icon {
    background: var(--gradient-green);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
}

.service-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    background-clip: text;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;

    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.service-benefits {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.benefit-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Step Numbers - Enhanced Visibility for About Page */
.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.35rem;
    font-family: 'Nunito', sans-serif;
    flex-shrink: 0;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow:
        0 4px 15px rgba(102, 126, 234, 0.4),
        0 0 0 4px rgba(102, 126, 234, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow:
        0 6px 20px rgba(102, 126, 234, 0.5),
        0 0 0 6px rgba(102, 126, 234, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

/* Dark section step numbers */
.why-us .step-number,
section[class*="dark"] .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow:
        0 4px 15px rgba(102, 126, 234, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Timeline connector line styling */
.timeline-line {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            rgba(102, 126, 234, 0.3) 0%,
            rgba(118, 75, 162, 0.5) 50%,
            rgba(102, 126, 234, 0.3) 100%);
    border-radius: 3px;
}

/* Why Choose Us - Dark Gradient */
.why-us {
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.why-us .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition-slow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(102, 126, 234, 0.2);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.why-card:nth-child(2) .why-icon {
    background: var(--gradient-purple);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.why-card:nth-child(3) .why-icon {
    background: var(--gradient-green);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
}

.why-card:nth-child(4) .why-icon {
    background: var(--gradient-orange);
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
}

.why-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;

    font-family: 'Nunito', sans-serif;
}

.why-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1.05rem;

    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item h4 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section - Gradient Button */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

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

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--primary-color);
    padding: 20px 48px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: var(--transition-slow);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 255, 255, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: white;
    padding: 100px 0 50px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
}

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

.footer-brand .logo {
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-blue);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    font-family: 'Nunito', sans-serif;
}

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

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    transform: translateX(6px);
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 32px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.nav-links {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    z-index: 999;
    transform: translateY(0);
    opacity: 1;
}

.nav-links.active li {
    width: 100%;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-links.active li:last-child {
    border-bottom: none;
}

.nav-links.active a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

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

/* Mobile CTA Button */
.nav-cta.mobile-visible {
    display: block;
    position: fixed;
    top: auto;
    bottom: 24px;
    left: 24px;
    right: 24px;
    text-align: center;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .logo-img {
        height: 36px;
    }

    .navbar .container {
        height: 70px;
    }

    .navbar-spacer {
        height: 100px !important;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-ctas {
        flex-direction: column;
    }

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

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .service-card {
        padding: 36px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stat-item h4 {
        font-size: 2.5rem;
    }

    section {
        padding: 80px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

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

    .footer-bottom a {
        margin: 0 16px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header - Modern AI Theme with Nunito Typography */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    padding: 160px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.12) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.15s backwards;
}

/* Contact Page - Gradient Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;

    font-family: 'Nunito', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;

    font-family: 'Nunito', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    transition: var(--transition);
    font-family: inherit;
    background: rgba(102, 126, 234, 0.03);
}

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

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

.submit-btn {
    width: 100%;
    background: var(--gradient-blue);
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form {
        padding: 32px;
    }
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Glow Effects */
.glow-blue {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
}

.glow-purple {
    box-shadow: 0 0 40px rgba(240, 147, 251, 0.3);
}

.glow-green {
    box-shadow: 0 0 40px rgba(17, 153, 142, 0.3);
}

/* Floating Animation */
.float {
    animation: float 6s ease-in-out infinite;
}

.float-delay-1 {
    animation-delay: 1s;
}

.float-delay-2 {
    animation-delay: 2s;
}

/* Card Hover Glow */
.card-glow {
    transition: var(--transition-slow);
}

.card-glow:hover {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 60px rgba(102, 126, 234, 0.2);
}

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* WhatsApp Tooltip */
.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: #1e1e2e;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::before {
        display: none;
    }
}

/* ===== LITE MODE - Reduced animations for slow connections (2G/3G) ===== */
body.lite-mode * {
    animation: none !important;
    transition: opacity 0.2s ease !important;
    /* Keep minimal fade transitions */
}

body.lite-mode .animated-bg {
    display: none;
}

body.lite-mode .whatsapp-float {
    animation: none !important;
}

body.lite-mode .hero-pattern,
body.lite-mode .hero-gradient-overlay {
    opacity: 0.3;
    /* Reduce visual complexity */
}

/* Preserve essential hover effects even in lite mode */
body.lite-mode a:hover,
body.lite-mode button:hover,
body.lite-mode .btn:hover {
    opacity: 0.8 !important;
    transition: opacity 0.15s ease !important;
}

/* --- Ajos Premium Navigation Styles --- */
:root {
    /* Brand Palette */
    --ajos-purple: #7C3AED;
    --ajos-indigo: #4F46E5;
    --ajos-text-main: #0F172A;
    --ajos-text-muted: #64748B;

    /* Glass and Gradients */
    --ajos-nav-bg: rgba(255, 255, 255, 0.65);
    --ajos-nav-border: rgba(255, 255, 255, 0.4);
    --ajos-cta-gradient: linear-gradient(135deg, var(--ajos-purple) 0%, var(--ajos-indigo) 100%);
    --ajos-cta-glow: rgba(124, 58, 237, 0.35);
    --ajos-shadow-sm: 0 4px 24px -4px rgba(15, 23, 42, 0.05);
}

/* Wrapper to allow the floating Bento-style look */
.ajos-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    /* Floats slightly down from top */
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When scrolled (toggled via JS) */
.ajos-nav-wrapper.scrolled {
    padding: 0.75rem 0;
}

.ajos-nav-wrapper.scrolled .ajos-navbar {
    box-shadow: 0 12px 32px -8px rgba(31, 38, 135, 0.1);
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque on scroll */
}

/* Glassmorphic Navbar */
.ajos-navbar {
    width: 92%;
    max-width: 1200px;
    background: var(--ajos-nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* Safari support */
    border: 1px solid var(--ajos-nav-border);
    border-radius: 100px;
    /* Bento pill shape */
    box-shadow: var(--ajos-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.4s ease;
}

/* Logo Setup */
.ajos-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.ajos-logo-img {
    height: 36px;
    width: auto;
}

.ajos-logo span {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ajos-text-main);
    letter-spacing: -0.03em;
    /* Tighter letter spacing for premium look */
}

/* Center Links */
.ajos-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ajos-nav-links a {
    text-decoration: none;
    color: var(--ajos-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.ajos-nav-links a:hover {
    color: var(--ajos-purple);
}

/* Animated Minimalist Indicator/Under-glow */
.ajos-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ajos-purple);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    box-shadow: 0 2px 8px var(--ajos-cta-glow);
    opacity: 0;
}

.ajos-nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

/* CTA & mobile toggle container */
.ajos-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Vibrant CTA Button */
.ajos-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ajos-cta-gradient);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 9999px;
    /* Max pill shape */
    box-shadow: 0 6px 20px -4px var(--ajos-cta-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Internal rim light */
    letter-spacing: 0.01em;
}

.ajos-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -4px var(--ajos-cta-glow);
    filter: brightness(1.1);
    color: #ffffff;
}

/* Simple Mobile Toggle */
.ajos-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.ajos-mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ajos-text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Breakpoint */
@media (max-width: 992px) {
    .ajos-nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 24px 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .ajos-nav-links.active {
        left: 0;
    }

    .ajos-nav-links a {
        padding: 16px 32px;
        width: 100%;
        display: block;
    }

    .ajos-mobile-toggle {
        display: flex;
    }

    .ajos-navbar {
        padding: 0.75rem 0.5rem 0.75rem 1rem;
    }
}

/* Global Navbar Spacer Fix for New Floating Nav Height */
.navbar-spacer {
    height: 110px !important;
}

/* Breadcrumb Layout Settings */
.breadcrumb-nav {
    padding: 0 0 24px 0;
}

.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    /* Readability on dark gradient */
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-nav li {
    color: rgba(255, 255, 255, 0.5);
    /* For slashes indicating paths */
}

.breadcrumb-nav li:last-child {
    color: white;
    font-weight: 600;
}