:root {
  /* === BODY SECTION COLORS === */
  --body-bg-gradient: linear-gradient(135deg, var(--body-color-1), var(--body-color-2), var(--body-color-3));
  --body-color-1: #1f3a52;
  --body-color-2: #38618d;
  --body-color-3: #acc8df;
  --body-scrollbar-track: #f1f1f1;
  --body-scrollbar-thumb: #1f3a52;
  --body-scrollbar-thumb-hover: #555;


  /* === HEADER SECTION COLORS === */
  --header-bg: transparent;
  --header-text: #ffffff;
  --header-link: whitesmoke;
  --header-link-hover: #1f3a52;
  --header-get-started-bg: linear-gradient(135deg, #1f3a52, #38618d);
  --header-get-started-hover: #afaf1d;
  --header-sub-container-bg: #1f3a52;
  --header-social-text: white;

  /* === CORPORATE SECTION COLORS === */
  --corporate-bg-image: url("../assets/office.webp");
  --corporate-overlay-color: rgba(0, 0, 0, 0.4);
  --corporate-header-color: rgb(196, 187, 187);
  --corporate-header-highlight: rgb(216, 213, 213);


  /* === CORPORATE SECTION COLORS === */
  --benefit-background-color: transparent;
  --benefit-heading-color: #ffffff;
  --benefit-paragraph-color: #ffffff;
  --benefit-item-bg: #ffffff;
  --benefit-item-border: #dddddd;
  --benefit-item-text-color: #000000;
  --benefit-button-bg: #4CAF50;
  --benefit-button-hover-bg: #45a049;
  --benefit-underline-color: #ffffff;


  /* Corporate Form Section */
  --corporate-bg-color: #1f3a52;
  --corporate-label-color: #ccc;
  --corporate-text-color: white;
  --corporate-input-border: #ccc;
  --corporate-button-bg: #4ca1af;
  --corporate-button-hover: #357f89;
  --corporate-invalid: #ff4d4f;
  --corporate-valid: #4caf50;
  --corporate-popup-bg: rgba(0, 0, 0, 0.6);
  --corporate-popup-card-bg: #ffffff;
  --corporate-popup-text: #333;

  /*OUR TEAM */
  /*OUR TEAM*/
  --team-section-bg: transparent;
  --team-text-color: white;
  --team-underline-color: #1f2937;


  /*OUR APP*/
  /* OUR APP SECTION COLORS */
  --our-app-bg-color: transparent;
  --our-app-text-color: white;
  --our-app-underline-color: #1f2937;
  --our-app-button-bg: #111827;
  --our-app-button-hover-bg: #1f2937;
  --our-app-shadow-color: rgba(0, 0, 0, 0.1);


  /*FAQ*/
  /* FAQ Section Colors */
  --faq-gradient-start: #1f3a52;
  --faq-gradient-end: #38618d;
  --faq-bg-light: #acc8df;
  --faq-question-bg: #1f3a52;
  --faq-hover-bg: #1f3a52;
  --faq-answer-bg: #f7f7f7;
  --faq-text-light: #ece7e7;
  --faq-text-dark: #333;

  /* Advert Section Colors */
  --advert-bg: rgba(0, 0, 0, 0.7);
  --advert-text-color: white;
  --advert-container-bg: transparent;


  /*CONTAC SECTION*/
  /* Contact Section Colors */
  --contact-bg: rgba(2, 2, 113, 0.772);
  --contact-text-color: #fff;
  --contact-input-bg: whitesmoke;
  --contact-border-color: #555;
  --contact-button-bg: #1f3a52;
  --contact-button-hover-bg: #315372;
  --contact-label-color: #555;
  --contact-social-icon-color: #fff;
  --contact-social-icon-hover-color: #ddd;
  /* WHY section specific colors */
  --why-gradient-start: #1f3a52;
  --why-gradient-mid: #38618d;
  --why-gradient-end: #acc8df;
  --why-title-color: rgb(233, 229, 229);
  --why-paragraph-color: rgb(233, 229, 229);
  --why-link-color: white;
  --why-link-hover: #afaf1d;
  --why-button-bg: linear-gradient(135deg, var(--why-gradient-start), var(--why-gradient-mid));
  --why-button-hover-bg: var(--why-gradient-start);
  --why-list-icon-color: #afaf1d;
  --therapist-title-color: #fff;
  --therapist-subtext-color: #ddd;
  --therapist-name-color: #fff;
  --therapist-role-color: #ddd;
  --therapist-hover-zoom: scale(1.05);
  --join-link-color: #0d0f85;
  --join-link-hover: #afaf1d;

  /* FOOTER Section Colors */
  --footer-bg-color: #1f3a52;
  /* Main footer background color */
  --footer-text-color: #fff;
  /* Footer text color */
  --footer-link-hover-color: #5e2ced;
  /* Link hover color */
  --social-icon-color: #858da8;
  /* Default social icon color */
  --social-icon-hover-color: #5e2ced;
  /* Hover color for social icons */
  --footer-text-light-color: #6a7695;
  /* Light footer text color */
  --footer-bottom-text-color: #1f3a52;

  /*CUSTOM MODAL**/
  /* Custom Modal Colors */
  --custom-modal-bg-overlay: rgba(0, 0, 0, 0.5);
  --custom-modal-bg: #ffffff;
  --custom-modal-header-danger-bg: #dc3545;
  --custom-modal-header-success-bg: #28a745;
  --custom-modal-header-text-color: #ffffff;
  --custom-modal-close-hover: #000000;
  --custom-modal-error-border: red;
  --custom-modal-error-text: red;

  /* Fonts & Spacing */
  --custom-modal-font-base: 1rem;
  --custom-modal-font-small: 0.85em;
  --custom-modal-padding: 15px;
  --custom-modal-border-radius: 8px;
}


* {

  box-sizing: border-box;

}


body {

  margin: 0;
  padding: 0;
  height: 100%;
  /* Ensure the body takes full height */
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  /* Ensure vertical scrolling is enabled */
  scroll-behavior: smooth;
  /* Smooth scrolling for better UX */
}

body::before {
  content: '';
  position: fixed;
  /* Use fixed positioning to make the background cover the entire page */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);

  background-size: 300% 300%;
  opacity: 1;
  /* Make the background image faint */
  z-index: -1;
  /* Position the background behind the content */
  pointer-events: none;
  /* Prevent the background from interfering with interactions */
}


/* Scrollbar Styling */
body::-webkit-scrollbar {
  width: 5px;
  /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--body-scrollbar-track);
  /* Background color of the track */
  border-radius: 10px;
  /* Rounded corners for the track */
}

body::-webkit-scrollbar-thumb {
  background: var(--body-scrollbar-thumb);
  /* Color of the scrollbar */
  border-radius: 10px;
  /* Rounded corners for the thumb */
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--body-scrollbar-thumb-hover);
  /* Darker color when hovered */
}

/* Firefox scrollbar (optional but recommended for scalability) */
@supports (scrollbar-width: thin) {
  body {
    scrollbar-width: thin;
    scrollbar-color: #1f3a52 #e4e4e4;
  }
}

/*#region HEADER********************************************************** Header Styling ***************************************/
header {
  color: var(--header-text);
  padding: 5px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* Navigation Styling */
nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  /* Ensures spacing between links and button */
}

.nav-center {
  flex: 1;
  /* Takes up the middle space */
  display: flex;
  justify-content: center;
  /* Ensures the links stay centered */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 15px;
  transition: opacity 0.5s ease-in-out;
}

.nav-links.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  /* Center list items */
  align-items: center;
  margin: 0;
  padding: 0;


}

nav ul li {
  margin: 0.5rem;
}

nav ul li a {
  color: var(--header-link);
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  font-weight: 700;
}

nav ul li a:hover {
  transform: scale(1.1);
  color: var(--header-link-hover);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 15px;
  /* Moves underline further down */
}

.serif1 {
  font-weight: 200;
  font-style: italic;
  font-family: serif;
  margin-left: 0.1rem;
  font-size: 1.6em;
  /* reduce or remove margin */
}




.sub-container {
  width: 90px;
  background-color: var(--header-sub-container-bg);
  border-radius: 12px;
  padding-top: 2px;
  font-size: 0.875rem;
}


/* === Shake Keyframes === */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.social-media-icons {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.social-media-icons a {
  text-decoration: none;
  color: var(--header-social-text);
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}

.social-media-icons a:hover h2 {
  animation: shake 0.5s forwards;
}

/*#endregion HEADER*/

/*#region ***************************************************************Background Styling*************************************/
#corporate {
  background-image: url('/assets/young-student-working-assignment (1).jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 30px;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: -5px;
}

/* Background image behaves like background-size: cover */
.corporate-bg {
  position: absolute;
  inset: 0;
  /* top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* matches background-position */
  z-index: 0;
  /* sits behind overlay & content, but above section background */
  display: block;
  pointer-events: none;
  /* (optional) never block clicks */
}

/* Semi-transparent overlay above image */
#corporate::before {
  content: "";
  position: absolute;
  background: var(--corporate-overlay-color);
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}


/* Overlay content */
.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

/* Header text */
.header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Ensures the text is centered horizontally */
  text-align: center;
  /* Ensures text alignment is centered */
  color: var(--corporate-header-color);
  word-wrap: break-word;
  /* Ensures long words break and wrap within the container */
  height: 100%;
  width: 100%;
  /* Ensure it takes up the full width of its parent */
  max-width: 800px;
  /* Optional: controls wrapping width */
  line-height: 1.6;
  margin: 0 auto;
  /* Center align the content horizontally */
  padding: 0 20px;
  /* Optional: adds space on the sides if needed */
}

