* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* =====================
Navbar
===================== */
.navbar {
  width: 100%;
  padding: 15px 40px;
  background: #0f5132;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #9ef01a;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #9ef01a;
  transition: 0.4s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #9ef01a;
}

/* Login Button */
.login-btn {
  border: 1px solid #9ef01a;
  padding: 6px 15px;
  border-radius: 20px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #9ef01a;
  color: #0f5132;
}

/* =====================
Menu
===================== */
.menu-toggle {
  width: 30px;
  cursor: pointer;
  display: none;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

/* =====================
Navbar Animation
===================== */
.animate-navbar {
  animation: navSlide 1.2s ease forwards;
}

@keyframes navSlide {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ================================================================= */
body{
    margin-top: 120px;
}


table { 
    width: 100%;
    background: white;
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
}
th { 
    background: #0f5132; 
    color: white;
     padding: 15px;
      text-align: left; 
    }
td { 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
}

.cart-summary { 
    background: white; 
    border-radius: 15px; 
    padding: 25px; 
    margin-top: 20px; 
    text-align: center; 
}
.total-row.final { 
    font-size: 22px; 
    font-weight: 700; 
    color: #0f5132; 
    border-top: 2px solid #eee; 
    padding-top: 10px; 
    margin-top: 10px; 
}
.checkout-btn { 
    background: #0f5132; 
    color: white; 
    border: none; 
    padding: 15px 40px; 
    border-radius: 25px; 
    font-size: 18px; 
    cursor: pointer; 
    margin-top: 15px; 
}
.total_salary{
    /* color: #9ef01a; */
    font-size: 26px;
    /* font-family: cursive; */
}



/* ======================================Footer Section===================== */
    .footer {
    background: #c2ff8f;
    color: #333;
    font-size: 20px;
    width: 100%;
    }


    /* Top */
    .footer-top {
    max-width: 1300px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    }

    .footer-col h4 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0f5132;
    }

    .footer-col a {
    display: block;
    font-family:cursive;
    color: #555;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
    }

    .footer-col a:hover {
    color: #198754;
    transform: translateX(5px);
    }

    /* Social */
    .footer-social a {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    }

    .facebook { background: #1877f2; }
    .whatsapp { background: #25d366; }
    .instagram {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    }
    .tiktok { background: #000; }

    /* Bottom */
    .footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    flex-wrap: wrap;
    }

    .footer-bottom p {
    margin: 0;
    font-size: 20px;
    padding-left: 450px;
    text-align: center;
    }

    .footer-links a {
    margin-left: 15px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    }

    .footer-links a:hover {
    color: #198754;
    }

    /* Mobile */
    @media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    }

    @media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    }
    /* footer animaton */
    .footer {
    opacity: 0;
    transform: translateY(120px);
    transition: all 1.2s ease;
    }

    .footer.show {
    opacity: 1;
    transform: translateY(0);
    }
    /* //////////// */
    .footer-col {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    }

    .footer.show .footer-col {
    opacity: 1;
    transform: translateY(0);
    }

    .footer.show .footer-col:nth-child(1) { transition-delay: 0.2s; }
    .footer.show .footer-col:nth-child(2) { transition-delay: 0.4s; }
    .footer.show .footer-col:nth-child(3) { transition-delay: 0.6s; }
    .footer.show .footer-col:nth-child(4) { transition-delay: 0.8s; }



    /*  */
    .footer-col h4 {
    position: relative;
    overflow: hidden;
    }

    .footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #198754;
    transition: 0.6s ease;
    }

    .footer.show .footer-col h4::after {
    width: 50px;
    }

    /*  */
    .footer-col a {
    position: relative;
    }

    .footer-col a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #198754;
    transition: 0.4s ease;
    }

    .footer-col a:hover::before {
    width: 100%;
    }

    .footer-col a:hover {
    letter-spacing: 1px;
    }
