/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}


.hero-container {
  padding: 0 80px;
  overflow: hidden;
}
 
/* Enhanced Header Styles */
.header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: .5px solid rgba(228, 228, 228);
  transition: all 0.3s ease;
}
.header-container{
  padding: 0 80px;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  height: 84px;
  position: relative;
}
/* Enhanced Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-left: 0%;
}
.logo:hover {
  transform: scale(1.02);
}
@media (max-width:1024px) {
  .logo{
    height: 106px;
    width: 28px;
  }
  
}
/* Enhanced Navigation Styles */
.nav {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 

}
.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0; 
}
/* Active state for both desktop and mobile */
.nav-link.active,
.mobile-slide-menu .nav-link.active {
  color: #0d0d0e;
  font-weight: 500;
}
/* Optional: Add an underline indicator */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #777777;
  transition: all 0.3s ease;
}
.nav-link {
  text-decoration: none;
  color: #777777;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 8px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 6px 0;
  background: transparent;
  
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.25px;
  background: #777777;
  transition: width 0.3s ease;
}
.nav-link:hover::after{
  width: 100%;
}
.nav-link:hover,
/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn-login {
  text-decoration: none;
  color: #1e293b;
  font-weight: 400;
  font-size: 17px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Inter";
}
.btn-login:hover {
  color: #0066ff;
}
.button-primary {
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
  line-height: 28px;
}
.button-primary:hover {
  background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}
.button-primary-small {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}
.button-primary-small:hover {
  background: #006DE3;
  font-weight: 500;
  font-size: 17px;
}
/* Products Dropdown */
.dropdown {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding-bottom: 8px; 
  padding-top: 8px;
}

.dropdown-arrow {
  color: #64748b;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #1e293b;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; 
  left: 0;
  background: white;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  overflow: hidden; /* Ensure children respect border-radius */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 16px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #777;
  display: block;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: #E7F2FF;
  color: #14142B;
  position: relative;
}

.dropdown-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #007BFF; /* blue bar */
}


/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0;
}