.header-text h2 {
  font-size: 1.9em !important;
  margin-bottom: 10px;
  font-weight: 200;
  color: var(--corporate-header-highlight);
}


.get-started-container {
  position: relative;
  /* relative to the section */
  width: 100%;
  height: 100%;
  /* take full height of section */
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}

.get-started {
  width: 105px;
  height: 50px;
  padding: 10px;
  border: black solid;
  border-style: outset;
  border-radius: 25px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  /* subtle, professional */
  /* subtle, professional */

  color: var(--header-text);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* Remove fixed/absolute since the container handles centering */
  position: relative;
  transform: none;

  overflow: hidden;
  animation: shake 3s ease-in-out infinite;
  animation-delay: 2s;
}

.get-started:hover {
  transform: scale(0.95);
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);

}

.get-started::after {
  content: "Starting ...";
  position: absolute;
  inset: 0;
  background: var(--header-get-started-hover-bg);
  color: var(--header-text-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

.get-started .btn-text {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: 'Nunito', sans-serif;
}

.get-started:hover::after {
  opacity: 1;


}

.get-started:hover .btn-text {
  opacity: 0;
  font-weight: 400;
}

/* LOGO Container - Absolute Positioning */



.logo-video {
  width: 250px !important;
  height: auto;
  border-radius: 10%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.logo-container {
  transition: transform 0.1s ease-in-out;
}

.logo-container:hover {
  animation: shake 0.5s ease-in-out;
}

/*#endregion BACKGROUND*/

/* Remove vertical gaps between major sections */
.who-we-are-section,
.benefit,
.corporate,
.choose  {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

.who-we-are-section>*:last-child,
.benefit>*:first-child {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/*#region WHO WE ARE *********************************************************WHO WE ARE -------------------------------------------*/

.who-we-are-section {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  min-height: 100vh;
  /* ensures at least one screen height */
  height: auto;
  margin-top: -34px !important;

}

.who-we-are-image {
  position: relative;
  width: 600px;
  /* Desired width */
  height: auto;
  flex-shrink: 0;
  /* Prevent shrinking */
  margin-top: 60px;
  margin-left: 45px;

}

.who-we-are-image img {
  width: 80%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px !important;

}

/* Right side content */
.who-we-are-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
  margin-right: -80px !important;


}

.who-we-are-content h2 {
  font-size: 40px;
  color: white;
  margin: 0;
  font-weight: 100;
  font-family: "Nunito", sans-serif;
  margin-bottom: 1.5rem !important;
  word-wrap: break-word;
  width: 80%;
  margin-left: -55px;
}

.who-we-are-content>p {
  font-family: 'Nunito', 'Roboto', 'Helvetica Neue', sans-serif;
  /* modern, readable */
  font-size: 1rem;
  /* standard paragraph size */

  line-height: 1.6;
  color: white;
  margin: 0;
  margin-left: -55px;
  word-wrap: break-word;
  width: 100%;

}

.who-we-are-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.who-we-are-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.who-we-are-content h2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.who-we-are-content h2.animate {
  opacity: 1;
  transform: translateX(0);
}

.card-container {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;

}

.card-box {
  flex: 1;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 200px !important;
  height: 245px;
  left: -50px;
}

.card-icon {
  position: static;
  top: 1rem;
  left: 1rem;
  font-size: 1.8rem;
  color: white;
}

.icon-container {
  width: 48px;
  height: 48px;
  background-color: #1f3a52;
  border-radius: 50%;
  /* makes it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin-top: -10px;
}

.card-box h3 {
  margin-top: 2.5rem;
  font-size: 1.2rem;
  color: #2c3e50;
}

.card-box p {
  font-size: 0.95rem !important;
  color: #666;
  margin-top: 0.5rem !important;
  font-family: Inter, sans-serif;
  line-height: 24px !important;
  text-align: left !important;

  word-wrap: break-word;
}

.read-more-container {
  text-align: center;
  margin-top: 2rem;
}

.read-more-btn {
  background: linear-gradient(135deg, #00c6a7, #845ec2);
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 25px;
  border: black solid;
  /* button edge style */
  border-style: outset;
  /* button edge style */
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.4s ease;
  bottom: 20px;
  height: 40px;
}

.read-more-btn .arrow-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  font-size: 1.2rem;
}

.read-more-btn:hover .arrow-icon {
  transform: translateX(6px);

}

.read-more-btn::after {
  content: "Reading ...";
  position: absolute;
  inset: 0;
  background-color: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.read-more-btn:hover::after {
  opacity: 1;
}

.read-more-btn:hover .btn-text,
.read-more-btn:hover .arrow-icon {
  opacity: 0;
}

.read-more-btn:hover {
  transform: scale(0.95);
  box-shadow: 0 8px 20px rgba(132, 94, 194, 0.4);
  background: linear-gradient(135deg, #00e0b3, #9b65d6);
}

/*#endregion*/



/*#region Benefit************************************ BENEFIT SECTION**************************************************/
.benefit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh !important;
  /* ensures at least one screen height */
  height: auto !important;
  /* Ensure the section takes the full viewport height */
  padding: 50px;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  border: none;
  box-sizing: border-box;
  margin-top: 0 !important;

}

.benefit-image {
  flex: 1;
  height: 100%;
  /* Ensure the image container takes the full height */
  max-width: 50%;
  overflow: hidden;

}

.benefit-image img {
  height: 100%;
  /* Make the image fill the height of the container */
  object-fit: contain;
  /* Ensure the image fits within the container */
  width: 100%;
  /* Ensure the image stretches across the width */
  border-radius: 20px;

}

.benefit-content {
  flex: 1;
  text-align: center;
  max-width: 50%;
  /* Ensure benefit content does not stretch too much */
  padding-left: 50px;
  /* Add left padding for spacing between image */
  height: auto;
  /* Remove fixed height to allow natural content height */
  margin-top: 20px;
  /* Optional: add some top margin for space between content and image */
}

.benefit-content h2 {
  font-size: 2.25rem;
  margin-bottom: 10px;
  margin-top: -48px;
  color: var(--benefit-heading-color);
}

.benefit-content p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: var(--benefit-paragraph-color);
}


.benefit-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;

}

.container-slider {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background-color: transparent;
  border: white 1px solid;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: white;
}

label {
  display: block;
  margin-bottom: 10px;
}

select,
input[type="range"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

#price-value {
  display: block;
  margin-bottom: 20px;
}

#total-price {
  font-weight: bold;
  font-size: 24px;
}

.benefit-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  margin-bottom: 10px;

  font-size: large;
  line-height: 1.6;
  color: white;
  text-align: left;
}


.slider-container {
  margin-bottom: 30px;
}

.start-plan-container {
  text-align: center;
  margin-top: 2rem;
}

.start-plan-btn {
  background: linear-gradient(135deg, #00c6a7, #845ec2);
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: black solid;
  /* button edge style */
  border-style: outset;
  /* button edge style */
  height: 42px;
  text-transform: none;
}

.start-plan-btn:hover {
  transform: scale(0.95);
  box-shadow: 0 8px 20px rgba(132, 94, 194, 0.4);
  background: linear-gradient(135deg, #00e0b3, #9b65d6);
}

.start-plan-btn .arrow-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  font-size: 1.2rem;
}

.start-plan-btn:hover .arrow-icon {
  transform: translateX(6px);
}

.start-plan-btn::after {
  content: "Scheduling ...";
  position: absolute;
  inset: 0;
  background-color: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.start-plan-btn:hover::after {
  opacity: 1;
}

.start-plan-btn:hover .btn-text,
.start-plan-btn:hover .arrow-icon {
  opacity: 0;
}

.benefit-content .underline {
  width: 100px;
  height: 4px;
  background-color: var(--benefit-underline-color);
  margin: 10px auto 20px;
  border-radius: 2px;
}

.benefit-slide-left,
.benefit-slide-fade,
.benefit-slide-left1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.header-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}


.header-slide-left.header-animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-slide-left.benefit-animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-slide-left1.benefit-animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-slide-fade.benefit-animate {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/*#endregion BENEFIT**********************************/


/*#region WHY****************************************WHY SECTION********************************************/

.choose {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  min-height: 100vh;
  /* ensures at least one screen height */
  height: auto;
  margin-bottom:-32px !important;

}



.choose h4 {
  color: var(--why-link-color);
}


.choose a {
  color: var(--why-link-color);

}

.choose a:hover {
  color: var(--why-link-hover);
}



.book-appointment-container {
  text-align: center;
  margin-top: 2rem;
}

.book-appointment-btn {
  width: 90%px;
  height: 40px;
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 25px;
  border: black solid;
  /* button edge style */
  border-style: outset;
  /* button edge style */
  font-size: 1.4rem;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  /* subtle, professional */
  color: var(--why-link-color);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  animation: shake 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation-delay: 2s;
}

.book-appointment-btn:hover {
  transform: scale(0.95);
  box-shadow: 0 8px 20px rgba(132, 94, 194, 0.4);
  background: linear-gradient(135deg, #00e0b3, #9b65d6)
}


.book-appointment-btn .arrow-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  font-size: 1.2rem;
}

.book-appointment-btn:hover .arrow-icon {
  transform: translateX(6px);
}

.book-appointment-btn::after {
  content: "Booking ...";
  position: absolute;
  inset: 0;
  color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.book-appointment-btn:hover::after {
  opacity: 1;
}

.book-appointment-btn:hover .btn-text,
.book-appointment-btn:hover .arrow-icon {
  opacity: 0;
}





/* CSS */
.why-section-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px;
  gap: 20px;

}

.vertical-divider {
  width: 2px;
  background-color: #ccc;
  margin: 0 20px;
}

.why-section-left h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-family: 'Lobster', cursive;
  color: var(--why-title-color);
}

.why-section-left {
  flex: 1;
  max-width: 39%;
  padding-left: 10px;
  margin-left: -15px;
}

.why-section-list {
  list-style: none;
  padding-left: 0;
}

.why-section-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: white;
  margin-bottom: 10px;
  white-space: nowrap;
  /* Prevents text from wrapping */
  overflow: hidden;
  /* Prevents text overflow */
  text-overflow: ellipsis;
  /* Adds "..." if text overflows */
  width: 120%;
  max-width: 150%;
  /* Adjust width to fit the container */
  margin-left: -35px;
}

