:root {
    --bg-color: #0b1120;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent: #38bdf8;
    /* Sky blue/Cyan for SaaS tech vibe */
    --accent-glow: rgba(56, 189, 248, 0.3);
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-border: rgba(148, 163, 184, 0.1);
    --gradient-1: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.globe-1 {
    width: 400px;
    height: 400px;
    background: #0f4c75;
    top: -100px;
    left: -100px;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: #1e3a8a;
    bottom: -150px;
    right: -150px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    transition: 0.3s;
}

.lang-btn:hover {
    border-color: var(--accent);
    color: white;
}

.lang-btn span.active {
    color: var(--accent);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: white;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Hero Image & Cards */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    filter: grayscale(20%);
    /* Artistic touch */
    transition: filter 0.5s;
}

.image-wrapper img:hover {
    filter: grayscale(0%);
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(56, 189, 248, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.floating-card strong {
    color: white;
    font-size: 0.9rem;
}

.card-1 {
    top: 30px;
    left: -40px;
}

.card-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Sections General */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.icon-box {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* SaaS Showcase */
.panes-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.5), transparent);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--card-border);
}

.tag {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pane-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pane-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-stack span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--card-border);
}

/* CSS Dashboard Art */
.dashboard-preview {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    position: relative;
    aspect-ratio: 16/10;
}

.dash-header {
    height: 30px;
    background: #1e293b;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid #334155;
    justify-content: space-between;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.dash-search {
    width: 100px;
    height: 6px;
    background: #334155;
    border-radius: 4px;
}

.dash-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dash-block {
    background: #1e293b;
    border-radius: 6px;
}

.full {
    width: 100%;
    height: 40px;
}

.dash-row {
    display: flex;
    gap: 1rem;
    height: 100px;
}

.half {
    flex: 1;
    height: 100%;
}

.graph {
    height: 80px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.1) 0%, transparent 100%);
    border-top: 2px solid var(--accent);
    position: relative;
}

.overlay-msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.85);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.overlay-msg i {
    color: var(--accent);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #334155;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    background: var(--bg-color);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.timeline-content .date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Improved Timeline Impact Styles */
.job-impact {
    list-style: none;
    margin-top: 1.2rem;
    padding: 0;
}

.job-impact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.08) 0%, transparent 100%);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    transition: transform 0.2s ease;
}

.job-impact li:hover {
    transform: translateX(5px);
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.12) 0%, transparent 100%);
}

.job-impact li::before {
    content: '\f00c';
    /* FontAwesome check icon code */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.85rem;
}

.timeline-content h3 {
    margin-bottom: 0.2rem;
}

.company {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #020617;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-left h2 {
    color: white;
    font-size: 2rem;
}

.footer-bottom {
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Response */
@media (max-width: 968px) {

    .hero-container,
    .panes-layout,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .image-wrapper {
        margin-top: 3rem;
    }

    .card-1 {
        left: 0;
    }

    .card-2 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -2.15rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}