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

:root {
  --hover-color-button: #1a1a1a;
  --text-color: #ffffff;
  --text-color-dark: #0d0d0d;
  --font-size-base: 16px;
  --bg-color-button: #1a1a1a;
  --bg-section: #ffe6ff;
  --bg-section-lavander-soft: #f4f0ff;
  --bg-main-light: #f9f9f9;
  --white:white;
  --grey: #4a4a4a;
  --gold: #c28840;
  --text-color-grey: #555;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color:var(--text-color-dark);
}

.logo img {
  height: 62px; 
  width: auto;
  display: block;
  margin-right: 10px;  
  
}



a {
  text-decoration: none;
  
}

header {
  background: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.navbar a {
  color: black;
  text-decoration: none;
  display: inline-block;           /* needed for transform to work well */
  transition: 
    color 0.3s ease, 
    transform 0.3s ease;
  transform: translateY(0);        /* start at normal position */
}

.navbar a:hover {
  color: var(--grey);
  transform: translateY(-5px);     /* move text 5px upward */
}




/* Nav menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu li {
  position: relative;
}

/* Nav links */
.nav-menu li a {
  text-decoration: none;
  color: var(--text-color-dark);
  font-weight: 600;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0.25rem;
  z-index: 999;
  flex-direction: column;
  padding: 0;      /* remove default padding */
  margin: 0;       /* remove default margin */
  list-style: none; /* remove bullets */
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem; /* uniform padding */
  color: var(--text-color-dark);
  text-decoration: none;  /* remove underline */
  white-space: nowrap;    /* prevent wrapping to new line */
}




.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: var(--grey);
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Hamburger styles (mobile) */
.hamburger {
  display: none; /* hidden by default */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


  .btn-primary {
  background: linear-gradient(90deg, orange, var(--gold));
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: linear-gradient(90deg, var(--gold), orange);
 
  
}


#services, #about, #contact h2 {
  text-align: center;
}

#contact {
top: 0px;
}



#new_adj {
  padding: 20px;
}

.hero-section p {
  padding: 20px;
  font-size: 16px;

}




.services-section, .about-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;


}

.about-section h2 {
  display: inline-block;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
    to right,
    white,
    orange,
    white
  ) 1;
}

.my_gallery_section {

  text-align: center;

  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  min-height: 238px;        /* important: gives space for vertical centering */
}

.my_gallery_section h2 {
  display: inline-block;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(
    to right,
    white,
    orange,
    white
  ) 1;
}

.contact-section {
  position: relative;
  top: 200px;
  border: 0px solid red;
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  maring-top: 10px;


}
.social-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  color: #1877F2;
  background-color: var(--white);
}

.social-link:hover {
  background-color: #1877F2;
  color:var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  display: block;
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  background-color: var(--white);
  color: #333;
  text-decoration: none;
  transition: 
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: var(--gold);
}

.service-item:hover,
.service-item:focus {
  border-color: #d966ff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(217, 102, 255, 0.3);
  outline: none;
  cursor: pointer;
}

.service-item p {
  margin: 0;
  color: var(--text-color-grey);
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form textarea {
  height: 150px;
}


/* Hover effect */
.contact-form input:hover,
.contact-form textarea:hover,
.newsletter-form:hover
{
  border-color: var(--bg-color-button);   /* light */
}

/* Focus effect (when typing inside) */
.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form:focus
{
  border-color: var(--gold);   /* stronger */
  box-shadow: 0 0 5px rgba(194, 136, 64, 0.5);
  outline: none;
}



.hero-section {
  background: var(--white);
  color: var(--text-color-dark);
  text-align: center;
  padding: 4rem 2rem;
  height: 250;
  border: 0px solid red;
  
}


.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--grey); /* Hide default text color */
  
}



.hero-section h1 {
  animation: fadeInUp 1s ease-out forwards;
}

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

.gamoni_main_pic {
  position: relative;
  top: 0px;
  background-image: url('/assets/images/garmoni_main6.webp');
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  border: 0px solid red;

}

.section-title {
  position: relative;
  background: var(--white);
  color: var(--grey);
  text-align: center;
  padding: 4rem 2rem;
  height: 200px;
  border: 0px solid red;
  display: flex;
  flex-direction: column;   /* stack items */
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
  text-align: center;
}


/* Section container */
.image-gallery-section {
  position: relative;
  height: 250px;
  padding: 5px 15px;
  text-align: center;
  background-color: var(--white); /* Light background for the section */
  width: 100%;
  border: 0px solid red;
 
  

}



/* Main wrapper */
.ribbon {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;   /* stack items */
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
  text-align: center;
  border: 0px solid red;
}

/* Moving track */
.image-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

/* Smooth infinite scroll */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause on hover */
.ribbon:hover .image-track {
  animation-play-state: paused;
}