.mobile-menu-btn:hover {
  background: rgba(0, 125, 209, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #475569;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main {
  padding-top: 70px;
  height: auto;
  position: relative;

}
.hero-img-responsive{
  margin-top: 60px;
  display: none;
}
@media (max-width: 1024px) {
.main{
  height: auto;
}
.hero-images{
  align-self: center;
}
}
@media (max-width: 1024px) {
  .hero-images {
    margin: 0 auto;
    transform: translateX(-50%);
    position: relative;
  }
  .hero-images{
  align-self: center;
}
}

.hero-section {
  display: grid;
  align-items: center;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
}



.hero-title {
  font-family: "Inter";
  font-weight:550;
  font-size: 60px;
  line-height: 75px;
  letter-spacing: -0.02em;
  color: #1e1e1e;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-title-mask {
  overflow: hidden;
  height: auto;
}
.hero-title-animate {
  opacity: 0;
  transform: translateY(100%);
}
.hero-title-animate.hero-title-animated {
  opacity: 1;
  animation: heroTitleRevealSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroTitleRevealSpring {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px); /* slight overshoot */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  20% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-description {
  font-family: "Inter";
  font-weight: 300;
  font-size: 22px;
  line-height: 30px;
  color: #777777;
  margin-bottom: 54px;
  max-width: 500px;
}
.hero-description-animate {
  opacity: 0;
  transform: translateY(14px);
}
.hero-description-animate.hero-description-animated {
  opacity: 1;
  animation: heroDescriptionSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroDescriptionSpring {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px); /* slight overshoot */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {

.hero-title{
  font-size: 42px;
line-height: 52px;
letter-spacing: -1.68px;
  margin-bottom: 16px;
}
.hero-description{
font-size: 18px;
line-height: 26px; 
letter-spacing: -0.36px;
  margin-bottom: 28px;
}

}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-buttons-animate {
  opacity: 0;
  transform: translateY(58px);
}
.hero-buttons-animate.hero-buttons-animated {
  opacity: 1;
  animation: heroButtonsSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroButtonsSpring {
  0% {
    opacity: 0;
    transform: translateY(58px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px); /* slight overshoot */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.btn-secondary {
  background: #ffffff;
  color: #1e1e1e;
  border: 1px solid #888888;
  padding: 15px 27px;
  border-radius: 8px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  /* border-color: #1e1e1e; */
  box-shadow: inset 0 0 0 2px #1e1e1e;
  /* border-width: 2px; */
  color: #1e1e1e;
  font-weight: 700;
  /* box-shadow: 0px 4px 8px rgba(16, 24, 40, 0.1); */
}




/* Hero Images Grid */
.hero-images {
  position: relative;
  width: 670px;
  height: 820px;
}

 .grid img {
  padding-top: 5rem;
      border-radius: 12px;
      position: absolute;
      transition: all 0.8s ease-in-out;
    }

    /* Frame A */
    .pos1a { top:90px; left: 70px; }
    .pos2a { top: 0px; left:360px; }
    .pos3a { top: 290px; left: 420px; }
    .pos4a { top: 290px; left: 190px; }
    .pos5a { top: 290px; left: 0px; }

    /* Frame B */
    .pos1b { top: 90px; left: 320px; }
    .pos2b { top: 290px; left: 500px; }
    .pos3b { top: 290px; left: 230px; }
    .pos4b { top: 290px; left: 0px; }
    .pos5b { top: 80px; left: 130px; }

    /* Frame C */
    .pos1c { top: 330px; left: 480px; }
    .pos2c { top: 330px; left: 240px; }
    .pos3c { top: 330px; left: -30px; }
    .pos4c { top: 20px; left: 170px; }
    .pos5c { top: 120px; left: 400px; }

    /* Frame D */

    .pos1d { top: 330px; left: 245px; }
    .pos2d{ top: 330px; left: 0px; }
    .pos3d { top: 160px; left: 120px; }
    .pos4d { top: 20px; left: 395px; }
    .pos5d { top: 330px; left: 540px; }

    /* Frame E */
    .pos1e { top: 330px; left: 0px; }
    .pos2e{ top: 40px; left: 90px; }
    .pos3e { top: 160px; left: 335px; }
    .pos4e { top: 330px; left: 490px; }
    .pos5e { top: 330px; left: 295px; }


    @media (max-width:1024px) {

    .hero-container{
      padding: 60px 20px;
    }
     .hero-section { 
     display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; 
    
  }
  .hero-section
  .button-primary{
    min-height: 50px;
    font-size: 15px;
    padding: 0 16px;
    line-height: 28px;

  }
    .hero-section
  .btn-secondary{
    min-height: 50px;
   padding: 0 12px;
    gap: 6px;
    line-height: 28px;
    font-size: 15px;
  }
  .btn-secondary:hover {
  font-weight: 500;

}
.hero-buttons {
  gap: 12px;
}
.play-icon-img{
  height: 18px;
  width: 18px;
}
.hero-images{
  display: none;
}
.hero-img-responsive{
  display: block;
  width: 100%;
  height: auto;
}

 }
 

.hero-images-animate {
  opacity: 0;
  transform: translateX(100vw);
}
.hero-images-animate.hero-images-animated {
  opacity: 1;
  animation: heroImagesSlideIn 0.4s ease-in forwards;
}
.hero-img-responsive-animate {
  opacity: 0;
  transform: translateX(100vw);
}
.hero-img-responsive.hero-img-responsive{
  opacity: 1;
  animation: heroImagesSlideIn 0.4s ease-in forwards;
}

@keyframes heroImagesSlideIn {
  0% {
    opacity: 1;
    transform: translateX(60vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Hamburger Button Styles */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10001;
  margin-top: 10px;
  transform: scale(.90); /* Reduced overall size */
  transform-origin: top;
}

.hamburger .line {
  height: 3px;
  background-color: #2C2C44;
  border-radius: 6px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Optional layout wrapper if needed */
.ham-menu-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Line widths */
.hamburger span:nth-child(1) { width: 60%; }
.hamburger span:nth-child(2) { width: 85%; }
.hamburger span:nth-child(3) { width: 60%; }

/* Checked (X transformation) */
#menuToggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
  width: 100%;
}

#menuToggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

#menuToggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
  width: 100%;
}


/* Slide Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: white;
  padding: 100px 40px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
}

.menu-auth-buttons{
  display: flex;
  gap: 2rem;
  align-items: center;
}
.menu-auth-buttons .btn-login{
  color: #1E1E1E;
}

/* Slide menu when checkbox is checked */
#menuToggle:checked ~ .mobile-slide-menu {
  right: 0;
}

#menuToggle:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* DARK OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: 0.4s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* .mobile-slide-menu.active {
  right: 0;
} */

.mobile-slide-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-slide-menu li {
  margin-bottom: 2.3rem;
}

.mobile-slide-menu a {
  text-decoration: none;
  color: #777777;
  font-size: 18px;
}

.button-primary-small-ham {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small-ham:hover {
  background: #006DE3;
  font-weight: 500;
}

/* Responsive Hamburger*/
@media (max-width: 1024px) {
  .hamburger {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 0px;
  }
  .nav {
    display: none !important;
  }

  .auth-buttons{
    display: none !important;
  }
  .header-container {
    padding: 0 35px;
  }

}


/* Hover effects for interactive elements */
.btn-primary,
.btn-secondary,
.btn-signup {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-signup:hover::before {
  left: 100%;
}

.frame-gallery-section {
  background: #007bff;
  overflow: hidden;
  height: 200px;
  padding: 36px 0px 36px 0px;
  position: relative;
  margin: 0;
}

.frame-gallery-container {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  align-items: flex-start;
  box-sizing: border-box;
}

.trusted-by-label {
  color: #fff;
  font-family: "Inter";
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 24px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-left: 0; 
  align-self: center;



}

.frame-gallery-scroll {
  display: flex;
  gap: 100px;
  align-items: center;
  overflow-x: auto;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  background: transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

.frame-gallery-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.frame-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: transparent;
  padding: 0 8px;
  transition: transform 0.1s;
}

.frame-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .frame-gallery-section {
    height: 146px;
  padding: 24px 0px 24px 0px;

}
.frame-gallery-scroll {
  gap: 32px;
}
.trusted-by-label{
    padding-bottom: 28px;
}
.frame-logo{
  height: 40px;
  padding: 0;
}


}



/* Footer Styles */
.footer {
  background: #007BFF;
  padding: 54px 100px 64px 100px;
}
.copy-right{
  color: #F2F2F7;
  margin-top: 20px;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.powerd-by{
  color: #F2F2F7;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-socials {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.footer-title {
  color:  #F2F2F7;
font-family: "Inter";
font-size: 20px;

font-weight: 600;
line-height: 24px; 

}
.footer-links a {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: #F4F4F4;
 font-family: "Inter";
 text-decoration: none;
 font-size: 16px;
 font-weight: 300;
}
.footer-links a:hover {
  color: #ffffff; 
  font-weight: 400;

}
.footer-col ul li a:hover {
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 1024px) {
  .footer {
    padding: 80px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-col {
    width: 100%;
  }

  .footer-logo {
    margin-top: 0;
  }

  .footer-socials {
    margin-top: 16px;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .copy-right {
    font-size: 14px;
    margin-top: 24px;
    line-height: 24px;
  }
}







/* FAQ Section - Updated for Figma UI */
.faq-section {
  background: #F3F3F3;
  padding: 100px 140px;

}

.faq-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}




.faq-list {
  margin-top: 46px;
  margin-left: 140px;
  margin-right: 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
   border-radius: 8px;
border: 1px solid #E1E1E1;

background: #FFF;
}

.faq-item.active {
border-radius: 8px;
border: 1px solid #007BFF;
background: #EFF8FF;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ✨ align to top */
  padding: 24px;
  text-align: left;
  color: #1E1E1E;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border-radius: 8px;
}

.faq-label {
  display: flex;
  align-items: flex-start; /* ✨ top align number and text */
  gap: 4px;
}

.faq-number,
.faq-text {
  font-size: 20px;
  font-weight: 500;
  color: #1E1E1E;
  line-height: 24px;
}

.faq-toggle {
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  background: none;
  border: none;
  padding-top: 5px; 
  padding-left: 6px;
}





.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: none;
  color: #666;
text-align: left;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 26px; 

}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: -18px;
  margin-left: 44px;
  margin-bottom: 24px;
  margin-right: 46px;
}
@media (max-width: 1024px){
   .faq-section {
  padding: 100px 20px;
}
.faq-container{
  text-align: left;
}

.faq-list {
  margin-top: 60px;
  margin-left: 0px;
  margin-right: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-question{
  font-size: 18px;
  line-height: 24px;
}
.faq-answer{
   font-size: 18px;
  line-height: 24px; 
}
}


/* Business Tool Section */
.business-tool-section {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.business-tool-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-tool-label {
  text-align: center;
}




.business-tool-scroll {
  display: flex;
  gap: 100px;
  align-items: center;
  overflow-x: auto;
margin-top: 56px;
margin-bottom: 40px;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  background: transparent;
  justify-content: flex-start;
}



.business-tool-logo {
  width: auto;
  object-fit: contain;
  background: transparent;
}
.desktop-view {
  display: flex;
}
.mobile-view {
  display: none;
}

@media (max-width: 1024px) {
.business-tool-scroll{
  gap: 40px;
  margin-bottom: 0px;
}
.business-tool-logo{
  height: 40px;
}
  .business-tool-section{
    padding: 100px 20px;
  }
}




/* Unlock Potential Section - Figma Accurate */
.unlock-star-img{
  position: absolute;
  margin-top: -150px;
  margin-bottom: 20px;
}

/* 🟢 Parent wrapper must be relative */
.unlock-image-wrapper {
  position: relative;
  height: 600px;     
  width: 720px;
}

/* 🔵 Background shape */
.unlock-image-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 476px;
  min-width: 720px;
  border-radius: 179px 0px 0px 0px;
  background: #B8E0FF;
  z-index: 1;
  overflow: hidden;
}
.unlock-conent-wrapper{
 width: 80%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


/* 🔴 Image on top */
.image-clip-wrapper{
  width: 600px;
  height: 600px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 40%;
}

.unlock-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.image-clip-wrapper img {
  transform: scale(2); 
}

.image-clip-wrapper  img.scale-in {
  animation: scale 0.5s forwards;
  animation-delay: 1s;
}

@keyframes scale {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}






@media (max-width: 1024px) {
  .unlock-image-wrapper {
    width: 60%;
    height: 360px;
    margin-right: -40px;
    margin-left: auto; 
  }

  .image-clip-wrapper {
    width: 328px;
    height: 328px; /* 60% of 600px */
    position: absolute;
    right: -15px;
    top: 32px;
    border-top-left-radius: 40%;
  }

  .unlock-image-bg {
    height: 280px;
    min-width: 380px;
    border-radius: 80px 0 0 0;
    background: #B8E0FF;
  }

  .unlock-image {
    animation-play-state: paused;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .unlock-conent-wrapper {
    width: 90%;
  }
}




/* Testimonials Section */

.testimonials-section {
  background: #F5F5F5;
  padding: 100px 100px 100px 100px;
  width: 100%;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 50px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 24px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 110px;
 height: 500px;
}

.testimonial-card:hover {
box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.20);
  border-radius: 8px;
background: #FFF;
}

.testimonial-avatar-container {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-name {
  margin-top: 48px;
  color: #1E1E1E;

text-align: center;
font-family: "Inter";
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: 30px;
letter-spacing: -0.104px;
}

.testimonial-role {
 color: #007BFF;
text-align: center;
font-family: "Inter";
font-size: 20px;
margin-top: 4px;
font-style: normal;
font-weight: 300;
line-height: 30px;
letter-spacing: -0.08px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 24px;
  margin-top: 4px;
  justify-content: center;
}


.testimonial-text {
  color: #666;
text-align: center;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 140% */
letter-spacing: -0.08px;
flex-grow: 1;

 display: -webkit-box;
  -webkit-line-clamp: 8;   
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;


}

.testimonials-swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:1024px) {
  .testimonial-card{
    height: 440px;
  }
  .testimonial-role{
    font-size: 18px;
letter-spacing: -0.072px;
  }
.testimonials-section {
  padding: 100px 20px;
}
.testimonial-name{
  font-size: 24px;
}
.testimonial-text{
  font-size: 18px;
  line-height: 26px; /* 144.444% */
letter-spacing: -0.36px;
}
  
}


/* Global Presence Section */
.global-presence-section {
  background: #ffffff;
  width: 100%;
  overflow: hidden;
}

.global-presence-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.global-presence-inner-container{
  padding: 100px 100px 30px 100px;
}






.map-wrapper {
  position: relative;
  width: 100%;
  height: 784px;
  padding-bottom: 100px;
  overflow: hidden;
}


/* Pinned map image fade-in */
.map-pinned {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards 0.5s;
  position: relative;
  z-index: 1;
}
.country-grid {
  display: none;
}

/* Animations */
@keyframes slideUp {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-100%); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@media (max-width:1024px) {
  .global-presence-inner-container{
  padding: 100px 20px 0px 20px;
}
.global-presence-container {
  flex-direction: column;
  text-align: left;
}
.map-wrapper {
    display: none;
  }

.country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 26px 20px 150px 20px;
  }

  .country-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 16px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    background: #fff;
    font-family: "Inter";
    font-size: 24px;
    font-weight: 400;
  }

  .country-box img {
    height: 28px;
    width: auto;
    object-fit: contain;
  }

  /* If the last item is odd (no pair), make it span both columns */
  .country-box:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }

  
}


/* Blog Section */
.blog-section {
  background: #EFF8FF;
  width: 100%;
}

.blog-container {
  display: flex;
  padding: 100px 80px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-inner-container{
  padding-left: 60px;
  padding-right: 60px;
}






.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 16px;
  width: 100%;
  margin-bottom: 50px;
}

.blog-card {
  padding: 20px 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
   aspect-ratio: 1.7 / 1;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.5);
}



.blog-content {
  padding-top: 18px;

}

.blog-title {
color: #1E1E1E;
 font-family: "Inter";
 font-size: 22px;
 font-style: normal;
 font-weight: 500;
 line-height: 28px;
 letter-spacing: -0.44px;
}

.blog-excerpt {
overflow: hidden;
color: #777;
display: -webkit-box;
-webkit-line-clamp: 2;     
-webkit-box-orient: vertical;
text-overflow: ellipsis;
margin-top: 12px;
text-overflow: ellipsis;
font-family: "Inter";
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 20px; 
letter-spacing: -0.064px;
}

.blog-author {
  display: flex;
   margin-top: 24px;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
color: #1E1E1E;
font-family: "Inter";
font-size: 16px;
font-style: normal;
font-weight: 500;
margin-bottom: 4px;
line-height: normal;
letter-spacing: -0.064px;
}

.author-date {
  color: #777;
font-family: "Inter";
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: -0.052px;
}


.blog-cta {
  margin-top: 0px;
}


/* Responsive Design */
@media (max-width:1024px) {


  .blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }
   .blog-container{
      padding: 100px 20px;
  }
  .blog-inner-container{
      padding: 0;
  }
 
  
}


.pricing-section {
  background: #ffffff;
  padding: 100px 80px 100px 80px;
  width: 100%;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

}
.price-inner-container{
  padding-left: 80px;
  padding-right: 80px;
}



/* Billing Toggle */
.billing-toggle {
  display: flex;
  border-radius: 36px;
  border: 1px solid #007BFF;
  padding: 5px;
  margin-bottom: 40px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  font-family: "Inter" ;
}

.toggle-btn {
  padding: 10px 36px;
  border: none;
  background: transparent;
  color: #007BFF;
  border-radius: 36px;
  cursor: pointer;
  font-size: 20px;
 font-style: normal;
 font-weight: 500;
 line-height: 30px;

}

.toggle-btn.active {
  background: #0d8cff;
  color: white;

}

/* Fitway Pricing Table Styles */
/* Fitway Pricing Table Styles */
.fitway-table-container {
  width: 100%;
  background: white;
  overflow: hidden;
  border-radius: 8px;
  border: 1.5px solid #1E1E1E;
}

.fitway-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter";
}

.fitway-feature-header {
  vertical-align: top;
  text-align: left;
  color: #1E1E1E;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.4px;
  width: 25%;
  padding: 32px 32px;
}

.fitway-plan-header {
  text-align: center;
  letter-spacing: -0.4px;
  width: 18.75%;
}

.fitway-plan-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fitway-plan-name {
  padding: 32px 0px 16px 0px;
  color: #1E1E1E;
  font-family: Inter;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fitway-plan-price {
  color: #007BFF;
  text-align: center;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
}

.fitway-price-period {
  color: #1E1E1E;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.34px;
}

.fitway-get-started-btn {
  background: transparent;
  cursor: pointer;
  color: #007BFF;
  padding: 10px 16px;
  font-family: Inter;
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #007BFF;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.fitway-get-started-btn:hover {
  background: #007BFF;
  color: white;
  font-family: "Inter";
  font-weight: 500;
}

/* Table Body */
.fitway-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}

.fitway-table tbody tr:nth-child(odd) {
  background-color: #f3f3f3;
}

.fitway-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.fitway-feature-name {
  padding: 16px 24px;
  color: #1E1E1E;
  text-align: left;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}


/* Mobile styles */
@media (max-width: 1024px) {

  .pricing-section{
    padding: 100px 20px 100px 20px;
  }
  .price-inner-container{
    padding: 0;
  }
  /* Hide original table on mobile */
  .fitway-table-container {
    display: none;
  }

  /* Mobile plan container */
  .mobile-plan-view-container {
    display: block;
    border: 1.5px solid #1E1E1E;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
  }

  .toggle-btn {
    padding: 4px 30px;
    font-size: 15px;
}

  /* Current plan header */
  .current-plan-header {
    text-align: center;
  }

  .current-plan-name{
    padding: 32px 0px 16px 0px;
    color: #1E1E1E;
    font-family: Inter;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .current-plan-price {
    color: #007BFF;
    text-align: center;
    font-family: "Inter";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.48px;
  }

  .current-plan-btn{
    background: transparent;
    cursor: pointer;
    color: #007BFF;
    padding: 10px 16px;
    font-family: Inter;
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 28px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid #007BFF;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  }

  .current-plan-btn:hover {
  background: #007BFF;
  color: white;
  font-family: "Inter";
  font-weight: 500;
}

  /* Feature list */
  .mobile-feature-list {
    width: 100%;
  }

  .mobile-feature-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
    color: #1E1E1E;
    text-align: left;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
  }

  /* Alternate row colors */
  .mobile-feature-row:nth-child(odd) {
    background-color: #F3F3F3;
  }
  .mobile-feature-row:nth-child(even) {
    background-color: #FFFFFF;
  }

  .mobile-feature-list > .mobile-feature-row:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: none;
  }

  /* Feature status icon */
  .feature-status {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  /* Feature name */
  .feature-name {
    font-size: 16px;
    color: #1E1E1E;
  }

  /* External pagination */
  .external-plan-pagination {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }

  .plan-dot {
    border-radius: 8px;
    background-color: rgba(184, 224, 255, 0.50);
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .plan-dot.active {
    background-color: #007BFF;
    width: 28px;
    height: 12px;
    border-radius: 8px;
  }
}

/* Desktop styles */
@media (min-width: 961px) {
  .mobile-plan-view-container,
  .external-plan-pagination {
    display: none !important;
  }
  .fitway-table-container {
    display: block !important;
  }
}


/* Contact Form Section */
.contact-form-section {
  background: #f5f5f5;
  padding: 100px 200px 100px 200px;
  width: 100%;
}

.contact-form-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.form-wrapper {
    background: #ffffff;
  width: 800px;
  margin-top: 16px;
  border-radius: 8px;
   padding: 50px 40px 50px 40px;
  overflow: hidden;
  border: 1.5px solid #1e1e1e;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  color: #1e1e1e;
  margin-bottom: 8px;
  text-align: left;
  font-family: "Inter" ;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #212121;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter" ;
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border: 1.5px solid #007BFF;
}



.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #212121;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter" ;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
  min-height: 100px;
}

.form-textarea:focus {
  outline: none;
  border-color: #0d8cff;
  box-shadow: 0 0 0 3px rgba(13, 140, 255, 0.1);
}

.form-textarea:hover {
  border-color: #0d0d0e;
}

.form-textarea::placeholder {
  color: #94a3b8;
  font-style: italic;
}

.submit-btn {
  color: #ffffff;
  font-weight: 400;
  width: 100%;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
}


.submit-btn:hover {
 background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width:1024px) {
  .submit-btn{
    line-height: 20px;
  }
  
}

/* Form Validation Styles */
.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success,
.form-textarea.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-form-section{
    padding: 0;
  }
  .contact-form-container{
    padding: 100px 20px;
  }
  .form-wrapper{
    width: 100%;
    padding: 24px;
  }
  .submit-btn{
    margin-top: 4px;
  }
}

/* Product Section */
.product-section {
  background: #ffffff;
  padding: 100px 80px 100px 80px;
  width: 100%;
  transition: 1s ease-in-out;
}

.product-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;

}
.content-container{
   /* padding: 0px 40px 16px 40px; */
   text-align: center;
}

.product-label {
  color: #0d8cff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: "Inter" ;
}

.product-heading {
  color: #1e1e1e;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 900px;
  font-family: "Inter" ;
}

.product-subtitle {
  color: #666666;
  font-size: 18px;
  max-width: 800px;
  margin-bottom: 50px;
  line-height: 1.6;
  font-family: "Inter" ;
}



.product-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #2c2c2c;
  border-radius: 8px 8px 0 0;
  padding: 20px 64px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0 auto;
  gap: 16px;
  justify-content: space-between;
}

