﻿:root {
    --primary-light-green: #E8F5E9;
    --secondary-light-yellow: #FFF9C4;
    --accent-teal: #26A69A;
    --accent-blue: #0D47A1;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --skenzi-pink: #FF6B9E;
    --skenzi-purple: #9D6BFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 77px; /* Adjusted for fixed navbar */
}

/* Navigation Bar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-teal);
}

    .navbar-brand span {
        color: var(--accent-blue);
    }

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 10px;
    position: relative;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--accent-teal);
        bottom: 0;
        left: 0;
        transition: width 0.3s;
    }

    .nav-link:hover:after,
    .nav-link.active:after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--accent-teal);
    }

/* Login Button */
.btn-login {
    background-color: var(--accent-blue);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

    .btn-login:hover {
        background-color: #0a3a7a;
        color: white;
        transform: translateY(-2px);
        text-decoration: none;
    }

/* Hero Section Spacing Fix */
.hero-section {
    background-color: var(--primary-light-green);
    padding: 80px 0 60px; /* Added top padding for navbar */
    position: relative;
    overflow: hidden;
    margin-top: -10px; /* Compensate for body padding */
}

/* Enhanced Offers Section */
.offers-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.offer-card {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    color: white;
}

    .offer-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

    .offer-card.kairo {
        background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    }

    .offer-card.anvoice {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .offer-card.skenzi {
        background: linear-gradient(135deg, var(--skenzi-pink) 0%, var(--skenzi-purple) 100%);
    }

.offer-tag {
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.offer-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.offer-card p {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Offer Section Buttons */
.offer-btn {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
}

    .offer-btn:hover {
        background: white;
        color: var(--text-dark);
        text-decoration: none;
    }

.offer-pattern {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

    .offer-pattern:after {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        background: rgba(255,255,255,0.07);
        border-radius: 50%;
        bottom: -30px;
        left: -30px;
    }

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

    .section-title:after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--accent-teal);
        bottom: -10px;
        left: 0;
    }

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    border: none;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-title {
    font-weight: 600;
    margin: 15px 0;
}

/* View Details Buttons */
.btn-view {
    background-color: var(--accent-teal);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

    .btn-view:hover {
        background-color: #1e8c82;
        color: white;
        transform: translateY(-2px);
        text-decoration: none;
    }

/* ANVOICE Branding Section */
.anvoice-section {
    padding: 60px 0;
    background-color: var(--primary-light-green);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-section {
    padding: 60px 0;
    background-color: white;
}

.testimonial-card {
    background-color: var(--primary-light-green);
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    position: relative;
}

    .testimonial-card:before {
        content: '\201C';
        font-size: 5rem;
        color: var(--accent-teal);
        opacity: 0.2;
        position: absolute;
        top: 10px;
        left: 20px;
    }

.client-name {
    font-weight: 600;
    color: var(--accent-blue);
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-teal);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: white;
    }

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: var(--accent-teal);
    }

.copyright {
    border-top: 1px solid #495057;
    padding-top: 20px;
    margin-top: 40px;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Button Styles */
.btn-kairo {
    background-color: var(--accent-teal);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 15px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: inline-block;
}

    .btn-kairo:hover {
        background-color: #1e8c82;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

.btn-anvoice {
    background-color: var(--accent-blue);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: inline-block;
}

    .btn-anvoice:hover {
        background-color: #0a3a7a;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadein {
    animation: fadeIn 1s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-kairo,
    .btn-anvoice {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .btn-kairo {
        margin-right: 0;
    }
}

/* Responsive adjustments for navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-top: 15px;
    }

    .nav-link {
        margin: 10px 0;
        padding: 10px 0;
    }

    .btn-login {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
}
