body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
   box-sizing: border-box;
}
main {
     background: linear-gradient(45deg, #faf3e9, #edd5bd, #fab2a2, #d38d8d);
    background-size: 400% 400%;
    animation: gradientBG 10s  infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* ///////////////Navbar////////////////////////////// */
.image img {
  max-width: 140px;
  height: auto;
  animation: logo 15s infinite;
  transition: all 1s;
}
@keyframes logo {
  0% { translate: 0; }
  50% { translate: 50px; }
  100% { translate: 0px; }
  
}
header ::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px; 
  background-color: rgb(10, 122, 156); 
  transition:  0.8s; 
  transition-duration: 1.5s;
}

header :hover::after {
  width: 100%;
  transform: scaleX(1);
  background-color: rgb(131, 51, 5) ; 
}

.image img:hover{
transform: scale(1.2);
}
.btn-success {
  background-color: #f4a261 !important;
  border-color: #0b0907;
  transition: all 1s;
}
.btn-success:hover {
  background-image:linear-gradient(45deg, #dd5c1b ,rgb(192, 198, 198) ,#e13b09)  !important;
  box-shadow: 6px 10px 8px #8a5e53 !important;
  border-style: hidden ;
  font-weight: 600;
  color: #0b0907;
  transform: scale(1.2) translateX(20px);
}


.btn-outline-success{
  background-color:#f6a461!important;
  color: black !important;
  border-color: #ecf3f443 !important;
  transition: all 1s;
}

.btn-outline-success:hover{
  background-image:linear-gradient(to right, #dd6c1b ,rgb(192, 198, 198) ,#e16309)  !important;
  transform: scale(1.2);
  color: white !important;

}

a.nav-link {
  position: relative;
  transition: all 0.3s;
  font-size: 20px;
}
 a.nav-link:hover {
   text-shadow: 0px 9px 10px rgb(69, 29, 5);
} 
 a.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7c4022;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s; 
  }
  a.nav-link:hover::after {
    transform: scaleX(1);
    background-color: #ea380b;
  }

  /* ///////////////////////////////Home///////////////////////// */
.homepage {
  min-height: 100vh;
}
.hero-text p{
  font-size: 1.2rem;
  color: #5e5c5c;
}
.hero-text p:hover{
  color: #0b0907;
}

.hero-text h1{
  font-size: 3rem;
  font-weight: 600;
  transition: all 1s;
}
.hero-text h1:hover{
      transform: translate3d(5px, -10px, 60px);
      text-shadow: 2px 5px 20px rgb(244, 232, 229);
}
.stats img {
  width: 50px;
  height: 50px;
  margin: -5px;
  border-radius: 50%;
  transition: all 1s;
}
.stats img:hover{
  box-shadow: 3px 5px 10px rgb(246, 229, 220);
  transform: rotate(50deg ) scale(1.2) ;
  border:#9a0a0a 2px double;
}
.text-meal{
  transition: all 0.5s;
}
.text-meal:hover{
  font-weight: 700;
  transform: translate(30px);
  text-shadow:5px 5px 10px #feead1;
}
.try-btn {
  background-color: #f4a261 !important;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}
.try-btn:hover {
  background-color: #e76f51;
}

 .hero {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transform-style: preserve-3d;
    animation: slideInRight 20s  infinite;
    transition: all 1s ease;
}
@keyframes slideInRight {
    0% {
        transform: translateX(0px) scale(1) ;
    }
    50% {
        transform: translateX(30px) scale(1.05) ;
    }
    100% {
        transform: translateX(-30px) scale(1) ;
    }
}


 /*//////////////////////////////// How It Works /////////////////////*/
.carousel-item {
    min-height: 400px;
    margin: 1px;
}

.carousel-item .container {
  background-color: #7e0c0c2b;
  border: double orangered;
}
.carousel-item h2 {
    font-weight: 900;
    color: #225383;
    transition: all 0.3s ease;
}
 
.carousel-item h2:hover{
color: #210856;
transform: translateY(10px);
text-transform: capitalize;
text-shadow: 5px 5px 10px rgb(225, 156, 28);

}

.carousel-item h3 {
    font-weight: 800;
    color: #505a5c;
    transition: all 1s ease;
}

.carousel-item h3:hover {
    transform: scale(1.1) translateX(50px);
    text-shadow: 0px 3px 5px #feead1;
    color: #34495e;
}

.carousel-item p {
  font-size: x-large;
  line-height: 50px;
    color: #f8f3f3;
    max-width: 600px;
    transition: all 0.3s ease;
}

.carousel-item p:hover {
    color: #111921;
    font-weight: 600;
   text-shadow: 0px 3px 5px #feead1;

}

.feature-img {
    max-width: 100%;
    transition: all 0.5s;
}

.feature-img:hover {
  transform: translate(-20px);
}


/* //////////////////////////////////// Meals /////////////////////////////// */
section h1 {
    font-weight: 700;
    color: #225383;
    animation: fadeInUp 10s  infinite;
    transition: all 0.3s ease;
}

section h1:hover {
    color: #210856;
    text-transform: capitalize;
    text-shadow: 5px -5px 10px rgb(225, 156, 28);
}

@keyframes fadeInUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0px); }
}



