
     
    *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  color: rgb(15, 15, 15);
  font-family: 'Times New Roman', Times, serif;
}

html {
  scroll-behavior: smooth;
}
    
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  position: relative;
  transition: background-color 0.3s;
  z-index: 1000; /* Ensure navbar is above other content */
  /* background: rgba(148, 147, 152, 0.95); */
  background:#8B4513 ;
}

/* Align logo and shop name to the left, nav content to the right */
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
 
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  height: auto;
  width: 280px;
}

.logo img {
  height: 80px;
  width: 80px;
  /* border-radius: 50%; */
  margin-right: 10px;
}

.shop-name {
  display: inline-block;
  font-weight: 600;
  font-size: 1.1em;
  text-align: left; /* Align text to left */
  color: white;
}


/* Nav List */
.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end; /* Align nav items to the right */
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  /* color: black; */
  color: white;
  font-weight: 600;
  padding: 10px;
  font-size: 1.1em;
}

/* Language Dropdown */
.language-dropdown {
  display: flex;
  align-items: center;
}

#languageSelect {
  font-size: 0.9em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f9fa;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 7px;
  width: 100px;
}

#languageSelect:hover {
  background-color: #e2e6ea;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  
  z-index: 1001; /* Make sure hamburger menu is above the navbar */
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  /* background-color: black; */
  background-color: whitesmoke;
  margin: 3px 0;
}

.schedule {
  color:black;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  transition: var(--transition);
  margin-right: 1rem;
}

.schedule:hover {
  transform: translateY(-3px);
 
}


/* Media Query for Mobile View */
@media (max-width: 1024px) {
  .navbar-content {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    /* background-color: white; */
    background-color: #8B4513;
    color: white;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px  rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 25px; /* Adds space between the menu items */
    z-index: 1002; /* Ensure the menu is above the hero section */
  }
  .nav-list a{
      color: white;
  }
  .nav-list.active {
    display: flex;
    /* margin-top: 3rem; */
  }

  .menu-toggle {
    display: flex;
  }

  /* Center Language Select in Mobile Menu */
  .language-dropdown {
    justify-content: center;
    width: 100%;
  }

  #languageSelect {
    width: 100%;
    margin: 10px auto;
  }
}
  
  /* Navbar Background Change on Scroll */
  /* .scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  } */
  
  
  /* ---nav ends---- */

/* Home Section */
.home {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.home-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-in;
    position: relative;
    z-index: 2;
}

.home-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f8d7da;
    font-style: italic;
}

.featured-chocolates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.chocolate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.chocolate-item:hover {
    transform: translateY(-5px);
}

.chocolate-item i {
    font-size: 2rem;
    color: #f8d7da;
}

.chocolate-item span {
    font-size: 1.1rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #8B4513;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #8B4513;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .home-content h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .featured-chocolates {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background-color: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
    z-index: 1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height:auto;
}



.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}



