* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


.main-header {
  height: 520px;
  background: linear-gradient(
    135deg,
    #0f0f0f,
    #1c1c1c,
    #2a1a00
  );
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
}


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Soft animated waves */
.main-header::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.05);
  top: -50%;
  left: -10%;
  border-radius: 50%;
  animation: floatBg 8s infinite alternate ease-in-out;
}

.header-product {
  display: block;         /* Makes the image a block element */
  margin: 20px auto 0;    /* 20px top margin, auto horizontal centering, 0 bottom */
  max-width: 360px;       /* Adjust size as needed */
  height: auto;
}


@keyframes floatBg {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Logo */
.logo img {
  width: 100px;
}

/* Center Branding */
.brand-center {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeDown 1.2s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.brand-center h1 {
  font-size: 64px;
  font-weight: 900;
  margin-top: 30px;   /* ðŸ‘ˆ yahan adjust kar sakte ho */
  letter-spacing: 4px;
  
}

.brand-center p {
  font-size: 20px;
  font-weight: 600;
}

.brand-center span {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;          /* light but readable */
  letter-spacing: 0.5px;     /* classy spacing */
  line-height: 1.6;
  /*text-transform: uppercase;*/
  opacity: 0.9;
}


/* Navigation */
.nav {
  display: flex;
  gap: 22px;
  margin-top: 15px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover {
  color: #ffe600;
}

.btn-quote {
  background: #fff;
  color: #d60000 !important;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.snacks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.snacks span {
  position: absolute;
  top: -10%;
  font-size: 28px;
  opacity: 0.6;              /* ðŸ‘ˆ cheap look se bachata hai */
  filter: blur(0.5px);        /* ðŸ‘ˆ premium softness */
  animation: fallSnack linear infinite;
}

/* Different positions & speeds */
.snacks span:nth-child(1) {
  left: 10%;
  animation-duration: 14s;
}
.snacks span:nth-child(2) {
  left: 30%;
  animation-duration: 18s;
  font-size: 24px;
}
.snacks span:nth-child(3) {
  left: 55%;
  animation-duration: 16s;
}
.snacks span:nth-child(4) {
  left: 75%;
  animation-duration: 20s;
  font-size: 22px;
}
.snacks span:nth-child(5) {
  left: 90%;
  animation-duration: 17s;
}

@keyframes fallSnack {
  0% {
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    transform: translateY(650px) rotate(360deg);
  }
}


@media (max-width: 768px) {
  .brand-center h1 {
    font-size: 40px;
	margin-top: 90px;   /* ðŸ‘ˆ yahan adjust kar sakte ho */
  }
  .brand-center span {
  font-size: 12px;
  font-weight: 400;
}

  .nav {
    position: absolute;
    top: 90px;
    right: 0;
     right: 0;
    background: linear-gradient(
      135deg,
      #0f0f0f,
      #1c1c1c,
      #2a1a00
    );  /* ✅ Same as header */
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #fff;
  }
}


.about-us {
  padding: 80px 20px;
  background: white;
  color: #fff;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: auto;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: black;
  margin-bottom: 20px;
}

.about-text h2 span {
   color: black;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: black;
  font-weight: 400;
}

.about-text b {
  color: #fff;
}

.about-us {
  padding: 80px 20px;
  background: #fff8f2;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text span {
  color: #d35400;
}

.about-text p {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  font-size: 16px;
  color: #555;
}

/* IMAGE SECTION */
.about-image {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Overlay Text */
.about-image-overlay {
  position: absolute;
  bottom: 30px;
  text-align: center;
  color: #fff;
}

.about-image-overlay h3 {
  font-size: 28px;
  letter-spacing: 4px;
}

.about-image-overlay p {
  font-size: 18px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {

  .about-text h2 {
    font-size: 26px;
  }

  .about-image-overlay h3 {
    font-size: 20px;
  }

  .about-image-overlay p {
    font-size: 14px;
  }
  
  .about-image img {
    width: 90%;      /* full 100% na rakhein */
    max-width: 350px; /* image choti ho jayegi */
  }


}


/* Responsive */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-points span {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.products {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.products h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #d60000;
}

.products-container {
  max-width: 1200px;
  margin: auto;
 
  padding-bottom: 10px;
}
.products-scroll {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
}

.product-card {
  min-width: 160px;       /* card width */
  max-width: 180px;       /* card max width */
  border-radius: 15px;
  overflow: hidden;
  background: #f8f8f8;
  flex-shrink: 0;
  transition: transform 0.3s;
  text-align: center;
}

.product-card img {
  width: 100%;           /* fill card width */
  height: auto;          /* maintain aspect ratio */
  object-fit: contain;   /* ensures no crop/distortion */
  border-bottom: 2px solid #d60000;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-name {
  background: #000;    
  color: #fff;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
}

/* Hide scrollbar for clean look */
.products-scroll::-webkit-scrollbar {
  display: none;
}

.products-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Important: container relative for arrows */
.products-container {
  position: relative;
}

.products {
  position: relative;
}

/* Scroll Arrows Hidden by default */
.scroll-indicator {
  display: none;
}


/* order button*/
/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Overlay Center */
.order-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.65);
    opacity: 0;
    transition: 0.4s ease;
}

/* Show overlay on hover */
.product-card:hover .order-overlay {
    opacity: 1;
}

/* Creative Button */
.order-now-btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;

    /* System Gradient Color */
    background: linear-gradient(135deg, #ffcc00, #ff8800);
    color: #000;

    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
    transition: 0.3s ease;
}

/* Hover Effect */
.order-now-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 170, 0, 0.6);
}

/* Click Effect */
.order-now-btn:active {
    transform: scale(0.95);
}


.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    animation: pop 0.3s ease;
}

.modal-box button {
    padding: 8px 20px;
    border: none;
    background: linear-gradient(135deg,#ffcc00,#ff8800);
    border-radius: 20px;
    cursor: pointer;
}

@keyframes pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* Arrow Animation */
@keyframes pulseArrow {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .product-card {
    min-width: 140px;
  }

  .products h2 {
    font-size: 28px;
  }

  .product-name {
    font-size: 12px;
  }

  /* Enable horizontal scroll */
  .products-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 10px;
  }

  /* Show Arrows */
  .scroll-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    padding: 0 5px;
    z-index: 10;          /* Important */
    pointer-events: none; /* So scroll works */
  }

  .scroll-indicator span {
    background: rgba(0,0,0,0.75);
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulseArrow 1.5s infinite;
  }

}





