* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #212588; /* Light Sky Blue */
    color: #003366; /* Dark Blue */
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    background: linear-gradient(90deg, #ffffff, #ffffff); /* Gradient */
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    width: 180px;
    height: auto;
  }
  
  .shop-name {
    font-size: 15px;
    font-weight: bold;
    color: #0f0526; /* Light Blue */
  }
  .hover-link {
  transition: transform 0.4s ease, color 0.4s;
}

.hover-link:hover {
  transform: scale(1.1) rotateY(10deg);
  color: #0d6efd !important;
}

  .shop-n:hover {
    color: #000000;
  }
  
  /* Nav Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links a {
    color: #000000;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #187daf;
  }
  
  .nav-links a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #0e6793;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Slider */
  .slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 40px rgba(86, 102, 119, 0.2);
  }
  
  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
  }
  
  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 15px;
  }
  
  .prev:hover, .next:hover {
    background-color: #66ccff;
    color: #003366;
  }
  
  .prev { left: 20px; }
  .next { right: 20px; }
  
  /* About Section */
  .about {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s ease;
  }
  
  .about:hover {
    transform: rotateY(1deg);
  }
  
  .about h2 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 25px;
  }
  
  .about-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .about-text {
    flex: 1 1 400px;
    font-size: 18px;
    line-height: 1.8;
    color: #053b44;
    text-align: left;
  }
  
  /* Owner Photo */
  .owner-photo img {
    width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .owner-photo img.shake {
    animation: shake 0.5s;
  }
  
  @keyframes shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-5px, 5px) rotate(-2deg); }
    40% { transform: translate(5px, -5px) rotate(2deg); }
    60% { transform: translate(-5px, 5px) rotate(-1deg); }
    80% { transform: translate(5px, -5px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0); }
  }
  
  /* Map Section */
  .map {
    padding: 50px 20px;
    background: #ffffff;
    text-align: center;
  }
  
  .map h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 20px;
  }
  
  .map-container {
    max-width: 800px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }
  
  /* Contact Form Beautification */
.contact-form {
  background: #ffffff;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: #003366;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #00bcd4;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
}

  .contact-form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #1d4065;
    color: rgb(236, 247, 249);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #197aa1;
    color: #000000;
  }
  #response-message {
    display: none;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2em;
  }
  
  .emoji-container {
    display: inline-block;
    animation: slideDown 1s ease-out forwards;
  }
  
  .emoji {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  @keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

  
  @keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Product Section */
  #products {
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
  }
  
  #products h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #003366;
  }
  
  .product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .product-card {
    background-color: #fff;
    border: 1px solid #ffffff;
    padding: 10px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    max-width: 250px;
    margin: auto;
  }
  
  .product-card img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 6px;
  }
  
  .product-card p {
    margin-top: 8px;
    font-size: 1em;
  }
  
  /* Hover Effects */
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .shake:hover {
    animation: shake 0.4s ease-in-out;
  }
  
  @keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
  }
  
  /* Mobile Devices (width <= 768px) */
@media (max-width: 768px) {

  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .logo img {
    width: 120px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
  }

  .slider {
    max-width: 100%;
    height: 300px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .owner-photo img {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
  }

  .product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .product-card img {
    width: 100%;
    height: auto;
  }

  .gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
  }

  .contact-form form {
    width: 100%;
    padding: 0 10px;
  }

  .footer {
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }

  .whatsapp-fab {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-fab img {
    width: 100%;
    height: auto;
  }
}

  
  .footer {
    background-color:#212588;
    color: #f1f1f1;
    text-align: center;
    padding: 15px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-top: 40px;
  }
  
  .footer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  /* Gallery Section */
.gallery {
  background-color: #fff;
  padding: 50px;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-item p {
  margin-top: 10px;
  font-size: 18px;
}

.gallery-item[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
* Gallery Section */
.gallery {
  background-color: #fff;
  padding: 50px;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-item p {
  margin-top: 10px;
  font-size: 18px;
}

.gallery-item[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-fab img {
  width: 40px;
  height: 40px;
}