/* Import a fun and elegant Google Font */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;600&display=swap');

body {
  font-family:cursive;
  background: linear-gradient(to bottom right, #fff5f7, #ffe9e9);
  color: #333;
  scroll-behavior: smooth;
  margin: 0;
}
h1 {
  font-family: cursive;
  color: #500229;
}

h2, h3, h5 {
  font-family: 'Pacifico', cursive;
  color: #FF69B4;
}

h4 {
  font-family: 'Times New Roman', Times, cursive;
  color: rgb(155, 5, 135);
}


.navbar {
  background-color: #ffe0b8ee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin:0;
  padding: 0;
}

.nav-link {
  font-family: 'Segoe UI', cursive;
  font-weight: 1000;
  position: relative;
  color: #d9079de0;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  color: #ff86c3;
  text-shadow: 0 0 10px #FFB6C1, 0 0 20px #FFB6C1;
}

.nav-link::before {

  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FF69B4;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

.nav-link:hover::before {
  visibility: visible;
  transform: scaleX(1);
}
.logo-img {
  align-items: center;
  height: 60px; /* Adjust to fit your desired size */
  width:auto; /* Maintains aspect ratio */
  object-fit: contain;
  margin-right: 8px; /* Adds space between image and text */
}
.logo-text {
  font-size: 1.1rem; /* or use your preferred size */
  font-weight: bold;
  color: #ac0c6f; /* Adjust color as needed */
}


.hero-section {
  padding:  0;
  margin: 0;
  text-align: center;
  background: url('back.jpg') center/ cover no-repeat;
  animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}

.home-ordering {
  position: fixed;
  right: 20px;
  bottom: 500px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  text-align: center;
  max-width: 220px;
  font-family: 'Arial', sans-serif;
  animation: floatBounce 3s ease-in-out infinite;
}

.home-ordering h5 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color:#ff4081;
}

.home-ordering a {
  display: inline-block;
  margin: 6px 5px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.home-ordering a:hover {
  transform: scale(1.3);
  color: #e91e63; /* pinkish hover effect */
}

.home-ordering i {
  margin-right: 6px;
}


/* 🌟 Floating Order Panel */
.floating-order {
  position: fixed;
  top: 40%;
  right: 20px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 16px 14px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
  text-align: center;
  animation: floatBounce 2s ease-in-out infinite;
}

.floating-order h5 {
  color: #ff4081;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.floating-order a {
  display: inline-block;
  margin: 6px;
  color: #ff4081;
  font-size: 22px;
  transition: transform 0.3s, color 0.3s;
}

.floating-order a:hover {
  transform: scale(1.3);
  color: #e91e63;
}

/* 🪩 Bouncing Float Animation */
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-us-section {
  padding:100px 0   ;
  text-align: center;
  background: url('about.jpg')  no-repeat;
  animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}
.products-section {
  padding: 100px 0;
  text-align: center;
  background: url('product.jpg') no-repeat;
  animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}
.gallery-section {
  padding: 100px 0;
  text-align: center;
  background: url('gallery.jpg')  no-repeat;
  animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}
.contact-section {
  padding: 100px 0;
  text-align: center;
  background: url('contact.jpg')  no-repeat;
  animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}
.intro h1 {
  font-size: 4rem;
  animation: slideInDown 1.5s ease-out;
  color:#eee
}
.intro p {
  font-size: 1.5rem;
  color:black;
  margin-bottom: 30px;
  animation: fadeInUp 2s ease-in-out;
}

.btn-primary {
  background-color: #FF69B4;
  border: none;
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 15px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff85c1;
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(255, 105, 180, 0.5);
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

.nav-link:hover {
  animation: flicker 1s infinite;
}

/* Marquee Images */
.home-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-images {
  display: inline-block;
  animation: marquee 40s linear infinite;
}

.marquee-images img {
  height: 200px;
  margin: 0 -1px;
}

@keyframes marquee {
 0% { transform: translateX(100%); } /* Start off-screen */
  -100% { transform: translateX(100%); } /* Quickly come into view */
  100% { transform: translateX(-1000%); } /* Slowly scroll across */
  100% { transform: translateX(-100%); } /* End off-screen */
}

.featuresection{
background-color:burlywood
  }
.feature.box {
  background: #fafafa;
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-in-out;
}

.feature.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #FF69B4;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.call-to-action {
  background-color: #fff5f7;
  padding: 50px 20px;
  margin-top: 50px;
  animation: fadeIn 2s ease-out;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
}

footer {
  font-family: 'Poppins', sans-serif;
  background-color: #222;
  color: #eee;
  padding-top: 40px;
}

footer h5 {
  font-weight: bold;
  color: #FF69B4;
}

footer a {
  text-decoration: none;
  color: #fff;
}

footer a:hover {
  text-shadow: 0 0 5px #FFB6C1;
  color: #FF69B4;
}
.contact-icons {
  position: fixed;
  bottom: 6rem;
  left:88rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}
.contact-icons {
  position: fixed;
  bottom: 0.1rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.contact-icon {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.9s ease-in;
  animation: backwards;
}


.testimonial-avatar img {
  transition: transform 0.3s ease-in-out;
}

.testimonial-avatar img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
}

iframe {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* 💬 Floating Chat Bubble */
.chat-bubble {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ff5ca0;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-bubble 2s infinite;
}

.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* 🫧 Pulse animation */
@keyframes pulse-bubble {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}


/*&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& About Page $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

.about-section h2, .about-section h5, .about-section p {
  color: #fff;
}

.timeline {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.timeline-item {
  width: 30%;
  background: #292947;
  color: #d81b60;
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 1rem;
  transition: transform 0.3s;
}
.timeline-item:hover {
  transform: scale(1.05);
}
.timeline .year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f48fb1;
}

.feature-box {
  background: #2c2c3f;
  padding: 1.2rem;
  border-radius: 1rem;
  transition: 0.3s;
  color:#ccc
}
.feature-box:hover {
  background: #ff7eb9;
  transform: scale(1.1);
  color: #fff;
  text-decoration: #222;
}
.feature-box i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stats h3 {
  font-size: 2.5rem;
  color: #ffca28;
}

.testimonial-slider {
  align-items: center;
  position: relative;
  height: 60px;
  overflow: hidden;
}

.testimonial {
  display: none;
  font-style: italic;
  font-size: 1.1rem;
  color: #ccc;
}
.testimonial.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Card Styling */
.box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInZoom 1.2s ease-in-out;
}

/* Hover Zoom & Glow */
.box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5); /* pink glow */
}

