
     
    body {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

/* Navbar Start*/
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: center; /* Center content */
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  /* position: fixed; */
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  transition: background-color 0.3s;
  z-index: 1000;
  text-align: center;
  /* background-color: #df0218; */
  background-color: #242c35;
  color: white;
}

.navbar-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 99vw;
  text-align: center;
}

/* Logo Styling */
.logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 250px;
  padding-left: 20px;
}

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

.shop-name {
  /* color: #035f79; */
  display: inline-block;
  font-size: 1.2em;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  font-weight: bolder;
  /* color:#d2691e ; */
}

/* Nav List */
.nav-list {
  list-style: none;
  display: flex;
  justify-content: center; /* Center items */
  align-items: center;
  padding: 0;
  margin: 0;
  /* background-color: #242c35; */
}

.nav-list a {
  text-decoration: none;
  /* font-weight: bold; */
  font-size: 0.9em;
  padding: 9px;
  /* color: rgb(15, 10, 10); */
  color: whitesmoke;
}
.nav-list a:hover {
  background-color: #dbd7d7f5;
  border-radius: 20px;
  color: black;
  /* font-size: large; */
}
/* Book Now Button */
.book-now {
  /* background-color: #055970; */
  /* background: rgba(255, 255, 255, 0.1); Transparent effect */
  /* backdrop-filter: blur(15px);  */
  color: white !important;
  padding: 8px 15px;
  border-radius: 5px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

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

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

/* Hamburger Menu */
.menu-toggle {
  border: 1px solid white;
  padding: 10px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;

  margin: 3px 0;
}
.desktop-only i {
  font-size: 2em;
}

@media (max-width: 1050px) {
  .navbar-content {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
  }

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

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    /* background-color: white !important;  */
    background-color: #242c35;
    /* color:black; */
    /* background: rgba(255, 255, 255, 0.1); /* Transparent effect */
    /* backdrop-filter: blur(15px); Soft glass effect */
    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 */
  }
  .nav-list a {
    color: white;
  }
  .nav-list.active {
    display: flex;
    margin-top: 3rem;
  }

  .nav-list a:hover {
    /* color:#d2691e; */
    font-size: large;
    /* text-decoration: underline; */
  }

  .menu-toggle {
    display: flex;
  }

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

  #languageSelect {
    /* width: 100%; */
    margin: 10px auto;
  }
}
@media (max-width: 475px){
  .book-now {
    padding: 10px;
  }
}
/* Navbar Background Change on Scroll */
.scrolled {
  /* background-color:; */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* End of NavBar */

/*Hero section Start */

.hero {
  height: 100vh;
  width: 100%;
  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;
  text-shadow: #f8f4f0;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  transform: translateY(-100px);
  opacity: 0;
  animation: dropDown 1s ease-out forwards;
}

/* Hero Heading */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.hero p {
  font-size: x-large;
}
.cta_btn {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  background: rgb(253, 248, 248);
  color: black;
  font-weight: bolder;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta_btn:hover {
  transform: scale(1.2);
  background-color: #333e4b;
  color: white;
  font-weight: bolder;
}

/* Text Drop Animation */
@keyframes dropDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .cta_btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero {
    width: 100%;
    /* background-attachment: scroll; */
  }
  .cta_btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
/*Hero section End*/

/* about-us section start */
.about {
  text-align: center;
}

.about-h1 {
  font-size: 2.5rem;
  color: #242c35;
  margin-bottom: 30px;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0px 25px;
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.about-container img {
  width: 40%;
  max-height: 500px;
  padding: 10px;
  /* margin-left: 30px; */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.about-container p {
  width: 50%;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: justify;
  /* margin: 20px 0px; */
  padding: 10px;
  color: #242c35; /* Darker shade for readability */
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  /* transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; */
}

/* Hover effect */
.about-container:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-container img,
  .about-container p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-container img {
    width: 100%;
    /* max-height: 300px; */
    height: auto;
  }

  .about-container p {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 456px) {
  .about-container img {
    width: 90%;
    /* padding: 5px; */
    margin: 5px 0px;
  }
  .about-container p {
    padding: 10px;
    margin: 0px;
  }
}
/* about-us end */

/* product section satrt */

.products {
  padding: 40px;
  background: white; /* Soft boutique theme */
  text-align: center;
}

/* Section Title */
.products-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #242c35;
  margin-bottom: 30px;
}

/* Product Grid */
.product-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); Flexible columns */
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

/* Product card */
.product-card {
  width: 30%;
  height: auto;
  background: white;
  /* padding: 20px; */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Product Images */
.product-card img {
  width: 100%;
  height: 100%;
  /* padding: 30px; */
  object-fit: cover;
  /* border-radius: 10%; */
}

/* Product Description */
.product-card p {
  font-size: 1.1rem;
  color: #333;
  margin-top: 10px;
  padding: 10px;
}

/* Hover Effect */
.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
/* ✅ Responsive Fixes */
@media (max-width: 1250px) {
  .product-card {
    flex: 1 1 calc(35% - 20px); /* 2 items per row */
  }
}
@media (max-width: 1024px) {
  .product-card {
    /* width: 100%; */
    flex: 1 1 calc(45% - 20px); /* 2 items per row */
    padding: 0px;
  }
}
/* ✅ Ensure Last Row Centers */
@media (max-width: 768px) {
  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-card {
    width: 100%;
    /* padding:25px; */
  }
}

/* Mobile View - 1 Column Layout */
@media (max-width: 480px) {
  .product-card {
    flex: 100%;
  }
}
@media (max-width: 375px) {
  .products{
    padding: 20px;
  }
  .product-card {
    flex: 100%;
  }
  .product-card p {
    padding: 10px;
  }
}

/* products section end */

/* Pricing Section */
/* General Styling */
.pricing-section {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
}

.pricing-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: auto;
  align-items: stretch;
}

/* Larger Circular Floating Pricing Cards */
.pricing-card {
  width: 30%; /* Increased size */
  height: auto; /* Increased size */
  padding: 10px;
  border-radius: 10px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  align-items: stretch;
}

/* Floating Effect on Hover */
.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0px 18px 30px rgba(0, 0, 0, 0.25);
}

.pricing-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* padding:10px 25px; */
  object-fit: cover; /* Ensures full image is shown */
}