.product-tab {
  background: transparent;
  color: #d6d6d6;
  border: none;
  border-radius: 0px;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter" ;
  white-space: nowrap;
}



.product-tab.active {
border-bottom: 3px solid #ffffff;
border-radius: 0px;
  color: #ffffff;
}

/* Product Content Container */
.product-content-container {
  width: 100%;
  border: 2px solid #2c2c2c;;
   border-radius: 0px 0px 8px 8px ;
  position: relative;
}

/* Product Content */
.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.product-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: none;  
  
}

.product-info {
  display: flex;
  height: 600px;
  margin-left: 50px;
  margin-left: 50px;
  padding-top: 50px;
  flex-direction: column;
}

.product-title {
  color: #1e1e1e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 44px;
  letter-spacing: -1.44px;
  font-family: "Inter" ;
}
.product-description {
 color: #777777;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Inter";
  letter-spacing: -0.08px;
  margin-bottom: 20px;
}


.highlight-blue {
  color: #007BFF;
   font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1.44px;
  font-family: "Inter" ;
}


.product-features {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-check {
  width: 24px;
  height: 18px;
  display: flex;
  margin-top: 4px;
  margin-right: 16px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007BFF;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 8px;
  line-height: 30px;
  letter-spacing: -0.08px;
  font-family: "Inter" ;
  align-self: flex-start;
}

.explore-btn:hover {
  color: #0b7ce8;
}

.product-image {
  display: flex;
  height: 100%;
  border: 2x;
  border-radius: 0px 0px 8px 0px;
  background-color: #f0f0f0;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img {
  width: 100%;
  height: auto;
}

.product-nav,
.product-content-container {
  width: 100%;
  box-sizing: border-box;
}

.product-content-container{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (max-width: 1024px){
  .product-content{
    display: flex !important;
    flex-direction: column-reverse;
    gap: 30px;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 2px solid #D9D9D9;
    border-radius: 8px;
  }
  .product-info{
    margin-left: 0px;
    padding: 20px 24px;
    height: fit-content;
  }
   .product-content-container {
    border-radius: 8px;
    border: none;
  }
  .product-section{
    padding: 100px 20px;
  }
  .product-nav {
    padding: 12px 16px;
    gap: 56px;
    display: none;
  }
  .content-container{
    padding: 0px 0px;
    margin-bottom: 60px;
  }
  .product-nav::-webkit-scrollbar {
    display: none;
  }
  .product-title{
    font-size: 34px;
  }
  .product-description{
font-size: 18px;
line-height: 26px; /* 144.444% */
letter-spacing: -0.36px;
  }
  .explore-btn{
    font-family: 18px;
    line-height: 30px;
    letter-spacing: -0.072px;
  }
  
}







/* Request Demo Section */

demo-container {
  height: 416px;
}





.sparkle-bottom-right {
  width: 71.199px;
height: 71.199px;
flex-shrink: 0;

}

/* Content Styling */
.demo-content {
  height: 416px;
  padding-top: 60px;
  padding: 60px 200px 60px 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.demo-content.request-demo-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.demo-content-mask {
  height: auto; 
  position: relative;
}


.request-demo-section {
  background: url('assets/svg_demo/RequestDemobg.webp') center center/cover no-repeat;
  height: 416px;
}
@media (max-width: 1024px) {
 
  .request-demo-section {
    background: url('assets/svg_demo/request_demo_bg_mob.webp') center center/cover no-repeat;
    height: 690px;
  }
  .demo-content{
    padding: 100px 20px;
  }

}





/* About FitWay Section */


.about-container {
  margin: 100px 0px;
  overflow: hidden;
}

.about-content {
  align-items: center;
  margin-left: 80px;
  display: flex;          
  flex-direction: row; 
  overflow: hidden;

}
.about-title-mask {
  overflow: hidden;
  height: auto;
}

.about-title-animate {
  opacity: 0;
  transform: translateY(100%);
}
.about-title-animate.about-title-animated {
  opacity: 1;
  animation: aboutTitleRevealSpring .5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes aboutTitleRevealSpring {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
 
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes aboutTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  20% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width:1024px) {
  .about-content {
      flex-direction: column; 
      margin-left: 0px;
      padding: 100px 20px;

      
  }
  .about-container {
  margin:  0px;
}
.unlock-conent-wrapper{
  width: 100%;
}
.unlock-star-img img{
  width: 50%;


}
.unlock-star-img{
    margin-top: -61px;
}


}
/* Image Content */
.about-image {
  display: flex;
  height: 500px;
  width: 550px;
  right: 42px;
  margin-right: 0px;
  position: relative;
  top: 100px;
  overflow: hidden;
}

.about-image img {
  transform: scale(2); 
}

.about-image img.scale-in {
  animation: scale 0.5s forwards;
  animation-delay: 1s;
}

@keyframes scale {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}

.about-image-bg {
  min-height: 600px;
  min-width: 592px;
  margin-left: 100px;
  display: flex;
 border-radius: 160px 0px 0px 0px;
background: linear-gradient(180deg, #EFF8FF 0%, #FFF 100%);
backdrop-filter: blur(2px);
}
.about-image-bg-animate {
  opacity: 0;
  transform: translateY(40px); 
  transition: opacity 0.6s, transform 0.6s;
}
.about-image-bg-animate.about-image-bg-animated {
  opacity: 1;
  transform: none;
  animation: aboutImageSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes aboutImageSlideIn {
  0% {
    opacity: 1;
    transform: translateX(60vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
.about-image-bg {
    min-height: 332px;
    min-width: 330px;
    margin-right: -25px;
  }

  .about-image {
    height: 309px;
    width: 332px;
    top: 40px;
  }

  .about-content{
    gap: 60px;
    align-items: end;
  }

}

.blue-label {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #007BFF;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 12px;
  max-width: 0;
  opacity: 0;
}

@media (max-width: 1024px) {
  .blue-label {
      font-size: 20px;
    white-space: normal;
    max-width: 100%;
  }
}



/* Apply when scrolled into view */
.blue-label.typing {
  animation:
    fadeIn 0.3s ease forwards,
    typing 1.5s 0.3s forwards,
    blink 0.7s step-end infinite alternate;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes typing {
  to { max-width: 1000px; } /* Large enough to reveal full text */
}
@keyframes blink {
  50% { border-color: transparent; }
}


.black-heading {
  color: #1e1e1e;
  font-size: 48px;
  font-weight: 550;
  line-height: 56px;
  letter-spacing:-4%;
  font-family: "Inter";
  margin-bottom: 24px;
}



.grey-description {
  color: #777777;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Inter";
  letter-spacing: -0.08px;
  margin-bottom: 24px;
}
@media (max-width: 1024px){
  .black-heading{
   font-size: 42px;
   line-height: 52px;
   letter-spacing: -2.68px;
  }
  .grey-description{
    font-size: 18px;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
  }
}

.read-more-btn {
  display: inline-block;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border: 1px solid #888888;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Inter";
  letter-spacing: 0.5px;
  background: transparent;
  width: fit-content;
  align-items: center;
  padding: 16px 28px;
}

.read-more-btn:hover {
  background: #007BFF;
  color: #ffffff;
   font-weight: 500;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 30, 30, 0.15);
}

.read-more-btn:active {
  box-shadow: 0 2px 6px rgba(30, 30, 30, 0.15);
}
@media (max-width: 1024px){
  .read-more-btn{
      font-size: 15px;
        padding: 12px 18px;
  }
}
.calendy-iframe-wrapper {
  flex: 1; 
  overflow: hidden;
  display: flex;
  border-radius: inherit;
}

.calendy-iframe-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.calendy-modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem; 
}

.calendy-modal-content {
  width: 80%;
  height: 90%;
  padding-top: 44px;
  background: #fbfbfb;
  position: relative;
  border-radius: 8px;
}

.calendy-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-250px);
  }
}

#calendyDemoModal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#calendyDemoModal.fade-in {
  animation: modalFadeIn 0.3s ease-out forwards;
}

#calendyDemoModal.fade-out {
  animation: modalFadeOut 0.3s ease-in forwards;
}

@keyframes navbarFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes navbarFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (max-width: 1024px) {
  .calendy-modal-content {
    width: 100%;
    height: 70%;
    background: #ffffff;
  }

  .calendy-iframe-wrapper iframe {
    height: 500px;
  }
}



/*Animations */
.header-animate {
  opacity: 0;
  transform: translateY(69px);
}

.header-animate.header-animated {
  opacity: 1;
  animation: headerSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSpring {
  0% {
    opacity: 0;
    transform: translateY(69px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-content-mask {
  overflow: hidden;
  height: auto;
  position: relative;
}

.product-content-mask .black-heading,
.product-content-mask .grey-description {
  opacity: 0;
  transform: translateY(-100px); /* Top to bottom */
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

.product-content-mask.product-animate-in .black-heading,
.product-content-mask.product-animate-in .grey-description {
  opacity: 1;
  transform: translateY(0);
}

.product-section .product-table {
  opacity: 0;
  transition: opacity 0.2s ease-in, transform 0.2s ease-in;
}

.product-section.product-table-reveal .product-table {
  opacity: 1;
  transform: translateY(0);
}

.contact-content-mask {
  overflow: hidden;
  height: auto;
  position: relative;
}
.contact-content-mask .black-heading,
.contact-content-mask .grey-description {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}
.contact-content-mask.contact-animate-in .black-heading,
.contact-content-mask.contact-animate-in .grey-description {
  opacity: 1;
  transform: translateY(0);
}
.contact-form-section .form-wrapper {
  opacity: 0;
 transition: opacity 0.2s ease-in, transform 0.2s ease-in;
}
.contact-form-section.contact-form-reveal .form-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.pricing-content-mask {
  overflow: hidden;
  height: auto;
  position: relative;
}

.pricing-content-mask .black-heading,
.pricing-content-mask .grey-description,
.pricing-content-mask .billing-toggle {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

.pricing-content-mask.pricing-animate-in .black-heading,
.pricing-content-mask.pricing-animate-in .grey-description,
.pricing-content-mask.pricing-animate-in .billing-toggle {
  opacity: 1;
  transform: translateY(0);
}

/* Control billing toggle width inside mask */
.pricing-content-mask .billing-toggle {
  width: fit-content;
  max-width: 300px; 
  margin: 0px auto 40px auto; 
  display: flex;
  justify-content: center;
}

.pricing-section .fitway-table-container {
  opacity: 0;
  transition: opacity 0.2s ease-in, transform 0.2s ease-in;
}

.pricing-section.pricing-table-reveal .fitway-table-container {
  opacity: 1;
  transform: translateY(0);
}

/* Demo Poup */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem;
}

.contact-modal-content {
  background: #ffffff;
  position: relative;
  border-radius: 8px;
}

.contact-modal-top {
  display: flex;
  flex-direction: row;
  padding-bottom: 24px;
  border-bottom: 1px solid #E4E4E4;
}

.contact-model-title {
  color: #1E1E1E;
  font-family: "Inter";
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-left: 1rem;
  font-weight: 500;
}

.contact-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(250px); }
  to { opacity: 1; transform: translateY(0px); }
}

@keyframes modalFadeOut {
  from { opacity: 1; transform: translateY(0px); }
  to { opacity: 0; transform: translateY(-250px); }
}

#contactDemoModal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#contactDemoModal.fade-in {
  animation: modalFadeIn 0.3s ease-out forwards;
}

#contactDemoModal.fade-out {
  animation: modalFadeOut 0.3s ease-in forwards;
}

.contact-form-wrapper {
  background: #ffffff;
  width: 80vw;
  max-width: 750px;
  border-radius: 8px;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {

  .contact-form-wrapper {
    width: 100%;
    padding: 24px;
  }
}
.contact-modal
.form-group { margin-bottom: 20px; }

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: 100%;
}

.toast {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-left: 4px solid;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  max-width: 100%;
}

.toast-success {
  border-left-color: #10b981;
}

.toast-error {
  border-left-color: #ef4444;
}

.toast-show {
  opacity: 1;
  transform: translateX(0);
}

.toast-hide {
  opacity: 0;
  transform: translateX(100%);
}

.toast-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-success .toast-icon {
  color: #10b981;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-message {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: #6b7280;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .toast-content {
    padding: 14px 16px;
  }
  
  .toast-message {
    font-size: 13px;
  }
}

/* Animation for multiple toasts */
.toast:nth-child(1) { animation-delay: 0ms; }
.toast:nth-child(2) { animation-delay: 100ms; }
.toast:nth-child(3) { animation-delay: 200ms; }
.toast:nth-child(4) { animation-delay: 300ms; }
.toast:nth-child(5) { animation-delay: 400ms; }











