


/* -----------------------navbar--------------------- */

    .navbar {
      background-color:#3A872B;
      padding: 0.5rem 1rem;
    }
    .navbar-brand img {
      height: 80px;
    }
    .navbar-nav {
      background-color: #245c22; /* darker green for menu */
      border-radius: 25px;
      padding: 0.2rem 5rem;
    }


    .navbar-nav .nav-link {
      color: #ffffff !important;
      font-size: 18px;
      padding: 0.5rem 0.9rem;
      margin: 0px 20px;
    }


    .navbar-nav .nav-link:hover {
      color: #ffd700 !important;
    }
    .start-btn {
      background-color: #ffcc00;
      color: #000;
      font-weight: 600;
      padding: 0.4rem 1rem;
      border-radius: 6px;
      margin-left: 15px;
      text-decoration: none;
    }
    .start-btn:hover {
      background-color: #e6b800;
      color: #000;
    }

    @media (max-width: 991px) {
      .navbar-nav {
        border-radius: 0;
        background-color: transparent;
        padding: 0;
      }
    }





    /* =========================== Home page======================= */

   /* Hero Section */
    .home_sec_hero {
      position: relative;
      background: url('../images/meal-bg.jpg') no-repeat center center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay */
    .home_sec_hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: rgba(255, 255, 255, 0.7); */
      background: rgb(166 166 166 / 19%) ;
      z-index: 1;
    }

    /* Content */
    .home_sec_content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 20px;
    }

.home_sec_stat_icon
{
  height:80px; 
  margin-right:5px;
}