.why-section-list li i {
  margin-right: 10px;
  /* Space between icon and text */
  color: var(--why-list-icon-color);
  /* Bullet point color */
  font-size: 1.2rem;
}


.why-section-center,
.why-section-right {
  flex: 1;
  max-width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.why-section-main-image {
  width: 100%;
  height: 100%;
  max-width: 200%;
  max-height: 200%;
  object-fit: cover;
  border-radius: 10px;
}



.why-section-text {
  font-weight: 700;
  font-size: 22px;
  color: white;
  line-height: 1.53m;
}

.info-block {
  text-align: center;
}

.info-block .heading1 {
  font-size: 68px;
  font-weight: 100;
  color: white;
  margin-bottom: 10px;
}

.info-block h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--why-title-color);
}

.info-block p {
  color: white;
  font-size: 1rem;
  max-width: 320px;
  margin: 0 auto;
}

.serif2 {
  font-family: 'Times New Roman', serif;
  font-size: 0.5em;
  text-align: left;
}

.heading1 {
  font-variation-settings: "wght" 300;
  letter-spacing: -.01em;
  font-size: 68px;
  font-weight: 100;
  line-height: 1.1em;
  color: white;

}

.heading1 .serif2 {
  font-family: var(--serif);
  font-variation-settings: "wght" 400, "opsz" 72;
  font-style: italic;
  font-weight: 200;
  color: white;

}

.bold-text {
  font-family: var(--serif);
  font-variation-settings: "wght" 400, "opsz" 72;
  font-style: italic;
  font-weight: 200;
  color: white;
}

/*#endregion WHY*/


/*#region Section *************************************************************INFO Layout STYLING***************** */
#p-info {
  padding: 1.25rem;
  background-color: #f9f9f9;
  border-radius: 60px;
  background: linear-gradient(135deg,
      rgba(15, 32, 39, 0.85) 0%,
      /* dark moody base */
      rgba(32, 58, 67, 0.7) 50%,
      /* slightly lighter mid-tone */
      rgba(112, 184, 0, 0.15) 100%
      /* subtle MoodPàdi green tint */
    );
  backdrop-filter: blur(4px);
  /* optional, adds soft frosted effect */

  

}


.benefit-container {
  width: fit-content;
  max-width: 500px;
  text-align: center;
  background: green;
  padding: 0.1rem 1rem;
  border-radius: 5px;
  margin-top: 0;
  margin: 0 auto 20px auto;
  height: 2.5rem;
  display: flex;
  align-items: center;
  /* Vertically center */
  justify-content: center;
  /* Horizontally center */
  color: white !important;

}

.requirement-container {
  width: fit-content;
  max-width: 500px;
  text-align: center;
  background: green;
  padding: 0.1rem 1rem;
  border-radius: 5px;
  margin-top: 0;
  margin: 0 auto 20px auto;
  height: 2.5rem;
  display: flex;
  align-items: center;
  /* Vertically center */
  justify-content: center;
  /* Horizontally center */
  color: white !important;

}



/* Top center text */
.top-text {
  text-align: center;
  font-size: 1rem;

  margin-bottom: 40px;
  color: rgb(226, 221, 221);
}

.top-text .underline {
  width: 100px;
  height: 4px;
  background-color: #fff;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.top-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.top-text p {
  font-size: 1rem;
  color: white;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Initial hidden and off-screen states */
.top-slide-left,
.top-slide-fade {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.top-slide-left {
  transform: translateX(-50px);
  /* Start off to the left */
}

.top-slide-fade {
  transform: translateY(-50px);
  /* Start off above (from the top) */
}

/* On animation trigger, set them to visible and in place */
.top-slide-left.show {
  opacity: 1;
  transform: translateX(0);
  /* Slide to original position from the left */
}

.top-slide-fade.show {
  opacity: 1;
  transform: translateY(0);
  /* Slide down to original position from the top */
}

.info-container {
  width: 900px;
  margin: 40px auto;
  display: flex;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);

  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.info-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* Add vertical divider between sections */
.info-section:not(:last-child) {
  border-right: 1px solid #ccc;
}

/* Circle number */
.step-number {
  width: 40px;
  height: 40px;
  background-color: white;
  color: #1f3a52;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* Bold section title */
.step-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

/* Description paragraph */
.step-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.4;

}

/*#endregion*/


/*#region Corporate********************************************************CORPORATE BOOKING***************************/
#corporate-booking {

  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: var(--corporate-text-color);
  text-align: center;
      min-height: 100vh;  /* ensures at least one screen height */
    height: auto; 
     margin: 0 !important;
}

#corporate-booking .underline {
  width: 100px;
  height: 4px;
  background-color: var(--corporate-text-color);
  margin: 10px auto 20px;
  border-radius: 2px;
}

#corporate-booking p {
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.corporate-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  transition: all 0.3s ease;
}



.corporate-form-group {
  position: relative;
  width: 100%;
}

.corporate-form-group input,
.corporate-form-group textarea {
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: 1px solid var(--corporate-input-border);
  color: var(--corporate-text-color);
  font-size: 1rem;
  outline: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.corporate-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.corporate-form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: var(--corporate-label-color);
  pointer-events: none;
  transition: 0.3s ease all;
  background-color: var(--corporate-bg-color);
  padding: 0 4px;
}

.corporate-form-group input:focus+label,
.corporate-form-group input:not(:placeholder-shown)+label,
.corporate-form-group textarea:focus+label,
.corporate-form-group textarea:not(:placeholder-shown)+label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  color: var(--corporate-text-color);
}

.corporate-form button {
  padding: 14px;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  /* Choose your preferred color */
  color: white;
  border: #0481C1;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 15%;
  /* Center the button */
  display: block;
  margin: 0 auto;
}


.corporate-form button:hover {
  background-color: var(--corporate-button-hover);
}

/* Input validation styling */
.corporate-form-group input:invalid,
.corporate-form-group textarea:invalid {
  border-color: var(--corporate-invalid);
}

.corporate-form-group input:valid,
.corporate-form-group textarea:valid {
  border-color: var(--corporate-valid);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--corporate-popup-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: var(--corporate-popup-card-bg);
  color: var(--corporate-popup-text);
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--corporate-button-bg);
  border: none;
  color: var(--corporate-text-color);
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background: var(--corporate-button-hover);
}

.hidden {
  display: none;
}

.book-slide-left,
.book-slide-fade {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.book-slide-left.book-animate {
  opacity: 1;
  transform: translateX(0);
}

.book-slide-fade.book-animate {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/*#endregion*****************************/

/*#region ********************************************************OUR TEAM*********************/
.our-team-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
   margin: 0 !important;


}

.our-team-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--team-text-color);
}

.our-team-section p {
  font-size: 1rem;
  color: var(--team-text-color);
  max-width: 700px;
  margin: 0 auto 40px auto;
}


.our-team-section .underline {
  width: 100px;
  height: 4px;
  background-color: #fff;
  margin: 0 auto 20px;
  border-radius: 2px;
}


.team-slide-left,
.team-slide-fade {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.team-slide-left.team-animate {
  opacity: 1;
  transform: translateX(0);
}

.team-slide-fade.team-animate {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.team-header {
  text-align: center;
  margin-bottom: 2rem;
}

.team-header p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
  line-height: 1.4em;
}


.team-header h2 {
  font-size: 2.375rem;
  font-weight: 300;
  line-height: 1.1em;
  color: white;
}

.serif3 {
  font-weight: 200;
  font-style: italic;
  font-family: serif;
  margin-left: 0.2rem;
  /* reduce or remove margin */
}

.meet-team-btn-wrapper {
  text-align: center;
  margin: 20px 0;
}

.meet-team-btn {
  padding: 10px 25px;
  font-size: 16px;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  /* Choose your preferred color */
  color: white;
  border: #0481C1;

  /* button edge style */
  border-style: outset;
  /* button edge style */
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.meet-team-btn:hover {
  background-color: #3b5bdb;
}

/*#endregion OUR TEAM********************************/



/*#region *****************************************************OUR APP*/
.our-app-section {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  word-wrap: break-word;
  margin-top: 35px;
  border: none;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);

}

.our-app-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--our-app-text-color);
}

.our-app-section .underline {
  width: 100px;
  height: 4px;
  background-color: #fff;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.our-app-section p {
  font-size: 1rem;
  color: var(--our-app-text-color);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  color: var(--our-app-text-color);
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px var(--our-app-shadow-color);
}

.store-button img {
  width: 40px;
  height: 40px;
}

.google-play,
.ios-store {
  background-color: var(--our-app-button-bg);
}

.google-play:hover,
.ios-store:hover {
  background-color: var(--our-app-button-hover-bg);
}

.app-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.app-slide-left.our-app-section-animate {
  opacity: 1;
  transform: translateX(0);
}

/*#endregion OUR APP*****/


