* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
/* HEADER */

/* HEADER */
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: black;
  z-index: 9999;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
ul.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
}

.header-logo {
  width: 500px;
}

.header-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.mobile-category {
  position: relative;
}

.mobile-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: -200px; /* adjust as needed */
  background-color: rgba(0, 0, 0, 0.7); /* black transparent background */
  padding: 10px;
  border-radius: 5px;
  width: 180px; /* adjust width if needed */
}

.mobile-submenu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 25px;
}

.mobile-category:hover .mobile-submenu {
  display: block;
}

.header-right {
  width: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-top-info {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.header-info-block {
  margin-left: 2.5rem;
  text-align: right;
}

.header-info-title {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.header-info-sub {
  color: #ccc;
  font-size: 0.875rem;
}

.header-main-nav .header-nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  
}

.header-main-nav .header-nav-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-main-nav .header-nav-list a:hover {
  color: #ccc;
}
.header-mobile-menu-button {
  display: none;
  position: fixed; /* 🔥 Instead of absolute */
  top: 0.5rem;     /* Adjust as needed */
  right: 1.5rem;   /* Adjust as needed */
  z-index: 100;    /* Higher than header (your header is z-index 50) */
}

  
  .header-mobile-menu-button button {
    background: transparent;
    /* border: 2px solid #fff; */
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }
  
  .header-mobile-menu {
    display: none;
    background: #111;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border-radius: 8px;
  }
  
  .header-mobile-menu.open {
    display: block;
  }
  
  .header-mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #333;
}

.header-mobile-menu a:last-child {
  border-bottom: none;
}
 /* General button styling */
 .category-toggle,
#mobile-procedures-btn,
#about-procedures-btn,
.about-toggle,
#intimate-procedures-btn,
#transform-procedures-btn,#blog,#req,#cosmetic-procedures-btn {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 10px 10px;
  /* border-radius: 5px; */
  font-size: 16px;
  text-align: left;
  border-bottom: none;
  width: 100%;
}
 /* Mobile dropdown wrapper */
 .header-mobile-menu {
   background-color: #000; /* assuming black background */
   padding: 10px;
 }
 
 /* Submenu container */
.mobile-categories,
.mobile-submenu {
  padding-left: 10px;
  padding-top: 5px;
  text-align: left;
  padding-bottom: 5px;
}
 
 /* Submenu item links */
 .mobile-submenu a,
 .about-toggle a {
   display: block;
   padding: 10px 0;
   color: #ffffff;
   text-decoration: none;
   font-size: 15px;
   /* border-bottom: 1px solid #444;  */
 }
 
 .mobile-submenu a:last-child,
 .about-toggle a:last-child {
   border-bottom: none; /* remove line after last item */
 }
 
 /* Optional: Hover effect for better UX */
 .mobile-submenu a:hover,
 .about-toggle a:hover {
   background-color: #1a1a1a;
   padding-left: 5px;
   transition: 0.3s;
 }
a{
  text-decoration: none;
}
 
/* RESPONSIVE */
@media (max-width: 768px) {
  body,html{
    overflow-x: hidden;
  }
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-right {
    display: none;
  }

  .header-mobile-menu-button {
    display: block;
  }
}




.visible {
  opacity: 1;
  z-index: 1;
}

.hidden {
  z-index: 0;
}


.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
}

.top-left {
    display: flex;
    gap: 40px;
}

.top-right {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.right-pair {
    display: flex;
    gap: 40px;
}

.top-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.align-right {
    text-align: right;
}

.navbar {
  display: flex;
  justify-content: flex-end; /* aligns navbar content to the right */
  align-items: center;
  padding: 1rem 0;
  z-index: 100000;
  /* position: fixed; */
}
.navbar,
.top-bar {
position: relative;
z-index: 10;
}
/* Base styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 0px;
  /* background-color: rgba(0, 0, 0, 0.85); */

}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 200px;
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  list-style: none;
  position: relative;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.85);

}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.85);
}



.dropdown-item:hover .submenu {
  display: block;
}

.submenu li {
  padding: 3px;
}

.submenu li:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.submenu {
  
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* Current setting puts it just next to the menu */
  margin-left: 10px; /* ✅ Add this line to add space */
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px;
  border-radius: 5px;
  min-width: 180px;
  z-index: 1000;
}

.submenu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
}

