* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pri-color: #05361a;
  --sec-color: #aad13f;
  --acc-color: #B6DB8C;
  --linear-grd: linear-gradient(270deg, #05361a 0%, var(--pri-color) 100%);
  --linear-grd-light: linear-gradient(270deg, #094f26 0%, var(--pri-color) 100%);
  --shadow-main: box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  --grey-txt-color: #707070;
  --body-bg-color: #f5f5f5;
  --black-txt-color: #1d1d1d;
}

body {
  font-family: "Anek Gujarati", sans-serif;
  font-optical-sizing: auto;
  background: var(--body-bg-color);
  /* cursor: none;  */
  scroll-behavior: smooth;
}
/* .custom-cursor {
  position: fixed;
  width: 14px;      
  height: 14px;
  top: 0; left: 0;
  pointer-events: none;
  mix-blend-mode: multiply; 
  border-radius: 50%;
  background: #aad13f;
  transform: translate(-50%, -50%);
  z-index: 9999;    
} */

a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: 48px;
  font-weight: 400;
  color: var(--black-txt-color);
  max-width: 22ch;
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
    font-size: 50px;
    font-weight: 400;
    color: var(--pri-color);
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
}

p {
  color: var(--grey-txt-color);
  font-size: 16px;
  line-height: 1.7;
  /* max-width: 500px; */
}

.txt-highlight {
    background: linear-gradient(transparent 0 80%, var(--sec-color) 0 80%);
    background-position: 0 1.18em;
}
.txt-highlight-sec {
    color: var(--sec-color);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 0px 20px;
  overflow-x: hidden;
}
.button {
  display: inline-flex;
  height: 40px;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.5s;
  font-weight: 500;
  padding-top: 14px;
}

.button-main {
  border: 1.5px solid var(--pri-color);
  background: var(--linear-grd);
  color: var(--acc-color);
}
.button-main:hover {
  cursor: pointer;
  opacity: 0.9;
  color: var(--acc-color);
}
.button-sec {
  border: 1.5px solid var(--pri-color);
  background: none;
  color: var(--pri-color);

}
.button-sec:hover {
  /* cursor: pointer; */
  background: var(--acc-color);
  color: var(--pri-color);
}
.button-neutral {
  border: 1.5px solid white;
  background: none;
  color: white;

}
.button-neutral:hover {
  /* cursor: pointer; */
  background: white;
  color: var(--pri-color);
}

.bolden-inline-text {
  font-weight: 600;
  color: var(--pri-color);
}

