/* Hero Card Styles */
.hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Service Cards */
.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Process Cards */
.process-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

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

.process-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-primary);
    opacity: 0.8;
}

/* Review Cards */
.reviews-section-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #ffc107;
}

/* Portfolio Cards */
.portfolio-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
}

.pricing-bucket {
    transition: transform 0.3s ease;
}

.pricing-bucket:hover {
    transform: translateY(-5px);
}

.bucket-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.bucket-price {
    font-weight: 700;
}

.pricing-details {
    transition: transform 0.3s ease;
}

.pricing-details:hover {
    transform: translateY(-5px);
}

/* Industry Cards */
.industry-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* .industry-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.industry-card:hover img {
    opacity: 1;
} */

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--bs-primary) 0%, darken(var(--bs-primary), 15%) 100%);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--bs-primary-rgb), 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-card {
        margin-top: 50px !important;
    }
    
    .process-number {
        font-size: 2rem;
    }

    .pricing-bucket {
        margin-bottom: 1rem;
    }

    .industry-card {
        margin-bottom: 1rem;
    }
}

/* Button Styles */
.btn-primary {
    background: var(--bs-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.4);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Image Styles */
.shadow-lg {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Text Styles */
.text-primary {
    color: var(--bs-primary) !important;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 