 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* HEADER */
/* 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;
}
 /* 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;
 }
 
/* 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 */



      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 */
  a{
    text-decoration: none;
  }

  


/* Hero Section */
.default-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: -1;

    transform: scale(1.1); /* Start zoomed in */
    animation: zoomOutBg 3s ease-in-out forwards;
}

.hero-content h1 {
    padding-top: 100px;
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}
@keyframes zoomOutBg {
    to {
      transform: scale(1); /* Zoom out to normal size */
    }
  }

/* Logos Section */
.logos {
    padding: 40px 0;
    background: black;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-grid img {
    max-height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-grid img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .logo-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.image-section {
    position: relative;
    height: 100vh; /* Full screen height */
    background-color: white; /* Black background */
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    text-align: center;
  }
  
  .image-container {
    position: relative;
  }
  .blog-left h1{
    font-size: 40px;
    font-weight: 200px;
  }
  .image-container img {
    width: 400px;
    height: 300px;
    border-radius: 5px;
  }




  .text-column {
    width: 800px;
    padding: 2rem;
    background-color: #fff;
  }
  @media (min-width: 768px) {
    .text-column {
      width: 66.6667%;
      padding: 3rem;
    }
  }
  .title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .text-content p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .floating-image {
    float: right;
    width: 350px;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: 1.5rem;
    /* margin-bottom: 1rem; */
  }  
  .floating-image1 {
    float: left;
    width: 350px;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-right: 1.5rem;
    /* margin-bottom: 1rem; */
  } 


  
  .image-section {
    position: relative;
    background-color: white; /* White background */
    display: flex;
    flex-direction: column; /* Stack the image and paragraph vertically */
    align-items: center; /* Center horizontally */
    justify-content: flex-start; /* Start from the top of the section */
    text-align: center;
    padding-top: 50px; /* Add padding at the top */
    height: auto;
  }
  .container {
    display: flex;
    flex-wrap: wrap;  /* Allows wrapping of content when the screen size is small */
    gap: 20px; /* Space between image and text */
    padding: 20px;
  }
  
  .image-container {
    flex: 1 1 300px; /* Makes the image container flexible with a minimum width of 300px */
  }
  
  .image-container img {
    max-width: 100%; /* Ensure the image takes up the full container width */
    height: auto;
    object-fit: cover; /* Ensures the image keeps its aspect ratio */
  }
  
  .text-container {
    flex: 2 1 400px; /* Takes up more space than the image container */
    padding-left: 20px; /* Adds space between the image and text */
    line-height: 1.5;
  }
  
  p {
    font-size: 18px;
    line-height: 1.5;
  }
  
  

  
  
  .centered-text {
    width: 100%; /* Make the paragraph full width */
    max-width: 800px; /* Limit width for better readability */
    font-size: 18px; /* Font size for the paragraph */
    line-height: 1.5; /* Line spacing for readability */
    color: black; /* Black text color */
    padding: 20px; /* Padding around the paragraph */
    margin-top: 30px; /* Space between the image and the paragraph */
    text-align: left; /* Center the paragraph text */
  }
  .blog-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px; /* This adds space between left and right */
    padding: 20px;
    font-size: 30px;
  }
  
  .blog-left-wrapper {
    display: inline-block;
  }
  
  .blog-left {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 15px;
    padding: 20px;
    max-width: 60%; 
  }
  
  .blog-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 2000px;
    padding-right: 30px;
    padding-top: 40px;
    max-width: 500px; /* Reduce this to make blog column smaller */
  }
  

  .centered-text {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.6;
  }
  .comment-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #5d777d;
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 12px;
    color: white;
  }
  
  .plus-wrapper {
    position: relative;
    display: inline-block;
    text-decoration: none;
    justify-content: flex-end; 
  }
  
  .plus-button {
    background-color: white;
    color: black;
    font-size: 20px; /* smaller plus symbol */
    width: 35px;     /* smaller width */
    height: 35px;    /* smaller height */
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    float: right;
    text-align: end;
    border: 2px solid black;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }
  
  .plus-wrapper:hover .plus-button {
    background-color: black;
    color: white;
  }
  
  .read-more-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    background-color: #827e7e;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    color: white;
    white-space: nowrap;
  }
  
  .plus-wrapper:hover .read-more-text {
    opacity: 1;
  }
  
 
  
  .card1 {
    background-color: black;
    border-radius: 12px;
    overflow: hidden;
    width: 400px; /* Smaller width */
    height: auto; /* Let height adjust automatically */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height:400px ;
    margin-right: 20px;
   
  }
  /* .scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
  } */
  
  .scroll-container {
    display: flex;
    gap: 16px; /* Consistent spacing between cards */
    flex-wrap: nowrap;
    padding: 10px;
  }
  .card1:hover {
    transform: translateY(-5px);
  }
  
  .card1 img {
    width: 100%;
    height: 280px; /* Smaller image */
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .card1-content {
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px; /* spacing between elements */
  }
  
  .title {
    font-size: 14px;
    font-weight: 600;
    color:white;
    line-height: 1.4;
    margin: 0;
    padding-right: 30px; /* Avoid overlap with comment icon */
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
  
  }
  
  .comment-icon {
    font-size: 0.8rem;
    color: gray;
    margin-bottom: 5px;
  }
  
  .title {
    /* font-weight: 600; */
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
    
  }
  .plus-button {
    background-color: white;
    color: black;
    font-size: 20px;
    align-items: end;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid black;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    margin-left: auto;   /* Pushes it to the right */
    display: block;      /* Ensures it behaves as a block-level element */
  }
  
/* 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;
  }

     /* Rectangle lines */
  .border-line {
    position: absolute;
    background-color: #d5a561;
    z-index: 1;
  }
  

  :root {
    --inset: 50px;
    --line-width: 6px;
  }
  
  /* Top Line */
  .top-line {
    top: var(--inset);
    left: var(--inset);
    height: var(--line-width);
    width: 0;
    animation: drawTop 1s forwards;
  }
  
  /* Left Line */
  .left-line {
    top: var(--inset);
    left: var(--inset);
    width: var(--line-width);
    height: 0;
    animation: drawLeft 1s forwards;
  }
  
  /* Bottom Line */
  .bottom-line {
    bottom: var(--inset);
    left: var(--inset);
    height: var(--line-width);
    width: 0;
    animation: drawBottom 1s forwards 1s;
  }
  
  /* Right Line */
  .right-line {
    top: var(--inset);
    right: var(--inset);
    width: var(--line-width);
    height: 0;
    animation: drawRight 1s forwards 1s;
  }
  
  /* Keyframes */
  @keyframes drawTop {
    from { width: 0; }
    to { width: calc(100% - 2 * var(--inset)); }
  }
  
  @keyframes drawLeft {
    from { height: 0; }
    to { height: calc(100% - 2 * var(--inset)); }
  }
  
  @keyframes drawBottom {
    from { width: 0; }
    to { width: calc(100% - 2 * var(--inset)); }
  }
  
  @keyframes drawRight {
    from { height: 0; }
    to { height: calc(100% - 2 * var(--inset)); }
  }
  
  
/* <!-- ========== SECTION: contact-section ========== --> */
.contact-section {
    background-color: black;
    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;
  }
  .form-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1800px;
    background-color: black;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-top: 30px;
    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);
  }
  
  
  /* 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: 100%;
    max-width: 700px;
    /* background: #f9f9f9; */
    padding: 30px;
    align-items: center;
    /* border-radius: 10px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
  }
  
/* Centering container */
/* .button-wrapper {
    text-align: center;
    margin-top: 20px;
  } */
  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; */
  }
  
  button {
    background-color: #add8d8;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    /* font-family: 'Poppins', sans-serif; */
  }
  
  /* button:hover {
    background-color: #93caca;
  } */
  
  input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
  }
  
  .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;
}
.know-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background-image: url('img/btn-gold.jpg'); /* your background image here */
    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;
    align-items: center;
    /* width: 250px; */
    
    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);
  }
  
  .image-frame {
    position: relative;
    display: inline-block;
    padding: 15px; /* Creates space around the image for the rectangle to animate */
    z-index: 1;
  }
  
  .image-frame img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2; /* Keeps the image on top of the lines */
    border-radius: 4px;
    margin-top: 60px;
    margin-left: 70px;
  }

  .blog1, .blog2, .blog3, .blog4{
    height: 140vh;
  }

  .blog5{
    height: 290vh;
  }

  .blog6, .blog7{
    height: 350vh;
  }

  .blog8{
    height: 400vh;
  }

  .blog9{
    height: 320vh;
  }

  .blog10{
    height: 400vh;
  }

  .blog11, .blog12, .blog13{
    height: 220vh;
  }

  .blog14{
    height: 210vh;
  }

  .blog15{
    height: 185vh;
  }

  /* FOOTER */
  @media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }
  .text-column {
    width: 100%;
    margin-bottom: 30px;
}