nav {
  width: 100%;
  box-shadow: var(--shadow-main);
  background-color: white;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 100;
  align-items: center;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  flex-shrink: 0;
  width: 85%;
  max-width: 1400px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-logo a {
    margin-top: 8px;
}
.nav-logo:hover {
  cursor: pointer;
}
.nav-left-tray {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo img {
  width: 132px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  font-size: 1rem;
}
.nav-links a {
  color: var(--grey-txt-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}
.nav-links a:hover {
  color: var(--pri-color);
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 16px;
}
.login-link {
  color: var(--grey-txt-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}
.login-link:hover {
  color: var(--pri-color);
}

.nav-hamburger {
    display: none;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80vw;
  height: 80vh;
  gap: 20px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}
.hero-text h1 {
    font-size: 70px;
    max-width: 700px;
}
.hero-text p {
    font-size: 18px;
    max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.features-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  margin-top: 10px;
}

.features-section img {
    width: 850px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 50px;
    border: 1px solid var(--pri-color);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
/* .features-img {
    display: flex;
    gap: 20px;
    margin-top: 30px;
} */
.features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 80vw;
    max-width: 1200px;
    margin-top: 70px;
}
.feature-item {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    transition: 0.6s;
    max-width: 320px;
    min-height: 174.28px;
}
.feature-item:hover {
    background: #ffffff;
    box-shadow: var(--shadow-main);
    border-radius: 15px;
    cursor: default;
    transform: scale(1.03);
}
.feature-item h3 {
    font-size: 18px;
    color: var(--pri-color);
    margin-bottom: 10px;
}
.feature-item p {
    font-size: 16px;
    color: var(--grey-txt-color);
    line-height: 1.6;
    text-align: center;
}

.demo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 70px;
    max-width: 80vw;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.demo-section h2 {
    max-width: 600px;
}
.demo-img-stack {
    display: flex;
    gap: 20px;
    width: 120%;
    margin-top: 30px;
    overflow: hidden;
    transform: scale(1.1);
    transform: translateX(150px);
    animation: slide-x 6s linear infinite;
}
.img-bucket {
    width: 365px;
    height: 326px;
    position:relative;
    border-radius: 12px;
    overflow: hidden;
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50px;
}
.in-office {
    background-color: green;
}
.out-of-office {
    background-color: #DA2424;
}
.on-break {
    background-color: rgb(222, 222, 66);
}
.status {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: white;
    box-shadow: var(--shadow-main);
    color: var(--pri-color);
    padding: 3px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.img-bucket:hover .status{
    transform: scale(1.04);
    transition: 0.4s;
}
.status-text {
    padding-top: 3px;
}
.img-bucket img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.color-1 {
    background-color: var(--sec-color);
}
.color-2 {
    background-color: var(--acc-color);
}

.get-started-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    margin-top: 90px;
}
.get-started-cards {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.get-started {
    width: 300px;
    padding: 30px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}
.get-started:hover {
    background-color: white;
    box-shadow: var(--shadow-main);
    cursor: default;
    transform: scale(1.03);
    transition: 0.6s;
}
.get-started h3 {
    font-size: 20px;
    color: var(--pri-color);
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}
.number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sec-color);
    color: var(--pri-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 30px;
    padding-top: 5px;
}
.cta-sect-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}
.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    width: 100%;
    min-height: 500px;
    margin-top: 70px;
    background: var(--linear-grd);
    gap: 10px;
}
.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.mobile-nav-links {
    display: none;
}


@keyframes slide-x {
  0%   { transform: translateX(5%); }    /* Move right (responsive) */
  40%  { transform: translateX(-5%); }   /* Move left (responsive) */
  60%  { transform: translateX(-5%); }   /* Pause on the left */
  100% { transform: translateX(5%); }    /* Back to start (responsive) */
}


/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 40px;
    width: 100%;
    margin-top: 120px;
}

.pricing-hero h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--pri-color);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.toggle-switch {
    display: flex;
    position: relative;
    background-color: white;
    border-radius: 25px;
    padding: 4px;
    gap: 4px;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: var(--pri-color);
    border-radius: 20px;
    transition: transform 0.3s ease;
    z-index: 0;
}

.toggle-option {
    padding: 8px 24px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--grey-txt-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: "Anek Gujarati", sans-serif;
    position: relative;
    z-index: 1;
    flex: 1;
}

.toggle-option.active {
    color: var(--acc-color);
}

.toggle-option:hover:not(.active) {
    color: var(--pri-color);
}

.discount-badge {
    background-color: var(--sec-color);
    color: var(--pri-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    width: 420px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 22px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    margin-top: -20px;
    position: relative;
}

.pricing-card.featured {
    border: 1.5px solid var(--pri-color);
    box-shadow: var(--shadow-main);
}

.plan-name {
    font-size: 16px;
    color: var(--grey-txt-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.plan-price {
    margin-bottom: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 600;
    color: var(--pri-color);
}

.price-period {
    font-size: 16px;
    color: var(--grey-txt-color);
    margin-left: 5px;
}

.plan-button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.button-free {
    background-color: var(--pri-color);
    color: var(--acc-color);
    border: none;
}

.button-free:hover {
    opacity: 0.9;
}

.button-pro {
    background: var(--linear-grd);
    color: var(--acc-color);
    border: none;
}

.button-pro:hover {
    opacity: 0.9;
}

.plan-features h4 {
    font-size: 14px;
    color: var(--grey-txt-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: rgb(147, 147, 147);
    font-size: 15px;
}

.checkmark {
    color: var(--sec-color);
    font-weight: bold;
    font-size: 18px;
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-note p {
    color: var(--grey-txt-color);
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 500;
    color: var(--pri-color);
    text-align: center;
    margin-bottom: 12px;
}

.faq-subtitle {
    text-align: center;
    color: var(--grey-txt-color);
    font-size: 16px;
    margin: 0 auto 40px;
    max-width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--acc-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-txt-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--pri-color);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--grey-txt-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--pri-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--grey-txt-color);
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    margin: 0;
}

.pro-ft-label {
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: var(--sec-color);
    color: var(--pri-color);
    padding: 1px 12px;
    border: solid 1px var(--pri-color);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
    background-color: white;
    padding: 40px 0px;
    padding-bottom: 0px;
    width: 100vw;
    /* position: sticky; */
    bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--grey-txt-color);
    font-size: 16px;
    font-weight: 400;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 150px;
}

.footer-column h4 {
    color: var(--pri-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--pri-color);
    font-size: 14px;
    transition: 0.3s ease;
    font-weight: 400;
}
.footer-column a:hover {
    opacity: 0.6;
}

.btn a:hover {
    opacity: 0.95 !important;
}

.footer-demo,
.footer-signup {
    width: 100%;
    max-width: 200px;
}
.footer-signup {
    color: var(--sec-color) !important;
}

.footer-bottom {
    width: 100%;
    margin: 0 auto;
    background-color: var(--sec-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-inner {
    width: 100%;
    max-width: 950px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px 15px 0px;
}

.footer-bottom p {
    color: var(--pri-color);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--pri-color);
    font-size: 14px;
    transition: 0.4s ease;
}

.footer-legal a:hover {
    opacity: 0.9;
}

.referral-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 40px;
    width: 100%;
    min-height: 70vh;
}

.page-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 40px;
    width: 100%;
}

.referral-cta {
    margin-top: 30px;
}

.policy-terms-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    color: var(--grey-txt-color);
    background-color: white;
    border-radius: 20px;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1300px) {
   .footer-links {
    display: none;
}

.footer-container {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.footer-brand {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
}
.footer-brand p {
    padding-bottom: 18px;
    text-wrap: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-bottom: 20px;
}
.footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
}
}