.hpy_cust
{

      font-size: 2rem;
    font-weight: 600;
    display: block;
    /* color: #2f7a2d; */
    color: #3EC424;
    margin-left: 40%;
}

    .home_sec_title {
     font-size: 4rem;
    font-weight: 800;
    /* color: #2f7a2d; */
    color: #3EC424;
    }

    .home_sec_subtitle {
    /* font-size: 3.5rem; */
    font-size: 4rem;
    font-weight: 700;
      /* color: #666; */
      color: #ffffff;
      margin-bottom: 15px;
    }

    .home_sec_text {
      font-size: 1.5rem;
      /* color: #2f7a2d; */
      color: #3EC424;
      margin-bottom: 20px;
    }



    
    .home_sec_text2 {
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 20px;
    }


    .home_sec_btn {
      background-color: #ffcc00;
      color: black;
      padding: 10px 25px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
    }

    .home_sec_btn:hover {
      background-color: #e6b800;
      color: black;
    }

    .home_sec_stat {
      margin-top: 25px;
      font-size: 3.5rem;
      font-weight: 600;
      color: #fff;
    }

    @media (max-width: 768px) {
      .home_sec_title {
        font-size: 2rem;
      }
      .home_sec_subtitle {
        font-size: 1.8rem;
      }
    }


    /* -------------------------------------------------------- */



     /* Section Styling */
    .how_wokr_section {
      /* background: linear-gradient(180deg, #3cb043 0%, #1e7a28 100%); */
      background: linear-gradient(163.79deg, #3A872B 0%, #0E5400 100%);
      padding: 60px 20px;
      color: #fff;
      text-align: center;
    }

    .how_wokr_section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
    }

    /* Top four features */
    .how_wokr_features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }

    .how_wokr_feature_box {
      /* background-color: rgba(255, 255, 255, 0.1); */
      background-color: #306A30;
      padding: 25px;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .how_wokr_feature_box:hover {
      transform: translateY(-8px);
    }

    .how_wokr_feature_box i {
      font-size: 36px;
      margin-bottom: 15px;
      color: #fff;
    }

    .how_wokr_feature_box h5 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .how_wokr_feature_box p {
      font-size: 14px;
      margin: 0;
      color: #F9CD05;
    }


    .how_wokr_feature_box i {
      background-color: #3EC424;
      color: #fff; /* icon color */
      border-radius: 50%; /* makes it a circle */
      padding: 15px; /* space around icon */
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 50px; /* circle size */
      height: 50px; /* circle size */
      font-size: 25px; /* icon size */
    }
    

    /* Bottom three content boxes */
    .how_wokr_bottom_boxes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      /* margin-top: 30px; */
      margin: 8% 30px;
    }

    .how_wokr_bottom_box {
      background-color: #fff;
      color: #000;
      padding: 30px 20px;
      border-radius: 10px;
      text-align: left;
      transition: box-shadow 0.3s ease;
    }

    .how_wokr_bottom_box:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .how_wokr_bottom_box i {
      font-size: 40px;
      /* color: #28a745; */
      color: #3EC424;
      margin-bottom: 15px;
      display: block;
    }

    .how_wokr_bottom_box h4 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .how_wokr_bottom_box p {
      font-size: 15px;
      margin: 0;
      color: #0E5400;
    }

    /* Responsive adjustments */
    @media (max-width: 576px) {
      .how_wokr_section h2 {
        font-size: 2rem;
      }
    }



    /* ------------------------------------------------------- */


       /* Transform Section */


    .transfrom_home_section {
      /* background: linear-gradient(to bottom, #3aa12e, #175f12);  */
      background: linear-gradient(0deg, #224122 0%, #388529 100%);
      padding: 60px 20px;
      text-align: center;
      color: white;
    }

    .transfrom_home_title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .transfrom_home_subtitle {
      font-size: 1.4rem;
      color: #3EC424;
      margin-bottom: 25px;
    }

    .transfrom_home_btn {
      background-color: #ffcc00;
      color: black;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-block;
    }

    .transfrom_home_btn:hover {
      background-color: #e6b800;
      color: black;
    }

    @media (max-width: 768px) {
      .transfrom_home_title {
        font-size: 1.6rem;
      }
      .transfrom_home_subtitle {
        font-size: 0.9rem;
      }
    }



    /* ---------------------------------------- */


    


/* =========================== Meal page======================= */


    .our_meal_section {
      /* background: linear-gradient(180deg, #3cb043 0%, #1e7a28 100%); */
      background: linear-gradient(163.79deg, #3A872B 0%, #0E5400 100%);
      padding: 60px 20px;
      color: #fff;
      text-align: center;
    }

    .our_meal_section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
    }

    /* Top meal plans */
    .our_meal_plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .our_meal_plan_box {
      background: #fff;
      color: #000;
      border-radius: 12px;
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 2px solid transparent;
    }

    .our_meal_plan_box:hover {
      transform: translateY(-8px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .our_meal_plan_box.active {
      border: 2px solid #2196f3;
      box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
    }

    .our_meal_plan_box h4 {
      font-weight: bold;
      font-size: 22px;
      margin-bottom: 15px;
      color: #3EC424;
      text-align: center;
    }

    .our_meal_plan_box ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .our_meal_plan_box li {
      font-size: 15px;
      margin-bottom: 6px;
    }

    .our_meal_btn {
      background: #28a745;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      transition: background 0.3s ease;
    }

    .our_meal_btn:hover {
      background: #218838;
    }

    /* Bottom meal categories */
    .our_meal_categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .our_meal_category_box {
      /* background: rgba(255, 255, 255, 0.1); */
      background: #0E5400;
      /* padding: 25px 15px; */
      /* border-radius: 10px; */
      width: 100%;
      /* text-align: left; */
      transition: transform 0.3s ease;
    }

    .our_meal_category_box:hover {
      transform: translateY(-6px);
    }

    .our_meal_category_box h5 {

      background: #28a745;
      padding: 20px;
      display: inline-block;
      border-radius: 5px;
      font-weight: bold;
      margin-bottom: 15px;
      width: 100%;
    }

    .our_meal_category_box p {
      font-size: 14px;
      margin-bottom: 10px;
    }


    .our_meal_category_box ul  {
    text-align: left;
    padding: 0px 20%;
    color: #3EC424;
    }

    .our_meal_category_box li {
      font-size: 13px;
      margin-bottom: 5px;
    }

    @media (max-width: 576px) {
      .our_meal_section h2 {
        font-size: 2rem;
      }
    }



    /* ================================================================= */
    /* =======================GOAL PAGE============================== */


  .step-section {
    background: url('../images/meal-bg.jpg') center/cover no-repeat;
    padding: 40px 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Progress container */
  .step-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 700px;
    width: 100%;
    margin-bottom: 30px;
  }

  /* Progress line background */
  .progress-line {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 4px;
    background: #ddd;
    z-index: 0;
  }

  /* Progress line active */
  .progress-line-active {
    position: absolute;
    bottom: 0;
    left: 15px;
    height: 4px;
    background: #4CAF50;
    z-index: 1;
    transition: width 0.3s ease;
  }

  /* Step item */
  .step-item {
    text-align: center;
    z-index: 2;
    flex: 1;
    position: relative;
  }

  .step-circle {
    background: #ddd;
    color: #333;
    font-weight: bold;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
  }

  .step-circle.active {
    background: #4CAF50;
    color: white;
  }

  .step-label {
    margin: 20px 5px;
    font-size: 13px;
    color: #999;
  }

  .step-label.active {
    color: #4CAF50;
    font-weight: 500;
  }

  /* Card styling */
  .goal-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }

  #final-step
  {
    background-color: #4CAF50;
    color: white;
    padding: 60px;
  }

  #final-step h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  #final-step p {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    text-align: left;
    font-weight: 600;
  }

  .goal-card h2 {
    color: #4CAF50;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .goal-card p {
    color: #306A30;
    font-size: 18px;
    margin-top: 20px;
    text-align: left;
    font-weight: 600;
  }

  label {
    display: block;
    margin: 12px 0;
    font-size: 16px;
    cursor: pointer;
    color: #4CAF50;
    font-weight: 500;
    text-align: left;
  }

  input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
  }

  input[type="text"],
  input[type="email"],
  input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .buttons {
    margin-top: 25px;
    /* display: flex; */
        text-align: right;
    justify-content: space-between;
    gap: 10px;
  }

  .buttons button {
    padding: 10px 22px;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    flex: 1;
  }

  .buttons button:hover {
    background: #3c8e40;
  }

  .step-content {
    display: none;
  }

  .step-content.active {
    display: block;
  }

  @media (max-width: 600px) {
    .goal-card {
      padding: 20px;
    }

    .step-label {
      font-size: 12px;
    }
  }

    
    /* =========================== admin login page======================= */

