/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Card Styles */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-header {
    font-weight: 600;
}

/* Package Card Styles */
.package-card {
    border: 2px solid transparent;
}

.package-card:hover {
    border-color: #0d6efd;
}

/* Button Styles */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

/* Form Styles */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    padding: 5rem 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 3rem;
}

/* Influencer Cards */
.influencer-card {
    text-align: center;
    padding: 20px;
}

.influencer-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Badge Styles */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 600;
}
/* Ensure these are in your style.css */
.highlight {
    color: #3d7bf5;
    font-weight: 700;
}

.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #3d5afe 100%);
    color: white;
    padding: 5rem 0;
}

.step-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.influencer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.platform-badge.twitter {
    background: #1da1f2;
    color: white;
}
.platform-badge.youtube {
    background: #ff0000;
    color: white;
}