/* Responsive Images */
.gallery-img {
  width: 260px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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


/*slideshow*/
img {
  vertical-align: middle;
}

.mySlides img {
  width: 100%;
  height: 400px;      /* adjust as you like */
  object-fit: cover;
  border-radius: 10px;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

.column img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
/*end slideshow*/

#phone-call-btn {
  position: relative;
  display: inline-block;
  background-color: var(--white);
  color: var(--grey);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  overflow: hidden;
}

#phone-call-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: orange;
  transition: width 0.3s ease;
}

#phone-call-btn:hover::after {
  width: 100%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .gallery-img {
    width: 180px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-img {
    width: 140px;
    height: 120px;
  }
}

/* Fade effect left */
.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Left fade */
.ribbon::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

/* Right fade */
.ribbon::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* Image container becomes moving track */
.image-container {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

/* Animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional: Optional heading or text under images (if needed) 
.image-gallery-section h2 {
  font-size: 24px;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}
*/

/*tex boxes*/

.quote-section {
  width: 100%;
  min-height: 400px;
  padding: 40px 0;
  background: linear-gradient(to right, #d9a7c7, #fffcdc);
  overflow: hidden;
  position: relative;
}

.quotes-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  transition: transform 1s ease;
  flex-wrap: wrap;
}

.quote-box {
  flex: 0 0 300px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 20px 20px;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  opacity: 0;
  animation: slideIn 1s forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.quote-text::before {
  content: "“";
  font-size: 2.5rem;
  position: absolute;
  top: -10px;
  left: 0;
  color: #bbb;
  opacity: 0.4;
}

.author-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold),
    orange,
    yellow
  );
  box-shadow: 0 0 8px yellow;
  z-index: 9999;
  transition: width 0.25s ease-out;
}


footer.footer {
  background-image: url('/assets/images/garmoni_main4.jpeg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white); /* Make all footer text white */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 0px solid blue;
  top: 250px;
  
  
}



.footer-container {
  width: 100%;
  display: flex;
  border: 0px solid red;
  background: white;
}



.footer-section, .footer-hours {
  flex: 1 1 200px;
  min-width: 180px;
  border: 0px solid red;
  color: var(--text-color-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 220px;

}

/* Other styles unchanged */
.footer-logo-img {
  width: 140px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 4px var(--bg-color-button));
  background-color: var(--white);
  padding: 8px;
  border-radius: 8px;   
}

.footer-about {
  font-size: 14px;
  line-height: 1.5;
  max-width: 200px;
}

.footer-section h3 {
  font-weight: 600;
  font-size: 18px;
  width: fit-content;
}

.footer-contact p,
.footer-hours p {
  font-size: 14px;
  margin: 6px 0;
}



.footer-language {
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  color: var(--white);
}

.footer-language .lang-current {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.footer-language .language-menu {
  display: none;
  position: absolute;
  background: var(--bg-color-button);
  border: 1px solid var(--hover-color-button);
  list-style: none;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 6px;
  z-index: 100;
}

.footer-language:hover .language-menu {
  display: block;
}

.footer-language .language-menu li a {
  display: block;
  color: var(--text-color);
  padding: 6px 0;
  text-decoration: none;
  font-size: 14px;
}

.footer-language {
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-color-dark);
  margin-top: 10px;
  text-align: center;
  width: 100%;
}


/**/

.footer-language {
  position: relative;
  font-size: 14px;
  color: var(--text-color-dark);
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  color:var(--text-color-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.lang-current img.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.language-menu {
  display: none;
  position: absolute;
  top: 28px;
  width: 200px;
  left: 0;
  background-color: var(--bg-color-button);
  border: 1px solid var(--white);
  padding: 4px 0;
  border-radius: 6px;
  z-index: 100;
  list-style: none;
  min-width: 120px;
  
}

.language-menu li {
  padding: 0;
  margin: 0;
}

.language-menu li a {
  display: flex;
  align-items: center;
  gap: 4px;
  color:var(--white);
  text-decoration: none;
}

.language-menu li a:hover {
  color: var(--white);
  background-color: var(--hover-color-button);
  border-radius: 5px;
  padding: 5px 10px;

}

.language-menu li img {
  width: 18px;
  height: 14px;
  border-radius: 2px;
}




.cont_text {

color: var(--text-color-grey);

}

.contact-form label {
  color: var(--text-color-grey); 
  font-size: 14px;
}


.footer-newsletter input[type="email_sub"]:focus
{
  border-color: var(--gold);   
  box-shadow: 0 0 5px rgba(194, 136, 64, 0.5);
  outline: none;
}

.director-section {
  background-color: #f9f9f9; /* light background */
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 20px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.director-section p {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.director-section .director-link {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(90deg, orange, var(--gold));
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.director-section .director-link:hover {
  background: linear-gradient(90deg, var(--gold), orange);
  transform: scale(1.05);
}


.services_detail_def {
  background: linear-gradient(90deg, var(--grey), #1a1100);
  color: var(--white);
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.9;
}



#services_detail_accordion, #services_detail_tushuri {

  margin-left: 0;
  margin-right: auto;

}

#services_detail_bayan, #services_detail_bas_garmoni {

  margin-right: 0;
  margin-left: auto;

}


.services_detail_def h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  
}

.services_detail_def p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.services_detail_def p:last-child {
  margin-bottom: 0;
}

.services_detail_def:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/*whatsup and messanger start*/

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 62px;
  height: 62px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  overflow: visible;
}
.whatsapp-btn i.fab.fa-whatsapp {
  z-index: 3;
  position: relative;
}
.whatsapp-btn i.mobile-icon {
  z-index: 3;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 14px;
}

/* Pulsating wave effect */
.whatsapp-btn .wave {
  position: absolute;
  width: 62px;
  height: 62px;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  animation: wavePulse 2.5s infinite;
  top: 0;
  left: 0;
  z-index: 1;
}
.whatsapp-btn .wave:nth-child(3) { animation-delay: 0.5s; }

@keyframes wavePulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* --- Messenger Button --- */
.messenger-btn {
  position: fixed;
  bottom: 120px; /* above WhatsApp */
  right: 20px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg,orange, var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.messenger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* --- Messenger Greeting Popup --- */

#messenger-greeting {
  position: fixed;
  bottom: 15px;
  right: 90px;
  width: 250px;
  background: var(--white);
  color: var(--bg-color-button);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-family: 'Arial', sans-serif;
  z-index: 10000;
  text-align: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#messenger-greeting p {
  margin: 5px 0;
}

#messenger-greeting .consultant-name {
  font-weight: bold;
  font-size: 16px;
}

#messenger-greeting .consultant-text {
  font-size: 14px;
}

#messenger-greeting:hover {
  transform: translateY(-5px);
  opacity: 0.95;
}



