:root {
    --active-purple: #5851A8;
    --inactive-purple: #8C85C7;
    --line-color: #d1d5db;
    --assets-purple-dark: #5851A8;
    --assets-purple-light: #8C85C7;
    --assets-line-gray: #d1d5db;
    --hr-purple-dark: #5851A8;
    --hr-purple-light: #8C85C7;
    --hr-line-gray: #d1d5db;
    --lang-purple-dark: #5851A8;
    --lang-purple-light: #8C85C7;
    --lang-line-gray: #d1d5db;
    --faq-border: #e5e7eb;
    --faq-text: #4b5563;
    --faq-q-color: #111827;
    --faq-purple: #5851A8;
    --primary-purple: #4a3fa0;
    --icon-gray: #333;
    --border-gray: #ccc;
    --bg-color: #f8fafc;
    --card-plain-bg: #ffffff;
    --card-featured-bg: #f0fdfa; /* Tinted teal background */
    --primary-color: #005f59; /* Deep teal from image */
    --primary-hover: #004440;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --accent-red: #ef4444;
}


/*---Hero section---*/

.container {
    max-width: 1160px;
    padding: 15px;
}

.hero-section {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-container{
    max-width: 1160px;
    padding: 180px 15px 15px 15px;
    text-align: center;
}
.hero-bg{
    background-image: url('.././assets/Hero.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-main {
    max-width: 915px;
    margin-top: 180px;
    text-align: center;
    margin-bottom: 50px;
}

.hero-container h1 {
    font-size: 48px;
    color: white;
    font-weight: bold;
    text-align: center;
    max-width: 75%;
}

.hero-container p {
    margin: 30px 0 50px 0;
    text-align: center;
    color: white;
}

.hero-btn {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    background-color: #0CAC83;
    border-radius: 45px;
    padding: 13px 45px;
}
.hero-btn:hover {
    color: white !important;
    background-color: #0ea07b;
}

.hero-container img {
    margin-top: 50px;
    margin-bottom: -135px;
}

.hero-main h2 {
    font-size: 42px;
    font-weight: bold;
    margin: 35px 80px;
}

.need-to-launch {
    gap: 25px;
    display: flex;
    flex-direction: column;
}

.need-to-launch a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 400;
    background: #0B273A;
    background: linear-gradient(90deg, rgba(11, 39, 58, 1) 0%, rgba(15, 110, 106, 1) 100%);
    border-radius: 45px;
    padding: 10px 40px;
}
.need-to-launch a:hover {
    background: linear-gradient(90deg, rgba(15, 110, 106, 1) 0%, rgba(11, 39, 58, 1) 100%);
    color: white;
}

.need-to-launch p {
    padding: 0 170px;
}

.why-yousr-card:hover {
    background-color: #f0fdfa !important;
    border: 1px solid #005f59 !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.why-yousr-cards:hover {
    background: #fff !important;
    border: 1px solid #e7ecea !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Container Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 35px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
}

/* Card Styling & Custom Borders */
.feature-card {
  position: relative;
  background-color: #ffffff;
  padding: 90px 62px 80px 62px;
  text-align: center;
  box-sizing: border-box;
}

/* Handles Top-left fragment, Left line, and the ENTIRE Bottom line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Changed to 100% so the bottom border stretches completely to the right edge */
  height: 100%;
  border-left: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  pointer-events: none;
}

/* Separate mask/override for the top border fragment to stop before the icon */
.feature-card::before {
  /* Creating a clean top-left border line that stops early */
  background-image: linear-gradient(to right, #1a1a1a 65%, transparent 65%);
  background-position: top left;
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
}

/* Handles the Right line (perfectly touching the bottom corner) */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0; /* Starts exactly at the bottom corner */
  right: -2px;
  width: 0;
  height: 80%; /* Goes up 80% of the card, leaving the top-right open */
  border-right: 2px solid #1a1a1a;
  pointer-events: none;
}

