body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* Ensure content stacks vertically */
  justify-content: flex-start;
  /* Align at the top */
  overflow-x: hidden;
  overflow-y: auto;
  /* Ensure vertical scrolling is enabled */
 background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);


}

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

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

body::-webkit-scrollbar-thumb {
  background: #1f3a52;
  /* Color of the scrollbar */
  border-radius: 10px;
  /* Rounded corners for the thumb */
}

body::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Darker color when hovered */
}


/* Keyframes for animating the gradient */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

header {
  color: #fff;
  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;
}

.logo-container {

  display: flex;
  align-items: center;
  margin-right: 50px;
  margin-left: 20px;
  /* Add some margin to separate the logo from the nav */
  flex-shrink: 0;
  /* Prevent it from shrinking on small screens */
}

.logo-video {
  width: 180px;
  height: 10%;
  border-radius: 10%;
  object-fit: contain;
}


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

@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: white;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}

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

/* Navigation Styling */
nav {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: -100px;
  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;
}


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: whitesmoke;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  font-size: 0.877rem;
  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: rgb(198, 196, 196);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 15px;
  /* Moves underline further down */
}

.text {
  margin-top: 5px;
  /* Space from the top of the section */
  text-align: center;
  /* Center-align the text content */
}

.help {
  position: relative;
  /* 🔥 This is important */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 1000px;
  width: 800px;
  height: 850px;
  margin: 50px auto;
  margin-top: 100px;
  text-align: center;
  overflow: hidden;
  /* 🔥 Ensure ::before does not overflow */

  background-image: url("../assets/OnlineTherapist.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Base layer */
}

/* Semi-transparent dark overlay on top of image, behind content */
.help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
  /* 🔥 Below content, above background image */
}

/* All your content */
.help>* {
  position: relative;
  z-index: 2;
  /* 🔥 Ensure your text, buttons appear above overlay */
}


.country-select-wrapper {
  display: flex;
  flex-direction: column;
  /* Stack the text and select vertically */
  align-items: center;
  /* Center-align text and dropdown */
  margin-top: 20px;
  /* Space between text and dropdown */

}



.country-select label {
  display: block;
  font-size: 1rem;
  text-align: center;
  /* Center-align the label text */

}

/* Styling the input field */
.country-select input {
  padding: 10px;
  font-size: 1rem;
  text-align: center;
  /* Center-align input text */
  width: 320px;
  /* Set a fixed width for the input field */
  position: relative;
  margin-top: 70px;
  /* Adjust this value to move the label downwards */
  border-radius: 15px;
  border-color: #3d53a3;
  border-width: 3px;
}

/* Custom scrollbar styles for the datalist dropdown */
.country-select input[list] {
  overflow-y: auto;
  /* Enable vertical scroll if necessary */
}

/* Custom scrollbar styles for WebKit browsers */
.country-select input[list]::-webkit-scrollbar {
  width: 10px;
  /* Width of the scrollbar */
}

.country-select input[list]::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Track background color */
  border-radius: 5px;
  /* Round the scrollbar track */
}

.country-select input[list]::-webkit-scrollbar-thumb {
  background: #3d53a3;
  /* Thumb color */
  border-radius: 5px;
  /* Round the scrollbar thumb */
}

.country-select input[list]::-webkit-scrollbar-thumb:hover {
  background: #1c3689;
  /* Darker color on hover */
}

/* Optional: Styling for the datalist */
#countriesDatalist {
  display: none;
  /* Hide the datalist itself (as input should show dropdown automatically) */
}

.country-content {
  margin-top: 50px;
  /* Space between the dropdown and content */
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  /* Center-align text inside */
  width: 80%;
  /* Set a relative width for the content box */
  max-width: 600px;
  /* Prevent it from being too wide */
  height: 600px;
  border-radius: 15px;
  border-color: #15915b;
  border-width: 3px;
}

/* Keyframes for animating the gradient */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ********************************************************************Info section styling */
.info {
  background-color: #f9f9f9;
  /* Light background color */
  padding: 30px;
  border-radius: 25px;
  margin-top: -60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for better visibility */
}