.get-quote {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffe600, #ff4d00);
  color: #000;
  text-align: center;
}

.quote-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quote-container h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #d60000;
}

.quote-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quote-form input {
  flex: 1;
  padding: 10px 13px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 13px;
  outline: none;
  transition: 0.3s;
}

.quote-form input:focus {
  border-color: #ff4d00;
  box-shadow: 0 0 5px rgba(255,77,0,0.5);
}

.quote-form select {
  flex: 1;
  padding: 10px 13px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 13px;
  outline: none;
  transition: 0.3s;
}

.quote-form select:focus {
  border-color: #ff4d00;
  box-shadow: 0 0 5px rgba(255,77,0,0.5);
}

.btn-submit {
  background: #d60000;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #ff4d00;
}

.form-message {
  margin-top: 12px;
  font-weight: 400;
  color: #d60000;
  display: none;
}

/* Responsive */
@media (max-width: 480px) {
  .quote-form .form-row {
    flex-direction: column;
  }
  .quote-container h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #d60000;
}

  .quote-form input,
  .quote-form select {
    width: 100%;   /* Full width on mobile */
    flex: unset;   /* Remove flex shrinking issues */
  }
}

.main-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  color: #ff4d00;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4d00;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ff4d00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .header-product {
    display: block;         /* Makes the image a block element */
    margin: 20px auto 0;    /* 20px top margin, auto horizontal centering, 0 bottom */
    max-width: 350px;       /* Adjust size as needed */
    height: auto;
  }
}