/* Price Styling */
.price {
  font-size: 1.6rem; /* Increased font size */
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-container {
    gap: 30px;
  }

  .pricing-card {
    width: 350px;
    height: auto;
  }

  .pricing-card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 80%;
    height: auto;
    padding: 10px;
    /* margin-left: 10px; */
    /* padding: 20px; */
  }
  .pricing-card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* height: auto; */
    /* padding-top: 15px; */
  }
}
@media (max-width: 375px) {
  .pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .pricing-card {
    /* width: 100%; */
    width: 90%;
    height: auto;
    padding: 10px;
  }
  .pricing-card img {
    width: 100%;
    height: 100%;

    border-radius: 10px;
  }
}
/* pricing end */

/* gallery start */
/* General Styling */
.gallery-section {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
}

.gallery-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #242c35;
}

/* Simple Grid Layout with Larger Images */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images per row */
  gap: 20px;
  /* max-width: 1200px; Increased max-width for larger images */
  margin: auto;
}

/* Image Styling */
.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover; /* Ensures images fit without stretching */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-container {
    max-width: 900px; /* Slightly reduce size on medium screens */
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr; /* Stacks images in a single column on mobile */
    max-width: 80%;
  }
}
@media (max-width: 468px) {
  .gallery-container {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .gallery-container {
    width: 100%;
    padding: 0px;
  }
  .gallery-item img{
    width: 100%;
    height: 100%;
  }
}
/* gallery end */

/* payments sec srart */
/* General Styles */
.payment-section {
  text-align: center;
  padding: 50px 20px;
  background-color: white;
}

.payment-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #242c35;
}

/* Payment Container */
.payment-container {
  display: flex;
  gap: 30px;
  /* max-width: 1000px; */
  margin: auto;
  align-items: center;
}

