
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
  --primary: #1a120b;
  --secondary: #3c2a21;
  --accent: #d5cea3;
  --light: #e5e5cb;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  background: #000;
  scroll-behavior: smooth;
  margin: 0;
}

h1 { font-family: 'Playfair Display', serif; }

h2,h3 {

		<h2 class="text-xl font-bold text-gray-800 mb-2">
		<h3 class="text-xl font-bold text-gray-800 mb-2">
	}
	




/****************** contact button ******************/
	.contact-btn {
      transition: transform 0.5s ease, opacity 0.5s ease;
      opacity: 0;
      transform: translateX(150%);
	   
    }
    .contact-btn.show {
      opacity: 1;
      transform: translateX(0);
	  
    }
	


/*******************************Scroll to Top and whatsapp *****************/

 /* Scroll to top button styles */


/* ✅ Scroll to Top Button */
 /* ✅ Scroll to Top Button */
	#scrollTopBtn {
	position: fixed;
	bottom: 5vh;
	right: 4vw;
	width: 3.2rem;
	height: 3.2rem;
	background-color: #d60f03;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
	z-index: 1000;
	opacity: 1; /* ✅ visible by default */
	}

	#scrollTopBtn.invisible-btn {
	opacity: 0;
	pointer-events: none;
	}


    /* ✅ WhatsApp Button */
    #whatsappBtn {
      position: fixed;
      bottom: calc(5vh + 3.8rem); /* stays above the red button */
      right: calc(1vw + 1.5rem);  /* slight left alignment */
      width: 2.8rem; 
      height: 2.8rem;
      background: #25d366;
      border-radius: 50%;
      box-shadow: 0 0 12px rgba(37, 211, 102, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 1100;
      border: 4px solid #e5f6e7;
      transition: filter 0.3s ease;
    }
    #whatsappBtn:hover { filter: brightness(1.15); }
    #whatsappBtn svg { width: 1.4rem; height: 1.4rem; fill: white; }

    /* ✅ Responsive Adjustments */
    @media (max-width: 768px) {
      #scrollTopBtn { width: 2.8rem; height: 2.8rem; right: 4vw; bottom: 4vh; }
      #whatsappBtn { width: 2.4rem; height: 2.4rem; right: calc(4vw + 1rem); bottom: calc(4vh + 3.2rem); }
    }

    @media (max-width: 480px) {
      #scrollTopBtn { width: 2.5rem; height: 2.5rem; right: 3vw; bottom: 3vh; }
      #whatsappBtn { width: 2.2rem; height: 2.2rem; right: calc(3vw + 0.8rem); bottom: calc(3vh + 2.8rem); }
    }	









/* Hero Section Background */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('/mnt/data/home.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

#hero_About_Us {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
			url('../img/About_Us.jpg');
            background-size: cover;
            background-position: center;
        }
        
#hero_Care {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
			/*url('../img/About_Us.jpg');*/
            background-size: cover;
            background-position: center;
        }

/* Mobile Menu */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%; /* default for mobile */
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  transition: right 0.5s ease;
  z-index: 999;
  padding: 20px;
}

/* Tablet */
@media (min-width: 640px) {
  .menu {
    width: 40%;
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .menu {
    width: 30%;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .menu {
    width: 20%;
  }
}

.menu.open { right: 0; }

.menu a {
  display: block;
  margin: 20px 0;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.menu a:hover { color: red; }

.menu-button {
  background: none;
  border: none;
  font-size: 1.8rem;   /* Increased size */
  cursor: pointer;
  z-index: 1000;
}

.menu-button i {
  font-size: 1.4rem;     /* Bigger fa-bars icon */
  margin-right: 8px;
}

/* Animation Styles */
.veg-layer {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  animation: floatUpDown 6s ease-in-out infinite;
  z-index: 2;
}

.base-image {
  width: 100%;
  z-index: 1;
}

@keyframes floatUpDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.smoke {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  opacity: 0.25;
  animation: floatSmoke 6s ease-in-out infinite;
  z-index: 2;
}

.smoke:nth-child(2) {
  animation-delay: 2s;
  width: 260px;
  opacity: 0.2;
}

.smoke:nth-child(3) {
  animation-delay: 4s;
  width: 300px;
  opacity: 0.15;
}

@keyframes floatSmoke {
  0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateX(-48%) translateY(-80px) scale(1.05); opacity: 0.2; }
  100% { transform: translateX(-50%) translateY(-180px) scale(1.1); opacity: 0; }
}

        
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
        
.icon-box {
    background-color: var(--light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}




/* Flame Container */
.flame-wrapper {
  width: 200px;
  height: 200px;
}

/* Flame Image with only blinking effect */
.animated-flame {
  width: 100%;
  height: auto;
  animation: blink 0.6s infinite alternate;
  z-index: 1;
  position: absolute;
  top: 0.4%;
  left: 0;

}

/* 🔥 Blinking Animation */
@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.6; }
  100% { opacity: 1; }
}


		
/*****Footer********/
footer {
	background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: auto;
}
.footer-grid {
      display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
	
	.footer-grid h3 {
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #bdc3c7;
    }

    .footer-grid ul {
      list-style: none;
      padding: 3%;
    }

    .footer-grid ul li a {
      display: block;
      margin: 0.3rem 0;
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-grid ul li a:hover {
      color: #fff;
    }
	

.social-container {
    margin: 1.5rem 0;
}

.social-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ecf0f1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #34495e;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

.social-link.whatsapp:hover {
	 background-color: #25D366;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
}


/* Mobile Optimizations */
    @media (max-width: 600px) {
      .footer-grid {
        text-align: center;
      }
      .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }
    }

/* Responsive adjustments */
    @media (max-width: 600px) {
    .social-links {
    gap: 1rem;
}
            
	.social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
	}
			
		
 