/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #0d6efd;
}

a:hover {
    color: #0a58ca;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 5rem 0;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Sections */
.section-title {
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #6e8efb;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #6e8efb;
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6e8efb;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Earnings Cards */
.earnings-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.earnings-card.balance {
    border-top: 4px solid #28a745;
}

.earnings-card.total {
    border-top: 4px solid #007bff;
}

.earnings-card h6 {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.earnings-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Social Share Buttons */
.social-share-buttons .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-facebook {
    background-color: #3b5998;
    color: white;
}

.btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-make {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
.btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 3rem 0;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: white;
}

/* Dashboard Styles */
#sidebar {
    min-height: calc(100vh - 56px);
    background: #343a40;
}

#sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

#sidebar .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

#sidebar .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
        margin-top: 2rem;

    }
}

#animated-heading {
    transition: opacity 0.4s ease-in-out;
    font-size: 3rem;
    font-weight: 700;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* Optional: Style carousel if needed */
.carousel .carousel-inner img {
    border-radius: 12px;
    height: auto;
    object-fit: cover;
    max-height: 350px;
}