/* QR Code Section */
.qr-code-section {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
}

/* Payment Info */
.payment-info {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-info ul {
  list-style: none;
  /* padding: 20px; */
}

.payment-info ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Payment Methods */
.payment-methods {
  margin-top: 20px;
  text-align: justify;
}
.payment-methods h3 {
  text-align: center;
}
.method-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.icon {
  width: 50px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .payment-container {
    flex-direction: column;
    gap: 20px;
  }

  /* .qr-code-section,
  .payment-info {
    width: 100%;
  } */

  .qr-code {
    max-width: 200px;
  }


  .method-icons {
    flex-wrap: wrap;
  }
}
/* payments sec end */

/* contact-us sec start */
.contact-section {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 0px;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  padding-top: 1rem;
  color: #242c35;
}
.contact-info {
  width: 50%;
  font-size: 1.2em;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align:center/justify;
}
.contact-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
  align-items: center;
  align-content: center;
}

.map-container {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

.map-image {
  width: 65%;
  border-radius: 8px;
}

.contact-container h2 {
  margin-bottom: 15px;
}

/* Connect Button */
.connect-btn-container {
  text-align: center;
  margin-top: 2.5rem;
}

.connect-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #242c35;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  margin-bottom: 2rem;
}

.connect-btn:hover {
  background-color: #333e4b;
  transform: scale(1.1);
}
/* Responsive Styles */
@media (max-width: 1300px) {
  .map-image {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .map-image {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .contact-us {
    flex-direction: column;
    align-items: center;
  }
  .map-image {
    width: 90%;
  }
  .contact-container,
  .map-container {
    flex: 1 1 100%; /* Full width on smaller screens */
    margin: 10px 0;
  }
  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .contact-container {
    /* width: 100%; */
  }
  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
/* contact us sec end */

/* Styling for the floating WhatsApp button */
.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: 80px; /* Button size */
  height: 80px;
  background-color: #242c35; /* 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: 45px; /* Icon size */
  height: 45px;
}

.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: 15px;
    right: 15px;
    width: 50px; /* Button size */
    height: 50px;
  }
  .whatsapp-btn img {
    width: 30px; /* Icon size */
    height: 30px;
  }
}

/* whatsapp icon end  */

/* Popup button start */
.form-container {
  background-color: var(--dark-green);
  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: #242c35;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  background-color: #242c35;
}

.form-group button:active {
  background-color: #242c35;
}

/* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  font-size: 18px;
  color: #4caf50;
  padding: 20px;
}

/* Popup styles */

#contactpopup {
  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;
}

/* Close button (cross mark) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}

.close-btn:hover {
  color: red;
}

/* Button to select date */

#datePickerButton {
  background-color: #242c35;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

#datePickerButton:hover {
  background-color: #242c35;
}

/* Text input for hidden date selection */
#popup input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #242c35;
  border-radius: 5px;
  font-size: 16px;
  display: none;
}

/* Text input for email address */
input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

/* Textarea */
textarea {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
button[type="submit"] {
  background-color: #242c35;
  /* color: black; */
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #363d46;
  font-weight: bold;
}

#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 button end  */

/* footer section */
.footer {
  /* background-color: #024014; */
  /* background-color: #441752; */
  /* background-color: rgb(230, 225, 225); */
  background-color: #242c35;
  /* color: white; */
  color: white;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.social-media a {
  /* color: white; */
  /* text-align: center;
  align-items: center; */
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.fotter-icon {
  color: white;
}

.social-media a:hover {
  color: rgb(194, 45, 45);
  transform: scale(1.1);
}

.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
}

.product-by-visys {
  opacity: 0.5;
  font-size: 1rem;
}

/* Responsive Footer */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-media {
    margin-bottom: 1rem;
  }

  .footer-copyright {
    text-align: center;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* footer end */

/*  */
/* 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;
  margin-right: 3rem;
}

.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;
}

/* Styling for each video item */

#videos {

padding: 2rem 0;

}


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

#videos h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  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;
  padding-bottom: 10px;
}

/* 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;
    }
}


    