:root {
    --primary-color: #FCBB06;
    --secondary-color: #12431E;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}


body {
    color: #4a4a4a;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}




.section-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

@media (max-width: 570px) {

    .section-container {
        width: 94%;
    }
}




.section-header {
    text-align: center;
}

.section-span {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 34px;
    color: #1A2E22;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: #2D3E35;
    opacity: 0.7;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}







.explore-btn {
    margin: auto;
    display: block;
    margin-top: 30px;
    border: 2px solid #E1D19C;
    border-radius: 30px;
    /* padding: 6px 16px; */
    height: 50px;
    width: 240px;
    background-color: #f3ead3;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.explore-inner-box {
    border: 2px solid #E1D19C;
    border-radius: 30px;
    /* padding: 8px 30px; */
    height: 36px;
    width: 200px;
    background-color: #ffe7aa;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.explore-btn:hover .explore-inner-box {
    height: 50px;
    width: 240px;
    background-color: #ffd772;
    font-size: 16px;
}






.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}







/* --- combine her0 section --- */
.combine-hero {
    height: 360px;
    background: linear-gradient(rgba(18, 67, 30, 0.8), rgba(18, 67, 30, 0.8)), url('images/hero-back-all.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.combine-hero-content h1 {
    font-size: 3.5rem;
    margin-top: 110px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.combine-hero-content h1 span {
    color: var(--primary-color);
}

.combine-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    line-height: 1.4;
    margin: 0 auto;
    opacity: 0.9;
}

.combine-hero-navigation-container {
    margin-top: 10px;
    font-size: 18px;
}

.combine-hero-navigation-container a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.combine-hero-navigation-container a:hover {
    color: #FCBB06;
}

.combine-hero-navigation-container span {
    opacity: 0.6;
}


@media (max-width: 560px) {
    .combine-hero-content h1 {
        font-size: 2.5rem;
        margin-top: 80px;
    }

}
















/* header */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    height: 80px;
    margin-top: 20px;
    border-radius: 100px;
    padding: 10px 0px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #fff6d2 0%, #FDF8E4 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.5s;
}

.header-container {
    width: 100%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 180px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
}

.navmenu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.navmenu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navmenu ul li {
    list-style: none;
    font-size: 17px;
    font-weight: 500;
}

.navmenu ul li a {
    text-decoration: none;
    color: #212121;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.navmenu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F7BD04;
    transition: width 0.3s ease;
}

.navmenu ul li a:hover {
    color: #F7BD04;
}

.navmenu ul li a:hover::after {
    width: 100%;
}

/* Active Link State */
.navmenu ul li a.active {
    color: #F7BD04;
}

.navmenu ul li a.active::after {
    width: 100%;
}


.dropdown {
    position: relative;
}

.dropdown a i {
    font-weight: 900;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -500%;
    background: #ffe26e;
    min-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #FDF7E2;
}

.icon-box {
    background: #fff;
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.icon-box i {
    color: #FCBB06;
    font-size: 20px !important;
}

.item-text h4 {
    font-size: 16px;
    color: #12431E;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.4;
}

.item-text p {
    font-size: 12px;
    line-height: 1.4;
    color: #606060;
}


.nav-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-options a {
    text-decoration: none;
    border: 2px solid #FCBB06;
    color: #FCBB06;
    padding: 4px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-options a:hover {
    background: #FCBB06;
    color: #fff;
    transform: scale(1.07);
}

.nav-options .nav-book {
    border: 2px solid #FCBB06;
    color: #3f3f3f;
    background: #FCBB06;
}





.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 21px;
    background: #fff;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #F7BD04;
    transition: all 0.3s ease;
}




@media (max-width: 1060px) {

    .mobile-nav-toggle {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .navmenu {
        position: fixed;
        top: -20px;
        right: -70%;
        width: 50%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 30px;
        padding: 80px 40px;
        transition: 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        /* display: flex;  */
        /* overflow-y: auto; */
    }

    .navmenu ul {
        flex-direction: column;
        margin-top: 20px;
        gap: 40px;
    }

    .navmenu.open {
        right: -30px;
    }

    .nav-options {
        gap: 20px;
        flex-direction: column;
        width: 100%;
    }

    .dropdown-menu {
        left: -500%;
        z-index: 1000;
        min-width: 500px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dropdown-item {
        padding: 10px;
        margin-bottom: 0px;
    }

}


@media (max-width: 768px) {

    .dropdown-menu {
        left: -500%;
        z-index: 1000;
    }

    .item-text p {
        display: none;
    }


    .navmenu {
        gap: 40px;
        flex-direction: column;
    }

    .nav-options {
        gap: 20px;
        flex-direction: column;
    }

}


@media (max-width: 570px) {

    .dropdown-menu {
        left: -200%;
        min-width: 280px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

}


















/* HERO SECTION */
.hero-section {
    background: #FEFBF6;
    padding-top: 140px;
    padding-bottom: 40px;
    /* background-image: url('images/hero-back.webp'); */
    /* background-repeat: no-repeat; */
    /* background-position: right bottom; */
    /* background-size: auto 100%; */
    background: var(--secondary-color);
    overflow: hidden;
}

.hero-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* HERO LEFT CONTENT */
.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: 55px;
    line-height: 1.2;
    font-weight: 900;
    /* color: var(--secondary-color); */
    color: #fff;
    margin-bottom: 10px;
}

.highlight-text {
    color: var(--primary-color);
}

.hero-description {
    font-size: 18px;
    line-height: 1.4;
    /* color: #2D3E35; */
    color: #fff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-highlights {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-highlights div {
    background-color: #ffedbc;
    color: #2D3E35;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-highlights div:hover {
    transform: translateY(-4px);
}

/* EMAIL FORM */
.email-form {
    display: flex;
    background-color: #ffffff;
    border: 2px solid #e7e7e7;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    height: 60px;
    margin-bottom: 10px;
}

.email-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    color: #2D3E35;
}

/* BUTTON */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffd876;
}

.trial-text {
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

/* HERO IMAGE (RIGHT) */
.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-dashboard-img {
    max-width: 100%;
    height: auto;
}




/* RESPONSIVENESS (MOBILE) */

@media screen and (max-width: 1024px) {

    .hero-container {
        gap: 30px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        margin-bottom: 30px;
        font-size: 16px;
    }


    .hero-highlights {
        margin-bottom: 30px;
    }

    .hero-highlights div {
        background-color: #ffdf8f;
        color: #2D3E35;
    }


    .hero-image-wrapper {
        justify-content: center;
        /* margin-bottom: 30px; */
    }

    .hero-dashboard-img {
        max-width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        margin-bottom: 20px;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 10px;
    }

    .email-form {
        flex-direction: column;
        box-shadow: none;
        width: 100%;
    }

    .email-form input {
        width: 100%;
        padding: 15px;
    }

    .btn-primary {
        width: 100%;
        margin-top: 20px;
    }

    .trial-text {
        margin-top: 60px;
        line-height: 1.2;
    }

}














.partner-section {
    padding: 40px 0;
}

/* Flex Layout */
.partner-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.partner-image-box,
.partner-text-box {
    flex: 1;
}

.partner-image-box {
    display: flex;
    justify-content: center;
}

.partner-side-img {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}


.partner-text-box .explore-btn {
    display: inline;
}


/* Responsive Tablet/Mobile */
@media (max-width: 768px) {
    .partner-content {
        flex-direction: column;
    }

    .partner-image-box {
        order: 2;
    }

    .partner-text-box .explore-btn {
        display: block;
    }
}









/* FEATURES SECTION */
.partner-features-section {
    padding: 40px 0 40px;
}


/* GRID LAYOUT */
.partner-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* INDIVIDUAL CARD */
.partner-feature-card {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    background: #ffffff;
}

.partner-feature-card:hover {
    transform: translateY(-10px);
}

.partner-feature-icon-wrapper {
    padding: 20px 0 0;
    background: linear-gradient(90deg, #FDF0BC 0%, #FDF8E4 100%);
}

.partner-feature-icon-wrapper img {
    height: 100px;
    width: auto;
}

.partner-feature-content {
    padding: 20px 30px 40px;
}

.partner-feature-content h3 {
    font-size: 24px;
    color: #1A2E22;
    margin-bottom: 10px;
    font-weight: 700;
}

.partner-feature-content p {
    font-size: 16px;
    line-height: 1.3;
    color: #2D3E35;
    opacity: 0.9;
}

/* RESPONSIVENESS */
@media screen and (max-width: 768px) {
    .partner-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .partner-feature-card:nth-child(3) {
        grid-column: span 2;
    }

    .partner-feature-card {
        max-width: 100%;
    }

    .partner-feature-icon-wrapper img {
        height: 80px;
    }
}

@media screen and (max-width: 500px) {
    .partner-features-grid {
        grid-template-columns: 1fr;
    }

    .partner-feature-card:nth-child(3) {
        grid-column: span 1;
    }
}


















/* bottom side feature section */
.services-home-section {
    padding: 40px 0px;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('images/feature-back.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}


.services-home-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Left Side - Features */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.services-home-card {
    background: #fff5d9;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.services-home-card:hover {
    transform: translateY(-5px);
}

.services-home-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.services-home-text h3 {
    margin: 0 0 2px 0;
    font-size: 1.2rem;
    color: #333;
}

.services-home-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}





/* Right Side - Image */
.services-home-image-container {
    display: flex;
    justify-content: center;
    max-width: 280px;
}

.mascot-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-home-content-wrapper {
        flex-direction: column;
        margin-top: 40px;
    }

    .services-home-grid {
        order: 2;
        grid-template-columns: 1fr;
    }


    .services-home-image-container {
        display: none;
    }
}



















/* BENEFITS SECTION */
.choose-section {
    padding: 40px 0;
}

/* GRID LAYOUT */
.choose-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

/* BENEFIT CARD */
.choose-card {
    background: #fff8ec;
    padding: 30px;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fdeed4;
}

.choose-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.choose-card-header img {
    width: 60px;
    height: auto;
}

.choose-card-header h3 {
    font-size: 22px;
    color: #1A2E22;
    line-height: 1.2;
    text-align: left;
}

.choose-card p {
    font-size: 17px;
    color: #2D3E35;
    opacity: 0.8;
    line-height: 1.3;
    text-align: center;
}

/* RESPONSIVENESS */
@media screen and (max-width: 992px) {
    .choose-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 40px;
    }
}





















.how-it-works {
    padding: 40px 0px;
    background: #fffaec;
}

.step-full-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.step-container-image {
    flex: 1;
}

.step-container-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Steps Timeline Logic */
.steps-container-content {
    position: relative;
    flex: 1;
}

/* The vertical connector line */
.steps-container-content::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 40px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(252, 187, 6, 0.3);
}

.step-content {
    background-color: #FDF3D0;
    padding: 20px 30px;
    border-radius: 15px;
    width: 100%;
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Remove margin from last step */
.step-item:last-child {
    margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .step-full-container {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: 40px;

        flex-direction: column;
    }

    .steps-container-content::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-item {
        gap: 20px;
    }
}











.who-we-work-with {
    padding: 40px 0px;
}

/* Grid Layout */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.business-card {
    background-color: #fff4e0;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* Hover Effect */
.business-card:hover {
    background-color: #fff8ec;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


/* Responsive Tweak */
@media (max-width: 600px) {

    .business-grid {
        grid-template-columns: 1fr;
    }
}
















.benefits-section {
    padding: 40px 0px;
    background-color: #fffcf5;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-check-box {
    width: 32px;
    height: 32px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
















.cta-section {
    padding: 20px 0px 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2912 100%);
    /* text-align: center; */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative circle background */
.cta-section::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    background: rgba(252, 186, 6, 0.185);
    border-radius: 50%;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 200px;
    height: 200px;
    background: rgba(252, 186, 6, 0.185);
    border-radius: 50%;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cta-left {
    width: 200px;
}

.cta-left img {
    width: 100%;
}

.cta-right {
    max-width: 600px;
}

.cta-right h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.cta-right p {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0.7;
}

.cta-button-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}



.demo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px 40px; */
    height: 40px;
    width: 180px;
    cursor: pointer;
    border: none;
    background-color: #f3ead3;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 600;
    overflow: visible;
    transition: all 0.3s ease;
}

.active-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    border: 2px solid var(--primary-color);
    z-index: 0;
    transition: all 0.3s ease;
    animation: continuous-pulse 2s infinite;
}

@keyframes continuous-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2, 1.4);
        opacity: 0;
    }
}