/*#region FAQS*************************************************FAQS SECTION****************/

#faq {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);

  background-size: 300% 300%;
  width: 80%;
  margin: 50px auto;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: -10px;
  border-radius: 55px;
}

.faq-title {
  left: 300px;
  font-size: 1.125rem;
  color: var(--faq-text-light);
  margin-bottom: 20px;
  justify-content: center;
  text-align: center;
}

/* FAQ item styles */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
 backdrop-filter: blur(4px); /* optional, adds soft frosted effect */

background: linear-gradient(
        135deg,
        rgba(15, 32, 39, 0.85) 0%,   /* dark moody base */
        rgba(32, 58, 67, 0.7) 50%,   /* slightly lighter mid-tone */
        rgba(112, 184, 0, 0.15) 100% /* subtle MoodPàdi green tint */
    );

  color: white;
  border: none;
  padding: 15px;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--faq-hover-bg);
}

/* FAQ answer styles */
.faq-answer {
  padding: 15px;
  background-color: var(--faq-answer-bg);
  border-radius: 8px;
  display: none;
  font-size: 1em;

}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--faq-text-dark);
}

/* Accordion animation */
.faq-item.open .faq-answer {
  display: block;
  animation: slideDown 0.4s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*#endregion*/

/*#region Advert Screen****************************/
.ad-container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 205px;
  z-index: 1000;
  overflow: hidden;
  background-color: var(--advert-container-bg);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Main Ad Box */
.ad {
  position: absolute;
  right: -300px;
  /* Off-screen initially */
  opacity: 0;
  transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: var(--advert-bg);
  /* Slight background for contrast */
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Image Container */
.ad-image-container {
  width: 100%;
  height: 65%;
  /* Adjust height allocation */
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad img {
  max-width: 100%;
  /* Ensure image fits within the container */
  max-height: 100%;
  /* Prevents stretching */
  object-fit: cover;
  /* Keeps image proportional */
  border-radius: 5px;
}

/* Text Container */
.ad-content {
  width: 100%;
  height: 35%;
  /* Remaining space for text */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ad-content h3 {
  font-size: 0.875rem;
  margin-bottom: 2px;
  color: var(--advert-text-color);
  white-space: normal;
  word-wrap: break-word;
}

.ad-content p {
  font-size: 0.75rem;
  color: var(--advert-text-color);
  white-space: normal;
  word-wrap: break-word;
}

/* Show ad */
.ad.show {
  right: 0 !important;
  opacity: 1 !important;
  display: flex !important;
}

/* Hide ad */
.ad.hide {
  right: -300px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}


/*#endregion Advert Screen****************************/
section {
  padding: 2rem;
  margin: 2rem 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 1rem;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

/*#region CONTACT AND FOOTER STYLING***************************************/
#contact {
  background: var(--contact-bg);
  color: var(--contact-text-color);
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}


/* Form Styling */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 400px;
}

/* Input and Textarea Styling */
#contact form input,
#contact form textarea {
  width: 100%;
  padding: 0.3rem;
  border: 1px solid var(--contact-border-color);
  border-radius: 4px;
  background-color: var(--contact-input-bg);
  color: Black;
  box-sizing: border-box;
}

/* Textarea Specific Styling */
#contact form textarea {
  height: 70px;
  resize: vertical;
}

/* Button Styling */
#contactForm button {
  background: linear-gradient(135deg, #ffb300, #ff6f00);
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 120px;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

#contactForm button:hover {
  background-color: var(--contact-button-hover-bg);
}

/* Label Styling */
#contact form label {
  color: var(--contact-label-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Social Media Icons Styling */
.social-icon {
  color: var(--contact-social-icon-color) !important;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.social-icon:hover {
  color: var(--contact-social-icon-hover-color);
}

.whatsapp-qr-code {
  text-align: center;
  margin-top: 20px;
}

.whatsapp-qr-code img {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
}


@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

.subfooter {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 1200px;
  margin-bottom: -130px !important;
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto;
  /* Center it if needed */
  color: white !important;
  background: linear-gradient(135deg,
      rgba(15, 32, 39, 0.85) 0%,
      /* dark moody base */
      rgba(32, 58, 67, 0.7) 50%,
      /* slightly lighter mid-tone */
      rgba(112, 184, 0, 0.15) 100%
      /* subtle MoodPàdi green tint */
    );
  border-radius: 10px;
  overflow: hidden;
}




.subfooter-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subfooter-right {
  display: flex;
  justify-content: flex-start;
  /* Change to flex-start */
  width: 60%;
  align-items: center;
  margin-top: -65px;
  transform: translateX(-120px);
  /* Use transform instead of margin-left */
}



.subscribe-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subscribe-form {
  display: flex;
}

.email-input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  width: 250px !important;
}

.subf1-button {
  height: 44px;
  width: 150px !important;
  border-radius: 35px !important;
  background: linear-gradient(135deg, #ffb300, #ff6f00);
  color: #fff;
  border: 2px solid black;
  border-style: outset;
  margin-top: 0px;
  margin-left: 7px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}


.privacy-statement {
  font-size: 14px;
}

.about-subtext-f {
  line-height: 1.1;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  color: white !important;
  font-size: 38px !important;
  line-height: 1.1em;
  font-weight: 100;
}

.subf {
  color: white !important;
}

.serif-f {
  line-height: 1.1;
  text-align: left;
  margin-bottom: 30px;
  font-style: italic;
  font-family: Newsreader, "Times New Roman", serif;
  font-size: 38px !important;
  line-height: 1.1em;
  font-weight: 100;
  color: #fff !important;
}

.copy {
  color: white !important;
  margin-top: 28px;
}

.copy1 {
  color: white !important;
  margin-top: -20px;
}

.copy2 {
  color: white !important;
  margin-top: -20px;
}

.logo-video-1 {
  width: 170px;
  height: auto;
}



.image-placeholder1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 250px;
  height: 250px;
  border-radius: 10%;
  margin-top: 50px;
  margin-left: 60px;
}

/*#endregion CONTACT*********************************/


/*#region *******************************************************FOOTER*********************************/
footer {
  /* Matches footer or slightly darker */
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 1.25rem;
  flex-wrap: wrap;

}

/* Custom Footer Area */
.custom_footer_area {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  border-radius: 70px;

}

.custom_footer_top .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  color: #fff;
}


/* Footer Top */
.custom_footer_top {
  padding: 100px;
  position: relative;
  overflow-x: hidden;
  width: 1550px;
}



/* Adjust input fields and text area to same width */
.custom_footer_top .contact_widget input,
.custom_footer_top .contact_widget textarea {
  width: 100%;
  /* Set the width to 100% */
  max-width: 100%;
  /* Ensure they are full-width */
  padding: 12px;
  /* Optional: Adjust padding for better appearance */
  margin-bottom: 15px;
  /* Space below each input */
}

/* Footer Bottom */
.custom_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 50px;
}

.custom_footer_top .contact_widget p,
.custom_footer_top .quick_links_widget p,
.custom_footer_top .support_widget p,
.custom_footer_top .social_widget p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 28px;
  color: #fff;
  margin-bottom: 20px;
}

/* Button Hover */
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

#footer .f_widget ul.f_list li a {
  color: #ffffff !important;
  text-decoration: none;
  /* optional cleaner look */
  transition: color 0.3s ease;
}

.custom_footer_top .f_widget .f_list li a:hover {
  color: #1f3a52;
}

/* Social Icons */
.custom_footer_top .f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 0.875rem;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  transition: all 0.2s linear;
  z-index: 50;
}

.custom_footer_top .f_social_icon a:hover {
  background: #1f3a52;
  border-color: #1f3a52;
  color: white;
}

/* Make all section headings white */
#footer .f_widget h3 {
  color: #ffffff !important;
}

.custom_footer_top .f_social_icon a+a {
  margin-left: 4px;
}

.custom_footer_top .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 54px;
  color: #fff;
}

.top {
  position: fixed;
  bottom: 10px;
  right: 15px;
  z-index: 999;
  font-size: 16px;
   background: linear-gradient(135deg, #0481C1 0%, #0f2027 100%);
  color: white;
  border: none;
  outline: none;
  padding: 5px 5px;
  border-radius: 60px;
  cursor: pointer;
  opacity: 1;
  /* <<< make it always visible */
  transition: opacity 0.3s ease-in-out;
  font-weight: 700;
}


.top:hover {
  background-color: #0056b3;
}

.top.show {
  opacity: 1;
}


/* Keyframes Animation */
@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}


/* Footer Widget Styling */
.f_widget {
  margin-bottom: 40px;

}

.f_widget h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #263b5e;
}

.f_widget .f_list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--footer-text-light-color);
}

.f_widget .f_list li {
  margin-bottom: 15px;

}

.f_widget .f_list li a {
  color: var(--footer-text-light-color);
  font-size: 0.875rem;
  text-decoration: none;
}

.f_widget .f_list li a:hover {
  color: var(--footer-link-hover-color);
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  line-height: 46px;
  background: #ebeef5;
  border-radius: 50%;
  color: var(--social-icon-color);
  text-align: center;
  font-size: 1.25rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.f_social_icon a:hover {
  background: var(--social-icon-hover-color);
  border-color: var(--social-icon-hover-color);
  color: white;
}

/* Social Icons Font */
.f_social_icon a i {
  font-size: 1.25rem;
}

.footer-text {
  color: var(--footer-bottom-text-color);
  font-family: 'Nunito', sans-serif;
  font-size: 14.5px;
  margin-top: 10px;
  position: absolute;
  /* Ensures it's always visible at the bottom */
  bottom: 0;
  /* Positions at the bottom of the viewport */
  left: 50%;
  /* Starts at 50% of the viewport width */
  transform: translateX(-50%);
  /* Centers the element horizontally */
  text-align: center;
  /* Centers the text within the element */
  width: 100%;
  /* Optional: Makes it span the entire width */
}

/*#endregion CONTACT*********************************/


/*#region COMPLIANCE FOOTER*/

.compliance-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centers vertically */
  align-items: center;       /* centers horizontally */
  text-align: center;
  color: #fff;
  margin-top: 18px;
  padding: 10px 0;
  width: 100%;
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* aligns icons vertically */
  gap: 8px;
  font-size: 13px;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 6px;
}

