html {
    font-size: 18px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d4a87;
    --secondary-color: #1e3a72;
    --accent-color: #a52a2a;
    --accent-light: #c44242;
    --success-color: #059669;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --gradient-start: #374151;
    --gradient-end: #4b5563;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Akrobat';
    src: url('/fonts/webfonts/Akrobat-Regular.woff') format('woff'), url('/fonts/webfonts/Akrobat-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url('/fonts/webfonts/Akrobat-Bold.woff') format('woff'), url('/fonts/webfonts/Akrobat-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

body {
    padding-top: 72px; /* Adjust to match your navbar height */
    font-family: 'Akrobat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 18px !important;
    /* fallback for browsers that don't support gradients */
    background: #fff;
    /* animated gradient background */
    background: linear-gradient(120deg, #ffffff 0%, #f8fafc 50%, #e9ecef 100%);
    background-size: 200% 200%;
    animation: bg-move 10s ease-in-out infinite;
}

@keyframes bg-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        padding: 0.5rem 0;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
    }

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        height: 40px;
        width: auto;
        margin-right: 0;
    }

    .navbar-brand:hover {
        color: var(--accent-light);
    }

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }

    .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

    .btn-outline-primary:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

.scroll-strip {
    width: 250px;
    height: 420px;
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
    background: #fff;;
}

.strip-one{
    top: -100px;
}

@media (max-width: 768px) {
    .strip-one{
        top: auto;
    }
}

.scroll-strip-inner {
    display: flex;
    flex-direction: column;
    animation: scroll-vertical 12s linear infinite;
}

.scroll-strip-inner-reverse {
    animation: scroll-vertical-reverse 14s linear infinite;
}

@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-vertical-reverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}
/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);*/
    color: var(--white);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)" /></svg>');*/
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

    .hero h1 strong {
        font-weight: 500;
    }

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-bg {
    background: linear-gradient(120deg, rgba(15,32,39,0.7), rgba(44,83,100,0.7)),
                url('/img/hero-bg.jpeg') center/cover no-repeat;
    color: #fff;
    position: relative;
}
.help-bg {
    background: linear-gradient(120deg, #f8fafc 60%, #e0e7ef 100%);
    color: #1f2937;
}

.cta-bg {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(44, 82, 130, 0.8) 100%), url('/img/cta-bg.jpeg?&auto=format&fit=crop&w=2084&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

/* Section Styles */
.section {
    padding: 5rem 0 0 0 !important;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
        position: relative;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

    .section-title p {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.features-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

    .feature-title small {
        font-size: 0.85em;
        font-weight: 500;
        display: block;
        margin-top: 0.3rem;
    }

.feature-description {
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Screenshot Images */
.feature-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .feature-screenshot:hover {
        transform: scale(1.05);
    }

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

    .benefits-list li {
        padding: 0.5rem 0;
        color: var(--text-light);
        display: flex;
        align-items: center;
        line-height: 1.2;
    }

        .benefits-list li i {
            color: var(--success-color);
            margin-right: 1rem;
            font-size: 1rem;
            min-width: 20px;
        }

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.client-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

.client-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 1rem;
    height: auto;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var (--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

    .footer h5 {
        color: var(--accent-color);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            padding: 0.5rem 0;
        }

            .footer ul li a {
                color: #d1d5db;
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .footer ul li a:hover {
                    color: var(--accent-color);
                }

.footer-logo {
    height: 32px;
    width: auto;
    margin-right: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}


/* Performance optimizations */
.feature-card, .testimonial-card, .client-logo {
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

/* Reduce layout shift */
.feature-screenshot {
    aspect-ratio: 5/2;
    object-fit: cover;
}

.swiper {
    min-height: 300px;
}
/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}

/* Print styles */
@media print {
    .navbar, .social-icons, .btn, .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}