/* Icon Container & Placement */
.icon-container {
  position: absolute;
  top: -30px;
  right: 20%;
  width: 64px;
  height: 64px;
  background-color: #0fa982;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Custom Image Icons */
.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Typography */
.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  margin: 0 0 15px 0;
}

.feature-text {
  font-size: 0.95rem;
  color: #2d2d2d;
  line-height: 1.5;
  margin: 0;
}

/* Responsive design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.cards-main {
    display: flex;
    gap: 20px;
}

.cards-main-col1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 33%;
}

.cards-main-col2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 100px;
    width: 33%;
}

.grey-card {
    display: flex;
    text-align: center;
    padding: 85px 75px;
    background-color: #F4F4F4;
    border-radius: 15px;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0px 1px 7px 1px #0cac83;
    border: 1px solid #0cac83;
}

.purple-card {
    display: flex;
    text-align: center;
    padding: 85px 75px;
    background-color: #0cac83;
    color: #ffffff;
    border-radius: 15px;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0px 1px 7px 1px #0cac83;
    border: 1px solid #0cac83;
}

.grey-card h4, .purple-card h4 {
    font-size: 20px;
}

/*---Accounting & Finance*/

section.all-in-one-section {
    margin: 60px 0px;
}

.all-in-one-head{
    background-image: url('.././assets/Union.png');
    height: 300px;
    background-size: cover;
    align-content: center;
}

.all-in-one-head h2 {
    font-size: 96px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.acf {
    margin: 50px 0;
    text-align: center;
}

.accounting-and-finance img {
    margin: 0;
}

.accounting-and-finance {
    margin-top: 45px;
}

.acf h2{
    font-size: 48px;
}

.acf p {
     margin: 15px 380px;
}

.accoutingandfinance-img {
    width: 65%;
    margin: 0;
}

.accoutingandfinance-img img {
    margin-top: 28px;
    width: 100%;
    height: 2px;
}


.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.selector-sidebar {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
}

.menu-item {
    position: relative;
    padding-left: 40px;
    border-left: 2px solid var(--line-color);
    margin-left: 10px;
}

.menu-item:last-child {
    border-left: 2px solid transparent;
}

.menu-item:first-child::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 28px;
    width: 2px;
    background-color: #ffffff;
}

.menu-item:last-child::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 28px;
    width: 2px;
    background-color: var(--line-color);
}

.branch {
    position: absolute;
    left: -2px;
    top: 28px;
    width: 42px;
    height: 2px;
    background-color: var(--line-color);
}

.eclipse-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    background-color: #0cac83;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.menu-item.active .eclipse-btn {
    background-color: #0cac83;
}

.reveal-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 10px 20px 10px;
}

.menu-item.active .reveal-text {
    max-height: 200px;
    opacity: 1;
}

.image-display {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    background: #fff;
}

.image-display img {
    border: 13px solid #ECECEC;
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
    }

    .menu-item {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    .branch, .menu-item:last-child::after {
        display: none;
    }
}

/* Purchase Module*/

.purchase-module {
    margin: 40px 0;
}

.purchase-main {
    width: 59%;
    /* align-content: baseline; */
    padding-top: 13px;
    margin: 0;
}

.purchase-main img {
    width: 100%;
    height: 2px;
}

.purchase-main h2 {
    margin: 0;
    font-size: 42px;
    font-weight: bold;
}

.p-module-main {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.purchase-module-para {
    margin: 0;
    text-align-last: center;
}

.purchase-module-para h2 {
    text-align: start;
}

.purchase-module-para p {
    max-width: 680px;
    margin: 0;
    padding: 15px 0;
    text-align: justify;
}

.purchase-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 15px;
    flex-direction: column-reverse;
}

.purchase-wrapper img {
    border: 13px solid #ECECEC;
    border-radius: 9px;
}

.purchase-iconbox img {
    border: 0;
}

.purchase-iconbox {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 80%;
}

