.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.toggle-btn {
  width: 25px;
  height: 20px;
  display: none;
}

.toggle-btn span {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 2px;
  background-color: #2d76f9;
  margin-bottom: 8px;
}

.close-btn {
  position: relative;
  width: 25px;
  height: 25px;
  opacity: 0.9;
  display: none;
  /* Set to block or flex when visible */
  align-self: flex-start;
  margin-top: 20px;
  cursor: pointer;
}

.close-btn:hover {
  opacity: 1;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 120%;
  height: 2px;
  background-color: rgb(175, 10, 10);
  transform-origin: center;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.image_left {
  margin-left: -10%;
}

.image_right {
  margin-right: -10%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 90px;
}

.under_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Poppins";
  color: #212121;
  margin: 0;
}

.main_logo {
  display: inline-flex;
  align-items: center;
}

.logo_text {
  margin-left: 10px;
}

/* header {
  position: fixed; /* so it's always on top of other divs
  width: 100%;
  top: 0;
  z-index: 10;
  background-color: rgb(253, 253, 253);
  box-shadow: 0px 0px 25px 5px rgba(204, 204, 204, 0.466);
} */



#mainHeader.scrolled {
  background-color: rgba(255,
      255,
      255,
      0.95);
  /* Light background when scrolled */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  backdrop-filter: blur(10px);
  /* Optional for added polish */
}

.leftpart {
  display: flex;
  margin: 20px 0px;
  align-items: center;
}

nav {
  flex-direction: row;
}

.nav_list {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav_li {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-left: 50px;
  max-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.nav_li:hover {
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #2d76f9;
}

.about_us_button_text {
  border: 1.5px solid #2d76f9;
  border-radius: 50px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #2d76f9;
  width: 175px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* → Smooth entry & exit */
}

.about_us_button_text:hover {
  background-color: #2d76f9;
  color: #ffffff;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

a:active {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #2d76f9;
}

/*---------------------*/

.heroside {
  display: flex;
  justify-content: space-between;
  height: 100vh;
}

h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 80px;
  /* or 133% */
  color: #212121;
}

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  color: #747474;
}

.hero_leftside {
  width: 50%;
  margin-top: 15vh;
  padding-right: 50px;
}

.download_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 75px;
  background: #2d76f9;
  border-radius: 1500px;
  margin-top: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* → Added here */
}

.download_button:hover {
  background-color: #1d5edb;
  transform: scale(1.05);
  cursor: pointer;
}

.p_button {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height */
  color: #ffffff;
}

.hero_rightside {
  position: relative;
  overflow: hidden;
  margin-right: -110px;
  width: 60%;
  height: 95%;
  padding-top: 20px;
  background: #eef4ff;
  border-radius: 0px 0px 0px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -8px 5px 50px 1px rgba(124, 122, 122, 0.315);
}

.ellipse1 {
  position: absolute;
  top: 0;
  left: 0;
}

.ellipse2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.phone_picture {
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
  /* Shadow moves with float */
}


/******* Features ********/

.features {
  display: flex;
  flex-direction: row;
  margin-top: 150px;
  align-items: center;
  justify-content: center;
  height: 250px;
}

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #212121;
}

.icon_b {
  background: #eef4ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification,
.better_deadline,
.manage_task {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.advantages {
  display: flex;
  flex-direction: column;
}

.why {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 150px;
}

.why2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 150px;
}

.why1_images {
  position: relative;
  z-index: -2;
  max-width: 50%;
  background: #eef4ff;
  border-radius: 0px 100px 100px 0px;
  box-shadow: 10px 5px 50px 1px rgba(124, 122, 122, 0.527);
  overflow: hidden;
}

.phone_picture {
  z-index: 1;
  scale: 0.9;
}

.phones_pic1 {
  width: 100%;
  object-fit: cover;
  border-radius: 0px 100px 100px 0px;
  margin-bottom: -7px;
}

.ellipse8 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 2px;
  border-radius: 0px 100px 100px 0px;
}

.ellipse7 {
  position: absolute;
  z-index: -1;
  max-width: 100%;
  bottom: 0;
  left: 0;
}