.demo-btn:hover {
    background-color: #ffe9b0;
}







.contact-btn {
    height: 40px;
    text-align: center;
    width: 200px;
    cursor: pointer;
    background-color: #ffe297;
    color: #000;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.5s;
    position: relative;
    border-radius: 6px;
}


.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #f3ead34a;
    transition: all 0.3s;
}

.contact-btn:hover::before {
    opacity: 0;
    transform: scale(0.8, 0.8);
}

.contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.2, 1.2);
}

.contact-btn:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}



@media (max-width: 768px) {
    .cta-container {
        text-align: center;
    }

    .cta-left {
        display: none;
    }

    .cta-right {
        max-width: 100%;
    }

    .cta-button-container {
        margin: auto;
        margin-top: 40px;
        display: inline-flex;
    }
}

@media (max-width: 420px) {
    .cta-button-container {
        flex-direction: column;
    }
}


















/* Footer Styles */


.main-footer {
    background-color: #fffbef;
    padding-top: 60px;
    border-top: 1px solid #f0f0f0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 200px;
}

.footer-logo img {
    width: 100%;
}

/* Brand Section */
.footer-brand-desc {
    color: #666;
    line-height: 1.6;
    margin: 20px 0 30px;
    font-size: 0.95rem;
}

.footer-newsletter-card {
    background: #fff8e1;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ffecb3;
}