.lang-flag {
  width: 38px;


}


#new_adj {

font-size: 32px;

}

.outside_content {
  width: 100vw;              /* full viewport width */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px; /* adjust spacing */
}

#overview_bg {
background-image: url('/assets/images/accordion_cover_bg.webp');
}
#bas_garmoni_bg {
  background-image: url('/assets/images/garmoni_main6.webp');
  }

#tushuri_bg {
    background-image: url('/assets/images/tushuri_cover_bg.webp');
    }

#accordions_bg {
      background-image: url('/assets/images/accordion_cover_bg.webp');
      }

#bayan_bg {
        background-image: url('/assets/images/bayan_cover_bg.webp');
        }



/* Responsive styles */


@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    width: 200px;
  }

  .nav-menu.active {
    display: flex;
  }




  .hamburger {
    display: flex;
  }
  .btn-appointment {
    width: 100%;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap; /* ✅ Prevent line breaks */
  }



  .service-item {
    flex: 1 1 100%; /* 1 item per row on tablets and below */
  }





  .quote-box {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .quotes-wrapper {
    flex-direction: column;
    align-items: center;
  }


  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-section, .footer-hours {
    width: 100%;
    
  }
  .footer-news-hours-wrapper {
    flex-direction: column;
  }
  .footer-newsletter,
  .footer-hours {
    min-width: 100%;
  }
  .footer-newsletter form {
    flex-direction: column;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }


  .image-gallery-section {
   
   display: inherit;
   padding: 3px 7px;
   height: 150px;
  }


  .dropdown-menu {
    position: relative;
    box-shadow: none;
    display: none;
  }
  .dropdown-menu.active {
    display: flex;
    flex-direction: column;
  }


  .dropdown-menu li{
   
   font-size: 0.8rem;
   max-width: 150px;
   padding:0;

  }

  section.stats-container {

    flex-direction: column; /* stack stats vertically */
    align-items: center;    /* center items on mobile */
    padding: 1rem;          /* reduce padding for smaller screens */



  }



  .text-side {
    display:none;
  
  }

#new_adj {

  font-size: 18px;

}

.hero-section {

  height: 220px;
}

.hero-section p {
  font-size: 12px;

}
  
.section-title {
  
  height: 100px;
  font-size: 14px;
  border: 0px solid red;

  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  
  
  

}
  
.gamoni_main_pic {

 min-height: 62vh;
 top: 50px;

}

footer.footer {

  min-height: 850px;
 
  
  
}







}





/* --- Mobile adjustments --- */
@media (max-width: 480px) {
  .whatsapp-btn i.mobile-icon { font-size: 12px; }
  .messenger-btn { width: 55px; height: 55px; font-size: 24px; bottom: 120px; }
  #messenger-greeting { max-width: 162px; font-size: 12px; bottom: 38px; right: 100px; padding: 5px 10px;}
}




