:root {
    --primary: #043364;
    --primary-light: #6f5bf1;
    --primary-dark: #00b0f0;
    --primary-lighter: #eeecfc;
    --text-dark: #1e1b4b;
    --text-medium: #4b4870;
    --text-light: #6e6c85;
}

body {
    color: var(--text-medium);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

.bg-light-custom {
    background-color: #f5fcff;
}

.bg-sec-custom {
    background-color: #00b0f0;
}

.bg-purple-light {
    background-color: var(--primary-lighter);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 64, 239, 0.3);
}

.btn-outline-primary-custom {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 64, 239, 0.2);
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.logo-icon {
    background-color: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 8px;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem;
    }
}

.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background-color: var(--primary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.testimonial-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-card {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.card-mockup {
    background-color: var(--primary);
    border-radius: 16px;
    height: 220px;
    width: 100%;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(88, 64, 239, 0.3);
}

.card-chip {
    width: 45px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    margin-bottom: 30px;
}

.card-wave {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.purple-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.purple-circle-1 {
    top: -150px;
    right: -100px;
}

.purple-circle-2 {
    bottom: -150px;
    left: -100px;
}

.app-mockup {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    max-width: 100%;
    height: auto;
}

.land-app {
    max-width: 100%;
    height: auto;
    rotate: 5deg;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-dark);
}

.feature-check {
    color: var(--primary);
    margin-right: 10px;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
    max-height: 40px;
    width: auto;
}

.partner-logo:hover {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

footer {
    background-color: #043364;
    color: rgba(255, 255, 255, 0.858);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.858);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #00b0f0;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: #121026;
    color: white;
    border-radius: 12px;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.download-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 24px;
    margin-right: 10px;
}

/* Extending existing styles from index page */
.about-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    overflow: hidden;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mission-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
}

/* Timeline styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: var(--primary);
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
    top: 15px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.timeline-content h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Team styles */
.team-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
}

.team-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid var(--primary-light);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

/* Value cards */
.value-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Achievement cards */
.achievement-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
}

.achievement-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 18px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 18px;
    }
}