.authentication-main{
    margin-top: 300px;
}

body.home .header-logo,
body.home .header-mobile-logo {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Section layout */
#opening-animation-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  position: relative;
}

/* Viewport window for the vertical strip */
#logo-wrapper {
  /* overflow: hidden; */
  position: relative;
}

/* Text container - holds fixed text and number wrapper */
#text-container {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

/* Fixed text elements (A and strategy|) */
.fixed-text {
  display: inline-block;
  position: relative;
}

/* Number wrapper - contains the scrolling strip */
#number-wrapper {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 2.2ch; /* Width for 2 characters (01, 02, etc.) */
  text-align: center;
  height: 1em; /* Set initial height to prevent layout shift */
}

/* Vertical strip behavior - only for numbers */
#logo-strip {
  display: flex;
  flex-direction: column;
  visibility: visible; /* Show immediately, no FOUC */
  transform: translateY(0);
  transition: transform 350ms ease;   /* smooth step animation */
  will-change: transform;
}

/* Number text elements */
.number-text {
  display: block;
  text-align: center;
  line-height: 1;
  padding: 0;
  /* Use monospace for numbers to ensure consistent width */
  font-variant-numeric: tabular-nums;
}

/* Hide all numbers except the first one initially */
.number-text:not(:first-child) {
  visibility: hidden;
}

/* Show all numbers when animation starts */
#logo-strip.animation-started .number-text {
  visibility: visible;
}

span.icon.icon-icon-6.toggle-password {
  position: absolute;
  width: 20px;
  height: 20px;
  /* background: red; */
  right: 10px;
  top: 8px;
  background-image: url(../images/29.svg);
  background-size: 20px;
  filter: brightness(6) contrast(0.1);
  cursor: pointer;
}
span.icon.icon-icon-7.toggle-password {
  position: absolute;
  width: 20px;
  height: 20px;
  /* background: red; */
  right: 10px;
  top: 8px;
  background-image: url(../images/41.svg);
  background-size: 20px;
  cursor: pointer;
  filter: brightness(6) contrast(0.1);
}
.input_password{
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #text-container {
    font-size: 32px;
  }
  
  #number-wrapper {
    height: 1em;
  }
}

@media (max-width: 480px) {
  #text-container {
    font-size: 24px;
  }
  
  #number-wrapper {
    height: 1em;
  }
}

/* Accessibility: reduce motion users skip the animation */
@media (prefers-reduced-motion: reduce) {
  #opening-animation-section {
    display: none !important;
  }
  .elementor-widget-lqd_site_logo {
    opacity: 1 !important;
  }
}

/* Upgrade/Downgrade Plan Page Styles */

.upgrade-plan-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pricing-table-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 0 1rem;
}

.pricing-plan-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 500px;
}

.pricing-plan-card:hover:not(.current-plan) {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-plan-card.current-plan {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #1a1a1a 0%, #1f2a1f 100%);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.basic {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.plan-badge.recommended {
    background: #8B5CF6;
    color: white;
}

.current-plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.plan-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.plan-discount-text {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.plan-price {
    margin: 1.5rem 0;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-amount {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

.price-billing {
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.2;
    opacity: 0.8;
}

.price-original {
    color: #888;
    font-size: 1.2rem;
    text-decoration: line-through;
    font-weight: normal;
}

.plan-description {
    color: #aaa;
    margin-bottom: 1.5rem;
    min-height: 3rem;
    line-height: 1.6;
    flex-grow: 1;
}

.plan-separator {
    border: none;
    border-top: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.plan-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-perks li {
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.plan-perks li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
}

.upgrade-plan-form {
    margin-top: auto;
    padding-top: 1rem;
}

.upgrade-plan-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.upgrade-plan-button:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.upgrade-plan-button:active:not(.disabled) {
    transform: translateY(0);
}

.upgrade-plan-button.disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: transparent;
}

.button-arrow {
    font-size: 1.2rem;
    line-height: 1;
}
.price-amount{
  color: #aaabc2;
}
.plan-description{
    text-align: left;
    gap: 27px;
    font-size: 16px;
    font-weight: 600;
}


/* =========================== upgradde plan design =========================== */


span.price-original {
  font-size: 16px;
}



.upgrade-plan-container .plan-badge.basic {
  background: none;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 28px;
  top: 15px;
}

.plan-header{
    margin-bottom: 15px;
    margin-top: 17px;
}
h3.plan-name {
  font-size: 14px;
  font-family: 'Montserrat';
}

.upgrade-plan-container .plan-perks li{
    text-align: left;
    gap: 27px;
    font-size: 16px;
    font-weight: 600;
}

.upgrade-plan-container .plan-discount-text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  color: #aaabc2;
}

.upgrade-plan-container .plan-badge.recommended{
  background: #ffffff;
  color: #000000;
  font-size: 13px;
}
.upgrade-plan-container .plan-badge.recommended {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0px 10px 0px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  background: #FFFFFF;
  border-radius: 0px 13px 0px 13px;
}
.home_cards_design .pricing-plan-card{
  padding: 35px 30px 35px 30px;
  background: radial-gradient(circle at 50% -10%, #93A8C73B 0%, #34374B00 100%);
  border-radius: 11px 11px 11px 11px;
  box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.1803921568627451) inset;
}

.home_cards_design .pricing-plan-card:nth-child(2),
.home_cards_design .pricing-plan-card:nth-child(3),
.home_cards_design .pricing-plan-card.current-plan{
    background: radial-gradient(circle at 100% 29%, #985199A0 13.75%, #34374B00 100%);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #6449D180;
    border-radius: 11px 11px 11px 11px;
    box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.12) inset;
}

button.upgrade-plan-button {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 50px;
  width: max-content;
  margin: 0 auto;
  padding: 10px 30px;
  background: none;
}

.upgrade-plan-button.disabled {
  background: transparent;
  cursor: not-allowed;
  opacity: 1;
  border-color: transparent;
  border: 1px solid #6449D180;
  border-left: none;
  border-right: none;
  border-bottom: 0;
}

.page-id-5862 p,
.page-id-5969 p{
  margin-bottom: 0;
}

.page-id-5862 ul,
.page-id-5969 ul{
  margin-top: 10px;
  margin-bottom: 10px;
}

a, a:hover, a:focus {
  text-decoration: none !important;
}

@media (max-width: 768px) {
    .pricing-table-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-plan-card {
        min-height: auto;
    }
}

.required-asterisk{
    color: red;
}

.terms-condition{
  display: inline !important;
  color: #fff !important;
}

.elementor-element-b2612ef{
  display: flex;
  justify-content: center;
}
