/* ==================================================================
   CLEAN & OFFICIAL PROPANE FOR LIFE CSS
   Only uses: #0056b3 (blue) & #ff6b00 (orange)
   ================================================================== */

body {
    font-family: 'Poppins', sans-serif;
}

/* Backgrounds */
.hero-bg {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.95) 0%, rgba(255, 107, 0, 0.85) 100%),
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover fixed;
}

/* Cards & Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* Gradient Text (Animated) */
/* .text-gradient {
    background: linear-gradient(90deg, #0056b3 0%, #ff6b00 50%, #0056b3 100%); 
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 4s linear infinite;
} */

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #0056b3, #ff6b00);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #004494, #e55a00);
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 86, 179, 0.4);
}

.btn-orange {
    background: linear-gradient(90deg, #ff6b00, #ff8c42);
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: linear-gradient(90deg, #e55a00, #ff4500);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.4);
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Scroll Animations (used with JS observer) */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up,
.animate-scale-in {
    opacity: 0;
    animation-fill-mode: both;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.animate-fade-up {
    animation-name: fade-up;
}

.animate-scale-in {
    animation-name: scale-in;
}

/* Gradient Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shine / Shimmer Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    transform: translateX(-100%) rotate(30deg);
    transition: none;
    pointer-events: none;
    opacity: 0;
}

.card-shine:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradient Border */
.gradient-border {
    position: relative;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #0056b3, #ff6b00) border-box;
    border: 3px solid transparent;
    border-radius: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#0056b3, #ff6b00);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#004494, #e55a00);
}

/* Pulse Glow (for icons/buttons) */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 86, 179, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Hover Lift */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Simple Fade In */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}