/* Custom Styles for Gressbond Website */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Brand Colors */
.text-gressbond-green { color: #15863F; }
.bg-gressbond-green { background-color: #15863F; }
.text-gressbond-yellow { color: #EDC600; }
.bg-gressbond-yellow { background-color: #EDC600; }

/* Color changing button animation */
.btn-color-change {
    background: linear-gradient(45deg, #15863F, #10b981, #EDC600, #15863F);
    background-size: 300% 300%;
    animation: colorGradient 4s ease infinite;
    color: white !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.btn-color-change:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(21, 134, 63, 0.4);
}

@keyframes colorGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Interactive Hyperlink Underline Effect */
.interactive-link {
    position: relative;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.interactive-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -4px;
    left: 0;
    background-color: #EDC600;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.interactive-link:hover {
    color: #15863F;
}

.interactive-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Card Hover Interactions */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #15863F;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #15863F; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f622d; 
}

/* Custom Gradients */
.bg-gradient-brand {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}



.quality-promise-box {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