.badge-line span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-line i {
  color: #70b800;
  font-size: 14px;
}

.compliance-note {
  font-size: 12px;
  line-height: 1.5;
  color: #dcdcdc;
  max-width: 80%;
  text-align: center;
}

/*#endregion COMPLIANCE*/

.input-error {
  border: 1px solid var(--custom-modal-error-border);

}

.error-message {
  color: var(--custom-modal-error-text);
  font-size: var(--custom-modal-font-small);
  margin-top: 5px;
}

/* Custom Modal styles */
.custom-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--custom-modal-bg-overlay);
  justify-content: center;
  align-items: center;
  z-index: 1050;
  /* Ensure it is on top of other elements */
}

.custom-modal-content {
  background-color: var(--custom-modal-bg);
  border-radius: var(--custom-modal-border-radius);
  width: 70%;
  max-width: 300px;
  padding: var(--custom-modal-padding);
  text-align: center;
}

.custom-modal-header {
  background-color: var(--custom-modal-header-danger-bg);
  color: var(--custom-modal-header-text-color);
  padding: 10px;
  border-radius: 8px 8px 0 0;
}

.custom-modal-footer {
  padding: 10px;
  text-align: center;
}

.custom-modal-footer .btn {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
}

.custom-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.25rem;
  background: none;
  border: none;
  color: var(--custom-modal-header-text-color);
  cursor: pointer;
  width: 50px !important;
}

.custom-modal .close-btn:hover {
  color: black;
}

.custom-modal-header.bg-danger {
  background-color: #dc3545;
}

.custom-modal-header.bg-success {
  background-color: var(--custom-modal-header-success-bg);
}

.custom-modal-body {
  padding: 10px;
  font-size: var(--custom-modal-font-base);
}

.custom-modal-header h5 {
  font-size: 1.5rem;
  /* Increased font size */
  margin-left: 10px;
  /* Move the title a bit to the left */
  text-align: left;
  /* Align the title to the left */
  font-weight: bold;
  /* Make the font bold */
}

.custom-modal-header.bg-success h5 {
  font-size: 1.5rem;
  /* Same font size for success modal */
  margin-left: 10px;
  /* Align to the left */
  text-align: left;
  font-weight: bold;
}

.custom-modal-footer .btn {
  width: auto;
  /* Adjust button width to fit content */
  padding: 6px 12px;
  /* Reduce padding to make the button smaller */
  margin-top: 10px;
  font-size: 0.875rem;
  /* Reduce font size for the button */
}




/* --------------------------------------------------
   📱 Media Queries for Responsiveness
-------------------------------------------------- */