.footer-mail-icon i {
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 10px;
    border-radius: 8px;
}

.footer-newsletter-text span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.footer-newsletter-text p {
    font-size: 0.85rem;
    margin: 0;
    color: #666;
}

.footer-newsletter-arrow {
    margin-left: auto;
    background: var(--primary-color);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter-arrow:hover {
    transform: scale(1.1);
}

/* Link Columns */
.footer-col-header {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col-header i {
    background-color: #fff3c8;
    /* padding: 10px; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-right: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Contact Section */
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon-wrap {
    width: 40px;
    height: 40px;
    background: #EDF6E4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-data-main {
    display: block;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-data-sub {
    font-size: 0.8rem;
    color: #666;
}

/* Bottom Bar */
.footer-bottom {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px 0;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-devider {
    width: 1px;
    height: 60px;
    background: #ffffff1a;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
}

.footer-shield-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-color);
}

.footer-shield-icon i {
    font-size: 30px;
}

.footer-trust-badge p span {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-social-links-wrap {
    text-align: center;
    padding: 0 40px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social-icons a {
    color: white;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: scale(1.12);
}

.footer-copyright p span {
    color: var(--primary-color);
}

/* Responsive Logic */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }

}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 2fr;
    }

    .footer-devider {
        /* display: none; */
        width: 140px;
        height: 2px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social-links-wrap {
        border: none;
    }

}


@media (max-width: 420px) {
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-brand-desc {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }


}
































/* about page */

.about-hero {
    background: var(--secondary-color);
    padding: 140px 0 80px 0;
    position: relative;
    /* overflow: hidden; */
}

.about-hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-hero-content {
    flex: 1;
    color: #fff;
}

.about-hero-content .eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    position: relative;
    padding-left: 40px;
}

.about-hero-content .eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 20px 0;
}

.about-hero-content h1 span {
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* Visual Side & Feature Tags */
.about-hero-visual {
    flex: 1;
    position: relative;
    margin-bottom: -40px;
}

.about-hero-visual img {
    width: 100%;
}

/* Stats Bar Overlap */
.about-hero-stats-bar {
    background: #fff9e0;
    padding: 30px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1250px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #e7ddc3;
}

.about-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-hero-stat-icon {
    width: 60px;
    height: 60px;
    background: #e2e4b8;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.about-hero-stat-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
}

.about-hero-stat-info p {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    margin: 0;
    line-height: 1.2;
}

.about-hero-stat-info p span {
    display: block;
    font-weight: 400;
    color: #888;
    margin-top: 4px;
}

/* Responsive at 1000px */
@media (max-width: 1000px) {
    .about-hero {
        padding: 120px 0 250px 0;
    }

    .about-hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        bottom: -150px;
        width: 95%;
    }
}

@media (max-width: 500px) {
    .about-hero {
        padding-bottom: 20px;
    }

    .about-hero-flex {
        gap: 20px;
    }

    .about-hero-visual {
        margin-bottom: 0px;
    }

    .about-hero-stats-bar {
        grid-template-columns: 1fr;
        position: static;
        bottom: 0px;
        left: 0%;
        transform: translateX(0%);
        width: 100%;
        margin-top: 20px;
    }
}




















