
.diagonal-strikethrough {
  position: relative;
}

.diagonal-strikethrough::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 50%; /* Adjust this value to control the angle */
  width: 115%;
  height: 1px; /* Adjust the thickness of the strikethrough */
  background: #f00; /* Adjust the color of the strikethrough */
  transform: rotate(-30deg); /* Adjust the angle of the strikethrough */
  transform-origin: left bottom;
}


/* Keyframes for flowing color effect */
@keyframes flowColor {
    0% {
        background-position: 100% 0; /* Start from the right */
    }
    100% {
        background-position: 0 0; /* Move to the left */
    }
}

/* Animation class for brand name */
.animate-brand {
    background: linear-gradient(90deg, #ff6b6b, #e28432, #4caf50, #2196f3, #ff6b6b); /* Gradient colors */
    background-size: 300%; /* Increase size for smooth flow */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text color transparent */
    animation: flowColor 2s linear forwards; /* Flow animation */
    transition: color 0.5s ease; /* Smooth transition to black */
}

/* Class to restore color to black */
.animate-brand-complete {
    -webkit-background-clip: unset; /* Remove background clip */
    color: black; /* Set text color to black */
}

.feature-card{
    border: 1px solid #ccc;
}
.feature-card:hover h3{
    color: blue;
}

/* Custom scale-102 class */
.hover-scale-102:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out; /* Smooth scaling effect */
}


#orderForm {
    border-top: 2px solid #ddd;
    animation: orderFadeIn 0.5s ease-in-out;
}
@keyframes orderFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Enhance gradient and shadow for the box */
.slogan-2 {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.slogan-2:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Subtle animation for appearing */
.appear {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

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






/* Add a vertical shake animation */
@keyframes shakeBar {
    0% { transform: translateY(0); }
    25% { transform: translateY(5px); }
    50% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

/* Define the animation class */
.slogan-2 {
    animation: shakeBar 0.5s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Start invisible */
    animation-fill-mode: forwards; /* Keep the final state of the animation */
}

/* To make it appear from bottom to up */
@keyframes appearFromBottom {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Define the appear class */
.appear {
    animation: appearFromBottom 1.5s ease-in-out forwards;
}


#contact{
    background: linear-gradient(to right, #f8fafcee, #f0f9ffef), url('../images/bg1.png') repeat;
}