:root {
    --primary-color: #6f42c1;
    --secondary-color: #5a32a3;
    --accent-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6rem 0;
    margin-bottom: 4rem;
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    background: white;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--accent-color);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.feature-list i {
    color: var(--primary-color);
    margin-left: 1rem;
    margin-top: 0.25rem;
}

/* Logo Styles */

.navbar-brand img {
    height: 40px;
    width: auto;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }
}

/* Client Card Styles */

.client-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.become-client-card {
    transition: transform 0.3s ease;
}

.become-client-card:hover {
    transform: translateY(-5px);
}

.become-client-card .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.project-description p {
    line-height: 1.8;
    color: #4a4a4a;
}

.booking-info {
    border-right: 4px solid var(--primary-color);
    background-color: rgba(111, 66, 193, 0.05) !important;
}

.booking-info li {
    padding: 0.5rem 0;
    transition: transform 0.2s ease;
}

.booking-info li:hover {
    transform: translateX(-5px);
}

.booking-info i {
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .client-card {
        padding: 1.5rem !important;
    }

    .client-logo img {
        width: 60px;
        height: 60px;
    }
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.vh-75 {
    height: 75vh;
}

.vh-80 {
    height: 80vh;
}

.vh-85 {
    height: 85vh;
}

.vh-90 {
    height: 90vh;
}