.card {
  border-bottom-left-radius: 80px;
  border-top-right-radius: 80px;
  transition: all 1s;
 }


 
.card:hover {
    border: solid 4px rgb(171, 34, 19);
    transform: translateY(8px);
    box-shadow: 0 12px 25px rgb(4, 1, 1);
}

.meals {
    border-top-right-radius: 80px;
    transition: all 0.3s ease;
}

.card:hover .meals{
  border: double 4px salmon;
  box-shadow: 0px -12px 25px rgb(255, 252, 251) ;
}


.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card:hover .card-title {
    color: #e34727;
}

.cardText {
  transition: all 1s;
}

.cardText :hover{
  font-weight: bold;
  color: #6991d5;
   transform:translate(5px) scale(1.1) ;
   text-shadow: 0px 2px 3px rgb(206, 136, 101);
}
.cardText i:hover{
  color: #eb790e;
}


 /* ////////////////////////////// testimonil ////////////////////////////////////////////////// */
.testimonil .right h2{
    font-weight: 700;
    color: #225383;
    animation: fadeInUp 10s  infinite;
    transition: all 0.3s ease;
}
 

.testimonil .right h2:hover{
color: #7159a5;
    text-transform: capitalize;
    text-shadow: 5px -5px 10px rgb(225, 156, 28);
}

@keyframes fadeInUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0px); }
}

 .testimonil .right .card img {
  width: 60px ;
  height: 60px;
  border-radius: 50%;
  margin: 50px 20px;
  transition: all 1s;
 }

  .testimonil .right .card {
    border-radius: 20px
  }

 .testimonil .right .card img:hover {
  box-shadow: 1px 5px 18px rgb(235, 96, 61);
  border-color: #0b0907;
  border-style: double;
  transform: scale(1.3) rotate(360deg)  ;
}
 .testimonil .right .card:hover{
  background-color:#847b7bed ;
  background-image: linear-gradient(to bottom ,rgb(234, 229, 229),gray,black);
  color: white;
  font-weight: 600;
 text-shadow:0px 3px 6px #f0f5f7;

 }


   .testimonil .right .card{
    max-width: 900px;
    max-height: 900px ;
    border-style:groove;
   }


  .testimonil .left  img {
    width: 200px;
    height: 200px;
    border-top-left-radius: 10%;
    border-bottom-right-radius: 10%;
    transition: all 1s;
  }

    .testimonil .left  img:hover{
      transform:  translateY(-20px) scale(1.1);
      box-shadow: 0PX 20PX 50PX rgb(35, 7, 34);
      border: 3px solid rgb(229, 94, 79);
    }


  /*//////////////////////////// footer ////////////////////////////////////////////////*/


footer {
    background: linear-gradient(-45deg, #7d7d7d, #f0f5ff, #2c2a27d3);
    background-size: 400% 400%;
    animation: gradientBG 20s  infinite;
    border-top: #020401 3px solid;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}


footer .logo {
    animation: pulseLogo 2s ease-in-out infinite;
    transition: all 0.5s ease;
}



@keyframes pulseLogo {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

footer .social-icons i:hover{
    color: #80b7ea;
    transform: translateY(5px);
}



 .copyright {
    font-size: 0.9rem;
    color: #555555d3;
}

footer .footer-column {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--column-index));
}

footer .footer-column:nth-child(1) { --column-index: 1; }
footer .footer-column:nth-child(2) { --column-index: 2; }
footer .footer-column:nth-child(3) { --column-index: 3; }
footer .footer-column:nth-child(4) { --column-index: 4; }
footer .footer-column:nth-child(5) { --column-index: 5; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer h5::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #6ab04c;
    transition: width 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%);
}

footer h5:hover::after {
    width: 40%;
}

footer h5:hover {
    color: #0b0808;
    text-shadow: 0px 2px 3px orange;
    transform: translateY(-2px);
}


footer p{
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}



footer p:hover, footer a:hover {
    color: #020401;
    text-shadow: 1px 2px 5px rgb(246, 187, 187);
    font-weight:bold;
    transform: translateX(5px) scale(1.1);
}

/* ///////////////////////////////////////////Pricing /////////////////////////////// */


.pricing-title {
    font-weight: 700;
    color: #2c3e50;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(230, 228, 228, 0.95);
    border-radius: 15px;
    transition: all 0.5s;
}

.pricing-card:hover {
    transform: translateY(-19px);
    box-shadow: 0 8px 25px rgba(218, 13, 13, 0.841);
}


.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.pricing-card:hover .card-title {
    color: #18096d;
}

.card-price {
    font-size: 3rem;
    font-weight: 700;
    color: #3d602f;
}

.card-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
}

.pricing-card ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    transition:all 0.4s;
}
.pricing-card ul li:hover {
    color: #4c3d77;
    transform: translateX(5px);
}

.pricing-btn {
    font-weight: 600;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}