.admin_login_ {
    background: url('../images/meal-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-box {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-box h2 {
  color: #27ae60;
  margin-bottom: 25px;
}

.login-box label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  color: #333;
  font-weight: bold;
}

.login-box input {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background: #e2e2e2;
  font-size: 14px;
}

.login-box input::placeholder {
  color: #999;
}

#loginBtn {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

#loginBtn:hover {
  background-color: #1e8449;
}

.forgot {
  display: block;
  margin-top: 15px;
  color: #999;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 500px) {
  .login-box {
    padding: 25px;
  }

  .login-box h2 {
    font-size: 20px;
  }
}


/* =====================================admin page======================== */




.admin_pg {
  background: url('../images/meal-bg.jpg') center/cover no-repeat;
  padding: 60px;
}

.admin_pg .header {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 30px;
}

.admin_pg .header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.admin_pg .header p {
  font-size: 14px;
  margin-top: 5px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #306A30;
  margin-bottom: 8px;
}

.stat-card .value {
  font-size: 20px;
  font-weight: bold;
  color: #4CAF50;
}

.stat-card .icon {
  font-size: 24px;
  margin-top: 5px;
  color: #4CAF50;
}

.recent-orders {
  background: white;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.recent-orders h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 15px;
}

.order-card {
  background: #4CAF50;
  color: white;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-id {
  font-weight: bold;
}

.status {
  background: white;
  color: #4CAF50;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.status.preparing {
  background: orange;
  color: white;
}

.order-bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 600px) {
  .admin_pg .header h1 {
    font-size: 22px;
  }
  .stat-card h3 {
    font-size: 16px;
  }
}
    
    
    /* =========================== Footer page======================= */

    .footer-logo
    {
      height: 80px; margin-bottom:10px;
    }

    
    .footer_sec_wrapper {
      background-color: #fff;
      padding: 50px 20px 20px;
      font-size: 14px;
      color: #333;
    }

    .footer_sec_top {
      border-bottom: 2px solid #3EC424;
      padding-bottom: 30px;
      margin-bottom: 20px;
    }

    .footer_sec_col h5 {
      font-weight: 600;
      color: #3EC424;
      margin-bottom: 15px;
      font-size: 16px;
    }

    .footer_sec_col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer_sec_col ul li {
      margin-bottom: 8px;
    }

    .footer_sec_col ul li a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s;
    }

    .footer_sec_col ul li a:hover {
      color: #2f7a2d;
    }

    .footer_sec_contact p {
      margin-bottom: 10px;
      display: flex;
      align-items: start;
    }

    .footer_sec_contact i {
      color: #3EC424;
      font-size: 1.1rem;
      margin-right: 8px;
      margin-top: 2px;
    }

    .footer_sec_bottom {
      font-size: 13px;
      color: #555;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .footer_sec_links a {
      text-decoration: none;
      color: #555;
      margin-left: 20px;
      transition: color 0.3s;
    }

    .footer_sec_links a:hover {
      color: #2f7a2d;
    }

    @media (max-width: 768px) {
      .footer_sec_bottom {
        flex-direction: column;
        text-align: center;
      }
      .footer_sec_links a {
        margin-left: 10px;
      }
    }



    /* ===============================ABOUT PAGE======================== */


    .about-section {
      padding: 50px 15px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
      margin-top: 20px;
    }
    .about-title {
      font-size: 2rem;
      font-weight: bold;
      color: #198754; /* Bootstrap green */
      margin-bottom: 20px;
      text-align: center;
    }
    .meal-card {
      border: none;
      border-radius: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      height: 100%;
    }
    .meal-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .meal-card h5 {
      color: #198754;
      font-weight: bold;
    }
    .why-list li {
      margin-bottom: 10px;
    }
    @media (max-width: 767px) {
      .about-title {
        font-size: 1.5rem;
      }
    }


    /* ====================================FAQ============================== */


    .faq_ {
      width: 90%;
      margin: auto;
      padding:60px  20px;
    }

    .faq-category {
      margin-bottom: 40px;
      margin-top: 40px;
      flex-wrap: wrap;
    }


    .faq-category button {
      margin: 5px;
    }






    button.btn.btn-outline-primary.btn-sm
{
  color: #4CAF50;
  border:2px solid #4CAF50;
  background-color: transparent;
  font-size: 18px;
    padding: 5px 20px;
}