.purchasebox{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purchase-iconbox p {
    text-align: center;
}

/* Sale Module*/

.selling-module {
    margin: 60px 0;
}

.s-module-main {
    display: flex;
    justify-content: center;
}

.selling-module-para {
    width: 72%;
    margin: 0;
    padding-top: 16px;
}

.selling-module-para img {
    width: 100%;
    height: 2px;
}

.selling-main {
    max-width: 840px;
    margin: 0;
    text-align-last: center;
}

.selling-main h2 {
    text-align: start;
}

.selling-main p {
    margin: 15px 0;
}

.selling-wrapper {
    display: flex;
    gap: 45px;
    margin-top: 15px;
    flex-direction: column;
}

.selling-wrapper img {
    border: 13px solid #ECECEC;
    border-radius: 9px;
}

.selling-iconbox img {
    border: 0;
}

.selling-iconbox {
    display: flex;
    gap: 20px;
    padding: 0px 35px;
}

.selling-iconbox p {
    text-align: center;
}

.assets-report-head {
    text-align: center;
}

.assets-report-head h2 {
    font-size: 42px;
    margin: 0;
    font-weight: bold;
}


/*Assets report*/

.assets-section-container {
    font-family: 'Inter', sans-serif;
    max-width: 1160px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    padding: 15px;
}

.assets-sidebar {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assets-item {
    position: relative;
    padding-left: 45px;
    border-left: 2px solid black;
}

.assets-item:last-child {
    border-left: 2px solid transparent;
}

.assets-item:first-child::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 30px;
    width: 2px;
    background-color: #ffffff;
}

.assets-item:last-child::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 30px;
    width: 2px;
    background-color: black;
}

.assets-branch {
    position: absolute;
    left: -2px;
    top: 30px;
    width: 47px;
    height: 2px;
    background-color: black;
    z-index: 1;
}

.assets-btn {
    width: 100%;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    background-color: #0cac83;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.purchase-module-para h2 {
    font-size: 42px;
}

.selling-main h2 {
    font-size: 42px;
}

.assets-item.active .assets-btn {
    background-color: #0F6D6A;
}

.assets-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px 0 10px;
}

.assets-item.active .assets-description {
    max-height: 150px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 25px;
}

.assets-display img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s ease;
    border: 13px solid #ECECEC;
    border-radius: 10px;
}

/* Responsive Mobile Layout */
@media (max-width: 900px) {
    .assets-section-container {
        flex-direction: column;
    }

    .assets-sidebar {
        width: 100%;
        flex: none;
    }

    .assets-item {
        border-left: none;
        padding-left: 0;
    }

    .assets-branch, .assets-item:last-child::before {
        display: none;
    }
}

/* HR Payroll */

.hr-section {
    margin: 60px auto;
}

.hr-section-container {
    max-width: 1160px;
    display: flex;
    gap: 40px;
    padding: 15px;
    align-items: center;
    margin-top: 30px;
}

.hr-video-display {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 12px solid #ECECEC;
}

.hr-video-display video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
}

.hr-item {
    position: relative;
    padding-right: 45px;
    text-align: right;
}

.hr-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: black;
}

.hr-item:first-child::after {
    top: 22px;
}

.hr-item:last-child::after {
    height: 24px;
    bottom: auto;
}

.hr-branch {
    position: absolute;
    right: 0;
    top: 22px;
    width: 45px;
    height: 2px;
    background-color: black;
    z-index: 1;
}

.hr-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background-color: #0cac83;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

.hr-item.active .hr-btn {
    background-color: #0F6D6A;
}

.hr-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
    text-align: center;
}

.hr-item.active .hr-description {
    max-height: 100px;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hr-section-container {
        flex-direction: column-reverse;
    }

    .hr-sidebar {
        width: 100%;
    }

    .hr-item {
        padding-right: 0;
        text-align: center;
    }

    .hr-item::after, .hr-branch {
        display: none;
    }
}

