/* Global Reset */
* {
    box-sizing: border-box;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
}

/* header css*/

:root {
    --brand-green: #158467;
    --light-grey: #D9D9D9;
}

.main-header {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--brand-green);
}

/* Buttons */
.lang-switcher {
    display: flex;
    gap: 15px;
}
.lang-switcher a{
    text-decoration: none;
}

.btn-english, .btn-arabic {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-english {
    background-color: var(--brand-green);
    color: #fff;
}

.btn-arabic {
    background-color: var(--light-grey);
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-lang-buttons { display: none; }

/* Hamburger Menu Mobile Styles */
@media (max-width: 768px) {
    .lang-switcher { display: none; }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #333;
        margin: 6px 0;
        transition: 0.4s;
    }

    .nav-menu {
        z-index: 999;
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        height: 100vh;
        text-align: start;
        padding-left: 25px;
        transition: 0.5s;
        padding-top: 10px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .nav-menu.active { right: 0; }

    .mobile-lang-buttons {
        display: flex;
        gap: 20px;
        margin-top: 15px;
        align-items: center;
    }
}


.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 15px;
}

.logo img {
    max-width: 55%;
}

.nav-links a {
    margin: 0 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: inter;
    font-size: 16px;
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.btn-en {
    background-color: #158467;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-ar {
    background-color: #d1d1d1;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/*hero section*/

.main-hero {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-left,
.hero-right {
    width: 50%;
}

.hero-right {
    padding-top: 30px;
    text-align: right;
}

.hero-right img {
    width: 90%;
}

.hero-left h3 {
    font-weight: 600;
    font-size: 20px;
    font-family: Inter;
}

.hero-left h1 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    
    /* Initial State (Before Animation) */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.9s ease-out, transform 1.4s ease-out;
}

/* This class will be added by JavaScript when the user scrolls to the section */
.hero-left h1.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-left p {
    font-size: 20px;
    font-weight: 500;
    font-family: Inter;
}

.hero-btn {
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.btn-get-started {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-get-started:hover {
    background-color: #d1d1d1;
    color: #000;
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
}

.btn-features {
    background-color: #d1d1d1;
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-features:hover {
    background-color: #000000;
    color: #ffffff;
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
}


/* Comparison Section*/

.comparison-section {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    background-color: #000;
    padding: 80px 20px 150px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* The Main Comparison Card */
.comparison-card {
    display: flex;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 4px;
    /* Sharp corners as seen in design */
    overflow: visible;
    position: relative;
    border: 1px solid #444;
}

.side {
    flex: 1;
    padding: 40px 20px;
}

.typical-saas {
    background: linear-gradient(to bottom, #ffffff, #e6e6e6);
    color: #000;
}

.yousr-app {
    background-color: #158467;
    color: #fff;
    border-left: 1px solid #fff;
}

.side h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.comp-price {
    font-size: 48px;
    font-weight: 800;
}

.per-year {
    display: block;
    font-size: 14px;
    margin-top: -5px;
}

/* The "VS" Circle */
.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #158467;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    border: 3px solid #158467;
    box-shadow: 0 0 15px rgb(255 255 255 / 75%);
    z-index: 10;
}

/* Yellow Savings Button */
.savings-banner {
    display: inline-block;
    background-color: #FFCC00;
    /* Exact Yellow */
    color: #000;
    padding: 15px 25px !important;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 30px;
}
.savings-banner:hover {
    background-color: #FFD633; /* Slightly lighter yellow */
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
    box-shadow: 0 10px 20px rgba(187, 185, 81, 0.429); /* Soft shadow */
} 

.savings-banner a {
    text-decoration: none;
    color: #000;
}

/* WhatsApp Footer */
.whatsapp-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.wa-icon {
    width: 25px;
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%);
}


.experts-section {
    background-image: url('../images/ZATCA-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.erpnext-experts {
    margin: 70px 0;
    text-align: -webkit-center;
}

.erpnext-experts-main {
    width: 70%;
}

.erpnext-experts h2 {
    font-family: Inter;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
}

.erpnext-experts-main p {
    font-family: Inter;
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.erpnext-experts-main a {
    text-decoration: none;
    color: #000;
    font-family: Inter;
}

.erpnext-expert-cards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 100px;
}

.card-one {
    background: #FEFEFE;
    background: linear-gradient(266deg, rgba(254, 254, 254, 1) 79%, rgba(237, 237, 237, 1) 100%);
    border-radius: 8px;
    width: 310px;
    padding: 25px 0;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 1px 9px -7px #000000;
}

.card-one img {
    width: 40px;
    height: 40px;
    align-self: center;
}

.card-content h4 {
    font-size: 28px;
    font-family: 'Inter';
    margin: 0;
}

.card-content p {
    margin: 0;
    font-family: 'Inter';
    margin-top: 7px;
}

.zatca-approved {
    justify-content: center;
    padding-bottom: 50px;
    align-items: center;
    display: flex;
    gap: 30px;
}

.zatca-approved img {
    max-width: 25%;
}

.zatca-approved h2 {
    font-size: 40px;
    font-weight: bold;
}

.everything-you-need {
    text-align: center;
}

.everything-you-need h2 {
    font-family: Inter;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
}

.everything-you-need p {
    font-size: 20px;
    font-family: 'Inter';
}

.everything-you-need-cards {
    margin: 50px 0;
}

.everything-cards-row1 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.everything-card-one {
    text-align: left;
    align-content: start;
    padding: 50px 20px 25px 20px;
    background-color: #F4F5F6;
    border-radius: 8px;
    /* height: 300px; */
    box-shadow: 0px 1px 9px -7px #000000;
    width: 25%;
    transition: all 0.5s ease;
}

.everything-card-one:hover {
    background-color: #363636;
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
}
.everything-card-one:hover h4, .everything-card-one:hover p{
    color: #fff;
}

.everything-card-main {
    text-align: left;
    width: 25%;
    align-content: start;
    padding: 50px 20px 25px 20px;
    background-color: #363636;
    border-radius: 8px;
    box-shadow: 0px 7px 7px -7px #000000;
}
.everything-card-main:hover{
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
}
.everything-card-one h4 {
    font-family: 'Inter';
    font-size: 22px;
        padding-right: 50px;
    font-weight: 600;
}

.everything-card-one p {
    font-size: 14px;
    font-family: 'Inter';
}

.everything-card-main h4 {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.everything-card-main p {
    font-size: 14px;
    font-family: 'Inter';
    color: #fff;
}

.perfect-for {
    display: flex;
    margin-left: 60px;
    justify-content: space-between;
}

.perfect-for h2 {
    margin: 0;
    font-family: 'Inter';
    font-size: 40px;
}

.perfect-for img {
    width: 78%;
    height: 1px;
    align-self: center;
    margin-top: 5px;
}

.perfect-for-cards {
    margin-top: 50px;
}

.perfect-card {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.perfect-card-main img {
    width: 75%;
    margin-bottom: 20px;
}

.card-list {
    display: flex;
    gap: 20px;
    align-items: center;
}

.card-list img {
    width: 15px;
    height: 15px;
    margin-bottom: 0;
}

.card-list p {
    margin: 0;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
}

.perfect-card-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    padding-top: 20px !important;
    background-color: #F9F8F4;
    border-radius: 10px;
    width: 50%;
}

.perfect-card-main:hover{
    background-color: #faf7eb;
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
}

.perfect-card-main h3 {
    font-size: 22px;
    font-weight: 600;
}

.get-a-closer-heading {
    text-align: center;
    padding: 0 30px 30px;
}

.get-a-closer-look {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.get-a-closer-look h2,
.get-a-closer-heading h2 {
    margin: 0;
    font-family: 'Inter';
    font-size: 40px;
}

.get-a-closer-look img {
    max-width: 33%;
    height: 1.5px;
    align-self: center;
    margin-top: 5px;
}

/*---features-tab-section---*/


.features-tab-para {
    padding: 0 250px;
    text-align: center;
}

.tabs-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1200px;
    margin: 60px auto;
}

.tabs-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.tab-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
    margin: 0;
    padding: 10px 0;
    border-bottom: solid 1px #E4E4E4;
}

.dot {
    width: 18px;
    height: 18px;
    background-color: #000;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.tab-item.active h3 {
    color: #158467;
}

.tab-item.active .dot {
    background-color: #158467;
}

.vertical-line {
    position: absolute;
    left: 8px;
    top: 25px;
    bottom: 25px;
    border-left: 2px dotted #ccc;
    z-index: 1;
}

.tabs-content img {
    width: 100%;
    border-radius: 35px;
}

/*---Sales-Modules-section---*/

.sale-module-section {
    text-align: center;
}

.module-header-main {
    display: flex;
    justify-content: space-between;
}

.module-header-main img {
    max-width: 38%;
    height: 1.5px;
    align-self: center;
    margin-top: 5px;
}

.module-header h2 {
    font-size: 42px;
    font-weight: 800;
}

.module-header h2 span {
    color: #158467;
}

.module-header p {
    max-width: 800px;
    margin: 20px auto 60px;
    color: #444;
    line-height: 1.6;
}

.tabs-container.reversed {
    display: flex;
    flex-direction: row;
    /* Image left, Menu right */
    align-items: center;
    justify-content: space-around;
    gap: 120px;
}

.vertical-line-right {
    position: absolute;
    right: 8px;
    /* Moved to right */
    top: 25px;
    bottom: 25px;
    border-right: 2px dotted #ccc;
    z-index: 1;
}

.tab-item-sale {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Text pushes to the dots */
    gap: 20px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 6px 0;
}

.tab-item-sale h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 10px 0;
    border-bottom: solid 1px #E4E4E4;
}

.tab-item-sale .dot {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
}

.tab-item-sale.active h3 {
    color: #158467;
}

.tab-item-sale.active .dot {
    background-color: #158467;
}

/*---Purchase Module Section---*/

.module-purchase {
    text-align: center;
}

.pmodule-header-main {
    display: flex;
    justify-content: space-between;
}

.pmodule-header-main img {
    max-width: 34%;
    height: 1.5px;
    align-self: center;
    margin-top: 5px;
}

.pmodule-header h2 {
    font-size: 40px;
    font-weight: 800;
}

.pmodule-header h2 span {
    color: #158467;
}

.module-purchase .module-header h1 span {
    color: #158467;
    /* The brand green */
}

.module-purchase .module-header p {
    max-width: 850px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.6;
}

.purch-tabs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu styling */
.purch-tabs-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.purch-tab-item {
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 2;
}

.purch-tab-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    transition: color 0.3s ease;
}

/* The Dots */
.purch-dot {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Active State */
.purch-tab-item.active h3 {
    color: #158467;
    padding-bottom: 10px;
    border-bottom: solid 1px #f2f2f2;
}

.purch-tab-item.active .purch-dot {
    background-color: #158467;
}

/* Vertical Dotted Line */
.purch-vertical-line {
    position: absolute;
    left: 9px;
    top: 40px;
    bottom: 40px;
    border-left: 2px dotted #ccc;
    z-index: 1;
}

/* Image styling */
.purch-tabs-content img {
    max-width: 700px;
    width: 100%;
    border-radius: 20px;
}

/* Mobile View */

@media (max-width: 768px){
    .purch-tabs-container {
    padding: 15px !important;
    gap: 40px !important;
    }
    .purch-tab-item h3 {
    font-size: 20px;
    }
    .purch-vertical-line {
    left: 7px;
    top: 46px;
    }
    .module-inventory .module-header p {
    max-width: 650px !important;
    margin: 20px auto 40px !important;
    }
}

@media (max-width: 425px) {
    .purch-tabs-container {
        flex-direction: column;
    }
}

/* --- Inventory Module --- */

.module-inventory {
    text-align: center;
    margin: 40px 0;
}

.module-inventory .module-header p {
    max-width: 900px;
    margin: 0 auto 60px;
    color: #444;
    line-height: 1.6;
}

.inv-tabs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.inv-tabs-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inv-tab-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Text on left, dot on right */
    gap: 25px;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #f2f2f2;
}

.inv-tab-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.inv-dot {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
}

/* Active State */
.inv-tab-item.active h3 {
    color: #158467;
}

.inv-tab-item.active .inv-dot {
    background-color: #158467;
}

/* Right-aligned Dotted Line */
.inv-vertical-line {
    position: absolute;
    right: 9px;
    top: 25px;
    bottom: 25px;
    border-right: 2px dotted #ccc;
    z-index: 1;
}

.inv-tabs-content img {
    max-width: 750px;
    width: 100%;
    border-radius: 15px;
}


@media (max-width: 768px) {
    .inv-tabs-container {
    gap: 40px;
    padding: 15px;
    }
    .inv-tab-item h3 {
    font-size: 18px;
    }
    .inv-vertical-line {
    right: 8px;
    }
}

@media (max-width: 425px) {
    .inv-tabs-container {
        flex-direction: column-reverse;
        /* Stacks image below text on mobile */
    }
}

/*--- POS Section ---*/
section.POS-section {
    text-align: center;
}

.purmodule-header-main {
    display: flex;
    justify-content: space-between;
}

.purmodule-header-main img {
    max-width: 45%;
    height: 1.5px;
    align-self: center;
    margin-top: 5px;
}

.purmodule-header-main h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0;
}

.purmodule-header h2 span {
    color: #158467;
}

.pos-main {
    text-align: -webkit-center;
}

.pos-main p {
    max-width: 59%;
}

.pos-main img {
    margin-top: 30px;
}


/* --- Steps Section Styles --- */
.steps-section {
    text-align: center;
    padding: 50px 5%;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.steps-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
}

/* The Dotted Curve */
.curve-svg {
    position: absolute;
    top: 37px;
    left: -30px;
    width: 100%;
    height: 95px;
    z-index: 1;
    pointer-events: none;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    /* Sits above the SVG */
}

.step-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.circle {
    width: 105px;
    height: 105px;
    background-color: #158467;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    max-width: 280px;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 900px) {
    .steps-container {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 50px;
    }

    .curve-svg {
        display: none;
        /* Hide the curve on mobile as it won't align vertically */
    }

    .steps-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

/*Pricing Section*/

.pricing-section {
    background-color: #000;
    /* Solid black background */
    color: #fff;
    padding: 100px 20px 140px 20px;
    /* Extra bottom padding for the floating button */
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.pricing-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0;
}

.pricing-header p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 50px;
}

/* The White Card */
.pricing-card {
    background-color: #fff;
    color: #000;
    max-width: 550px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    /* Essential for the floating button */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-top {
    padding: 40px 20px 0px;
    border-bottom: 1px solid #ddd;
}

.card-top h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price {
    font-size: 64px;
    font-weight: 800;
    color: #0F5A46;
}

.currency {
    font-size: 38px;
    vertical-align: middle;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-left: 155px;
}

/* Checklist Items */
.card-features {
    padding: 40px 50px 60px 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 35px;
    /* Space for the icon */
    line-height: 1.4;
    font-weight: 500;
    color: #000;
    list-style: none;
}

.card-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    /* Precise vertical alignment */
    width: 20px;
    height: 20px;
    /* Custom SVG path to match the screenshot exactly */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* The Floating Button */
.cta-button {
    position: absolute;
    bottom: -30px;
    /* Pushes it halfway out of the card */
    left: 30%;
    /* transform: translateX(-50%); */
    background: #0F5644;
    background: linear-gradient(90deg, rgba(15, 86, 68, 1) 0%, rgba(16, 147, 111, 1) 100%);
    color: #fff;
    border: none;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 40%;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.cta-button:hover {
     transform: scale(1.05); /* Grow slightly */
    transition: all 0.2s ease-in-out;
    background: linear-gradient(90deg, rgba(16, 147, 111, 1) 0%, rgba(15, 86, 68, 1) 100%);
}

.cta-button a{
    text-decoration: none;
    color: #fff;
}


/* Mobile Adjustments */

@media (max-width: 768px) {
    .pricing-section {
    padding: 36px 20px 95px 20px;
    }
    
    .subtitle {
    margin-left: 99px;
    }
    .cta-button {
    bottom: -24px;
    padding: 15px 50px;
    font-size: 18px;
    width: 45%;
}
}
@media (max-width: 600px) {
    .pricing-card {
        width: 100%;
    }

    .card-features {
        padding: 30px 25px 50px 25px;
    }

    .cta-button {
        width: 80%;
    }
}

/*--- FAQ section ----*/
.faq-section {
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-item {
    border-bottom: 2px solid #000;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
}

.faq-icon {
    font-size: 25px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Hidden Answer State */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Active State (Open) */
.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust based on content length */
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
    /* Rotates the > to point down */
}

.faq-item:last-child {
    border-bottom: none;
}




/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
        /* Reduced padding for smaller screens */
    }

    .faq-container h2 {
        font-size: 28px;
        /* Smaller heading */
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 20px 0;
        gap: 10px;
        /* Tighter gap between arrow and text */
    }

    .faq-question h3 {
        font-size: 18px;
        /* Easier to read on mobile */
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 15px;
        /* Slightly smaller body text */
        padding-bottom: 20px;
    }
}

/* Extra small devices */
@media (max-width: 426px) {
    .faq-container h2 {
        font-size: 32px;
        margin-top: 0px;
    }

    .faq-icon {
        font-size: 26px;
    }
        .faq-question h3 {
        font-size: 16px;
        }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .btn-get-started {
        padding: 15px 8px;
    }

    .hero-left h3 {
        font-size: 18px;
        margin: 0;
    }
}
@media (max-width: 426px) {
    .main-hero {
        display: flex;
    flex-direction: column !important;
    }
    .hero-left, .hero-right {
    width: 100%;
    }
    .erpnext-experts-main img{
        max-width: 100% !important;
    }
    .erpnext-experts-main {
    width: 100% !important;
    }
    .hero-right img {
    width: 100%;
}
.savings-banner {
    padding: 16px 20px !important;
    font-size: 16px !important;
}
.erpnext-expert-cards {
        gap: 20px !important;
}
    .zatca-approved h2 {
        font-size: 29px !important;
    }
    .zatca-approved img {
    max-width: 30% !important;
}
    .everything-card-main, .everything-card-one{
        width: 100% !important;
    }
    .perfect-for img {
        width: 54% !important;
    }
    .perfect-card {
    flex-wrap: wrap;
}
    .perfect-card-main {
        width: 100% !important;
    }
        .get-a-closer-look img {
        max-width: 12% !important;
    }
    .features-tab-para {
        padding: 0 30px !important;
    }

}

@media (max-width: 768px) {
    .erpnext-experts h2 {
        font-size: 32px;
    }

    .erpnext-experts {
        margin: 0;
    }

    .erpnext-experts-main p {
        font-size: 16px;
    }

    .erpnext-expert-cards {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 60px;
    }

    .zatca-approved h2 {
        font-size: 32px;
    }
    .everything-you-need h2 {
    font-size: 32px;
    }
    .everything-cards-row1 {
    flex-wrap: wrap;
    }
    .everything-card-main {
    width: 48%;
    padding: 20px 20px 25px 20px;
    }
    .everything-card-one {
        width: 48%;
        padding: 20px 20px 25px 20px;
    }
    .everything-cards-row1 {
        justify-content: center;
    }
    .everything-you-need-cards {
    margin: 40px 0;
    }
    .perfect-for {
    margin-left: 17px;
    }
    .perfect-for h2 {
    font-size: 32px;
    }
    .perfect-for img {
        width: 75%;
    }
    .perfect-for-cards {
        margin-top: 35px;
    }
    .get-a-closer-look h2, .get-a-closer-heading h2 {
    font-size: 32px;
    }
    .get-a-closer-look img {
    max-width: 29%;
    }
    .tabs-container {
    padding: 15px;
    margin: 40px auto !important;
    }
    .tab-item h3 {
    font-size: 18px !important;
    }
    .tabs-container {
    gap: 30px;
    }
    .module-header h2 {
    font-size: 32px !important;
    margin: 0;
    }

    .tabs-container.reversed {
    gap: 40px !important;
    }
    .tab-item-sale h3 {
    font-size: 18px !important;
    }
    .pmodule-header-main img {
    max-width: 30% !important;
    }
    .module-purchase .module-header p {
    margin: 10px auto 50px !important;
    }
    .perfect-card-main {
    width: 54%;
    }
    
}




/*Footer-section*/
.main-footer {
    background: #0F5644;
    background: linear-gradient(90deg, rgba(15, 86, 68, 1) 0%, rgba(16, 147, 111, 1) 100%);
}

.footer-main {
    display: flex;
    padding-top: 30px;
    gap: 80px;
}

.footer-left {
    width: 30%;
}

.footer-right {
    width: 25%;
    text-align-last: center;
}

.footer-middle {
    width: 45%;
}

.footer-left img {
    width: 50%;
}

.footer-left p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    font-family: Inter;
    line-height: 22px;
}

.footer-middle .nav-links a {
    color: #fff;
}

.contacts {
    display: flex;
    margin-top: 50px;
    gap: 30px;
}

.email,
.call-us {
    display: flex;
    gap: 10px;
}

.email img,
.call-us img {
    width: 40px;
    height: 40px;
}

.email-main h6,
.callus-main h6 {
    margin: 0;
    color: #fff;
    font-family: Inter;
}

.email-main a,
.callus-main a {
    font-size: 12px;
    color: #ffffff;
    font-family: Inter;
}
/*
.email-main,
.callus-main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
*/
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-right p,
.footer-right a {
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-family: Inter;
    font-size: 13px;
    text-decoration: none;
}

.copyright {
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 11px;
    color: #fff;
    font-family: 'Inter';
}

.copyright p a {
    color: #fff;
}

@media (max-width: 786px) {
	    html, body {
        overflow-x: hidden; 
        overflow-y: auto;  
        width: 100%;
        margin: 0;
        padding: 0;
    }
.footer-main {
    gap: 40px;
}
.nav-links a {
    margin: 0px 10px;
}
.email img, .call-us img {
    width: 30px;
    height: 30px;
}
.contacts {
    margin-top: 35px;
    flex-direction: column;
}
    
}
@media (max-width: 786px) {
        .footer-main {
        flex-direction: column;
        }
        .footer-left, .footer-middle, .footer-right {
    width: 100%;
    }
    .social-icons {
    margin-bottom: 15px;
}
.footer-left img {
    width: 40%;
}
}



/* Mobile Responsiveness */

@media (max-width: 768px) {
    .side {
        padding: 20px 20px;
    }

    .comp-price {
        font-size: 36px;
    }

    .savings-banner {
        font-size: 20px;
    }

}

@media (max-width: 426px) {
    .comparison-card {
        flex-direction: column;
    }

    .vs-badge {
        top: 50%;
        left: 50%;
    }

    .comp-price {
        font-size: 36px;
    }

    .tabs-container {
    flex-direction: column;
    }
    .tabs-menu {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
    }
    .module-header-main img {
        max-width: 20% !important;
    }
    .vertical-line-right {
        display: none;
    }
    .tabs-container.reversed {
    flex-direction: column-reverse !important;
    }
    .purch-tabs-container {
        flex-direction: column;
    }
    .inv-tabs-container {
        flex-direction: column-reverse;
    }
    .inv-tabs-menu {
    flex-direction: row !important;
    flex-wrap: wrap !important;
}
.purmodule-header-main img {
    max-width: 35% !important;
}
.pos-main p {
    max-width: 100% !important;
}
.pos-main img {
    max-width: 100%;
}
.steps-section {
    padding: 0 !important;
}
.pricing-header h2 {
    font-size: 32px !important;
}
.card-top {
    padding: 1px 0px 0px !important;
}
    .card-top h2 {
        font-size: 18px !important;
    }
        .price {
        font-size: 32px !important;
    }
        .subtitle {
        margin-left: 16px !important;
    }
    
.card-features {
    gap: 12px !important;
}
.cta-button {
        width: 50% !important;
        padding: 12px 0px !important;
        font-size: 16px !important;
    }
    .comparison-section {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
    padding: 80px 20px 90px 20px;
    }

}




/*---- Animations ---*/
.split-text-container {
    display: flex;
    font-size: 4rem;
    text-transform: uppercase;
    color: #000000;
    overflow: hidden;
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}

.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }
    100% {
        transform: translateX(0);
    }
}
h2, h3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; /* Optimizes for smoother animation */
}

/* Active state triggered by JavaScript */
.hero-left h1.is-visible,
h2.is-visible, h3.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-ico {
    transition: transform 0.3s ease-in-out; 
}
.whatsapp-ico:hover {
	transform: scale(1.3); 
}