/* Image Wrapper for neatness */
.image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 1rem auto 0;
}

/* Entry Animation */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*footer*/
/* Footer section base style */
footer {
  background: #1a1a1a;
  color: #fff;
  overflow: hidden;
}

/* Animation keyframe */
@keyframes footerFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initially hidden */
footer .footer-animate {
  opacity: 0;
  transform: translateY(40px);
}

/* Trigger animation */
footer .footer-visible {
  animation: footerFadeUp 1s ease forwards;
}


/************************************************************* Products Page ***************************************/
/* Product Card Styling */
/* Product Card Styling */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fbf2f7;
  max-width: 300px;
  margin: auto;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid #eee;
}

/* Make card body compact */
.card-body {
  padding: 1rem;
}

.product-price {
  font-size: 1rem;
  color: #e91e63;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Button Styling */
.btn-pink {
  background-color: #e91e63;
  color: #fff;
  border: none;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-pink:hover {
  background-color: #d81b60;
}

/* Entry animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/*********************************************** Gallery page*********************************************/
/* Gallery section base style */
#gallery {
  background: #fff8fc;
  overflow: hidden;
}

/* Animation keyframes */
@keyframes popFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default state — visible */
#gallery img,
#gallery h2,
#gallery h3 {
  opacity: 1;
  transform: none;
}

/* Hidden state - added only with JS */
.hidden-before-scroll {
  opacity: 0;
  transform: scale(0.8);
}

/* Animation trigger */
.pop-in {
  animation: popFadeIn 0.8s ease forwards;
}

.fade-up {
  animation: fadeInUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

/* Hover effect */
#gallery img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 16px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

#gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 64, 129, 0.2);
}



/******************************************* Contact page ************************************/
/* General styling */
.contactus {
  background: #fdfdfd;
  overflow: hidden;
}

.contactus .form-label {
  font-weight: 600;
  color: #333;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animation delays */
.contactus .text-center {
  animation: fadeInUp 1s ease forwards;
}

.contactus .col-md-6:first-child {
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.contactus .col-md-6:last-child {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Form controls transitions */
.contactus input,
.contactus textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contactus input:focus,
.contactus textarea:focus {
  border-color: #ff4081;
  box-shadow: 0 0 0 0.2rem rgba(255, 64, 129, 0.25);
  outline: none;
}

/* Button hover effect */
.contactus .btn-primary {
  background-color: #ff4081;
  border-color: #ff4081;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contactus .btn-primary:hover {
  background-color: #e73370;
  transform: scale(1.03);
}

/* Contact info styling */
.contactus .contact-info h5 {
  font-weight: 600;
  margin-top: 20px;
  color: #ff4081;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contactus .contact-info p {
  margin-bottom: 10px;
  color: #555;
}

.contactus .social-icons a {
  font-size: 1.3rem;
  color: #444;
  transition: color 0.3s ease;
}

.contactus .social-icons a:hover {
  color: #ff4081;
}

/* Google Map Styling */
.contactus iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.contactus iframe:hover {
  transform: scale(1.02);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .contactus .col-md-6 {
    animation: none;
    opacity: 1;
  }
}