.who-we-are {
    padding: 150px 0 40px;
    background-color: #ffffff;
}

.who-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Content Styling */
.who-content {
    flex: 1;
}

.who-content .eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.who-content .eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.who-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.who-content h2 span {
    color: var(--secondary-color);
}

.who-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Custom Check List */
.who-check-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.who-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.who-check-icon i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Visual Side & Overlap Badge */
.who-visual {
    flex: 1.2;
}

.who-image-wrapper {
    position: relative;
    border-radius: 25px;
}

.who-main-img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
}

.who-trusted-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid #f0f0f0;
}

.who-badge-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-badge-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    animation: vertical-flip 2s infinite linear;
}

.who-badge-text strong {
    display: block;
    font-size: 1rem;
    color: #333;
    font-weight: 700;
}

.who-badge-text span {
    font-size: 0.9rem;
    color: #666;
}


@keyframes vertical-flip {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}



/* Responsive Logic */
@media (max-width: 1000px) {

    .who-we-are {
        padding: 200px 0 60px;
    }

    .who-flex {
        flex-direction: column;
        text-align: left;
        gap: 0px;
    }

    .who-visual {
        width: 100%;
        margin-top: 40px;
    }

    .who-trusted-badge {
        left: 20px;
        bottom: -15px;
        padding: 10px 20px;
    }
}

@media (max-width: 500px) {

    .who-we-are {
        padding: 40px 0 60px;
    }

}





















.values-section {
    padding: 40px 0;
    background-color: #F9FAF9;
    border-radius: 30px;
}

.values-header {
    text-align: center;
    margin-bottom: 40px;
}

.values-header .eyebrow {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    padding-left: 35px;
}

.values-header .eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
}

.values-header h2 {
    font-size: 2rem;
    color: #333;
}

.values-header h2 span {
    color: var(--secondary-color);
}

/* Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card Styling */
.value-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 2px solid #ebebeb;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(18, 67, 30, 0.08);
    border-color: var(--primary-color);
}

/* Icon Styling */
.value-icon {
    width: 60px;
    height: 60px;
    background-color: #e4f0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: var(--secondary-color);
    /* Darker icon on yellow background */
}

/* Text Content */
.value-text h3 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.value-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Logic */
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 25px;
    }
}













.about-process-years {
    color: var(--primary-color);
    font-weight: 600;
}














































/* contact page */

.contact-hero .about-hero-flex {
    align-items: end;
}

.contact-hero-stats-bar {
    background: #fffbeb;
    padding: 20px;
    border-radius: 30px;
    display: block;
    text-align: center;
    gap: 20px;
    position: absolute;
    bottom: -230px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1250px;
    box-shadow: none;
    border: 2px solid #e7ddc3;
}

.contact-hero-stat-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.contact-hero-stat-card {
    background: #fff;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    border: 2px solid #efefef;
    text-decoration: none;
    transition: 0.3s;
}

.contact-hero-stat-card:hover {
    background: #fffae8;
    border: 2px solid #F7BD04;
}

.contact-hero-stat-card i {
    background: #E2E4B8;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #12431E;
    margin-bottom: 10px;
}

.contact-hero-stat-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
}

.contact-hero-stat-card h4 {
    font-size: 17px;
    color: #7a7a7a;
}

.contact-hero-stat-card p {
    font-size: 16px;
    opacity: 0.8;
    color: #696969;
}





/* Responsive at 1000px */
@media (max-width: 1000px) {

    .contact-hero .about-hero-flex {
        gap: 0px;
    }

    .contact-hero-stats-bar {
        bottom: -290px;
        width: 90%;
    }

    .contact-hero-stat-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-hero .services-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 500px) {

    .contact-hero-stats-bar {
        grid-template-columns: 1fr;
        position: static;
        bottom: 0px;
        left: 0%;
        transform: translateX(0%);
        width: 100%;
        margin-top: -10px;
    }

    .contact-hero-stat-container {
        grid-template-columns: 1fr;
    }
}















.contact-dashboard {
    padding: 260px 0px 40px;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Shared Panel Card Styles */
.panel-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 2px solid #eeeeee;
    min-width: 200px;
}

.panel-header {
    color: var(--secondary-color);
    font-size: 1.8rem;
    line-height: 1.3;
}

.heading-border {
    width: 50px;
    height: 3px;
    border-radius: 10px;
    background: #ffc72c;
}

.panel-sub {
    color: #555;
    font-size: 0.95rem;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Form Panel Specifics */
.message-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row,
.form-row-2col {
    width: 100%;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--secondary-color);
    background-color: #ffffff;
    outline: none;
    transition: 0.3s;
}

.message-form input:focus,
.message-form textarea:focus {
    border-color: var(--secondary-color);
}

.message-form input::placeholder,
.message-form textarea::placeholder {
    color: #a0a0a0;
}

.consent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.consent-row a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.consent-row input {
    width: 16px;
}