/* Multilingual */

.lang-section {
    margin: 40px auto;
}

.multi-main {
    margin: 0;
    width: 75%;
}

.multi-main img {
    width: 100%;
    height: 2px;
    margin-top: 25px;
}

.multi-module-para h2 {
    font-size: 42px;
}

.multi-module-main {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.multi-module-para {
    margin: 0;
    text-align: -webkit-center;
}

.multi-module-para p {
    max-width: 240px;
    font-size: 14px;
    padding-top: 10px;
    margin: 0;
}

.lang-section-container {
    max-width: 1160px;
    display: flex;
    gap: 50px;
    padding: 15px;
    align-items: center;
}

.lang-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 30px;
}

.lang-sidebar::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 27px;
    bottom: 27px;
    width: 2px;
    background-color: black;
    z-index: 1;
}

.lang-item {
    position: relative;
}

.lang-branch {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: black;
    z-index: 1;
}

.lang-btn {
    width: 130px;
    padding: 17px 0px;
    border: none;
    border-radius: 35px;
    background-color: #0CAC83;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.lang-item.active .lang-btn {
    background-color: #08795a;
}

.lang-display {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 12px solid #ddd;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lang-display img {
    width: 100%;
    height: auto;
    display: block;
}

.support-proof{
    background-image: url('.././assets/Union.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Mobile Responsive */
@media (max-width: 800px) {
    .lang-section-container {
        flex-direction: column;
    }

    .lang-sidebar::before, .lang-branch {
        display: none;
    }

    .lang-sidebar {
        padding-left: 0;
        width: 100%;
    }
}

/* Pricing Plan */

.pricing-main {
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-main h2 {
    font-size: 42px;
}

.pricing-plan {
    display: flex;
    margin-top: 50px;
    gap: 20px;
}

.pricing-card {
    padding: 20px 20px 50px;
    text-align: center;
    border: 1px solid #0F6D6A;
    border-radius: 8px;
    position: relative;
    width: 32%;
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 500;
    color: #0F6D6A;
}

.price-baar {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.price-baar h4, .price-baar h2, .price-baar p {
    margin: 0;
}

.price-baar p {
    align-content: end;
    padding-bottom: 10px;
}

.price-baar h4 {
    align-content: start;
    font-size: 26px;
}

.price-baar h2 {
    font-size: 45px;
    font-weight: 400;
    padding-left: 7px;
}

.plan-list {
    max-width: 245px;
    margin-right: 30px;
    text-align: start;
    margin-top: 20px;
    margin-bottom: 15px;
}

.plan-list ul li {
    padding: 5px 0;
}

.pricing-card a {
    text-decoration: none;
    color: #ffffff;
    background-color: #0F6D6A;
    padding: 10px 25px;
}

.lower-img {
    margin-bottom: 35px;
}

.pricing-card h5 {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 20px 5px 25px;
    background-color: #0F6D6A;
    color: #ffffff;
    border-radius: 0px 6px 0px 15px;
}

ul.p-list {
    margin-bottom: 35px;
}

/* Free Demo */

.free-demo {
    display: flex;
    padding: 35px;
    border-radius: 25px;
    background-color: #0F6D6A;
    color: #ffffff;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.free-demo-content h3 {
    font-size: 32px;
    color: #ffffff;
}

.free-demo-content p {
    max-width: 270px;
    margin: 15px 0 30px;
}

.free-demo-content a {
    text-decoration: none;
    color: #433A95;
    background-color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.free-demo-content {
    width: 40%;
}

.free-demo-image {
    width: 60%;
}

.free-demo-image img {
    width: 100%;
}

/* Companies Section */

.companies-main h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
}

.companies-main img {
    max-width: 100%;
}

/* FAQ Section*/

.faq-main {
    text-align: center;
}

.faq-main h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.faq-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 15px;
    background-color: #f2f2f2;
}

.faq-card {
    background: #fff;
    border: 0px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: 2px 3px 10px #80808057;
}

.faq-card:last-child {
    margin-bottom: 0;
}


/* Header / Question Area */
.faq-trigger {
    width: 95%;
    padding: 15px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 0px solid #d9d9d9;
    cursor: pointer;
    text-align: left;
    border-radius: 6px;
    outline: none;
}

.faq-question {
    font-size: 17px;
    font-weight: 500;
    color: var(--faq-q-color);
    margin: 0;
}

.faq-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: #9ca3af;
    margin: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.faq-inner-text {
    padding: 0 35px 22px 50px;
    font-size: 15px;
    color: var(--faq-text);
    line-height: 1.6;
}

.faq-card.is-open {
    border-color: var(--faq-purple);
}

.faq-card.is-open .faq-arrow {
    transform: rotate(180deg);
    color: var(--faq-purple);
}

.faq-card.is-open .faq-body {
    max-height: 250px;
}

.faq-card:hover:not(.is-open) {
    border-color: #d1d5db;
}

/* Contact section */

.contact-section {
    display: flex;
    gap: 60px;
    padding: 50px;
    max-width: 1160px;
    margin: 0 auto;
}

.contact-info {
    max-width: 50%;
    align-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-info span {
    color: #0F6D6A;
}

.contact-info p {
    max-width: 420px;
    margin: 0;
}

.contact-form h2 {
    font-size: 30px;
    font-weight: 800;
    max-width: 320px;
    margin-bottom: 20px !important;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
}

.full-width.input-group {
    align-items: flex-start;
}

.full-width.input-group i {
    margin-top: 12px;
}

.full-width {
    grid-column: span 2;
    grid-column: 1 / -1 !important;
    width: 100%;
}

.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--border-gray);
    transition: border-color 0.3s;
    padding: 0 10px;
}

.input-group i {
    color: var(--icon-gray);
    margin-right: 12px;
    font-size: 1.1rem;
}

.input-group:focus-within {
    border-bottom-color: #0F6D6A;
}

input{
    width: 88%;
    border: none;
    padding: 10px 0;
    outline: none;
    font-size: 1rem;
    background: transparent;
}
textarea {
    width: 94%;
    border: none;
    padding: 10px 0;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.submit-btn {
    margin-top: 30px;
    float: right;
    background: #0F6D6A;
    color: white;
    border: none;
    padding: 12px 45px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.field-container {
    position: relative;
    padding-bottom: 18px;
}
.input-group.error {
    border-bottom-color: #ff4d4d !important;
}
.input-group.error i {
    color: #ff4d4d !important;
}
.error-message {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ff4d4d;
    font-size: 11px;
    display: none;
}
.input-group.error + .error-message {
    display: block;
}

/* Mobile adjust */
@media (max-width: 650px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-container{
        width: 100%;
    }

    .full-width {
        grid-column: span 1;
    }

    .submit-btn {
        width: 100%;
        float: none;
    }
}

/*Updated Pricing Section*/
/* --- Toggle Container Styles --- */
        .toggle-container {
            display: flex;
            width: 22%;
            align-items: center;
            gap: 16px;
            margin-bottom: 50px;
            background: #ededed;
            padding: 6px;
            border-radius: 30px;
            position: relative;
            cursor: pointer;
            user-select: none;
        }

        .toggle-btn {
            padding: 10px 24px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
            border-radius: 24px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .toggle-btn.active {
            color: #ffffff;
            background-color: var(--primary-color);
        }

        .save-badge {
            position: absolute;
            top: -25px;
            right: -25px;
            background: #ffffff;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- Pricing Grid Layout --- */
        /* CSS Grid: equal columns, gap-aware (no width math), RTL-safe by default. */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin-inline: auto;
            align-items: start;
        }

        /* Tablet: two columns */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile: single column, full width */
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Individual Pricing Card --- */
        .pricing-cards {
            width: 100%;
            background-color: var(--card-plain-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (max-width: 768px) {
            .price-baar h2 {
                font-size: 38px;
            }

            .price-baar h4 {
                font-size: 22px;
            }

            .plan-btn {
                white-space: nowrap;
            }
        }

        .pricing-cards:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
        }

        /* Featured (Business) Card Variations */
        .pricing-cards.featured {
            background-color: var(--card-featured-bg);
            border: 2px solid var(--primary-color);
        }

        /* Card Header Badges */
        .top-badge {
            position: absolute;
            top: 25px;
            inset-inline-end: 25px;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
        }

        .top-badge.popular {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        .top-badge.discount {
            border: 1px solid var(--accent-red);
            color: var(--accent-red);
            background: #fff5f5;
        }

        /* Inner Elements */
        .icon-box {
            width: 44px;
            height: 44px;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: #ffffff;
        }

        .icon-box svg {
            width: 20px;
            height: 20px;
            fill: var(--primary-color);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .plan-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* Pricing Area */
        .price-wrapper {
            margin-bottom: 30px;
        }

        .price-row {
            font-size: 2.75rem;
            font-weight: 700;
            display: flex;
            align-items: baseline;
        }

        .price-period {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
            margin-inline-start: 2px;
        }

        .original-price {
            font-size: 1.25rem;
            color: #cbd5e1;
            text-decoration: line-through;
            margin-top: 4px;
            display: block;
            font-weight: 500;
        }

        /* Action Buttons */
        .plan-btn {
            display: block;
            background-color: #f0fdfa;
            border: 1px solid #005f59;
            padding: 6px 16px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.2s ease;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .pricing-card.featured .plan-btn {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        .pricing-card.featured .plan-btn:hover {
            background-color: var(--primary-hover);
        }

        .pricing-card:not(.featured) .plan-btn {
            background-color: transparent;
            color: var(--primary-color);
            border: 1px solid var(--border-color);
        }

        .pricing-card:not(.featured) .plan-btn:hover {
            background-color: #fafafa;
            border-color: var(--primary-color);
        }

        /* Features List */
        .benefits-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0;
        }

        .features-list li {
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        .features-list li span strong {
            color: var(--text-main);
        }

        .features-list li svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: var(--text-muted);
            stroke-width: 2;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* Toggle Dynamic Display Control */
        .yearly-price, .monthly-price {
            display: none;
        }

        /* Utility classes handled via simple JS */
        .show-block { display: block !important; }
        .show-flex { display: flex !important; }

/* Resposive Screen */

@media (max-width: 650px) {
    .hero-container img {
        max-width: 100%;
    }

    .hero-container {
        padding: 140px 15px 15px 15px;
    }
    .hero-container h1 {
        font-size: 38px;
        max-width: 100%;
    }

    .hero-main h2 {
    font-size: 32px;
    margin: 32px 32px;
    margin-top: 160px !important;
}

    .hero-container h2 {
        font-size: 32px;
        margin: 35px 0;
    }

    .need-to-launch a {
        font-size: 12px;
        padding: 10px 10px;
    }

    .need-to-launch p {
        padding: 0;
    }

    .feature-card {
    padding: 70px 40px 40px 40px;
    }

    .cards-main {
        flex-wrap: wrap;
    }

    .cards-main-col1 {
        width: 100%;
    }

    .hero-main {
        margin-top: 30px;
    }

    .grey-card, .purple-card {
        padding: 35px 40px;
    }

    .cards-main-col2 {
        margin-top: 10px;
        width: 100%;
    }

    .all-in-one-section h2 {
        font-size: 32px;
    }
    .all-in-one-head{
        height: 130px;
    }

    .accounting-and-finance img {
        display: none;
    }

    .acf {
        margin: 0 15px;
    }
    .acf p {
    margin: 15px 40px;
    }
    .selector-sidebar {
        flex: 0 0 230px;
    }

    .purchase-main {
        display: none;
    }

    .asset-img {
        display: none;
    }

    .assets-report-head {
        margin-left: 0;
    }

    .selling-module-para {
        display: none;
    }

    .purchase-module-para {
        margin-left: 20px;
    }

    .purchase-module-para img{
        width: 100%;
    }

    .purchase-wrapper {
        flex-direction: column;
    }

    .purchase-wrapper img {
        max-width: 100%;
    }

    .purchase-iconbox {
        gap: 15px;
        width: 100%;
    }

    .purchase-module {
        margin: 10px 0;
    }

    .s-module-main {
        margin: 0 15px;
    }

    .selling-main img {
        display: none;
    }

    .selling-module-para img {
        display: none;
    }

    .selling-wrapper {
        flex-direction: column-reverse;
    }

    .selling-wrapper img {
        max-width: 100%;
    }

    .main-wrapper {
        gap: 10px;
    }

    .selling-iconbox {
        gap: 15px;
        padding: 0;
    }

    .purchase-main img {
        display: none;
    }

    .assets-report-head h2 {
        margin-left: 15px;
    }

    .multi-main {
        display: none;
    }

    .assets-report-head img {
        display: none;
    }

    section.all-in-one-section {
        margin: 20px 0px;
    }

    .accounting-and-finance {
        margin-top: 20px;
        margin-left: 0;
    }

    .assets-section-container {
        margin: 20px auto;
    }

    .purchase-module-para h2 {
        font-size: 32px;
    }

    .selling-module {
        margin: 20px 0;
    }

    .selling-main h2 {
        font-size: 32px;
    }

    .hr-section {
        margin: 0px auto;
    }

    .multi-module-para img{
        width: 100%;
    }

    .multi-module-para h2 {
        font-size: 32px;
    }

    .multi-module-para {
        text-align: left;
        margin-top: 0;
    }

    .multi-module-main {
        margin-right: 20px;
    }

    .multi-main img {
        display: none;
    }

    .lang-sidebar {
        flex: 0 0 60px;
        flex-direction: row;
        gap: 5px;
        flex-wrap: wrap;
    }

    .lang-btn {
        width: 100px;
        padding: 10px 0px;
        font-size: 16px;
    }

    .lang-section-container {
        gap: 20px;
    }

    .lang-section {
        margin: 30px auto;
        padding: 15px;
    }

    .contact-info {
        margin: 0;
        max-width: 100%;
    }

    .contact-form {
        margin: 0;
    }

    .pricing-main h2 {
        font-size: 31px;
    }

    .pricing-plan {
        flex-wrap: wrap;
    }

    .pricing-card {
        width: 100%;
    }

    .pricing-card img {
        max-width: 100%;
    }

    .pricing-card h3 {
        margin-top: 20px;
        font-size: 28px;
    }

    .free-demo {
        gap: 40px;
        margin: 0;
        flex-direction: column;
    }

    .free-demo-content {
        width: 100%;
    }

    .free-demo-image {
        width: 100%;
    }

    .companies-main h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .faq-main h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .faq-trigger {
        width: 100%;
        padding: 15px 15px;
    }

    .faq-arrow {
        width: 30px;
        height: 30px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 20px;
    }

    .faq-inner-text {
        padding: 0 25px 22px 16px;
        font-size: 14px;
    }

    .contact-info p {
        max-width: 100%;
    }

    .contact-section {
        gap: 30px;
        padding: 15px;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .form-grid {
        gap: 20px 20px;
    }

    .form-grid {
        /* 1. Force a single column */
        grid-template-columns: 1fr;
        /* 2. Ensure items stretch to the edges */
        justify-items: stretch;
        gap: 20px;
    }

    .input-group {
        /* 3. Force the wrapper to be 100% of the grid cell */
        width: 100%;
        box-sizing: border-box;
    }
    textarea {
        width: 87%;
    }

    .nav-menu li {
        margin: 0;
    }

    .accoutingandfinance-img {
        display: none;
    }
}