.about h2 {
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.about-text p {
    color: black;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    /* .about-text {
        padding: 1rem;
    } */

    .about-text h2 {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
}

.section-title {
    text-align: center;
    color: #8B4513;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    font-style: normal;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #7d4c29, transparent);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(146, 89, 48, 0.7) 0%,
        rgba(132, 85, 52, 0.5) 20%,
        transparent 90%
    );
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-card:hover .service-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-card h3 {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.service-card:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    font-style: italic;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.service-btn {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.service-card:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-btn::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-btn:hover::after {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
        height: auto;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 2rem 1rem;
    }

    .service-card {
        flex: 1 1 100%;
        height: auto;
    }

    .service-content {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }

    .service-card h3,
    .service-card p,
    .service-btn {
        opacity: 0;
        transform: translateY(20px);
    }

    /* Show content only on hover/touch */
    .service-card:hover .service-content,
    .service-card:hover h3,
    .service-card:hover p,
    .service-card:hover .service-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .service-card h3 {
        font-size: 1.8rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

/* Touch device support */
@media (hover: none) {
    .service-card:active .service-content,
    .service-card:active h3,
    .service-card:active p,
    .service-card:active .service-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Pricing Section */
.pricing {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.1));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-item {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: auto; /* Allow card height to be dynamic based on content */
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.pricing-image {
  position: relative;
  width: 100%;
  height: 100%; /* Ensure image takes up all of its container height */
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Make sure the image fills the space without distortion */
  object-position: center;
  transition: transform 0.6s ease;
}

.pricing-box {
  padding: 1.5rem;
  text-align: center;
  background: rgb(96, 65, 25);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}



.pricing-box h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.pricing-box h3::before {
  content: '';
  font-size: 2rem;
  vertical-align: super;
  margin-right: 0.2rem;
}

@media (max-width: 1200px) {
  .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .pricing-item {
      height: auto; /* Let the height adjust based on content */
  }

  .pricing-image {
      height: 100%; /* Ensure image fits well inside the container */
  }

  .pricing-box {
      height: auto; /* Let box height adjust based on content */
  }
}

@media (max-width: 768px) {
  .pricing {
      padding: 2rem 1rem;
  }

  .pricing-grid {
      grid-template-columns: 1fr;
  }

  .pricing-item {
      height: auto; /* Auto height for each card */
  }

  .pricing-image {
      height: auto; /* Maintain aspect ratio with the given height */
  }
}

@media (max-width: 480px) {
  .pricing-item {
      height: auto; /* Let the card height adjust automatically */
  }
}


/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background-color: #fff;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery Item */
.gallery-item {
    flex: 1 1 300px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    
}

.gallery-item.large {
    flex: 1 1 625px;
    min-width: 625px;
 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: rgba(139, 69, 19, 0.05);
    padding: 0.5rem;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 1 1 280px;
        min-width: 280px;
    }

    .gallery-item.large {
        flex: 1 1 580px;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-item,
    .gallery-item.large {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
  

    .gallery-grid {
        gap: 1rem;
    }
}

/* Payment Section */
.payment-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    
  }
  
  .payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    z-index: 1;
  }
  
  .payment-section h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
 
  
  /* Payment Container */
  .payment-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-style: italic;
  }
  
  /* QR Code Section */
  .qr-code-section {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    animation: fadeInLeft 1s ease-out;
  }
  
  .qr-code-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .qr-code-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    
    position: relative;
    display: inline-block;
  }
  

  
  .qr-code {
    width: 400px;
    height: 400px;
    border: 4px solid rgba(108, 66, 10, 0.3);
    border-radius: 15px;
    margin: 2rem auto;
    transition: all 0.5s ease;
    background: white;
    padding: 10px;
  }
  
  .qr-code:hover {
    transform: scale(1.05);
    border-color:brown;
    box-shadow: 0 10px 20px rgba(77, 202, 248, 0.2);
  }
  
  .qr-code-section p {
    font-size: 1.1rem;
    color: #000000;
    margin-top: 1.5rem;
    opacity: 0.9;
  }
  
  /* Payment Info Section */
  .payment-info {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    animation: fadeInRight 1s ease-out;
  }
  
  .payment-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .payment-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    
    position: relative;
    display: inline-block;
  }
  
 
  .payment-info p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
  }
  
  .payment-methods {
    margin-top: 2rem;
  }
  
  .payment-methods h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333333;
  }
  
  .method-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .method-icons img {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
    opacity: 0.8;
    filter: brightness(0.9);
  }
  
  .method-icons img:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(220, 144, 90, 0.3);
  }
  
  .payment-instructions {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
  }
  
  .payment-instructions li {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  .payment-instructions li:hover {
    transform: translateX(10px);
  }
  
  .payment-instructions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: brown;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .payment-container {
      grid-template-columns: repeat(8, 1fr);
    }
  
    .qr-code-section,
    .payment-info {
      grid-column: span 4;
    }
  }
  
  @media (max-width: 1024px) {
    .payment-section h2 {
      font-size: 2.8rem;
    }
  
    .payment-container {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .qr-code-section,
    .payment-info {
      grid-column: span 1;
    }
  
    
  }
  
  @media (max-width: 768px) {
    .payment-section {
      padding: 4rem 0;
    }
  
    .payment-section h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
  
    .qr-code-section,
    .payment-info {
      padding: 1rem;
    }
  
    .qr-code {
      width: 300px;
      height: 300px;
    }
  
  }
  
  @media (max-width: 480px) {
    .payment-section h2 {
      font-size: 2.2rem;
    }
  
    .qr-code-section h2,
    .payment-info h2 {
      font-size: 1.8rem;
    }
  
    .qr-code {
      width: 250px;
      height: 250px;
    }
  
    /* .method-icons {
      grid-template-columns: 1fr;
    } */
  
    .payment-instructions {
      padding: 1.5rem;
    }
  
    .payment-instructions li {
      font-size: 1rem;
    }
  }
  
  
  
/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background: none;
}