/* Submit Button */
.send-message-btn {
    align-self: flex-start;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.send-message-btn:hover {
    background-color: #0d3115;
}

/* Find Us Panel Specifics */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Connect Bar */
.connect-bar {
    padding: 20px;
    background-color: #f6f7ee;
    border-radius: 10px;
    border: 2px solid #efefef;
    min-width: 200px;
}

.connect-bar h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.connect-bar p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.social-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.social-icon-btn:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.social-icon-btn img {
    max-width: 22px;
    max-height: 22px;
}

/* Responsive Breakpoints */
@media (max-width: 1000px) {
    .contact-dashboard {
        padding: 340px 0px 40px;
    }

    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .contact-dashboard {
        padding: 40px 0px 40px;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
    }
}











/* FAQ Section Styles */

.faq-section {
    padding: 40px 0;
    background-color: #f6f7f3;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header .eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    padding-left: 35px;
    display: inline-block;
}

.faq-header .eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.faq-header h2 {
    font-size: 2rem;
    color: #333;
    line-height: 1.3;
}

.faq-header h2 span {
    color: var(--secondary-color);
}

/* Accordion Styling */
.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    gap: 15px;
}

.q-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.plus-icon {
    margin-left: auto;
    color: #999;
}

.plus-icon i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Answer Area Logic */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 25px 25px 60px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Active State Styles */
.faq-item.active .plus-icon i {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-item.active .faq-question {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 1.4rem;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
}


































/* services main page */

.services-hero {
    background: linear-gradient(135deg, #113f1e 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 140px 0 0px;
    overflow: hidden;
}

.services-hero-wrapper {
    display: flex;
    align-items: end;
    gap: 60px;
}

/* Content Side */
.services-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.services-hero-eyebrow {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    margin-left: 40px;
}

.services-hero-eyebrow::after {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.services-hero-main-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 20px 0;
}

.services-hero-main-heading span {
    color: var(--primary-color);
}

.services-hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 4px;
    opacity: 0.8;
}

.services-hero-btn {
    background: var(--primary-color);
    padding: 10px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(252, 187, 6, 0.3);
    border: none;
    margin: 20px 0 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.services-hero-btn i {
    margin-left: 10px;
    color: #fff;
    background-color: #212121;
    border-radius: 50%;
    padding: 6px;
    transition: transform 0.3s ease;
}

.services-hero-btn:hover {
    transform: translateY(-3px);
    background: #ffc72c;
    box-shadow: 0 8px 25px rgba(252, 187, 6, 0.4);
}

.services-hero-btn:hover i {
    transform: translateX(5px);
}

.services-hero-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.services-hero-btn:hover::after {
    left: 120%;
}

.services-hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(252, 187, 6, 0.2);
}


.services-hero-visual {
    flex: 1.3;
}

.mascot-img {
    max-width: 100%;
    height: auto;
    transform: translateY(10px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1000px) {
    .services-hero {
        padding: 130px 0 0px;
    }

    .services-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .services-hero-eyebrow {
        margin-left: 20px;
    }

    .services-hero-main-heading {
        font-size: 2.8rem;
    }

    .services-hero-visual {
        max-width: 600px;
        margin: 0 auto;
        order: 2;
    }

    .services-hero-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 0px;
    }

    .services-hero-main-heading {
        font-size: 2.2rem;
    }

    .services-hero-description {
        font-size: 1.1rem;
    }

    .services-hero-explore-btn {
        width: 100%;
    }
}













.core-services {
    padding: 40px 0px;
    text-align: center;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Card Styling */
.service-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    border: 2px solid #efefef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 67, 30, 0.1);
    border-color: var(--primary-color);
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #fff0d5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.service-icon-circle i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card:hover .service-icon-circle {
    background-color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Learn More Link */
.service-learn-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.service-learn-more i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}


.service-card:hover .service-learn-more i {
    transform: translateX(5px);
}

.service-learn-more:hover {
    color: var(--primary-color);
}


/* Responsive Breakpoints */
@media (max-width: 1060px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}














.process-section {
    padding: 40px 0px;
    background-color: #FFFAEC;
    text-align: center;
}

/* Steps Container & Connector Line */
.service-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    margin-top: 60px;
}

/* Dashed line background */
.service-process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 1;
}

.service-step-item {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.service-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

/* Floating Step Number */
.service-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    z-index: 3;
}

.service-icon-circle {
    width: 100px;
    height: 100px;
    background-color: #DEE8D0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-circle i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.service-step-item:hover .service-icon-circle {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.service-step-item:hover .service-icon-circle i {
    color: #fff;
}

.service-step-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.service-step-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .service-process-steps {
        flex-direction: column;
        gap: 50px;
    }

    /* Remove horizontal line and add vertical one for mobile */
    .service-process-steps::before {
        display: none;
    }

    .service-step-item p {
        max-width: 400px;
    }
}











.services-cta-banner {
    padding: 60px 00px;
}

.services-cta-card {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 30px 40px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* overflow: hidden; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mascot Side */
.services-cta-mascot {
    /* flex: 0 0 180px; */
    width: 180px;
    position: absolute;
    margin-top: -20px;
}

.services-cta-mascot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text Content */
.services-cta-content {
    flex: 1;
    z-index: 2;
    margin-left: 220px;
}

.services-cta-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.services-cta-content h2 span {
    color: var(--primary-color);
}

.services-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Buttons */
.services-cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.services-cta-buttons .services-hero-btn {
    margin: 0px;
}


.services-outline-btn {
    padding: 10px 35px;
    border: 2px solid var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Rocket Side */
.services-cta-rocket {
    width: 140px;
    display: flex;
    justify-content: flex-end;
}

.services-cta-rocket img {
    width: 100%;
    opacity: 0.8;
}

/* Responsive Logic for 1000px */
@media (max-width: 1100px) {
    .services-cta-content h2 {
        font-size: 2rem;
    }

    .services-cta-mascot {
        flex: 0 0 140px;
    }
}

@media (max-width: 900px) {
    .services-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .services-cta-mascot {
        display: none;
    }

    .services-cta-content {
        flex: 1;
        z-index: 2;
        margin-left: 0;
    }

    .services-cta-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .services-hero-btn,
    .services-outline-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .services-cta-rocket {
        display: none;
    }
}

































/* faq page */

.faq-hero {
    padding-top: 100px;
}

.search-input-group {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 40px;
}

.search-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.search-input-group input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
    background: transparent;
}

.search-input-group input::placeholder {
    color: #888;
    font-weight: 400;
}

.search-input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(252, 187, 6, 0.2);
}


