/* ===== Your Original CSS (Unchanged) ===== */
*{
  margin: 0;
  padding:0;
  box-sizing: border-box;
  font-family: 'poppins',sans-serif;
}
html, body{
  height: 100%;
  margin: 0;
  padding: 0;
   min-height: 100vh;
}
body{
  height: 100%;
  background-image: url('1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 background-attachment: fixed;
}
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #333;
  color: white;
  z-index: 1000;
}
.navdiv{
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.logo{
  font-size: 30px;
  font-weight: 600;
  margin-left: 50px;
  margin-top: 10px;
  color: white;
  font-style: italic;
  transform: 0.3s;
}
.logo:hover{
  color: #ffcc00;
}
li{
  list-style: none;
  display:  inline-block;
}
li a{
  padding: 20px;
  color: white;
  text-decoration-line: none;
  font-size: 20px;
  margin-right: 50px;
  transition: 0.3s;
}
li a:hover{
  color: aqua;
}
.banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 40px;
  color: black;
  align-items: left;
  text-align: left;
  min-height: calc(100vh - 120px);
}
.banner h2{
  font-size: 40px;
  margin-bottom: 15px;
  font-style: italic;
}
.banner p{
  font-size: 18px;
  max-width: 600px;
  font-style: italic;
  width: 500px;
}
.btn {
  background-color: greenyellow;
  border: none;
  border-radius: 8px;
  width: 120px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Anchor inside the button */
.btn a {
  text-decoration: none;  /* remove underline */
  color: black;           /* text color */
  font-size: 16px;
  font-weight: 600;
}

/* Hover effects */
.btn:hover {
  background-color: limegreen;
  transform: scale(1.05);
}

.btn:hover a {
  color: white;           /* text turns white on hover */
  text-decoration: none;  /* still no underline */
}
footer{
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
  color: white;
  margin-top: 20px;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
footer a{
  color: #ffcc00;
  text-decoration: none;
  transition: 0.3s;
}
footer a:hover{
  color: white;
}
/* ===== Exclusive CSS for About Page Only ===== */

.about-page-section {
  background-image: url('1.jpg'); /* apni image ka naam rakhein */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.about-page-container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 160px 120px;
  border-radius: 10px;
  width: 100%;
  max-width: 1700px;
  height: auto;
}

.about-page-title {
  font-size: 60px;
  color: #7FFF00;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.about-page-subtitle {
  font-size: 18px;
  color: #aaff00;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.about-page-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.about-page-box {
  background-color: #7FFF00;
  color: black;
  width: 280px;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(127, 255, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

.about-page-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #aaff00;
}

.about-page-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-page-box p {
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .about-page-boxes {
    flex-direction: column;
    align-items: center;
  }

  .about-page-box {
    width: 85%;
  }

  .about-page-title {
    font-size: 40px;
  }
}
/* ===== Cart Buttons Styling ===== */
/* ===== Cart Page Product Grid ===== */

.product-section {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(120deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
              url('https://images.unsplash.com/photo-1515165562835-c7fce5b67f5c') center/cover no-repeat;
  color: white;
}

.product-title {
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

.product-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0,255,204,0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
}

.product-card h3 {
  font-size: 20px;
  margin-top: 15px;
  color: #00ffcc;
}

.product-card p {
  font-size: 14px;
  margin: 10px 0;
}

.price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 10px;
}

.add-btn {
  background-color: #00ffcc;
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0,255,204,0.5);
}

.add-btn:hover {
  background-color: #00ffaa;
  color: #000;
  box-shadow: 0 0 25px rgba(0,255,204,0.9);
  transform: scale(1.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0,255,204,0.4);
}
/* ===== Added Contact Form Styles ===== */
/* ===== Contact Form Exclusive CSS ===== */

.contact-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6); /* transparent background */
  padding: 50px 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: white;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px); /* gives glassy effect */
}

.contact-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #00ffcc;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

/* Input Fields */
#contactForm input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: 0.3s;
}

#contactForm input::placeholder {
  color: #e0e0e0;
}

#contactForm input:focus {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px #00ffcc;
}

/* Glowing Button */
.glow-button {
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #555;
  color: white;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.glow-button.active-glow {
  background-color: #ff4d4d;
  box-shadow: 0 0 20px #ff4d4d, 0 0 30px #ff4d4d, 0 0 40px #ff4d4d;
  cursor: pointer;
}


/* Message text */
#message {
  margin-top: 15px;
  color: #00ffcc;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-section {
    width: 90%;
    padding: 40px 25px;
  }

  .contact-container h2 {
    font-size: 28px;
  }

  .glow-button {
    font-size: 16px;
  }
}
/* === Responsive Navbar Toggle (Added by Asad Jani 💪) === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  margin-right: 20px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  transition: right 0.4s ease;
}

/* Mobile view (under 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navdiv ul {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: #111;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .navdiv ul.active {
    right: 0;
  }

  .navdiv ul li a {
    font-size: 22px;
  }
}