/* Content inside the info section */
.info-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Text styling */
.info-text {
  font-size: 1rem;
  color: #555;
  /* Soft dark gray for text */
  line-height: 1.6;
  margin-bottom: 15px;

}

/* Text for the date */
.info-text:first-of-type {
  font-weight: bold;
  font-size: 1.125rem;
  color: #333;
  /* Darker color for the date */
}

/* Add a link style if needed */
.info-text a {
  color: #3d53a3;
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}



/*#region ********************************************************OUR TEAM*********************/
.our-team-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--team-section-bg);

}

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

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


.our-team-section .underline {
  width: 100px;
  height: 4px;
  background-color: var(--team-underline-color);
  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-color: #112231;
  /* Choose your preferred color */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.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;
}

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

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

.our-app-section p {
  font-size: 1rem;
  color: white;
  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: white;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.google-play {
  background-color: #111827;
}

.google-play:hover {
  background-color: #1f2937;
}

.ios-store {
  background-color: #111827;
}

.ios-store:hover {
  background-color: #1f2937;
}

.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*****/





#contact {
  background: rgba(2, 2, 113, 0.772);
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}


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

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

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

/* Button Styling */
#contactForm button {
  background-color: #1f3a52;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width: 11.25rem;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

#contactForm button:hover {
  background-color: #315372;
}

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

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

.social-icon:hover {
  color: #ddd;
}

.whatsapp-qr-code {
  text-align: center;
  margin-top: 1.25rem;
}

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

.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-color: #1f2937 !important;
  color: #fff;
  border: #0481C1;
  border-style: outset;
  margin-top: 0px;
  margin-left: 7px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}


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

.about-subtext {
  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;
  font-weight: 500 !important;
  margin-top: 24px;
}

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

  font-size: 1rem;
  font-weight: 500 !important;
  line-height: 28px;
}

.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;
}


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

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

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

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

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

/*#endregion***/


/*#region BODY SECTION STYLING**/
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: 1.25rem;
}

/*#endregion

/*#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%) !important;
  border-radius: 70px;

}

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

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

/* 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: 0.9375rem;
  /* 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: #6a7695;
  margin-bottom: 1.25rem;
}

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

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

/* 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;
}

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

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

/* Footer Background */



/* 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: 1.25rem;
  color: #fff;
}

.f_widget .f_list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.f_widget .f_list li {
  margin-bottom: 0.9375rem;

}

.f_widget .f_list li a {
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
}

.f_widget .f_list li a:hover {
  color: #5e2ced;
}

.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: #5e2ced;
  text-align: center;
  font-size: 1.25rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}

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

.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;
}


/*#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*/


#logout-link {
  display: none;
  /* Initially hidden if no token */
  text-decoration: none;
  color: var(--logout-link-color);
  /* Change to match your theme */
  position: relative;
  /* Ensures consistent positioning */
  margin-top: 4px;
  /* Adjust spacing downwards */
}

/* Hover effect for better UI */
#logout-link:hover {
  text-decoration: underline;
  text-underline-offset: 15px;
  transform: scale(1.1);
  color: #acc8df;
  cursor: pointer;
}

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

.error-message {
  color: var(--error-message-color);
  font-size: 0.85em;
  margin-top: 5px;
}

/* Custom Modal styles */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: var(--modal-overlay-bg);
  z-index: 9999;
  pointer-events: auto;
}

.custom-modal.show {
  display: flex;
  /* Show and center modal */
}

.custom-modal-content {
  background-color: var(--modal-content-bg);
  border-radius: 8px;
  max-width: 300px;
  width: 90%;
  padding: 20px;
  position: relative;
  pointer-events: auto;
  z-index: 10000;
}

