* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  /* HEADER */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    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;
  }
  
  .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;
  }
.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%;
}

.header-mobile-menu {
  background-color: #000; /* assuming black background */
  padding: 10px;
}
.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;
   }
   
  /* 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: 8px;
    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 */
  
  .logo img {
  height: 60px;
  }
        a{
          text-decoration: none;
        }
    /* 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;
    }
  
    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
  /* 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;
    }
  }
  
  @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 Section */
  .hero {
      height: 80vh;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                  url('./face_img/sydney.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
  }
  
  .hero-content h1 {
      font-size: 4rem;
      margin-bottom: 20px;
  }
  
  .hero-content p {
      font-size: 1.5rem;
      margin-bottom: 20px;
  }
  
  .breadcrumb {
      font-size: 1rem;
      opacity: 0.8;
  }
  #popup-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid black;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    text-align: center;
  }
  
  .know-more-btn1 {
    display: block;
    margin: 20px auto 0 auto; /* Center the button horizontally */
    padding: 10px 20px;
    background-image: url('img/btn-gold.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    border: 2px solid white;
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .know-more-btn1:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }
  
  
  
  #popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .contact-section {
      background-color: white;
      background-size: cover;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .contact-section h2{
      font-size: 30px;
    }
    .form-wrapper {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-content: center;
      gap: 40px;
      width: 100%;
      max-width: 1800px;
      /* background-color: white; */
      padding: 10px;
      /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); */
      /* border-radius: 10px; */
      margin-top: 0px;
      gap: 150px; 
    }
   
    
    .left-image {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 50%;
    }
    .left-image img {
      width: 100%;
      height: auto;
      max-height: 680px; /* maintain height ratio */
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .form-container {
      flex: 1;
      background: white;
      padding: 30px;
      border-radius: 10px;
      border: 1px solid #ccc;
      width: 1000px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }
    .form-heading {
      text-align: center;
      font-size: 35px;
      margin-bottom: 30px;
      font-weight: 200px;
      width: 1400px;
    }
  a{
    text-decoration: none;
  }
    
    /* Optional: Make responsive */
    @media (max-width: 768px) {
      .form-wrapper {
        flex-direction: column;
        padding: 20px;
      }
    
      .left-image,
      .form-container {
        width: 100%;
      }
    }
    
    .info-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      flex-wrap: wrap; /* for responsiveness */
    }
    
    .left-side {
      display: flex;
      flex-direction: column;
      max-width: 45%;
    }
    
    .logo-column img {
      max-width: 200px;
      height: auto;
    }
    
    .contact {
      margin-top: 15px;
      font-size: 25px;
      color: #333;
    }
    
    .right-side {
      max-width: 50%;
    }
    
    .map-image {
      max-width: 100%;
      height: auto;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    
    
    .contact-section h2 {
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 40px;
      font-family: 'Poppins', sans-serif; /* Clean, modern font */
      color: #333;
    }
    
    .form-container {
      width: 90%;
      max-width: 700px;
      /* background: #f9f9f9; */
      padding: 30px;
     
    }
    
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
    }
    select {
      margin-top: 10px;
      padding: 5px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    .hidden {
      display: none;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      flex: 1;
      padding: 18px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
    }
    
    textarea {
      resize: vertical;
      height: 100px;
      font-family: 'Poppins', sans-serif; 
      font-size: 15px;
      color: #333;
    }
    
    .phone-input {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
    }
    
    .flag {
      font-size: 18px;
    }
    
    .question {
      margin-top: 10px;
      font-weight: 500;
    }
    
    label {
      display: block;
      margin-bottom: 10px;
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
    }
    
    .know-more-btn {
      display: inline-block;
      padding: 15px 30px;
      background-image: url('img/btn-gold.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      color: white;
      font-size: 1.2rem;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      border-radius: 5px;
      border: 2px solid white;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
  
    .know-more-btn:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: scale(1.05);
    }
    
    
    input[type="tel"] {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      font-size: 16px;
    }

.locations-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.locations-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.location-card p {
  padding: 15px;
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-card img {
    height: 250px;
  }
}

  @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;
  }
 
  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;
  }
 
  .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) {
      .hero {
        height: 50vh;
        padding: 1rem;
      }
    
      .hero-content h1 {
        font-size: 2rem;
      }
    
      .hero-content p {
        font-size: 1rem;
      }
    
      .breadcrumb {
        font-size: 0.85rem;
      }
  
      .form-wrapper {
        flex-direction: column;
        padding: 20px;
      }
    
      .left-image,
      .form-container {
        width: 100%;
      }
  
      .form-heading {
        width: 90%;
        font-size: 20px;
      }
  
      .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 */
      }
    }