@media (max-width: 1000px) {

    .faq-hero {
        padding-top: 120px;
    }

    .search-input-group {
        gap: 10px;
        max-width: 400px;
        margin: auto;
        margin-top: 20px;
    }

}

@media (max-width: 768px) {

    .faq-hero {
        padding-top: 100px;
    }

}













.faq-detailed-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

/* Sidebar Styles */
.faq-grid .card {
    background: #ffffff;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 25px;
}

.category-panel h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: 0.3s;
    color: #444;
    font-weight: 600;
}

.category-list li i {
    margin-right: 16px;
    font-size: 1.1rem;
}

.category-list li .count {
    font-size: 0.85rem;
    color: #888;
}

.category-list .active {
    background-color: #fff8e6;
    color: var(--secondary-color);
}

.category-list .active span i {
    color: var(--primary-color);
}

.category-list .active .count {
    color: var(--primary-color);
}

.category-list li:hover:not(.active) {
    background-color: #f5f5f5;
}

/* Support CTA Card */
.support-cta {
    background-color: #f1f7f1;
    text-align: left;
    padding: 20px;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.support-cta h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.support-cta p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Main Accordion Styles */

.faq-main {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 10px;
}













.faq-main .faq-item.active {
    border-color: #ececec;
}

.faq-main .faq-answer {
    position: relative;
    background: #F3F4EE;
}

.faq-main .faq-answer-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #11421E;
    opacity: 0.1;
}

.faq-main .faq-answer p {
    padding-top: 20px;
    width: 90%;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        order: 2;
    }

    .faq-main {
        order: 1;
    }
}








































/* blog page */

.blog-page {
    padding: 40px 0 0;
    background: #fff;
}

/* Top Tabs */
.blog-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #ebebeb;
    background: #fff;
    border-radius: 30px;
    color: #12431E;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-btn:hover {
    background: #12431E;
    color: #fff;
}

/* Main Grid Layout */
.blog-main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Blog Card Styles */
.blog-card {
    border: 2px solid #f0f0f0;
    padding: 12px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    /* height: fit-content; */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-img {
    position: relative;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 14px 6px 0;
}

.category-tag {
    background: #e8f3ea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e7e36;
}

.card-content h3 {
    font-size: 1.3rem;
    color: #111;
    margin-top: 10px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.card-content p {
    color: #777;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    color: #999;
    border-top: 2px solid #f1f1f1;
    padding-top: 15px;
}

.card-footer span {
    color: #9f9f9f;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.card-footer span i {
    margin-right: 6px;
}

.read-more {
    margin-left: auto;
    color: #135624;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.read-more i {
    margin-left: 4px;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #175e29;
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #eee;
}

.sidebar-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--primary-color);
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
}

.sidebar-cat-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-cat-list li span i {
    margin-right: 10px;
}

.sidebar-cat-list li.active {
    background: #fff8e6;
    color: var(--secondary-color);
}

.sidebar-cat-list li.active i {
    color: var(--primary-color);
}

.sidebar-cat-list li.active .count {
    color: var(--primary-color);
}


.popular-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-post-item h5 {
    font-size: 15px;
    line-height: 1.4;
}

.popular-post-item span {
    font-size: 14px;
    opacity: 0.8;
}


/* Newsletter Widget */
.newsletter-widget {
    background: #fff8e6;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.mail-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.newsletter-widget input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin: 15px 0;
}

.subscribe-btn {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    align-items: center;
}

.page-num {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
}