.why_text {
  max-width: 50%;
}

h2 {
  font-weight: 600;
  font-size: 36px;

  /* or 181% */
  color: #212121;
}

.why2_images {
  position: relative;
  z-index: -2;
  max-width: 50%;
  background: #eef4ff;
  border-radius: 100px 0px 0px 100px;
  box-shadow: -10px 5px 50px 1px rgba(124, 122, 122, 0.527);
  overflow: hidden;
}

.phones_pic2 {
  width: 100%;
  object-fit: cover;
  border-radius: 0px 0px 100px 100px;
  margin-bottom: -8px;
}

.ellipse9 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.ellipse10 {
  position: absolute;
  z-index: -1;
  top: 0;
  border-radius: 100px 0px 0 0;
}

/*user paging*/

.user_paging {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 150px auto;
  max-width: 100%;
  background: #2d76f9;
  border-radius: 50px;
  padding: 100px 200px;
  max-height: 500px;
  overflow: hidden;
}

.inside_user_paging {
  display: flex;
  flex-direction: column;
  padding: 0px;
  z-index: 1;
}

.h_paging {
  font-weight: 600;
  font-size: 36px;
  line-height: 65px;
  margin: 0px;
  text-align: center;
  color: #ffffff;
}

.paging_buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 550px;
  margin: 70px auto 0px auto;
}

.paging_download_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 75px;
  background: #ffffff;
  border-radius: 1500px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.p_paging_download_button {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #2d76f9;
}

.paging_download_button:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.paging_aboutapp_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 75px;
  background: #2d76f9;
  border: 1.5px solid #ffffff;
  border-radius: 1500px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.paging_aboutapp_button:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.ellipse13 {
  position: absolute;
  top: 0;
  right: 0;
}

.ellipse14 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.ellipse11 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.ellipse12 {
  position: absolute;
  top: 0;
  left: 0;
}

/*testimonial*/
#testimonialText {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 450px;
  margin-bottom: 150px;
}

.testimonial_images {
  max-width: 50%;
  background: #eef4ff;
  border-radius: 0px 100px 100px 0px;
  box-shadow: 10px 5px 50px 1px rgba(124, 122, 122, 0.527);
}

.testimonial_image {
  max-width: 100%;
  object-fit: cover;
}

.testimonial_text {
  max-width: 50%;
}

.profile_pic {
  width: 75px;
  height: 75px;
}