.contact-section .contact-card {
  background: none;
  box-shadow: none;
  max-width: 1200px; /* Increased width to accommodate both sections side by side */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
  gap: 2rem; /* Space between map and contact info */
}

.contact-card h2 {
  color: #8B4513;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 45%; /* Adjusted width to fit side by side with map */
  max-width: 600px; /* Restrict maximum width */
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.map-container {
  width: 50%; /* Adjusted width to fit side by side with contact info */
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-card .btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  min-width: 200px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-info {
    width: 100%; /* Make contact info full width on smaller screens */
  }

  .map-container {
    width: 100%; /* Make map full width on smaller screens */
    height: 350px; /* Set height for map on smaller screens */
  }

  .contact-info .info-item {
    padding: 1rem;
  }
}

  /* Footer Styles */
  .footer {
    background: #8B4513;
    color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    /* height: 25vh; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-social {
    margin-bottom: 10px;
    display: flex;
    gap: 10px; /* Controls spacing between icons */
    justify-content: center;
    align-items: center;
  }
  
  .footer-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
  }
  .social-icon {
    width: 45px;
    height: 45px;
    margin: 0 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }
    
    
  .footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
  }
    
  .product-by-visys p {
    opacity: 0.7;
    font-size: 1.2rem;
    color: #ffffff;
  }
    
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
  
    
    .footer-copyright {
        text-align: center;
    }
  
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  }
    
  .whatsapp-btn {
        position: fixed; /* Makes the button fixed on the page */
        bottom: 20px; /* Distance from the bottom of the page */
        right: 20px; /* Distance from the right of the page */
        z-index: 1000; /* Ensures it appears above other content */
        width: 60px; /* Button size */
        height: 60px;
        background-color: #25d366; /* WhatsApp green color */
        border-radius: 50%; /* Makes it circular */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .whatsapp-btn img {
        width: 35px; /* Icon size */
        height: 35px;
    }
    
    .whatsapp-btn:hover {
        transform: scale(1.1); /* Slight zoom effect on hover */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }
  
  @media (max-width: 768px) {
      .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        width: 40px; /* Button size */
        height: 40px;
    }
      .whatsapp-btn img {
        width: 25px; /* Icon size */
        height: 25px;
    }
    }
    
    
    .form-container {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 500px;
    }
    
    .form-container h2 {
      text-align: center;
      color: #333;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 12px;
      margin-top: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
      background-color: #f9f9f9;
    }
    
    .form-group button {
      width: 100%;
      padding: 12px;
      background-color:#48A6A7;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }
    
    .form-group button:hover {
      background-color:#505252;
    }
    
    /* Thank You Message */
    .thank-you-message {
      display: none;
      text-align: center;
      font-size: 18px;
      color:#48A6A7;
      padding: 20px;
    }
    
    /* Popup styles */
    #contactpopup, #popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    .popup-content {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      width: 100%;
      max-width: 500px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      color: #333;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px 10px;
      transition: color 0.3s ease;
    }
    
    .close-btn:hover {
      color: #8B4513;
    }
    
    .popup-content h2 {
      color: #8B4513;
      text-align: center;
      margin-bottom: 20px;
      font-family: 'Playfair Display', serif;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #8B4513;
      outline: none;
    }
    
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    .form-group button {
      width: 100%;
      padding: 12px;
      background-color: #8B4513;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .form-group button:hover {
      background-color: #6b3410;
    }
    
    .thank-you-message {
      display: none;
      text-align: center;
      color: #8B4513;
      font-size: 18px;
      padding: 20px;
      background-color: #f8f8f8;
      border-radius: 4px;
      margin-top: 20px;
    }
    
    #datePickerButton {
      width: 100%;
      padding: 12px;
      background-color: #8B4513;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }
    
    #datePickerButton:hover {
      background-color: #6b3410;
    }
    
    .appointment-date {
      display: none;
    }
    
    @media (max-width: 768px) {
      .popup-content {
        margin: 20px;
        padding: 20px;
      }
    }
    