.submenu a:hover {
  background-color: rgba(43, 41, 41, 0.1);
  border-radius: 3px;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-right {
    display: none;
  }

  .header-mobile-menu-button {
    display: block;
  }

  /* Header */
.header {
  padding: 10px 0;
  width: 100%;
}

.header-container {
  padding-left: 20px;
  padding-right: 20px;

}

.header-wrapper {
  flex-direction: row; /* Keep logo and nav on the same row */
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: auto;
}

.header-logo-img {
  height: 60px;
}

.header-right {
  align-items: flex-start;
  width: 100%;
}

.header-top-info {
  display: none;
}

.header-info-block {
  margin-left: 0;
  margin-top: 8px;
  text-align: left;
}

/* Navigation */
.header-main-nav {
  display: none;
}

.header-mobile-menu-button {
  display: block;
  margin-top: 10px;
}

.header-mobile-menu.open {
  display: block;
}

    .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
  }
}
.dropdown-toggle
{
  color: white;
}
.dropdown-item
{
  color: white;
}
/* end */



  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Hero Section */
  .hero {
    background: url('./img/melbourne-city-skyline-twilight-australia.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-heading-text {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    animation: fade-in 1s ease-in-out;
  }
  
  /* Systems Carousel Section */
  .systems-carousel {
    padding: 4rem;
    margin: 0 auto;
    color: black;
    background-image: url('./img/bg-light.jpg');
  }

  /* Section 1 background (FACE) */
.bg1 {
  background-image: url('img/bg-light.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
}

/* Section 2 background (BREAST) */
.bg2 {
  background-image: url('img/bg-dark.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

  
  /* Section Title */
  .title {
    font-size: 80px;
    font-weight: bold;
    line-height: 1.2;
    animation: fade-in 1s ease-in-out;
    text-align: center;
  }
  
  /* Tabs Navigation
  .tabs {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
  
  .tab {
    flex-shrink: 0;
    width: 12rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: left;
    color: white;
    background-image: url('./img/btn-gold.jpg');
    background-size: cover;
    background-position: center;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    user-select: none;
    border: none;
    box-shadow: none;
  } */

  /* Tabs Navigation */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1000px;
}

/* Individual Tab */
.tab {
  flex: 0 0 calc(20% - 1rem); /* 5 per row */
  padding: 0.75rem 1rem; /* reduced padding */
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  color: white;
  background-image: url('./img/btn-gold.jpg');
  background-size: cover;
  background-position: center;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  user-select: none;
  border: none;
  box-shadow: none;
}

/* Optional: Make sure tab title is vertically centered */
.tab-title {
  font-size: 1rem;
  margin-top: 0.25rem;
  text-align: center;
}
  
  .tab:hover {
    background-color: #064539;
  }
  
  .tab.selected {
    background-image: none;
    background-color: grey;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
  
  
  .tab-title {
    margin-top: 0.25rem;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .image-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
  }
  
  .carousel-image {
    width: 1000px;
    height: 600px;
    border-radius: 12px;
    object-fit: contain;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); */
  }
  
  /* Button styles */
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: gray;
    color: white;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  
  .carousel-button:hover {
    background-color: rgba(255, 255, 255, 1);
    color: black;
  }
  
  .prev-btn {
    left: 1rem;
  }
  
  .next-btn {
    right: 1rem;
  }
  
  
  /* Optional fade-in animation */
  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  
/* FOOTER */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@400;600&display=swap');
/* FOOTER */
.foooter {
  background-image: url('img/bg-light.jpg');
  background-size: cover;
  padding: 30px 20px;
  font-family: sans-serif;
}

.footer-container {
  max-width:100%;
  margin: auto;
}

.info-section {
  display: flex;
  justify-content: space-between;
  padding: 0 10px; /* You can reduce even further or set to 0 */
  margin: 0;
  line-height: 1.3;
}

.left-side {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  padding: 0;
}

/* .logo-column img {
  width: 800px; 
  height: auto;
} */
strong{
  font-size: 20px;
}
.contact p {
  margin: 0;
  font-size: 20px;
  color: #333;
  gap: 40;
  margin-bottom: 5px;
  margin-top: 20px;
  
}

.right-side iframe {
  max-width: 100%;
  border-radius: 10px;
}

.social-icons {
  text-align: center;
  margin: 20px 0;
}

.social-icons a img {
  width: 30px;
  margin: 0 10px;
  vertical-align: middle;
}
  
/* Centering container */
.button-wrapper {
  text-align: center; /* horizontal centering */
  margin-top: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-bottom a {
  color: #444;
  text-decoration: none;
}

.footer-bottom .disclaimer {
  margin-top: 10px;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

  .logo-column1 {
      text-align: left;
      flex: 1;
  }
  
  .logo-column1 img {
      width: 350px; /* Increased size */
      height: auto;
      display: block;
    
  }
  
  .social-icons {
      margin: 30px 0;
  }
  
  .social-icons a {
      margin: 0 15px;
      display: inline-block;
  }
  
  .social-icons img {
      width: 35px;
      height: 35px;
  }
  
  .footer-bottom {
      margin-top: 25px;
      font-size: 16px; /* Increased font size */
      /* font-family: 'Montserrat', sans-serif; */
  }
  
  .footer-bottom a {
      color: #000;
      text-decoration: none;
      font-weight: bold;
  }
  
  .disclaimer {
      margin-top: 15px;
      font-size: 14px; /* Slightly larger for readability */
      color: gray;
  }
  @media (max-width: 768px) {
      /* Header */
.header {
  padding: 10px 0;
  width: 100%;
}

.header-container {
  padding-left: 20px;
  padding-right: 20px;

}

.header-wrapper {
  flex-direction: row; /* Keep logo and nav on the same row */
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: auto;
}

.header-logo-img {
  height: 60px;
}

.header-right {
  align-items: flex-start;
  width: 100%;
}

.header-top-info {
  display: none;
}

.header-info-block {
  margin-left: 0;
  margin-top: 8px;
  text-align: left;
}

/* Navigation */
.header-main-nav {
  display: none;
}

.header-mobile-menu-button {
  display: block;
  margin-top: 10px;
}

.header-mobile-menu.open {
  display: block;
}
/* end */
    .hero {
      height: 70vh;
      padding: 1.5rem;
    }
  
    .hero-content h1 {
      font-size: 1.5rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .breadcrumb {
      font-size: 0.85rem;
    }


     /* Reduce padding for the carousel */
  .systems-carousel {
    padding: 2rem;
  }

  /* Adjust section background sizes for mobile */
  .bg1, .bg2 {
    background-size: cover;
    background-position: center;
  }

  /* Adjust title size */
  .title {
    font-size: 2rem;
  }

  /* Adjust tabs layout to have two per row */
  .tabs {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1000px;
  }

  /* Make each tab smaller and have two per row */
  .tab {
    flex: 0 0 calc(50% - 0.5rem); /* 2 per row */
    padding: 0.75rem 1rem;
    font-size: 0.9rem; /* Smaller text */
  }

  /* Adjust tab title size */
  .tab-title {
    font-size: 1rem;
  }

  /* Adjust image carousel and image size */
  .image-carousel {
    flex-direction: column;
    margin-top: 2rem;
  }

  .carousel-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  /* Adjust carousel button positioning */
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .prev-btn {
    left: 1rem;
  }

  .next-btn {
    right: 1rem;
  }


    .footer {
      padding: 20px 10px; /* Adjust padding for smaller screens */
    }
    
    .info-section {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    
    .left-side {
      max-width: 100%;
      padding: 0;
      text-align: center;
    }
    
    .right-side {
      max-width: 100%;
      padding: 0;
      text-align: center;
      margin-top: 15px;
    }
    .right-side iframe {
      height: 200px; /* Adjust this value to whatever fits your design */
    }
    
    .social-icons {
      margin: 20px 0;
      display: flex;
      justify-content: center;
    }
    
    .social-icons a img {
      width: 25px; /* Adjust icon size for mobile */
      margin: 0 8px;
    }
    
    /* Adjusting logo size */
    .logo-column1 img {
      width: 200px; /* Decrease logo size on mobile */
    }
    
    .footer-bottom {
      font-size: 14px; /* Slightly smaller font size */
      margin-top: 20px;
    }
    
    .footer-bottom a {
      font-size: 14px; /* Ensure text remains legible */
    }
    
    .disclaimer {
      font-size: 13px; /* Adjust disclaimer size for readability */
    }
    
    /* Centering button-wrapper */
    .button-wrapper {
      text-align: center;
      margin-top: 15px;
    }
    
    .logo-column1 {
      margin-bottom: 0; /* Remove bottom margin to reduce space below the logo */
      padding-bottom: 0; /* Remove any padding */
    }
    
    .contact {
      margin-top: 10px; /* Reduce space above the contact text */
      padding-top: 0; /* Ensure no additional padding */
    }
    
    .contact p {
      font-size: 14px; /* Optionally reduce the font size further for better fit */
      margin-top: 5px; 
      margin-bottom: 12px/* Reduce the space above the contact text */
    }
  }