.profile {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.profile_text {
  margin-left: 31px;
}

.profile_p {
  font-size: 14px;
  line-height: 21px;
}

.testimonial_p {
  font-size: 18px;
  line-height: 36px;
  color: #212121;
}

/* footer */

footer {
  box-shadow: 0px -3px 25px 5px rgba(204, 204, 204, 0.466);
}

.under_footer {
  display: flex;
  flex-direction: row;
  margin-top: 75px;
  justify-content: center;
  padding: 75px;
}

.footer_1 {
  display: flex;
  flex-direction: column;
}

.h_logo_footer {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
}

.logo_footer {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.img_logo_footer {
  margin-right: 10px;
}

.me_logo {
  color: #2d76f9;
}

.footer_2 {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.footer_22 {
  display: flex;
  flex-direction: row;
  width: 60%;
}

.footer_ul {
  color: #747474;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
}

ul {
  list-style: none;
  text-wrap: nowrap;
}

.footer_ul li::before {
  content: "\2022";
  color: #2d76f9;
  font-weight: normal;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
}

.h_footer {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  margin-top: 83px;
}

.footer_4 {
  padding: 0 40px;
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 188px;
}

.social img {
  transition: transform 0.3s ease;
  /* Smooth scaling */
}

.social img:hover {
  transform: scale(1.5);
  cursor: pointer;
}


/* Animation Classes */

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for child elements if needed */
.stagger-delay-1 {
  transition-delay: 0.1s;
}

.stagger-delay-2 {
  transition-delay: 0.2s;
}

.stagger-delay-3 {
  transition-delay: 0.3s;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* Feature Cards Hover Effect */
.better_deadline,
.manage_task,
.notification {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  /* Check if this fits design, smooths hover */
}

.better_deadline:hover,
.manage_task:hover,
.notification:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  /* Optional: ensures shadow visibility if transparent */
}

/* Enhancing existing Hover Effects */
.nav_li:hover {
  transform: translateY(-2px);
}


nav .menubar i {
  color: white;
  font-size: 22px;
}

/* testimonial */
.arrows a {
  cursor: pointer;
}

.arrows a:hover {
  transform: scale(1.05);
}

.testimonial-content {
  position: relative;
  min-height: 220px;
  /* Prevent layout shift */
}

.fade-in-right {
  animation: fadeInRight 0.4s ease-in-out;
}

.fade-in-left {
  animation: fadeInLeft 0.4s ease-in-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateY(-30px) translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateY(-30px) translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
}

.arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.profile,
.testimonial_p {
  margin-bottom: 20px;
}

.testimonial_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /* Stretch to fix button jump */
}

@media (min-height: 1200px) {
  .heroside {
    height: 1100px;
  }
}

@media (max-width: 1200px) {
  body {
    width: 100%;
  }

  .heroside {
    flex-direction: column;
    height: auto;
  }

  .hero_rightside {
    position: relative;
    margin-top: 100px;
    margin-left: -60px;
    width: 120%;
    height: inherit;
    padding: 100px 0px;
    border-radius: 0px 0px 0px 0px;
  }

  .hero_leftside {
    width: 80%;
  }

  /* .hero_leftside {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  } */

  .container {
    padding: 0 60px;
  }
}

@media (max-width: 915px) {
  .about_us_button_text {
    display: none;
  }

  .leftpart {
    display: flex;
    flex: 1;
    justify-content: space-between;
  }

  .container {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .toggle-btn {
    display: block;
    z-index: 1001;
    /* Ensure above nav if needed, though close button is primary */
  }

  .toggle-btn span {
    height: 2px;
    margin-bottom: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    /* Fixed to viewport */
    top: 0;
    right: 0;
    bottom: 0;
    /* Full height */
    width: 70%;
    max-width: 300px;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    /* Shadow to left */
    padding: 80px 20px 20px;
    /* Top padding for close button space */
    border-radius: 20px 0 0 20px;

    /* Animation Initial State */
    opacity: 1;
    /* Opacity less relevant for slide-in, but keep 1 */
    visibility: hidden;
    transform: translateX(100%);
    /* Off-screen right */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 1000;
  }

  /* Close button positioning inside or relative to nav */
  .close-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1002;
  }

  .nav_list {
    flex-direction: column;
    position: relative;
    padding: 0px;
    align-items: center;
    width: 100%;
  }

  .nav_li {
    margin: 0;
    min-width: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  nav ul li {
    padding: 15px 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* The .show class is toggled by JS on the nav element */
  nav.show {
    visibility: visible;
    transform: translateX(0);
    /* Slide in */
    display: flex;
  }

  /* Specific override if script toggles display:block/none on other elements with .show */
  /* We need to ensure we don't break logic if .show is used elsewhere differently */

  /* Restore generic .show for other elements like close button */
  .show {
    display: block;
  }

  .hide {
    display: none;
  }

  .logo_start {
    justify-self: flex-start;
    align-self: flex-start;
  }

  .expand {
    height: 100vh;
    position: relative;
  }

  h1 {
    line-height: inherit;
  }

  .about_us_button_text {
    display: none;
  }

  .container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 32px;
    overflow: hidden;
  }

  .leftpart {
    display: flex;
    flex: 1;
    justify-content: space-between;
  }

  .heroside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero_leftside {
    width: 100%;
  }

  .hero_rightside {
    padding: 100px 0px;
    border-radius: 0px 0px 0px 0px;
    margin: 100px -32px;
  }

  .features {
    display: flex;
    flex-direction: column;
    height: inherit;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .notification,
  .better_deadline,
  .manage_task {
    max-width: 100%;
    max-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
  }

  h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #212121;
    margin-top: 50px;
  }

  .why {
    display: flex;
    flex-direction: column;
    margin: 50px -65px 50px -20px;
  }

  .why1_images {
    z-index: -2;
    max-width: 100%;
    border-radius: 0px 0px 0px 0px;
    width: 768px;
    padding: 0px;
  }

  .why_text {
    padding-top: 60px;
    max-width: 70%;
  }

  .why2 {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 50px;
    margin: 50px -65px 50px -35px;
  }

  .why2_images {
    min-width: 100%;
    border-radius: 0px 0px 0px 0px;
    margin: 0 -40px;
  }

  .phones_pic2 {
    border-radius: 0px;
  }

  .user_paging {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto;
    max-width: 100%;
    background: #2d76f9;
    border-radius: 50px;
    padding: 50px 35px;
  }

  .paging_buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 550px;
    margin: 50px auto 0px auto;
  }

  .paging_aboutapp_button {
    margin-top: 25px;
  }

  .h_paging {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
  }

  .testimonial {
    flex-direction: column-reverse;
    height: 600px;
    margin-bottom: 50px;
  }

  .testimonial_text {
    max-width: 80%;
  }

  .arrows {
    margin: 50px auto;
  }

  .testimonial_images {
    display: none;
  }

  .under_footer {
    display: flex;
    flex-direction: column;
  }

  .footer_22 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: -50px auto;
  }

  .footer_2 {
    padding: 0px;
  }

  .footer_4 {
    padding: 0px 0px 106px 0px;
  }

  .footer_1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo_footer img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 586px) {
  .footer_1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo_footer img {
    width: 50px;
    height: 50px;
  }

  .logo_footer {
    font-size: 20px;
  }

  .why_text {
    align-self: start;
  }

  .why_text h2 {
    font-size: 30px;
  }

  .why2 .why_text {
    padding-left: 15px;
  }

  .under_header {
    padding: 0 20px;
  }

  h1 {
    font-weight: 600;
    font-size: 40px;
    justify-self: center;
  }

  p {
    font-weight: 400;
    font-size: 15px;
    line-height: 36px;
    color: #747474;
  }

  .download_button {
    justify-self: center;
    width: 200px;
    height: 55px;
  }

  .download_button p {
    font-size: 16px;
  }

  .phone_picture {
    width: 100%;
  }

  .h_paging {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 425px) {
  .features {
    align-items: center;
    text-align: center;
  }

  .paging_download_button,
  .paging_aboutapp_button {
    width: 120px;
    height: 45px;
  }

  .paging_download_button p,
  .paging_aboutapp_button p {
    font-size: 10px;
  }

  .paging_buttons {
    margin: 20px auto;
  }

  .paging_aboutapp_button {
    margin-top: 10px;
  }

  .h_paging {
    font-weight: 600;
    font-size: 15px;
    line-height: 36px;
    max-width: 276px;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .container {
    overflow: hidden;
  }
}

/* Global Smart Sticky Header Styles */
#mainHeader {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.header-hidden {
  transform: translateY(-100%);
}

/* Pop-In Animation for User Paging Background */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  70% {
    opacity: 1;
    transform: scale(1.05);
    /* Scale bigger */
  }

  100% {
    opacity: 1;
    transform: scale(1);
    /* Return to normal */
  }
}

.user_paging.active .pop-in-bg {
  animation: popIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Add staggered delays for the background items */
.user_paging.active .pop-in-bg:nth-child(1) {
  animation-delay: 0.1s;
}

.user_paging.active .pop-in-bg:nth-child(2) {
  animation-delay: 0.2s;
}

.user_paging.active .pop-in-bg:nth-child(3) {
  animation-delay: 0.3s;
}

.user_paging.active .pop-in-bg:nth-child(4) {
  animation-delay: 0.4s;
}

/* Pulse Animation for Hero Images */
@keyframes scalePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    /* Grow slightly */
  }

  100% {
    transform: scale(1);
  }
}

.pulse-anim {
  animation: scalePulse 3s ease-in-out infinite;
}