* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fff8f0;
  color: #3d2b1f;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d1991d;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}
.navbar ul li a:hover {
  color: #d1991d;
}
.search-bar input {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid #ccc;
}

/* Hero Section */
.hero {
  background: url('your-hero-image.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
}
.overlay {
  background: rgba(0,0,0,0.5);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.overlay h1 {
  font-size: 3rem;
  margin-top: 5rem;
}
.overlay p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.hero-buttons button {
  font-family: 'Quicksand', Sans-Serif;
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #d1991d, #f0c66d);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, background 0.3s;
}
.hero-buttons button:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #f0c66d, #d1991d);
}

/* Why Us */
.why-us {
  padding: 4rem 2rem;
  background: #fffaf0;
  text-align: center;
}
.why-us h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.feature-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 300px;
}

/* Packages Preview */

.packages-preview {
  padding: 4rem 2rem;
  background: #fdf6e3;
  text-align: center;
}
.package-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  width: 280px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #3d2b1f;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features, .package-cards {
    flex-direction: column;
    align-items: center;
  }
}





/* Hero background (image will be applied via JS) */
.hero {
  height: 150vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

/* Overlay text and button layout */
.overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Sexy, glowing buttons */
.switch-btn {
  background: linear-gradient(135deg, #ffcf70, #d1991d);
  border: none;
  padding: 0.8rem 1.6rem;
  margin: 0.5rem;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 206, 80, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.switch-btn:hover {
  background: linear-gradient(135deg, #d1991d, #ffcf70);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.7);
}



/* Navbar over hero with transparent background */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.3); /* translucent over hero */
  backdrop-filter: blur(4px);
}
.navbar .logo {
  color: #fff6da;
  font-size: 1.7rem;
  font-weight: 700;
}
.navbar nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.navbar nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.navbar nav ul li a:hover {
  color: #f9d87a;
}

/* Hero section with dynamic background */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  position: relative;
}
.overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}
.overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Hero Buttons 
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-buttons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(135deg, #f0c66d, #d1991d);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 206, 80, 0.4);
  transition: all 0.3s ease;
}
.hero-buttons button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #d1991d, #f0c66d);
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}
*/

/* Responsive */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }
  .navbar nav ul {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
  }
}




.hero-button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  border: none;
}

.hero-btn {
  background-color: #2a2a2a;
  padding: 20px 40px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  border: none;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff69b4;
}



/* Prices and Packages Section*/

.trendy-products {
  padding: 50px 7rem;
  background: linear-gradient(to bottom, #fff6e5, #ffffff);
  text-align: center;
  /*font-family: 'Poppins', cursive;*/
}

.section-title {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 500px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.3em;
  color: #333;
  margin: 15px 0 5px;
}

.price1 {
  color: #6f8f67;
  font-weight: bold;
  margin-bottom: 10px;
}

.price2{
  color: #00b3ff;
  margin-bottom: 10px;
}

.price3{
  font-weight: bold;
  margin-bottom: 10px;
}

.price4{
   color: #d4a24a;
  margin-bottom: 10px;
}

.buy-btn {
  background-color: #fdf3c5;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
}

.buy-btn:hover {
  background-color: #fcffac;
}

/* Gallery Section Design 1

.gallery-section {
  padding: 40px 20px;
  background: #fdf6e3;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #9a6b2f;
}
.carousel {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-images img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 20px;
}

/* Navigation buttons *
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255, 222, 130, 0.7);
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}
.nav:hover {
  background: #d1a843;
  color: white;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Auto Slide Button *
.controls {
  margin-top: 15px;
}
.play-btn {
  background: #f5d076;
  color: #6c4706;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.play-btn:hover {
  background: #e0b54f;
  transform: scale(1.05);
}

*/

/* Gallery Section Design 2

.slider-section {
  padding: 40px 20px;
  background-color: #fffdf7;
  text-align: center;
}

.slider-heading {
  font-size: 28px;
  color: #444;
  margin-bottom: 20px;
  font-weight: bold;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
}

.slider-item {
  min-width: 380px;
  background-color: #fef8e0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 10px;
  text-align: center;
}

.slider-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.slider-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #fff4c4;
  color: #333;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slider-button:hover {
  background-color: #ffeb99;
  transform: scale(1.05);
}
*/

/* Gallery Section Design 3*/

.gallery-section {
  padding: 40px 20px;
  background: #fffef7;
  text-align: center;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 30px auto;
}

.gallery-header h2 {
  font-size: 28px;
  color: #444;
}

.gallery-controls button {
  background: #fff8dc;
  border: none;
  padding: 10px 14px;
  margin: 0 5px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-controls button:hover {
  background: #ffeeaa;
}

.gallery-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  transition: all 0.5s ease-in-out;
}

.gallery-image {
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.gallery-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-image {
    width: 90%;
    height: 180px;
  }
}

#playPauseBtn{
  color: rgb(237, 255, 117);
  background-color: black;
}

.Whatsappbtn{
  color: white;
  background-color: rgb(111, 255, 111);
  height: 3.3rem;
  width: 8rem;
  border-radius: 1rem;
  margin-bottom: 10px;
  border: none;
  font-family: cursive;
}

.Whatsappbtn:hover{
  background-color: #367127;
}