/******GOOGLE STANDARD MEDIA QUERY RANGES******/
/* ✅ Small / short phones or landscape */
@media (max-width: 414px) and (min-height: 412px) {

  /*#region NAVI BAR*/
  header {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
  }

  nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    /* Forces horizontal layout */
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    /* reduce for mobile spacing */
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .nav-links li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-links li a {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    /* prevents wrapping */
  }

  /* Optional: shrink MoodPàdi box a bit */
  .sub-container {
    width: auto !important;
    padding: 3px 10px !important;
  }

  /*#endregion NAV BAR*/

  /*#region Background*/

  /* 🧱 Kill any leftover animations or transforms on small screens */
  .header-slide-left,
  .header-animate {
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
  }

  /* 🧩 Ensure overlay spans full width with no offset */
  #corporate .overlay {
    position: absolute !important;
    /* Fix its frame */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Dead center it */
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 15px !important;
  }

  /* 🧠 Optional hard alignment correction if the parent still nudges */
  #corporate {
    transform: translateX(0) !important;
  }

  #corporate {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    height: auto !important;
    min-height: 100vh !important;
    padding: 20px 10px !important;
    background-position: center top !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* ✅ Logo perfectly centered */
  .logo-container {
    position: relative !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 3 !important;
  }

  .logo-container img.logo-video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* ✅ Header text below logo and centered */
  .header-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 90% !important;
    margin: 10px auto 0 auto !important;
    padding: 0 !important;
  }

  .header-text h2 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }

  /* ✅ Button centered below text */
  .get-started-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 20px auto 0 auto !important;
    margin-top: 240px !important;
  }

  .get-started {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 130px !important;
    border-radius: 25px !important;
    padding: 10px 18px !important;
    background-color: var(--corporate-highlight, #4CAF50) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .cop-submit {
    width: 150px !important;

  }

  /*#endregion Background*/

  /*#region WHO WE AARE*/

  /* Neutralize global section styling */
  .who-we-are-section {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    width: 100% !important;
    padding: 1.5rem 1rem !important;
    margin-top: -29px !important;
    gap: 2rem !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll caused by any offset */
  }


  .who-we-are-image {
    width: 80% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    /* 👈 FORCE it visible */
  }

  .who-we-are-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 230px !important;
    object-fit: cover !important;
    border-radius: 25px !important;
    display: block !important;
    position: relative !important;
  }

  .who-we-are-content {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;

  }

  .who-we-are-content h2 {
    font-size: 1.6rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    /* 👈 force visible */
    transform: none !important;
    /* 👈 reset animation shift */
    transition: none !important;
    /* optional — stop smooth fade */
  }

  .who-we-are-content>p {
    font-size: 0.95rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .card-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .card-box {
    width: 85% !important;
    left: 0 !important;
    margin: 0 auto !important;
    height: auto !important;
    position: relative !important;
  }

  .icon-container {
    position: static !important;
    margin: 0 auto 10px auto !important;
  }

  .card-box h3 {
    margin-top: 0.5rem !important;
    font-size: 1.1rem !important;
  }

  .read-more-container {
    margin-top: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .read-more-btn {
    bottom: 0 !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
    margin: 0 auto !important;
  }

  /*#endregion*/

  /*#region BENEFIT*/
  /* === Overall section layout === */
  .benefit {
    flex-direction: column !important;
    /* Stack image & content vertically */
    align-items: center !important;
    /* Center horizontally */
    justify-content: center !important;
    /* Center vertically */
    height: auto !important;
    /* Allow content to flow naturally */
    padding: 1.5rem 1rem !important;
    /* Balanced mobile padding */
    gap: 2rem !important;
    /* Space between image and content */
    text-align: center !important;
    /* Center all text for mobile */
  }

  /* === Image container === */
  .benefit-image {
    order: 1 !important;
    /* Ensure image comes first */
    width: 85% !important;
    /* Slightly smaller than content width */
    max-width: 400px !important;
    /* Prevent over-scaling */
    height: auto !important;
    /* Let image define height */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .benefit-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    display: block !important;
  }

  /* === Content container === */
  .benefit-content {
    order: 2 !important;
    /* Ensure it follows image */
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .benefit-content h2 {
    font-size: 1.6rem !important;
    margin-top: 0 !important;
  }

  .benefit-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
  }

  .benefit-content .underline {
    width: 80px !important;
    height: 3px !important;
    margin: 10px auto 15px !important;
  }

  /* === Slider container adjustments === */
  .container-slider {
    width: 90% !important;
    margin: 1.5rem auto !important;
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }

  select,
  input[type="range"] {
    font-size: 0.9rem !important;
  }

  #price-value,
  #total-price {
    font-size: 1rem !important;
  }

  /* === Start Plan button === */
  .start-plan-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .start-plan-btn {
    width: auto !important;
    padding: 0.7rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Animation reset for mobile === */
  .benefit-slide-left,
  .benefit-slide-fade,
  .benefit-slide-left1 {
    transform: none !important;
    opacity: 1 !important;
    /* make sure they're visible */
  }

  /*#endregion BENEFIT*/

  /*#region WHY MOODPADI*/
  /* === Base container: stack vertically === */
  .why-section-container {
    flex-direction: column !important;
    /* Stack all sections vertically */
    align-items: center !important;
    /* Center everything horizontally */
    justify-content: center !important;
    padding: 1.5rem 1rem !important;
    /* Balanced padding for small screens */
    gap: 2rem !important;
    /* Space between stacked sections */
    text-align: center !important;
  }

  /* Hide vertical lines (they make no sense in vertical layout) */
  .vertical-divider {
    display: none !important;
  }

  /* === Left section === */
  .why-section-left {
    order: 1 !important;
    width: 100% !important;
    max-width: 90% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .why-section-left h1 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }

  .why-section-list {
    padding: 0 !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
    text-align: left !important;
    /* Keeps bullets neatly aligned */
  }

  .why-section-list li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .why-section-list li i {
    font-size: 1rem !important;
    margin-right: 8px !important;
  }

  .choose h4 {
    font-size: 1rem !important;
    margin-top: 1rem !important;
  }

  .book-appointment-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .book-appointment-btn {
    width: auto !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Center section === */
  .why-section-center {
    order: 2 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-center .info-block {
    padding: 0 !important;
  }

  .why-section-center h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-center p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  .heading1 {
    font-size: 2.5rem !important;
  }

  /* === Right section === */
  .why-section-right {
    order: 3 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-right .info-block {
    padding: 0 !important;
  }

  .why-section-right h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-right p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  /* === Text size tweaks for better readability === */
  .info-block p {
    line-height: 1.4 !important;
  }

  /* === Animation reset for mobile === */
  .why-section-left,
  .why-section-center,
  .why-section-right {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion WHY MOODPADI*/

  /*#region INFO*/
  #p-info {
    padding: 1rem !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    /* FIXED: prevent overlap */
  }

  .top-text {
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    color: white !important;
  }

  .top-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .top-text .underline {
    width: 60px !important;
    height: 3px !important;
  }

  .top-text p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  .info-container {
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    background-color: #1f3a52 !important;
    border-radius: 12px !important;
    padding: 1rem !important;
  }

  .info-section {
    width: 100% !important;
    padding: 15px !important;
    align-items: center !important;
    text-align: center !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
  }

  .step-number {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .step-title {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  .step-desc {
    font-size: 0.85rem !important;
    color: #ddd !important;
    line-height: 1.4 !important;
  }

  #p-info .top-slide-left,
  #p-info .top-slide-fade {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion INFO*/
  
  /*#region FAQ*/

    #faq {
        width: 95%;
    }

    

    /*#endregion FAQ*/
 
    /*#region FOOTER*/
  /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

   .contact_widget button,
  .contact-button {
    width: 70% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
    border: none !important;
  }
  #contactForm button {
 background: linear-gradient(135deg, #70b800, #0481c1) !important;
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 95px !important;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}
  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }

  #footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  .subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }

  /* Ensure no hidden overflow from body or parent */
  html,
  body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/


}

@media (max-width: 599px) and (max-height: 667px) {

  /*#region NAVI BAR*/
  header {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
  }

  nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    /* Forces horizontal layout */
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    /* reduce for mobile spacing */
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .nav-links li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-links li a {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    /* prevents wrapping */
  }

  /* Optional: shrink MoodPàdi box a bit */
  .sub-container {
    width: auto !important;
    padding: 3px 10px !important;
  }

  /*#endregion NAV BAR*/

  /*#region Background*/

  /* 🧱 Kill any leftover animations or transforms on small screens */
  .header-slide-left,
  .header-animate {
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
  }

  /* 🧩 Ensure overlay spans full width with no offset */
  #corporate .overlay {
    position: absolute !important;
    /* Fix its frame */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Dead center it */
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 15px !important;
  }

  /* 🧠 Optional hard alignment correction if the parent still nudges */
  #corporate {
    transform: translateX(0) !important;
  }

  #corporate {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    height: auto !important;
    min-height: 100vh !important;
    padding: 20px 10px !important;
    background-position: center top !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* ✅ Logo perfectly centered */
  .logo-container {
    position: relative !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 3 !important;
  }

  .logo-container img.logo-video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* ✅ Header text below logo and centered */
  .header-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 90% !important;
    margin: 10px auto 0 auto !important;
    padding: 0 !important;
  }

  .header-text h2 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }

  /* ✅ Button centered below text */
  .get-started-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 20px auto 0 auto !important;
    margin-top: 240px !important;
  }

  .get-started {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 130px !important;
    border-radius: 25px !important;
    padding: 10px 18px !important;
    background-color: var(--corporate-highlight, #4CAF50) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .cop-submit {
    width: 150px !important;
  }

  /*#endregion Background*/

  /*#region WHO WE AARE*/

  /* Neutralize global section styling */
  .who-we-are-section {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    width: 100% !important;
    padding: 1.5rem 1rem !important;
       margin-top: -29px !important;
    gap: 2rem !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll caused by any offset */
  }


  .who-we-are-image {
    width: 80% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    /* 👈 FORCE it visible */
  }

  .who-we-are-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 230px !important;
    object-fit: cover !important;
    border-radius: 25px !important;
    display: block !important;
    position: relative !important;
  }

  .who-we-are-content {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;

  }

  .who-we-are-content h2 {
    font-size: 1.6rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    /* 👈 force visible */
    transform: none !important;
    /* 👈 reset animation shift */
    transition: none !important;
    /* optional — stop smooth fade */
  }

  .who-we-are-content>p {
    font-size: 0.95rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .card-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .card-box {
    width: 85% !important;
    left: 0 !important;
    margin: 0 auto !important;
    height: auto !important;
    position: relative !important;
  }

  .icon-container {
    position: static !important;
    margin: 0 auto 10px auto !important;
  }

  .card-box h3 {
    margin-top: 0.5rem !important;
    font-size: 1.1rem !important;
  }

  .read-more-container {
    margin-top: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .read-more-btn {
    bottom: 0 !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
    margin: 0 auto !important;
  }

  /*#endregion*/

  /*#region BENEFIT*/
  /* === Overall section layout === */
  .benefit {
    flex-direction: column !important;
    /* Stack image & content vertically */
    align-items: center !important;
    /* Center horizontally */
    justify-content: center !important;
    /* Center vertically */
    height: auto !important;
    /* Allow content to flow naturally */
    padding: 1.5rem 1rem !important;
    /* Balanced mobile padding */
    gap: 2rem !important;
    /* Space between image and content */
    text-align: center !important;
    /* Center all text for mobile */
  }

  /* === Image container === */
  .benefit-image {
    order: 1 !important;
    /* Ensure image comes first */
    width: 85% !important;
    /* Slightly smaller than content width */
    max-width: 400px !important;
    /* Prevent over-scaling */
    height: auto !important;
    /* Let image define height */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .benefit-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    display: block !important;
  }

  /* === Content container === */
  .benefit-content {
    order: 2 !important;
    /* Ensure it follows image */
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .benefit-content h2 {
    font-size: 1.6rem !important;
    margin-top: 0 !important;
  }

  .benefit-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
  }

  .benefit-content .underline {
    width: 80px !important;
    height: 3px !important;
    margin: 10px auto 15px !important;
  }

  /* === Slider container adjustments === */
  .container-slider {
    width: 90% !important;
    margin: 1.5rem auto !important;
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }

  select,
  input[type="range"] {
    font-size: 0.9rem !important;
  }

  #price-value,
  #total-price {
    font-size: 1rem !important;
  }

  /* === Start Plan button === */
  .start-plan-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .start-plan-btn {
    width: auto !important;
    padding: 0.7rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Animation reset for mobile === */
  .benefit-slide-left,
  .benefit-slide-fade,
  .benefit-slide-left1 {
    transform: none !important;
    opacity: 1 !important;
    /* make sure they're visible */
  }

  /*#endregion BENEFIT*/

  /*#region WHY MOODPADI*/
  /* === Base container: stack vertically === */
  .why-section-container {
    flex-direction: column !important;
    /* Stack all sections vertically */
    align-items: center !important;
    /* Center everything horizontally */
    justify-content: center !important;
    padding: 1.5rem 1rem !important;
    /* Balanced padding for small screens */
    gap: 2rem !important;
    /* Space between stacked sections */
    text-align: center !important;
  }

  /* Hide vertical lines (they make no sense in vertical layout) */
  .vertical-divider {
    display: none !important;
  }

  /* === Left section === */
  .why-section-left {
    order: 1 !important;
    width: 100% !important;
    max-width: 90% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .why-section-left h1 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }

  .why-section-list {
    padding: 0 !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
    text-align: left !important;
    /* Keeps bullets neatly aligned */
  }

  .why-section-list li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .why-section-list li i {
    font-size: 1rem !important;
    margin-right: 8px !important;
  }

  .choose h4 {
    font-size: 1rem !important;
    margin-top: 1rem !important;
  }

  .book-appointment-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .book-appointment-btn {
    width: auto !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Center section === */
  .why-section-center {
    order: 2 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-center .info-block {
    padding: 0 !important;
  }

  .why-section-center h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-center p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  .heading1 {
    font-size: 2.5rem !important;
  }

  /* === Right section === */
  .why-section-right {
    order: 3 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-right .info-block {
    padding: 0 !important;
  }

  .why-section-right h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-right p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  /* === Text size tweaks for better readability === */
  .info-block p {
    line-height: 1.4 !important;
  }

  /* === Animation reset for mobile === */
  .why-section-left,
  .why-section-center,
  .why-section-right {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion WHY MOODPADI*/

  /*#region INFO*/
  #p-info {
    padding: 1rem !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    /* FIXED: prevent overlap */
  }

  .top-text {
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    color: white !important;
  }

  .top-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .top-text .underline {
    width: 60px !important;
    height: 3px !important;
  }

  .top-text p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  .info-container {
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    background-color: #1f3a52 !important;
    border-radius: 12px !important;
    padding: 1rem !important;
  }

  .info-section {
    width: 100% !important;
    padding: 15px !important;
    align-items: center !important;
    text-align: center !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
  }

  .step-number {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .step-title {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  .step-desc {
    font-size: 0.85rem !important;
    color: #ddd !important;
    line-height: 1.4 !important;
  }

  #p-info .top-slide-left,
  #p-info .top-slide-fade {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion INFO*/

  /*#region CORPORATE BOOKING*/
  .book-slide-fade {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  /*#endregion CORPORATE*/
   
  /*#region FAQ*/

    #faq {
        width: 95%;
    }

    

    /*#endregion FAQ*/
  
    /*#region FOOTER*/
  /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

   .contact_widget button,
  .contact-button {
    width: 70% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
    border: none !important;
  }
  #contactForm button {
 background: linear-gradient(135deg, #70b800, #0481c1) !important;
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 95px !important;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }

  #footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  .subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }

  /* Ensure no hidden overflow from body or parent */
  html,
  body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/

}

@media (max-width: 599px) and (min-height: 668px) and (max-height: 812px) {

  /*#region NAVI BAR*/
  header {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
  }

  nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    /* Forces horizontal layout */
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    /* reduce for mobile spacing */
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .nav-links li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-links li a {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    /* prevents wrapping */
  }

  /* Optional: shrink MoodPàdi box a bit */
  .sub-container {
    width: auto !important;
    padding: 3px 10px !important;
  }

  /*#endregion NAV BAR*/
  /*#region Background*/

  /* 🧱 Kill any leftover animations or transforms on small screens */
  .header-slide-left,
  .header-animate {
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
  }

  /* 🧩 Ensure overlay spans full width with no offset */
  #corporate .overlay {
    position: absolute !important;
    /* Fix its frame */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Dead center it */
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 15px !important;
  }

  /* 🧠 Optional hard alignment correction if the parent still nudges */
  #corporate {
    transform: translateX(0) !important;
  }

  #corporate {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    height: auto !important;
    min-height: 100vh !important;
    padding: 20px 10px !important;
    background-position: center top !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* ✅ Logo perfectly centered */
  .logo-container {
    position: relative !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 3 !important;
  }

  .logo-container img.logo-video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* ✅ Header text below logo and centered */
  .header-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 90% !important;
    margin: 10px auto 0 auto !important;
    padding: 0 !important;
  }

  .header-text h2 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }

  /* ✅ Button centered below text */
  .get-started-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 20px auto 0 auto !important;
    margin-top: 220px !important;
  }

  .get-started {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 130px !important;
    border-radius: 25px !important;
    padding: 10px 18px !important;
    background-color: var(--corporate-highlight, #4CAF50) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .cop-submit {
    width: 150px !important;
  }

  /*#endregion Background*/

  /*#region WHO WE AARE*/

  /* Neutralize global section styling */
  .who-we-are-section {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    width: 100% !important;
    padding: 1.5rem 1rem !important;
     margin-top: -29px !important;
    gap: 2rem !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll caused by any offset */
  }


  .who-we-are-image {
    width: 80% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    /* 👈 FORCE it visible */
  }

  .who-we-are-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 230px !important;
    object-fit: cover !important;
    border-radius: 25px !important;
    display: block !important;
    position: relative !important;
  }

  .who-we-are-content {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;

  }

  .who-we-are-content h2 {
    font-size: 1.6rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    /* 👈 force visible */
    transform: none !important;
    /* 👈 reset animation shift */
    transition: none !important;
    /* optional — stop smooth fade */
  }

  .who-we-are-content>p {
    font-size: 0.95rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .card-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .card-box {
    width: 85% !important;
    left: 0 !important;
    margin: 0 auto !important;
    height: auto !important;
    position: relative !important;
  }

  .icon-container {
    position: static !important;
    margin: 0 auto 10px auto !important;
  }

  .card-box h3 {
    margin-top: 0.5rem !important;
    font-size: 1.1rem !important;
  }

  .read-more-container {
    margin-top: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .read-more-btn {
    bottom: 0 !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
    margin: 0 auto !important;
  }

  /*#endregion*/

  /*#region BENEFIT*/
  /* === Overall section layout === */
  .benefit {
    flex-direction: column !important;
    /* Stack image & content vertically */
    align-items: center !important;
    /* Center horizontally */
    justify-content: center !important;
    /* Center vertically */
    height: auto !important;
    /* Allow content to flow naturally */
    padding: 1.5rem 1rem !important;
    /* Balanced mobile padding */
    gap: 2rem !important;
    /* Space between image and content */
    text-align: center !important;
    /* Center all text for mobile */
  }

  /* === Image container === */
  .benefit-image {
    order: 1 !important;
    /* Ensure image comes first */
    width: 85% !important;
    /* Slightly smaller than content width */
    max-width: 400px !important;
    /* Prevent over-scaling */
    height: auto !important;
    /* Let image define height */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .benefit-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    display: block !important;
  }

  /* === Content container === */
  .benefit-content {
    order: 2 !important;
    /* Ensure it follows image */
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .benefit-content h2 {
    font-size: 1.6rem !important;
    margin-top: 0 !important;
  }

  .benefit-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
  }

  .benefit-content .underline {
    width: 80px !important;
    height: 3px !important;
    margin: 10px auto 15px !important;
  }

  /* === Slider container adjustments === */
  .container-slider {
    width: 90% !important;
    margin: 1.5rem auto !important;
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }

  select,
  input[type="range"] {
    font-size: 0.9rem !important;
  }

  #price-value,
  #total-price {
    font-size: 1rem !important;
  }

  /* === Start Plan button === */
  .start-plan-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .start-plan-btn {
    width: auto !important;
    padding: 0.7rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Animation reset for mobile === */
  .benefit-slide-left,
  .benefit-slide-fade,
  .benefit-slide-left1 {
    transform: none !important;
    opacity: 1 !important;
    /* make sure they're visible */
  }

  /*#endregion BENEFIT*/

  /*#region WHY MOODPADI*/
  /* === Base container: stack vertically === */
  .why-section-container {
    flex-direction: column !important;
    /* Stack all sections vertically */
    align-items: center !important;
    /* Center everything horizontally */
    justify-content: center !important;
    padding: 1.5rem 1rem !important;
    /* Balanced padding for small screens */
    gap: 2rem !important;
    /* Space between stacked sections */
    text-align: center !important;
  }

  /* Hide vertical lines (they make no sense in vertical layout) */
  .vertical-divider {
    display: none !important;
  }

  /* === Left section === */
  .why-section-left {
    order: 1 !important;
    width: 100% !important;
    max-width: 90% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .why-section-left h1 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }

  .why-section-list {
    padding: 0 !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
    text-align: left !important;
    /* Keeps bullets neatly aligned */
  }

  .why-section-list li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .why-section-list li i {
    font-size: 1rem !important;
    margin-right: 8px !important;
  }

  .choose h4 {
    font-size: 1rem !important;
    margin-top: 1rem !important;
  }

  .book-appointment-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .book-appointment-btn {
    width: auto !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Center section === */
  .why-section-center {
    order: 2 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-center .info-block {
    padding: 0 !important;
  }

  .why-section-center h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-center p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  .heading1 {
    font-size: 2.5rem !important;
  }

  /* === Right section === */
  .why-section-right {
    order: 3 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-right .info-block {
    padding: 0 !important;
  }

  .why-section-right h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-right p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  /* === Text size tweaks for better readability === */
  .info-block p {
    line-height: 1.4 !important;
  }

  /* === Animation reset for mobile === */
  .why-section-left,
  .why-section-center,
  .why-section-right {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion WHY MOODPADI*/

  /*#region CORPORATE BOOKING*/
  .book-slide-fade {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  /*#endregion CORPORATE*/

  /*#region INFO*/
  #p-info {
    padding: 1rem !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    /* FIXED: prevent overlap */
  }

  .top-text {
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    color: white !important;
  }

  .top-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .top-text .underline {
    width: 60px !important;
    height: 3px !important;
  }

  .top-text p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  .info-container {
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    background-color: #1f3a52 !important;
    border-radius: 12px !important;
    padding: 1rem !important;
  }

  .info-section {
    width: 100% !important;
    padding: 15px !important;
    align-items: center !important;
    text-align: center !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
  }

  .step-number {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .step-title {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  .step-desc {
    font-size: 0.85rem !important;
    color: #ddd !important;
    line-height: 1.4 !important;
  }

  #p-info .top-slide-left,
  #p-info .top-slide-fade {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion INFO*/

 /*#region FAQ*/

    #faq {
        width: 95%;
    }

    

    /*#endregion FAQ*/

  /*#region FOOTER*/
  /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

  .contact_widget button,
  .contact-button {
    width: 70% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
    border: none !important;
  }

  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
#contactForm button {
 background: linear-gradient(135deg, #70b800, #0481c1) !important;
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 95px !important;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}
  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }

  #footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  .subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }

  /* Ensure no hidden overflow from body or parent */
  html,
  body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/

}

@media (max-width: 599px) and (min-height: 933px) and (max-height: 1000px) {

  /*#region NAVI BAR*/
  header {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
  }

  nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    /* Forces horizontal layout */
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    /* reduce for mobile spacing */
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .nav-links li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-links li a {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    /* prevents wrapping */
  }

  /* Optional: shrink MoodPàdi box a bit */
  .sub-container {
    width: auto !important;
    padding: 3px 10px !important;
  }

  /*#endregion NAV BAR*/

  /*#region Background*/

  /* 🧱 Kill any leftover animations or transforms on small screens */
  .header-slide-left,
  .header-animate {
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
  }

  /* 🧩 Ensure overlay spans full width with no offset */
  #corporate .overlay {
    position: absolute !important;
    /* Fix its frame */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Dead center it */
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 15px !important;
  }

  /* 🧠 Optional hard alignment correction if the parent still nudges */
  #corporate {
    transform: translateX(0) !important;
  }

  #corporate {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    height: auto !important;
    min-height: 100vh !important;
    padding: 20px 10px !important;
    background-position: center top !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* ✅ Logo perfectly centered */
  .logo-container {
    position: relative !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 3 !important;
  }

  .logo-container img.logo-video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* ✅ Header text below logo and centered */
  .header-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 90% !important;
    margin: 10px auto 0 auto !important;
    padding: 0 !important;
  }

  .header-text h2 {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    width: 100% !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }

  /* ✅ Button centered below text */
  .get-started-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 20px auto 0 auto !important;
    margin-top: 220px !important;
  }

  .get-started {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 130px !important;
    border-radius: 25px !important;
    padding: 10px 18px !important;
    background-color: var(--corporate-highlight, #4CAF50) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .cop-submit {
    width: 150px !important;
  }

  /*#endregion Background*/

  /*#region WHO WE AARE*/

  /* Neutralize global section styling */
  .who-we-are-section {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    width: 100% !important;
    padding: 1.5rem 1rem !important;
    margin-top: -29px !important;
    gap: 2rem !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll caused by any offset */
  }


  .who-we-are-image {
    width: 80% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    /* 👈 FORCE it visible */
  }

  .who-we-are-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 230px !important;
    object-fit: cover !important;
    border-radius: 25px !important;
    display: block !important;
    position: relative !important;
  }

  .who-we-are-content {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;

  }

  .who-we-are-content h2 {
    font-size: 1.6rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    /* 👈 force visible */
    transform: none !important;
    /* 👈 reset animation shift */
    transition: none !important;
    /* optional — stop smooth fade */
  }

  .who-we-are-content>p {
    font-size: 0.95rem !important;
    width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .card-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .card-box {
    width: 85% !important;
    left: 0 !important;
    margin: 0 auto !important;
    height: auto !important;
    position: relative !important;
  }

  .icon-container {
    position: static !important;
    margin: 0 auto 10px auto !important;
  }

  .card-box h3 {
    margin-top: 0.5rem !important;
    font-size: 1.1rem !important;
  }

  .read-more-container {
    margin-top: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .read-more-btn {
    bottom: 0 !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
    margin: 0 auto !important;
  }

  /*#endregion*/

  /*#region BENEFIT*/
  /* === Overall section layout === */
  .benefit {
    flex-direction: column !important;
    /* Stack image & content vertically */
    align-items: center !important;
    /* Center horizontally */
    justify-content: center !important;
    /* Center vertically */
    height: auto !important;
    /* Allow content to flow naturally */
    padding: 1.5rem 1rem !important;
    /* Balanced mobile padding */
    gap: 2rem !important;
    /* Space between image and content */
    text-align: center !important;
    /* Center all text for mobile */
  }

  /* === Image container === */
  .benefit-image {
    order: 1 !important;
    /* Ensure image comes first */
    width: 85% !important;
    /* Slightly smaller than content width */
    max-width: 400px !important;
    /* Prevent over-scaling */
    height: auto !important;
    /* Let image define height */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .benefit-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    display: block !important;
  }

  /* === Content container === */
  .benefit-content {
    order: 2 !important;
    /* Ensure it follows image */
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .benefit-content h2 {
    font-size: 1.6rem !important;
    margin-top: 0 !important;
  }

  .benefit-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
  }

  .benefit-content .underline {
    width: 80px !important;
    height: 3px !important;
    margin: 10px auto 15px !important;
  }

  /* === Slider container adjustments === */
  .container-slider {
    width: 90% !important;
    margin: 1.5rem auto !important;
    padding: 1rem !important;
    font-size: 0.9rem !important;
  }

  select,
  input[type="range"] {
    font-size: 0.9rem !important;
  }

  #price-value,
  #total-price {
    font-size: 1rem !important;
  }

  /* === Start Plan button === */
  .start-plan-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .start-plan-btn {
    width: auto !important;
    padding: 0.7rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Animation reset for mobile === */
  .benefit-slide-left,
  .benefit-slide-fade,
  .benefit-slide-left1 {
    transform: none !important;
    opacity: 1 !important;
    /* make sure they're visible */
  }

  /*#endregion BENEFIT*/

  /*#region WHY MOODPADI*/
  /* === Base container: stack vertically === */
  .why-section-container {
    flex-direction: column !important;
    /* Stack all sections vertically */
    align-items: center !important;
    /* Center everything horizontally */
    justify-content: center !important;
    padding: 1.5rem 1rem !important;
    /* Balanced padding for small screens */
    gap: 2rem !important;
    /* Space between stacked sections */
    text-align: center !important;
  }

  /* Hide vertical lines (they make no sense in vertical layout) */
  .vertical-divider {
    display: none !important;
  }

  /* === Left section === */
  .why-section-left {
    order: 1 !important;
    width: 100% !important;
    max-width: 90% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .why-section-left h1 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }

  .why-section-list {
    padding: 0 !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
    text-align: left !important;
    /* Keeps bullets neatly aligned */
  }

  .why-section-list li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .why-section-list li i {
    font-size: 1rem !important;
    margin-right: 8px !important;
  }

  .choose h4 {
    font-size: 1rem !important;
    margin-top: 1rem !important;
  }

  .book-appointment-container {
    width: 100% !important;
    text-align: center !important;
    margin-top: 1.5rem !important;
  }

  .book-appointment-btn {
    width: auto !important;
    padding: 0.6rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* === Center section === */
  .why-section-center {
    order: 2 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-center .info-block {
    padding: 0 !important;
  }

  .why-section-center h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-center p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  .heading1 {
    font-size: 2.5rem !important;
  }

  /* === Right section === */
  .why-section-right {
    order: 3 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .why-section-right .info-block {
    padding: 0 !important;
  }

  .why-section-right h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
  }

  .why-section-right p {
    font-size: 0.9rem !important;
    max-width: 100% !important;
  }

  /* === Text size tweaks for better readability === */
  .info-block p {
    line-height: 1.4 !important;
  }

  /* === Animation reset for mobile === */
  .why-section-left,
  .why-section-center,
  .why-section-right {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion WHY MOODPADI*/

  /*#region CORPORATE BOOKING*/
  .book-slide-fade {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  /*#endregion CORPORATE*/
/*#region FAQ*/

    #faq {
        width: 95%;
    }

    

    /*#endregion FAQ*/
  /*#region INFO*/
  #p-info {
    padding: 1rem !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    /* FIXED: prevent overlap */
  }

  .top-text {
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    color: white !important;
  }

  .top-text h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .top-text .underline {
    width: 60px !important;
    height: 3px !important;
  }

  .top-text p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin: 0 auto 20px auto !important;
  }

  .info-container {
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    background-color: #1f3a52 !important;
    border-radius: 12px !important;
    padding: 1rem !important;
  }

  .info-section {
    width: 100% !important;
    padding: 15px !important;
    align-items: center !important;
    text-align: center !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
  }

  .step-number {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .step-title {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  .step-desc {
    font-size: 0.85rem !important;
    color: #ddd !important;
    line-height: 1.4 !important;
  }

  #p-info .top-slide-left,
  #p-info .top-slide-fade {
    transform: none !important;
    opacity: 1 !important;
  }

  /*#endregion INFO*/

  /*#region FOOTER*/
  /* === Reset global containers === */
  .custom_footer_top {
    width: 100% !important;
    padding: 40px 20px !important;
    overflow-x: visible !important;
  }

  .custom_footer_top .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
    width: 100% !important;
  }

  /* === Fix column layout === */
  .col-lg-3,
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* === Contact Form === */
  .contact_widget form {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .contact_widget form input,
  .contact_widget form textarea {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

   .contact_widget button,
  .contact-button {
    width: 70% !important;
    height: 50px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #70b800, #0481c1) !important;
    color: #fff !important;
    border: none !important;
  }
  #contactForm button {
 background: linear-gradient(135deg, #70b800, #0481c1) !important;
  color: #ffffff;
  padding: 0.5rem 1rem;

  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 95px !important;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}
  /* === Subfooter container === */
  .subfooter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    padding: 50px 25px !important;
    margin: 0 auto !important;
    background-color: #1f3a52 !important;
    border-radius: 15px !important;
    gap: 40px !important;
  }

  .subfooter-left,
  .subfooter-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* === Left side text === */
  .about-subtext-f,
  .serif-f {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 5px 0 !important;
  }

  .privacy-statement {
    text-align: center !important;
    font-size: 0.9rem !important;
    color: #ddd !important;
    margin-top: 10px !important;
  }

  /* === Subscribe section === */
  .subscribe-container {
    width: 100% !important;
    max-width: 90% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 25px !important;
    border-radius: 12px !important;
  }

  .subscribe-container p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .subscribe-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .email-input {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .subf1-button {
    width: 95% !important;
    height: 48px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: #0f2a3e !important;
    color: #fff !important;
  }

  /* === Video Section === */
  .image-placeholder1 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .image-placeholder1 video {
    width: 240px !important;
    height: 240px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  /* === Footer links stacked === */
  .f_widget {
    text-align: center !important;
    width: 100% !important;
  }

  .f_widget h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }

  .f_widget .f_list {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* === Social icons === */
  .f_social_icon {
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .f_social_icon a {
    font-size: 24px !important;
  }

  /* === Copy text === */
  .copy,
  .copy1 {
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 0.98rem !important;
    color: #ccc !important;
  }

  #footer,
  .custom_footer_area,
  .custom_footer_top,
  .custom_footer_top .container,
  .custom_footer_top .row,
  .subfooter,
  .subfooter-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-x: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Subscribe container — true centering */
  .subscribe-container {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin: 0 auto 25px auto !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    padding: 25px !important;
  }

  /* Video section — center it cleanly */
  .image-placeholder1 {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 video {
    width: 230px !important;
    height: 230px !important;
    border-radius: 12% !important;
    object-fit: cover !important;
  }

  .subfooter-right {
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .subscribe-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .image-placeholder1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
  }

  /* Ensure no hidden overflow from body or parent */
  html,
  body {
    overflow-x: hidden !important;
  }

  /*#endregion FOOTER*/

}

@media (max-width: 767px) and (min-width: 600px)and (max-height: 568px) {} 