@media (max-width: 900px) { 
nav {
    position: fixed;
    top: 0;
    z-index: 90;
}
.mobile-nav-links {
    position: fixed;
    top: 36px;
    right: 20px;
    width: 220px;
    background-color: white;
    box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
    margin-top: 30px;
    z-index: 100;
    animation: fadeInMenu 0.4s ease-in-out;
}

@keyframes fadeInMenu {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
}
}

.nav-auth,
.nav-links,
.footer-links {
    display: none;
}

.nav-hamburger {
    display: flex;
    cursor: pointer;
    margin-right: 10px;
}
.nav-hamburger img {
    width: 32px;
    height: 32px;
}

.hero-text h1 {
    font-size: 60px;
    width: 100%;
}

.pricing-hero h1 {
    font-size: 40px;
    width: 100%;
}
.features-section h2,
.demo-section h2,
.get-started-section h2,
.cta-section h2 {
    font-size: 38px;
    max-width: 95vw;
}
.features-section h2 {
    margin-top: 20px;
}
.features-img img {
    width: 100%;
}
.footer-brand {
    text-align: center;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    padding-bottom: 10px;
}
.footer-brand p {
    padding-bottom: 18px;
    text-wrap: none;
}
.footer-bottom {
    padding: 0px 20px 20px;
}
.footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
}
.hero-section {
    min-height: 660px;
}
.pricing-hero {
    margin-top: 100px;
}
.pricing-cards {
    gap: 60px;
    flex-direction: column-reverse;
}
}

@media (max-width: 500px) {
.hero-text h1,
.pricing-hero h1 {
    font-size: 45px;
    width: 100%;
}
.features-section h2,
.demo-section h2,
.get-started-section h2,
.cta-section h2 {
    font-size: 36px;
    max-width: 90vw;
}
.footer-brand p {
    display: none;
}
.features-section h2 {
    margin-top: 40px;
}
.hero-section {
    margin-top: 55px;
    place-items: center;

}
.features-section h2 {
    margin-top: 40px;
    max-width: 80%;
}
.hidemobile {
    display: none;
}
.pricing-cards {
    max-width: 100% !important;
    place-self: center;
    margin: 0 auto;
    padding: 0px;
}
.pricing-card {
    max-width: 90% !important;
    min-width: 350px;
}

main {
    width: 100%;
    padding: 20px;
    overflow-x: hidden;
}

.demo-img-stack {
    animation: slide-x 20s linear infinite;
}

@keyframes slide-x {
  0%   { transform: translateX(30%); }    /* Move right (responsive) */
  40%  { transform: translateX(-30%); }   /* Move left (responsive) */
  60%  { transform: translateX(-30%); }   /* Pause on the left */
  100% { transform: translateX(30%); }    /* Back to start (responsive) */
}
}