.page-num.active {
    background: var(--secondary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .blog-list {
        grid-template-columns: 1fr;
    }
}


































/* blog detail page */

.blog-detail-container {
    background: #fff;
    padding-top: 100px;
}

.blog-post-header {
    background-color: #f9fbf9;
    padding: 40px 0 60px;
    text-align: center;
}

.post-meta-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.category-pill {
    background: #fff;
    color: #2ecc71;
    padding: 4px 15px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.blog-post-header h1 {
    font-size: 2.6rem;
    max-width: 900px;
    margin: 0 auto 10px;
    color: #222;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-container {
    margin-top: -20px;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.featured-image {
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.post-body h2 {
    color: #222;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body blockquote {
    background: #fdfaf0;
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
    border-radius: 0 15px 15px 0;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    margin-top: 50px;
}

.post-tags span {
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-right: 5px;
    color: #777;
}

.share-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-post a {
    color: #aaa;
    transition: 0.3s;
    font-size: 1.1rem;
}

.share-post a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .featured-image {
        height: 300px;
    }

}

@media (max-width: 992px) {
    .blog-detail-container {
        padding-top: 40px;
    }

}

@media (max-width: 600px) {
    .post-footer {
        flex-direction: column;
        gap: 20px;
    }

}

@media (max-width: 400px) {
    .post-meta-top {
        flex-direction: column;
    }

    .category-pill {
        width: 200px;
        margin: auto;
    }

    .post-tags {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

}






































/* privacy page */

.privacy-policy-section {
    padding: 140px 0 40px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Nav */
.sticky-nav {
    position: sticky;
    top: 100px;
}

.sticky-nav h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.policy-links {
    list-style: none;
    padding: 0;
}

.policy-links li {
    margin-bottom: 12px;
}

.policy-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
}

.policy-links a:hover,
.policy-links a.active {
    background: #fff8e6;
    color: var(--secondary-color);
    font-weight: 600;
}

.privacy-content section {
    scroll-margin-top: 100px;
}

/* Main Content Area */
.policy-header {
    margin-bottom: 20px;
}

.policy-header .eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.policy-header h1 {
    font-size: 2.6rem;
    color: var(--secondary-color);
}

.policy-header h1 span {
    color: var(--primary-color);
}

.effective-date {
    color: #666;
    font-size: 0.9rem;
}

.policy-body section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.policy-body h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.policy-body p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Grid for Information Types */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: #f6f7f3;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-box ul {
    padding-left: 20px;
    color: #666;
    font-size: 1rem;
}

/* List Styles */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #666;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact Card */
.contact-card-policy {
    background: var(--secondary-color);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.contact-card-policy h2,
.contact-card-policy p {
    color: #fff;
}

.btn-contact {
    display: inline-block;
    background: var(--primary-color);
    color: #111;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-sidebar {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}



































/* sales crm page */



/* Problem Section */
.problem-section {
    padding: 40px 0;
    background: #f9fbf9;
}

.problem-card {
    background: #fff;
    padding: 20px 0 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.problem-content span {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.problem-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.problem-content p {
    max-width: 1000px;
    margin: auto;
    font-size: 17px;
    line-height: 1.4;
    opacity: 0.8;
}






/* Features Grid */
.crm-features {
    padding: 40px 0;
    text-align: center;
}

.crm-features-section-header {
    margin-bottom: 40px;
}

.crm-features-section-header span {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.crm-features-section-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
}

.crm-features-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    padding: 30px;
    border: 2px solid #e8e8e8a8;
    border-radius: 15px;
    transition: 0.3s;
    background: #fff;
}

.feature-item:hover {
    border-color: var(--primary-color);
    background: #feffec;
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item p {
    font-weight: 600;
    color: #333;
}








/* matter section */

.matter-container {
    border-radius: 20px;
    background: #12431E;
    padding: 20px 20px 30px;
    text-align: center;
    color: #ffffffe8;
}

.matter-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.matter-container p {
    font-size: 17px;
    max-width: 900px;
    margin: auto;
    line-height: 1.4;
    margin-bottom: 30px;
}







/* Ideal For */
.ideal-for {
    padding: 40px 0 0;
}

.ideal-wrapper {
    background: #fff8e6;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.ideal-wrapper h3 {
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.ideal-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ideal-tags span {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #ffeeba;
    transition: 0.3s;
}

.ideal-tags i {
    margin-right: 5px;
}

.ideal-tags span:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {

    .crm-features-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .crm-features-features-grid {
        grid-template-columns: 1fr;
    }
}








































/* demo enqiry */


.inquiry-page {
    padding: 40px;
    background-color: #fff;
    margin-top: 100px;
}

.inquiry-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

/* Left Sidebar Info */
.inquiry-info {
    background: #fff;
    border-right: 2px solid #f0f0f0;
}

.inquiry-info-content {
    padding: 40px;
}

.inquiry-info .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    width: 300px;
}

.info-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.info-content h1 span {
    color: var(--primary-color);
}

.info-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefits-list .icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.benefits-list .icon-circle.yellow {
    background: #ffd050;
    color: #000;
}

.benefits-list .icon-circle.green {
    background: #32934b;
    color: #fff;
}

.benefits-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.benefits-list p {
    font-size: 0.85rem;
    margin: 0;
}

.mascot-container img {
    width: 100%;
    display: block;
}

/* Right Side Form */
.inquiry-form-wrapper {
    padding: 40px;
}

.form-header {
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.form-header h2 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* margin-bottom: 20px; */
}


.custom-input-box {
    display: flex;
    align-items: center;
    height: 62px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    /* padding: 12px 15px; */
    transition: 0.3s ease;
    /* margin-bottom: 15px; */
}

.custom-input-box:focus-within {
    border-color: #FCBB06;
    box-shadow: 0 0 0 4px rgba(252, 187, 6, 0.05);
}

.input-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.input-data {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.input-data label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}



.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Actual Select Element */
.input-data select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-main);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 2px 25px 2px 0;
}

.input-data select:invalid {
    color: var(--text-placeholder);
}

.dropdown-arrow {
    position: absolute;
    right: 10px;
    pointer-events: none;
    font-size: 0.8rem;
    color: #555555;
}


.input-data input,
.input-data select,
.input-data textarea {
    border: none;
    outline: none;
    font-size: 0.85rem;
    padding: 2px 0;
    color: #111;
    width: 100%;
    background: transparent;
}

.input-data input::placeholder {
    color: #999;
}

/* Phone Field Specifics */
.phone-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-select {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
    padding-right: 10px;
    border-right: 2px solid #e8e8e8;
}

/* Full Width and Textarea Layouts */
.full-width {
    grid-column: span 2;
    margin-top: 20px;
}

.textarea-box {
    height: auto;
    padding-top: 6px;
}

.textarea-box .input-icon i {
    margin-top: -70px;
}

.textarea-box textarea {
    height: 100px;
    resize: none;
    margin-top: 5px;
}



/* Form Footer */

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.safety-note {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var#666;
    font-size: 0.8rem;
}

.safety-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.safety-note-right p {
    opacity: 0.8;
}

.enquiry-submit-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 16px;
}

.enquiry-submit-btn:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.policy-agreement {
    text-align: center;
    font-size: 0.85rem;
    color: #616161;
    margin-top: 30px;
}

.policy-agreement a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: 0.2s;
}

.policy-agreement a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .inquiry-container {
        grid-template-columns: 1fr;
    }

    .mascot-container {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .form-footer {
        flex-direction: column;
        height: fit-content;
    }

    .enquiry-submit-btn {
        margin-top: 10px;
    }

}

@media (max-width: 460px) {


    .inquiry-page {
        padding: 14px;
        margin-top: 100px;
    }

    .inquiry-info-content {
        padding: 20px;
    }

    .inquiry-info .logo {
        width: 240px;
    }

    .inquiry-form-wrapper {
        padding: 20px;
    }


}





































/* signip page */

.signup-form-area {
    padding: 40px;
    background-color: #fff;
}

.signup-form-area .form-wrapper {
    margin: 0 auto;
}

.signup-form-area .form-wrapper h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Input Fields Grid */
.signup-form-area .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.signup-form-area .form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.signup-form-area .full-width {
    grid-column: span 2;
}

.signup-form-area .mt-15 {
    margin-top: 15px;
}

/* General Input Styling */
.signup-form-area .input-group {
    position: relative;
    width: 100%;
}

.signup-form-area .input-group input,
.signup-form-area .input-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #111;
    background: #fff;
    outline: none;
    box-sizing: border-box;
}

.signup-form-area .input-group input::placeholder {
    color: #aaa;
}

/* Icons within Fields */
.signup-form-area .input-group .field-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.field-icon.main-icon {
    right: auto;
    left: 20px;
}

.field-icon.main-icon+input {
    padding-left: 55px;
}

.caret-inline {
    margin-left: 5px;
    font-size: 0.8rem;
}

.field-icon.toggle-pass {
    pointer-events: auto;
    cursor: pointer;
}

/* Select Dropdown Styling */
.signup-form-area .select-wrapper::after {
    content: "\f078";
    /* Chevron down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.8rem;
    pointer-events: none;
}

.signup-form-area .input-group select {
    appearance: none;
    cursor: pointer;
}

/* Phone Field Specifics */
.signup-form-area .phone-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.signup-form-area .country-code {
    background: #fdfdfd;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
    border-right: 1px solid #e0e0e0;
}

.signup-form-area .flag-icon {
    width: 22px;
}

.signup-form-area .phone-wrapper input {
    border: none;
    border-radius: 0;
}

/* Special Button Field (Send OTP) */
.signup-form-area .input-group.has-button input {
    padding-right: 120px;
}

.signup-form-area .btn-otp {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* Main Signup Button */
.signup-form-area .btn-signup {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.signup-form-area .btn-arrow {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Footer Links */
.signup-form-area .form-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #999;
}

.signup-form-area .signup-form-footer {
    flex-direction: column;
}

.signup-form-area .signup-form-footer p {
    margin-bottom: 25px;
    color: #464646;
    font-size: 17px;
}

.signup-form-area .signup-form-footer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.sign-in-link {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
}

/* Responsive Breakpoints */
@media (max-width: 678px) {

    .signup-form-area .form-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .signup-form-area .form-grid-2col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .signup-form-area .signup-timezone {
        margin-top: 0;
    }

}





@media (max-width: 460px) {


    .signup-form-area {
        padding: 20px;
    }


}




























/* login page  */

.has-icon-left input {
    padding-left: 55px !important;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-signup {
    margin-top: 40px;
    background-color: #FCBB06;
}

.highlight {
    color: #FCBB06;
}





































.whatsapp-bot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bot-float {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    border: 0;
    background: #25d366;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bot-float-icon {
    display: flex;
    align-items: center;
    min-width: 34px;
}

.bot-float-icon i {
    font-size: 28px;
    margin-left: 4px;
}


.bot-text {
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: opacity 0.3s, max-width 0.4s;
    font-weight: 600;
    margin-left: 0;
    font-size: 16px;
}

.whatsapp-bot.active .bot-float {
    width: 200px;
}

.whatsapp-bot.active .bot-text {
    opacity: 1;
    max-width: 200px;
    margin-left: 10px;
}

.bot-panel {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 400px;
    background: #141414;
    border: 1px solid #333;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px) scale(0.9);
    transition: all 0.3s ease;
    transform-origin: bottom right;
    /* padding: 10px 20px 20px; */
    overflow: hidden;
    border: 1px solid #fcba0670;
}

.whatsapp-bot.active .bot-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.bot-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    background: #1b6f30;
    padding: 10px 20px;
}

.bot-head strong {
    font-size: 20px;
    color: var(--primary-color);
}

.bot-head span {
    color: #fff;
}

.bot-body {
    padding: 10px 20px 20px;
}

.bot-option {
    width: 100%;
    height: 46px;
    border: 1px solid #fcba0670;
    padding-left: 10px;
    font-size: 16px;
    margin: 5px 0;
    background: #222;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
}

.bot-input {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.bot-input input {
    flex: 1;
    height: 46px;
    border: 1px solid #fcba0670;
    padding-left: 10px;
    font-size: 16px;
    margin: 5px 0;
    background: #fff;
    border-radius: 8px;
    text-align: left;
}


.bot-input .btn-send {
    width: 100px;
    height: 46px;
    border: 1px solid #fcba0670;
    font-size: 14px;
    margin: 5px 0;
    border-radius: 8px;
    cursor: pointer;
    background: #F7BD04;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}



@media (max-width: 460px) {

    .whatsapp-bot {
        width: 90%;
    }

    .bot-panel {
        width: 100%;
    }


    .bot-input {
        flex-direction: column;
    }

    .bot-input input {
        flex: auto;
        height: 46px !important;
        border: 1px solid #fcba0670;
        padding-left: 10px;
        font-size: 16px;
        margin: 5px 0;
        background: #fff;
        border-radius: 8px;
        text-align: left;
    }


    .bot-input .btn-send {
        width: 100%;
    }


}