button.btn.btn-primary.btn-sm {
  background: #28a745;
  color: white;
  border: inherit;
  font-size: 18px;
    padding: 5px 20px;
}




.accordion-item {
  background: #0E5400;
  color: #3EC424;
  font-size: 20px;
  /* padding: 20px; */
}



.accordion-button:not(.collapsed) 
{
  background-color: #198754;
  color: white;
  font-size: 20px;
  padding: 20px;

}


button.accordion-button {
  background: #28a745;
  color: white;
    font-size: 20px;
    padding: 20px;
}




/* ============================menu plans===================== */


.pricing-cont
{
  background-color: #f8f9fa;
}


/* --------------------- */

        .filters-box {
      background:#fff; 
      padding:20px; 
      border-radius:15px;
      box-shadow:0 4px 15px rgba(0,0,0,0.08);
    }

    
        .filters-box1 {
      background:#fff; 
      padding-bottom:40px; 
      border-radius:15px;
      box-shadow:0 4px 15px rgba(0,0,0,0.08);
    }
    
    .meal-btns .btn, .type-btns .btn {
      border-radius:8px; margin:5px; font-weight:500; padding:10px 20px;
    }
    .btn.active {
      background:#f1c40f; border-color:#f1c40f; color:#000 !important;
    }

    
  
  .diet-btns .btn.active {
      background:#f1c40f; border-color:#f1c40f; color:#000;
    }
.meal-btns .btn.active {
    background:#f1c40f; border-color:#f1c40f; color:#000;
  }
  .diet-btns .btn {
    border-radius:8px; margin:5px; font-weight:500;
  }
.meal-btns .btn {
  border-radius:8px; margin:5px; font-weight:500;
}

    select.form-select {
      border-radius:8px;
      padding:10px;
      font-weight:500;
      border:2px solid #f1c40f;
    }
    .plan-card {
      border-radius:15px; padding:20px; background:#fff;
      box-shadow:0 4px 15px rgba(0,0,0,0.08); height:100%;
      display:flex; flex-direction:column; justify-content:space-between;
      transition:0.3s;
    }
    .plan-card:hover { transform:translateY(-5px); }
    .plan-title { font-weight:600; font-size:1.2rem; }
    .plan-price { font-size:2rem; font-weight:700; color:#000; }
    .old-price { text-decoration:line-through; color:#888; font-size:0.9rem; }
    .badge-discount {
      background:#f1c40f; color:#000; font-weight:600;
      font-size:0.8rem; border-radius:5px; padding:3px 6px;
    }
    .btn-plan {
      border:1px solid #000; border-radius:8px;
      font-weight:500; padding:10px; display:flex;
      justify-content:space-between; align-items:center;
      margin-top:15px;
    }

/* ========================save goal================== */


   
.thank-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  text-align: center;
  margin: 60px auto;
  animation: fadeIn 0.5s ease-in-out;
}
.thank-box h2 {
  color: #28a745;
  margin-bottom: 15px;
}
.thank-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}
.btn-cancel {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #dc3545;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-cancel:hover {
  background: #a71d2a;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


/* ================Order cancel================== */


.cancel-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  text-align: center;
  margin: 60px auto;
  animation: fadeIn 0.5s ease-in-out;
}
.cancel-box h2 {
  color: #dc3545;
  margin-bottom: 15px;
}
.cancel-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}
.btn-home {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-home:hover {
  background: #0056b3;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