/* For Mobile Responsivness 1

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .search-bar {
    width: 100%;
    margin-top: 10px;
  }

  .search-bar input {
    width: 100%;
  }
}


@media (max-width: 768px) {
  .overlay {
    text-align: center;
    padding: 20px;
  }

  .hero-btn {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width: 768px) {
  .trendy-products {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }
}


@media (max-width: 768px) {
  .clients-slider {
    flex-direction: column;
    align-items: center;
  }

  .clients-slider img {
    max-width: 70%;
    margin-bottom: 10px;
  }
}


@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 15px;
  }
}
*/

/* ===== GLOBAL RESET for responsiveness ===== */


/* ===== MAIN LAYOUT CONTAINER ===== */
.container, .section, .main-content, .wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== FLEXIBLE IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UNIVERSAL GRID for Cards or Packages ===== */
.card-container,
.packages-section,
.products-wrapper,
.image-gallery,
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* ===== INDIVIDUAL CARD STYLING ===== */
.card,
.package,
.product-card,
.box {
  flex: 1 1 250px; /* grow shrink basis */
  max-width: 300px;
  min-width: 220px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
}

/* ===== TEXT / BUTTON RESPONSIVE ===== */
h1, h2, h3, p, button, a {
  word-wrap: break-word;
  line-height: 1.4;
}

/* ===== MEDIA QUERIES FOR SMALL DEVICES ===== */
@media screen and (max-width: 768px) {
  .navbar, .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section, .about-section, .packages-section {
    padding: 10px;
    flex-direction: column;
  }

  .card, .package, .product-card, .box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  p, a, button {
    font-size: 16px;
  }

  .search-bar, input[type="text"], input[type="email"], textarea {
    width: 100%;
    font-size: 16px;
  }

  .footer {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
}

/* Nav bar & hero Mobile Responsivness*/

/* ✅ Responsive Navbar + Hero Section Fix */
@media screen and (max-width: 768px) {
  /* ===== Navbar ===== */
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1e2a36;
    gap: 10px;
    padding: 10px 0;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 8px;
  }

  nav ul li {
    width: 100%;
    padding: 5px 0;
  }

  /* ===== Hero Section ===== */
  .overlay {
    padding: 40px 15px;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
    margin-top: 10px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100%;
    max-width: 300px;
    margin: auto;
    font-size: 16px;
    padding: 12px;
  }
}

/* Navbar add Responsivennes 

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* ensure it's above all *
}


@media (max-width: 768px) {
  .hero img {
    width: 100%;
    height: auto;
    object-fit: cover; /* optional for better look *
  }

  .navbar {
    position: fixed;
    z-index: 1000;
  }

}
*/

#d{
  align-items: center;
  text-align: center;
}


.logo-container img {
  max-width: 75px;
  width: 100%;
  height: auto;
}



.button-wrapper {
  text-align: center;
}

.desert-btn {
  background: #fff9d0; /* Light yellowish off-white */
  color: #000; /* Black text */
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 40px;
  border: 2px solid #c2a94d; /* Golden sand tone */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: cursive;
  border: none;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.desert-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #a3fff1; /* Golden sand */
  z-index: -1;
  transition: all 0.4s ease;
}

.desert-btn:hover::before {
  left: 0;
}

.desert-btn:hover {
  color: #fff9d0; /* Light yellowish text on hover */
  border-color: #fff9d0;
}


/* Navbar */
.navbar1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5); /* semi transparent */
  z-index: 1000;
}

/* Logo and Brand name container */
.logo-name {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and name */
}

/* Logo */
.logo {
  height: 40px;
  width: auto;
}

/* Brand name text */
.brand-name {
  font-size: 20px;
  color: white;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar1
   {
    flex-direction: row; /* stay side by side */
  }

  .logo-name {
    flex-direction: row; /* logo and name side by side */
    align-items: center;
  }

  .brand-name {
    font-size: 16px;
  }
}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}


.contact-section {
  padding: 60px 20px;
  background-color: #fffef7;
  color: #333;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
  animation: fadeInUp 1s ease;
}

.contact-details, .contact-address {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;
}

.contact-address h4 {
  margin-bottom: 8px;
  color: #222;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #f3e5ab;
  border-radius: 10px;
  background-color: #fffef0;
  font-size: 16px;
  transition: 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

.submit-btn {
  background-color: #fff4a3;
  color: #222;
  padding: 12px;
  border: none;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: #ffe873;
  transform: scale(1.05);
}

#thankYouMsg {
  margin-top: 20px;
  color: green;
  font-weight: bold;
  font-size: 18px;
  animation: fadeIn 1s ease;
}

.hidden {
  display: none;
}

.social-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social {
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social:hover {
  transform: translateY(-3px);
}

.social.whatsapp {
  background-color: #25d366;
}


.social.fb {
  background-color: #7accf8;
}

.social.insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social.email {
  background-color: #ffa500;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .submit-btn, .social {
    width: 100%;
  }
}



.about-us {
  background: #fffaf5;
  color: #2b2b2b;
  padding: 60px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  animation: fadeInUp 1s ease;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  animation: fadeIn 1.5s ease;
}

.why-choose-us {
  margin-top: 60px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.reason {
  background: #fef2e6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.reason:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.reason h3 {
  font-size: 20px;
  color: #e67300;
  margin-bottom: 10px;
}

.reason p {
  font-size: 16px;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .about-text {
    font-size: 16px;
  }
}