/* Custom Translate Button */
.translate-container {
  position: relative;
}

.translate-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.translate-btn:hover {
  background: #939292;
}

/* Language Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  width: 120px;
  z-index: 100;
  animation: fadeIn 0.3s ease-in-out;
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
} */

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background: #fff;
  color: red;
}


/* Hide Google Translate Branding Completely */
.goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
#google_translate_element select, .goog-te-gadget {
  display: none !important;
}



/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Ensure body does not shift down due to hidden banner */
body {
  top: 0px !important;
}
/* Hide Google Translate banner */
.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}

    .contact-info .info-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-info .icon {
        color: #8B4513;
        font-size: 1.8rem;
        margin-right: 1.5rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(139, 69, 19, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .info-item:hover .icon {
        background: #8B4513;
        color: white;
        transform: rotate(360deg);
    }

    .contact-info p {
        margin: 0;
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
    }

    .contact-info span {
        color: #666;
        font-weight: 400;
        display: block;
        margin-top: 0.4rem;
        font-size: 1.2rem;
        font-style: italic;
    }

    .contact-card .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2.5rem;
        background: #8B4513;
        color: white;
        text-align: center;
        border-radius: 50px;
        text-decoration: none;
        margin-top: 2rem;
        transition: all 0.3s ease;
        border: 2px solid #8B4513;
        font-weight: 500;
        font-size: 1.1rem;
        width: auto;
        min-width: 200px;
    }

    .contact-card .btn:hover {
        background: transparent;
        color: #8B4513;
        transform: translateY(-3px);
    }

    .map-container:hover img {
        transform: scale(1.05);
    }

    @media (max-width: 480px) {
        .contact-section {
            padding: 3rem 1rem;
        }

        .contact-info p {
            font-size: 1rem;
        }

        .map-container {
            height: 300px;
        }

        .contact-card .btn {
            width: 100%;
        }
    }

    @media (max-width: 1024px) {
      .language-dropdown {
          top: -120px;
          right: 0;
          bottom: 0;
          left: 120px;
        }
       }
       @media (max-width: 480px) {
        .nav-list.active {
          align-items: flex-start;
        }
      
        .translate-btn {
          margin-left: 20px;
        }
      
        .nav-list a{
          margin-left: 20px;
      }     
     }

/* General video container */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#video {
  padding: 4rem 0;
}

#videos h2 {
  margin-bottom: 20px;
  display: block; /* Ensures it behaves as a block element /
  width: 100%; /* Makes sure it takes full width */
  text-align: center; /* Explicit centering */
  position: relative;
}

/* Styling for each video item */
.video-item video {
    width: 80%; /* Make videos responsive */
    /* max-width: 320px; Limit width */
    height: auto;
    position: relative;
    border-radius: 8px;
}

/* Row for 2 or more videos */
.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Specific layouts for different video counts */
.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

/* .video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
} */

/* .video-item .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
} */

 
/* Responsive handling */
@media (max-width: 768px) {
    .video-item video {
        max-width: 100%;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ---pop up----- */
 #popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allow scrolling inside popup */
  z-index: 9999; /* Ensure it appears above everything */
}

/* Popup box (Centered properly) */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  max-height: 80vh; /* Restrict height */
  overflow-y: auto; /* Enable scrolling inside popup */
  z-index: 10001; /* Ensure it appears above navbar */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.close-btn:hover {
  background: darkred;
}

/* Prevent background scrolling when popup is open */
body.no-scroll {
  overflow: hidden;
}

/* Fix Navbar Overlapping */
.navbar {
  position: relative;
  z-index: 100; /* Ensure navbar does not cover popup */
}


/* Product grid layout */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Dynamic grid */
  gap: 15px;
  padding: 10px;
}

.product-items {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-items img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.discounted-price {
  color: #d9534f;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #777;
}

/* Buttons inside the popup */
.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.popup button:hover {
  opacity: 0.8;
}

.cart-item button {
  background-color: #dc3545;
  color: white;
}

.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
}

.popup button:first-of-type {
  background-color: #007bff;
  color: white;
}
.view-cart-btn {
  position: absolute;
  top: 10px;
  right: 80px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.view-cart-btn:hover {
  background-color: #218838;
}
.cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: none;
  z-index: 9999;
}

    