/* Hero Section Styles */
.text-primary {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    color: white !important;
}

.hero-heading {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    color: white !important;
}

.hero-section {
    position: relative;
}

.product-card {
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Feature Cards */
.shadow-feature {
    box-shadow: 0 10px 15px -3px rgba(0, 120, 193, 0.05), 0 4px 6px -2px rgba(0, 120, 193, 0.03);
}

.shadow-feature-hover {
    box-shadow: 0 20px 25px -5px rgba(0, 120, 193, 0.1), 0 10px 10px -5px rgba(0, 120, 193, 0.04);
}

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

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

/* Button Styles */
.btn-primary {
    background-color: #0078c1;
    color: white;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 120, 193, 0.2);
}

.btn-primary:hover {
    background-color: #005a94;
    box-shadow: 0 10px 15px -3px rgba(0, 120, 193, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(0, 120, 193, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
}

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
}

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