.custom-modal-header {
  background-color: var(--modal-header-bg);
  color: var(--modal-header-text-color);
  padding: 10px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-modal-body,
.custom-modal-footer {
  pointer-events: auto;
}

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

.custom-modal-footer .btn {
  padding: 6px 12px;
  font-size: 0.875rem;
  margin-top: 10px;
}

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

.close-btn:hover {
  color: var(--modal-close-hover-color);
}

.custom-modal-body {
  padding: 10px;
  font-size: 1rem;
  text-align: center;
  color: #000;
}

.custom-modal-header h5 {
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;

}

.hidden {
  display: none;
}

#countdown-timer {
  font-weight: bold;
  color: #e74c3c;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Phones (up to 600px) */
@media (max-width: 600px) {
  body {
    padding: 10px;
    align-items: flex-start;
  }

  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .logo-video {
    width: 100px;
    height: 70px;
  }

  .social-media-icons {
    margin: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-media-icons a {
    font-size: 0.9rem;
    margin: 5px;
  }
}

/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  body {
    padding: 20px;
    align-items: center;
  }

  header {
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-video {
    width: 120px;
    height: 80px;
  }

  .social-media-icons {
    gap: 10px;
  }

  .social-media-icons a {
    font-size: 1rem;
  }
}




/*NAV STYLING*/
/* Phones (up to 600px) */
@media (max-width: 600px) {
  /*#region NAV*/

    /* Prevent horizontal overflow for entire page */
    html,
    body {
        overflow-x: hidden !important;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding-top: 12px;
        /* space for logo/language */
        padding-bottom: 10px;
        top: 0;
        justify-content: center;
        /* center flex children */
    }

  nav {
  display: flex;
  justify-content: center;   /* Centers links horizontally */
  align-items: center;       /* Centers vertically */
  width: 100%;
  height: 70px;
  background: transparent;
  padding: 0;                /* Remove side padding */
  margin: 0 auto;            /* Center block horizontally */
  box-sizing: border-box;
  margin-top:-12px !important;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;                 /* Even spacing between links */
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.nav-links li a {
  color: whitesmoke;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  font-size: 0.955rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #acc8df;
  text-decoration: underline;
  text-underline-offset: 5px;
}

    .get-started {
        display: none;
    }

    /*#endregion NAV*/
}

/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  /*#region NAV*/

    /* Prevent horizontal overflow for entire page */
    html,
    body {
        overflow-x: hidden !important;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding-top: 12px;
        /* space for logo/language */
        padding-bottom: 10px;
        top: 0;
        justify-content: center;
        /* center flex children */
    }

    nav {
        flex-direction: row;
        justify-content: center;
        /* center nav items */
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .nav-center {
        flex: none;
        /* reset flex-grow */
        display: flex;
        justify-content: center;
        /* center links */
        width: auto;
    }

    .nav-links {
        flex-direction: row;
        justify-content: center;
        /* ensure horizontal layout */
        gap: 10px;
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        color: whitesmoke;
        font-family: 'Nunito', sans-serif;
        text-decoration: none;
        font-size: 0.885rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    nav ul {
        display: flex;
        justify-content: center;
        /* horizontal centering */
        padding: 0;
        margin: 0;
    }

    nav ul li {
        margin: 0;
    }

    .get-started {
        display: none;
    }

    /*#endregion NAV*/
}

/* Large screens (1025px and above) */
@media (min-width: 1025px) {
  nav {
    margin-left: -100px;
  }

  .nav-links,
  nav ul {
    flex-direction: row;
    gap: 15px;
  }

  nav ul li a {
    font-size: 0.877rem;
  }
}

/* Phones (up to 600px) */
@media (max-width: 600px) {
  .text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .help {
    width: 90%;
    height: auto;
    padding: 15px;
    margin-top: 50px;
    border-radius: 6px;
    background-position: center;
  }

  .country-select-wrapper {
    width: 100%;
  }

  .country-select input {
    width: 90%;
    font-size: 0.95rem;
    margin-top: 40px;
    padding: 8px;
  }

  .country-content {
    width: 95%;
    height: auto;
    margin-top: 30px;
    padding: 10px;
    font-size: 0.9rem;
  }
}


/*HELP MEDIA QUERY*/
/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .help {
    width: 95%;
    height: auto;
    padding: 20px;
    margin-top: 70px;
  }

  .country-select input {
    width: 80%;
    font-size: 1rem;
    margin-top: 50px;
  }

  .country-content {
    width: 90%;
    height: auto;
    font-size: 1rem;
  }
}

/* Large screens (1025px and above) */
@media (min-width: 1025px) {
  .help {
    width: 800px;
    height: 850px;
    margin-top: 100px;
  }

  .country-select input {
    width: 320px;
    font-size: 1rem;
    margin-top: 70px;
  }

  .country-content {
    width: 80%;
    height: 600px;
    font-size: 1rem;
  }
}


/*INFO MEDIA QUERY*/
/* Phones (up to 600px) */
@media (max-width: 600px) {
  .info {
    padding: 20px;
    margin-top: -30px;
    border-radius: 15px;
  }

  .info-content {
    width: 100%;
    padding: 0 10px;
  }

  .info-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .info-text:first-of-type {
    font-size: 1rem;
  }
}

/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .info {
    padding: 25px;
    margin-top: -45px;
    border-radius: 20px;
  }

  .info-content {
    width: 90%;
    padding: 0 15px;
  }

  .info-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .info-text:first-of-type {
    font-size: 1.1rem;
  }
}

/* Large screens (1025px and above) */
@media (min-width: 1025px) {
  .info {
    padding: 30px;
    margin-top: -60px;
    border-radius: 25px;
  }

  .info-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .info-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .info-text:first-of-type {
    font-size: 1.125rem;
  }
}

/*OUR TEAM MEDIA QUERY*/
/* Phones (up to 600px) */
@media (max-width: 600px) {
  .our-team-section {
    padding: 40px 15px;
    width: 100% !important;
  }

  .our-team-section h2 {
    font-size: 1.5rem;
  }

  .our-team-section p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .team-member {
    width: 100%;
    max-width: 180px;
  }

  .message-icon {
    width: 180px;
    height: 180px;
  }

  .profile-pic {
    width: 80px;
    height: 80px;
    top: -5px;
  }

  .team-member h4 {
    font-size: 0.95rem;
    margin-top: 30px;
  }

  .team-member p {
    font-size: 0.8rem;
  }

  .team-row {
    gap: 20px;
    margin-top: 30px !important;
    margin-bottom: 30px;
  }
}

/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .our-team-section {
    padding: 50px 20px;
    width: 90% !important;
  }

  .our-team-section h2 {
    font-size: 2rem;
  }

  .our-team-section p {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .team-member {
    width: 160px;
  }

  .message-icon {
    width: 220px;
    height: 220px;
  }

  .profile-pic {
    width: 90px;
    height: 90px;
    top: -8px;
  }

  .team-member h4 {
    font-size: 1rem;
    margin-top: 35px;
  }

  .team-member p {
    font-size: 0.85rem;
  }

  .team-row {
    gap: 30px;
    margin-top: 40px !important;
    margin-bottom: 35px;
  }
}

/* Large screens (1025px and up) */
@media (min-width: 1025px) {
  .our-team-section {
    padding: 60px 20px;
    width: 1200px !important;
    max-width: 1500px;
  }

  .our-team-section h2 {
    font-size: 2.25rem;
  }

  .our-team-section p {
    font-size: 1rem;
  }

  .team-member {
    width: 180px;
  }

  .message-icon {
    width: 250px;
    height: 250px;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
    top: -10px;
  }

  .team-member h4 {
    font-size: 1rem;
    margin-top: 40px;
  }

  .team-member p {
    font-size: 0.875rem;
  }

  .team-row {
    gap: 40px;
    margin-top: 50px !important;
    margin-bottom: 40px;
  }
}

/*OUR APP MEDIA QUERY*/
/* Phones (up to 600px) */
@media (max-width: 600px) {
  .our-app-section {
    padding: 40px 15px;
    margin-top: 25px;
  }

  .our-app-section h2 {
    font-size: 1.5rem;
  }

  .our-app-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .store-button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

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

/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .our-app-section {
    padding: 50px 20px;
    margin-top: 30px;
  }

  .our-app-section h2 {
    font-size: 2rem;
  }

  .our-app-section p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .store-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .store-button {
    padding: 12px 18px;
    font-size: 0.875rem;
  }

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

/* Desktops (1025px and up) */
@media (min-width: 1025px) {
  .our-app-section {
    padding: 60px 20px;
    margin-top: 35px;
  }

  .our-app-section h2 {
    font-size: 2.25rem;
  }

  .our-app-section p {
    font-size: 1rem;
  }

  .store-buttons {
    flex-direction: row;
    gap: 20px;
  }

  .store-button {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

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

/*CONTACT MEDIA QUERY*/
/* Phones (up to 600px) */
@media (max-width: 600px) {
  .contact-heading-container {
    width: 80%;
    max-width: 100%;
    padding: 10px;
  }

  .contact-heading {
    font-size: 1.5rem;
  }

  #contact {
    padding: 1rem;
    margin: 10px;
  }

  #contact form {
    height: auto;
  }

  #contact form input,
  #contact form textarea {
    padding: 0.5rem;
  }

  #contactForm button {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
  }

  .social-icon {
    font-size: 1.25rem;
    margin: 0.25rem;
  }

  .whatsapp-qr-code img {
    width: 90%;
    height: auto;
  }
   .country-content {
    z-index: 1001;
  }
}

/* Tablets (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .contact-heading-container {
    width: 50%;
    max-width: 100%;
    padding: 10px;
  }

  .contact-heading {
    font-size: 1.75rem;
  }

  #contact {
    padding: 1.5rem;
    margin: 10px;
  }

  #contact form {
    height: auto;
  }

  #contact form input,
  #contact form textarea {
    padding: 0.4rem;
  }

  #contactForm button {
    width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .social-icon {
    font-size: 1.4rem;
    margin: 0 0.75rem;
  }

  .whatsapp-qr-code img {
    width: 80%;
    height: auto;
  }

  .country-content {
    z-index: 1001;
  }
}

/* Desktops (1025px and up) */
@media (min-width: 1025px) {
  .contact-heading-container {
    width: 30%;
    max-width: 400px;
    padding: 5px;
  }

  .contact-heading {
    font-size: 2.125rem;
  }

  #contact {
    padding: 2rem;
    margin: 0 auto;
    max-width: 700px;
  }

  #contact form input,
  #contact form textarea {
    padding: 0.3rem;
  }

  #contactForm button {
    width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .social-icon {
    font-size: 1.5rem;
    margin: 0 0.5rem;
  }

  .whatsapp-qr-code img {
    width: 70%;
    height: auto;
  }
}