.floating-image, .floating-image1 {
  display: block;        /* Ensure image is block-level */
  margin: 0 auto;        /* Center the image */
  max-width: 100%;   
  margin-top: 1rem;
  margin-bottom: 1rem;;    /* Ensure it does not exceed container width */
  height: auto;          /* Adjust height automatically to preserve aspect ratio */
}

.text-content {
  text-align: justify;   /* Maintain justified text for readability */
}

/* Ensure the text and image do not overlap */
.text-column {
  width: 100%;           /* Full width for text */
  padding: 2rem;
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.image-container {
  width: 100%;           /* Full width for images */
  text-align: center;    /* Center image within container */
}

.image-container img {
  max-width: 100%;       /* Ensure image scales responsively */
  height: auto;          /* Preserve aspect ratio */
}

.card1 {
    width: 100%; /* Full width cards on mobile */
}

.blog-section {
    flex-direction: column;
    gap: 1px; /* Stack blog content vertically */
}

.blog-right{
  padding-top: 0px;
  padding-right: 0px;
}


.blog1, .blog2, .blog3, .blog4{
    height: 350vh;
  }

  .blog5{
    height: 620vh;
  }

  .blog6{
    height: 740vh;
  }

  .blog7{
    height: 790vh;
  }

  .blog8{
    height: 780vh;
  }

  .blog9{
    height: 700vh;
  }

  .blog10{
    height: 730vh;
  }

  .blog13{
    height: 380vh;
  }

  .blog11, .blog12{
    height: 400vh;
  }

  .blog14{
    height: 405vh;
  }

  .blog15{
    height: 360vh;
  }

.sub-heading {
  font-size: 18px;  /* Smaller font size for mobile */
}

.small-text {
  font-size: 16px;  /* Smaller text for mobile */
}

  .logos {
    display: none;
  }

  .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 */
  }

  /* Hide the image on smaller screens */
  .image-frame {
    display: none; /* Hide image */
}

.dr-parag-image {
  display: none;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-image {
  width: 0; /* Hide image on smaller screens */
  display: none;
}

.form-container {
  width: 100%;
  padding: 15px;
  height: 50vh; /* Reduced height for form */
}

.form-container h1 {
  font-size: 28px;
  text-align: center;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}

.question {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.phone-input {
  display: flex;
  flex-direction: column;
}

textarea {
  width: 100%;
  height: 100px; /* Reduced height for textarea */
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
}

#file-upload-input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

.know-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #d5a561;
  color: white;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
}

@media (max-height: 844px){
  .blog1{
    height: 360vh;
  }

  .blog2{
    height: 380vh;
  }

  .blog3{
    height: 390vh;
  }

  .blog4{
    height: 380vh;
  }

  .blog5{
    height: 680vh;
  }

  .blog6{
    height: 820vh;
  }

  .blog7{
    height: 870vh;
  }

  .blog8{
    height: 870vh;
  }

  .blog9{
    height: 760vh;
  }

  .blog10{
    height: 810vh;
  }

  .blog13{
    height: 410vh;
  }

  .blog11, .blog12{
    height: 450vh;
  }

  .blog14{
    height: 450vh;
  }

  .blog15{
    height: 400vh;
  }
}
}




  