/*MEDIA QUERY FOR FOOTER*/
@media (max-width: 1024px) {
  .footer__top {
    padding: 50px;
    width: auto;
  }

  .footer__widget {
    width: 45%;
  }
}

@media (max-width: 768px) {
  
    /*#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: 100% !important;
        height: 50px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        background: #1f3a52 !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;
    }

    /* === 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: 480px) {
  .footer__bottom {
    font-size: 0.75rem;
    padding: 15px 10px;
  }
}

/*CUSTOM MODAL*/
/* Media Queries for Responsive Modal */
@media (max-width: 768px) {
  .custom-modal-content {
    width: 90%;
    /* Make modal take more horizontal space */
    max-width: none;
    /* Remove the max width restriction */
    padding: 10px;
  }

  .custom-modal-header h5,
  .custom-modal-header.bg-success h5 {
    font-size: 1.25rem;
    /* Slightly smaller title font on small screens */
  }

  .custom-modal-footer .btn {
    width: 100%;
    /* Make button take full width for easier tap */
    padding: 10px;
    font-size: 0.875rem;
  }

  .custom-modal-body {
    font-size: 0.9rem;
    /* Slightly smaller body text */
  }

  .custom-modal .close-btn {
    top: 5px;
    right: 5px;
    font-size: 1rem;
    width: 40px !important;
  }
   .country-content {
    z-index: 1001;
  }
}

@media (max-width: 480px) {
  .custom-modal-content {
    width: 95%;
    /* Almost full width on very small devices */
    padding: 8px;
  }

  .custom-modal-header h5,
  .custom-modal-header.bg-success h5 {
    font-size: 1.1rem;
  }

  .custom-modal-footer .btn {
    font-size: 0.8rem;
    padding: 8px;
  }

  .custom-modal-body {
    font-size: 0.85rem;
  }

  .custom-modal .close-btn {
    font-size: 0.9rem;
    width: 35px !important;
  }
   .country-content {
    z-index: 1001;
  }
}