@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allerta&display=swap');

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

p {
    font-family: 'Poppins';
    font-size: 15px;
    color: #8D8D8D;
    line-height: 1.6;
    text-align: justify;
}

/* ====button=== */
.cta-button {
    padding: 1rem 2rem;
    background-color: #1A85B7;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #004F99;
}

/* ==heading=== */
.heading h2 {
    font-size: 25px;
    margin-bottom: 10px;
    font-family: 'Arimo Hebrew Subset';
    font-weight: 700;
    color: #0084FF;
    text-transform: capitalize;
}

.heading h3 {
    font-size: 34px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #000000;
    text-transform: capitalize;
}

/* ===header section for background only=== */
.header-section {
    position: relative;
    height: 800px;
    background-image: url('../images/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* overflow: hidden; */
    background-attachment: fixed;
}

.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.04);
    z-index: 1;
}

/* ===navbar=== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
    padding: 15px 30px;
    background: #fff;
}

.logo img {
    width: 150px;
}

/* ===== Menu Toggle ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== Menu Links ===== */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    list-style-type: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 25px;
    display: block;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* ===== Submenu ===== */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 5px;
    z-index: 999;
}


.sub-menu li:last-child {
    border-bottom: none;
}




/* ===== Hover dropdown (desktop) ===== */
/* @media (min-width: 821px) {
    .menu-item-has-children:hover>.sub-menu {
        display: block;
    }

    .sub-menu .menu-item-has-children:hover>.sub-menu {
        top: 0;
        left: 100%;
    }



} */

@media (min-width: 821px) {

    /* === Base Navbar === */
    .navbar {
        position: relative;
        z-index: 100;
    }

    .menu-item-has-children {
        position: relative;
    }

    /* === MAIN DROPDOWN (Full Width) === */
    .menu-item-has-children>.sub-menu {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 40px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        /* border-top: 1px solid #eee;
        border-bottom: 1px solid #eee; */
        z-index: 9999;
        text-align: center;


    }

    /* === SHOW MAIN DROPDOWN === */
    .menu-item-has-children:hover>.sub-menu,
    .menu-item-has-children>.sub-menu:hover {
        display: flex;
    }

    /* === MAIN DROPDOWN ITEMS === */
    .menu-item-has-children>.sub-menu>li {
        flex: 1 1 180px;
        min-width: 180px;
        position: relative;
        justify-content: center;
    }

    /* === ✅ NESTED DROPDOWN (Improved) === */
    .sub-menu .menu-item-has-children>.sub-menu {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        background: #fafafa;
        border: 1px solid #eee;
        padding: 12px 18px;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        width: auto;
        min-width: 300px;
        z-index: 99999;
        max-height: 70vh;
        /* overflow-y: auto; */
    }

    /* === SHOW NESTED DROPDOWN === */
    .sub-menu .menu-item-has-children:hover>.sub-menu,
    .sub-menu .menu-item-has-children>.sub-menu:hover {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px 20px;
    }

    /* === AUTO SPLIT INTO MULTIPLE COLUMNS === */
    .sub-menu .menu-item-has-children>.sub-menu li {
        list-style: none;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
		text-align: left;
    }

    /* ✅ 2 columns if >6 items */
    .sub-menu .menu-item-has-children>.sub-menu:has(li:nth-child(7)) {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    /* ✅ 3 columns if >12 items */
    .sub-menu .menu-item-has-children>.sub-menu:has(li:nth-child(13)) {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }

    /* === LINKS === */
    .sub-menu a {
        display: block;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        padding: 5px 0;
        text-decoration: none;
        transition: color 0.3s ease;
        line-height: 1.4;
    }

    .sub-menu a:hover {
        color: #000;
    }

    /* === COLUMN DIVIDER === */
    .menu-item-has-children>.sub-menu>li+li {
        border-left: 1px solid #f2f2f2;
        /* padding-left: 25px; */
    }

    /* === Hover Bridge === */
    .menu-item-has-children::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 25px;
        top: 100%;
        background: transparent;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
}



/* ===== Buttons ===== */
.post-ad,
.post-ad2 {
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-transform: capitalize;
}

.post-ad {
    background: #1A85B7;
    color: white;
}

.post-ad2 {
    background: white;
    color: #1A85B7;
    border: 1px solid #1A85B7;
	text-decoration: none;
}

.post-ad:hover {
    background: #004F99;
}

.post-ad2:hover {
    background: #1A85B7;
    color: white;
}

/* ===== Responsive Mobile Menu ===== */
@media (max-width: 820px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .post-ad,
    .post-ad2 {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #f7f7f7;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }


    .menu-item-has-children.open>.sub-menu {
        display: block;
        position: relative;
        box-shadow: none;
        background: #f7f7f7;
    }

    .sub-menu .menu-item-has-children.open>.sub-menu {
        background: #f9f9f9;
    }


    .sub-menu .sub-menu {
        padding-left: 20px;
    }

    .toggle-icon {
        margin-left: 5px;
        font-weight: bold;
    }
}






/* ====banner==== */

.banner {
    position: relative;
    z-index: 2;
    height: calc(100% - 80px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-content {
    max-width: 950px;

}

.banner-content h1 {
    font-size: 65px;
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: 700;
    color: #000000;
}

.banner-content p {
    font-size: 16px;
    color: #000000;
}

/* ====challenge-img==== */
.challenge {
    padding: 100px 0;
}

.challenge-img img {
    width: 100%;

}

.challenge-content h6 {
    font-family: "Poppins";
    font-size: 18px;
    color: #151313;
    font-weight: 700;
}

.challenge-content ul li {
    font-family: 'Poppins';
    font-size: 16px;
    color: #8D8D8D;
    margin-bottom: 10px;

}

/* ===solutions=== */
.solutions {
    padding: 100px 0;
    background-color: #EDF4FB;
}

.solutions .heading {
    margin: auto;
    text-align: center;
}

.solution-box h3 {
    font-family: 'Allerta';
    font-size: 60px;
    color: #0084FF;
    margin-bottom: 15px;
}

.solution-box h6 {
    font-family: 'Poppins';
    font-size: 18px;
    color: #000;
    font-weight: 500;
}
.solution-box p{
	text-align:unset;
}
/* ===integrations=== */
.integrations {
    padding: 100px 0;
    background-image: url('../images/integrations.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.integrations::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: -1;
    opacity: 0.8;
}

.integrations .heading {
    margin: auto;
    text-align: center;
}

.integrations .heading h3 {
    color: #FFFFFF;
}

.integration-content {
    text-align: center;
}

.integration-content p {
    color: #FFFFFF;
    text-align: center;
}

/* ===serve=== */
.serve {
    padding: 100px 0;
    background-color: #EDF4FB;
}

.serve-img img {
    width: 100%;
}

.serives h5 {
    font-family: 'Poppins';
    font-size: 24px;
    color: #000000;
    font-weight: 600;
}

.serives {
    padding-left: 5px;
    transition: all 0.3s ease;
}

.serives:hover {
    border-left: #004F99 5px solid;
    height: auto;

}

/* =====why-choose franmantra== */
.why-choose {
    padding: 100px 0;
}

.choose-img img {
    width: 100%;
	height: 450px;
    object-fit: cover;
}

}

.why-content h5 {
    font-family: 'Poppins';
    font-size: 18px;
    color: #151313;
    font-weight: 500;
}

.why-content ol li {
    font-family: 'Poppins';
    font-size: 16px;
    color: #252323;
    margin-bottom: 10px;
}

.why-content ol li span {
    font-weight: 600;

}

/* ===dashboard==== */
.dashboard {
    padding: 100px 0;
    background-image: url('../images/integrations.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.dashboard::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: -1;
    opacity: 0.8;
}

.dashboard-content p {
    color: #FFFFFF;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}

/* ===contact=== */
.contact {
    padding: 100px 0;
}

.contact-heading {
    color: #6A6A6A;
    font-family: 'Poppins';
    font-size: 15px;
}

.contact-heading i {
    background-color: #0084FF;
    width: 30px;
    height: 30px;
    color: #FFFFFF;
    padding: 6px;
    font-size: 15px;
    margin-right: 5px;

}

.contact-details {
    font-family: 'Poppins';
    font-size: 18px;
    color: #6A6A6A;
    font-weight: 500;

}

.contact-details a {
    color: #000;
    text-decoration: none;
    font-family: 'Poppins';
    font-size: 16px;
}
.contact-heading h5{
	font-size: 30px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #000000;
    text-transform: capitalize;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group.half-width {
    flex: 1 1 48%;
}
/* 
.form-group {
    margin-bottom: 15px;
} */

input,
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
}

.custom-submit-button {
    width: 30%;
    max-width: 200px;
    min-width: 120px;
    padding: 10px 20px;
    background-color: #2755A0;
    color: #ffffff;
    border: none;
}


.logo-section .heading {
    text-align: center;
    margin: auto;
    width: 30%;
}

.logos img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: scroll 30s linear infinite;
}

.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000%);
    }
}

/* ===blog=== */
.blog {
    padding: 100px 0;
}

.blog .heading {
    text-align: center;
    margin: auto;
    width: 40%;
}


.stat-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}


.blogcard1 {
    position: relative;
}

.blogcard1 img {
    width: 100%;
}

.category {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px;
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    color: #fff;
}

.business {
    background-color: #1A85B7;
    padding: 5px 10px;

    position: relative;
}

.business ::after {
    content: '';
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    bottom: -8px;
    width: 15px;
    height: 10px;
    background-color: #1A85B7;
    left: 0;
}

.date {
    background-color: #000000;
    padding: 5px 10px;

}

.stat-content {
    padding: 1.5rem;
}

.stat-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: "Poppins";
    color: #000000;
}


.stat-link {
    color: #0084FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: "Poppins";
    font-size: 15px;
}

.stat-link:hover {
    color: #004F99;
}

/* ====footer==== */

.footer {
    background-color: #004F99;

}

.footer .container {
    padding: 50px 20px;
}

.footer-logo {
    width: 100%;

}

.footer-heading {
    font-family: Poppins;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    line-height: 26.4px;
    border-bottom: 1px solid #fff;
    display: inline-block;
}

.footer-list li {
    list-style: none;

}

.footer-list a {
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #FFFFFF;
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-family: "Poppins";
}

.footer-bottom p,
.footer-bottom a {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
}

.footer-logo2 {
    width: 126px;

}

.footer-icon {
    color: #FFFFFF;
	padding-left: 20px;
}

.footer-icon i {
    color: #FFFFFF;
	
}

.footer-contact {
    color: #FFFFFF;
    font-family: 'Poppins';
    font-size: 15px;
    line-height: 32px;
    text-align: unset;


}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

/* ====innerpage-heading=== */
.innerpage-heading {
    font-size: 60px;
    font-family: "Poppins";
    font-weight: 700;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
    text-transform: uppercase;
}

/* ====inner-about=== */
.inner-about {
    background-image: url('../images/about-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.inner-about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.negotiate {
    padding: 100px 0;
}

.negotiate-image img {
    width: 100%;
}

.our-vision h5,
.our-mission h5 {
    font-family: 'Poppins';
    font-size: 30px;
    color: #000;
    font-weight: 500;
}

.our-vision img {
    width: 100%;
}

.mission {
    display: flex;
    gap: 10px;
}

.mission-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author h6 {
    font-family: 'Poppins';
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.reports {
    background-image: url('images/reports.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
}

.reports::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.reports-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    text-align: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.report-box h2 {
    font-size: 69px;
    margin-bottom: 8px;
    font-family: "Allerta";
}

.report-box p {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
}

.report-box {
    padding: 0 40px;
    position: relative;
    color: #fff;
}

.report-box:nth-child(1),
.report-box:nth-child(2) {
    border-right: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .reports-container {
        flex-direction: column;
        gap: 30px;
    }

    .report-box h2 {
        font-size: 36px;
    }

    .report-box p {
        font-size: 16px;
    }

    .report-box:nth-child(1),
    .report-box:nth-child(2) {
        border-right: none;
        border-bottom: 2px solid #fff;
        /* optional, to separate vertically */
        padding-bottom: 20px;
    }
}

.testimonial {
    padding: 100px 0;
}

.testimonial-img img {
    width: 100%;
}

.testimonial-container {
    position: relative;
    /* width: 100%; */
}

.testimmonial-box {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #847979;
}

.quote {
    background-color: #1a85b726;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
}

.quote img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.testimonial-card {
    border-radius: 40px;
    padding: 30px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: "Poppins";
}

.testimonial-header p {
    color: #1fa9f0;
    margin: 2px 0 0;
    font-family: "Poppins";
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: flex;
    gap: 15px;
    /* background-color: #fff;
    border-radius: 20px;
    padding: 10px 20px; */
}

.slider-controls button {
    background: #1fa9f0;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: #eee;
    color: #1fa9f0;
}

.star-icon i {
    color: #FFD700;
    font-size: 20px;
}

/* ===innerpage-pricing=== */
.inner-pricing {
    background-image: url('../images/pricing\ \(1\).png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* background-position: top; */
    /* background-attachment: fixed; */
}

.inner-pricing::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.pricing-card {
    padding: 100px 0;
}

.pricing-card .heading {
    margin: auto;
    text-align: center;
    width: 50%;
}

.pricing-card .heading p {
    text-align: unset;
}

.pricing-cards {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px
}

.pricing-cards img {
    width: 30px;
    padding-right: 5px;
    transition: filter 0.3s ease;

}

.pricing-cards:hover img {
    filter: brightness(0) invert(1);
}

.pricing-cards ul li {
    list-style: none;
    font-size: 20px;
    color: #000000;
    font-family: 'poppins';
    padding: 10px;
}

.pricing-cards ul .disabled {
    color: #989898;
}

.pricing-cards:hover ul li,
.pricing-cards:hover h3,
.pricing-cards:hover h1,
.pricing-cards:hover h6,
.pricing-cards:hover p {
    color: #fff;
}

.pricing-cards ul:hover .disabled {
    color: #CCC4C4;
}

.basic {
    text-align: center;
    border-bottom: 1px solid #C3C3C3;
    margin-bottom: 10px;
}

.basic h3 {
    font-family: "Poppins";
    font-size: 35px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 10px;
}

.basic h1 {
    font-family: "Poppins";
    font-size: 90px;
    color: #001C91;
    font-weight: 600;

}

.basic .dollar {
    font-size: 40px;
    vertical-align: middle;
}

.basic .month {
    font-size: 20px;
    color: #847979;
    vertical-align: middle;

}

.basic h6 {
    font-family: "Poppins";
    font-size: 20px;
    color: #004F99;
    font-weight: 500;
}

.pricing-cards button {
    background: #1A85B7;
    width: 100%;
    border: none;
    padding: 10px;
    font-family: "Poppins";
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-cards button:hover {
    background: #ffffff;
    color: #1a85b7;
    transform: translateY(-8px);
}

.pricing-cards:hover button {
    background: #fff;
    color: #1A85B7;
}

.pricing-cards:hover {
    background: #1a85b7;
    color: white;
    /* transform: translateY(-8px); */
    transform: scale(1.05);
}

.faq {
    padding-bottom: 100px;
}

.faq-img img {
    width: 100%;
    border-radius: 10px;
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins";
}



.accordion-item {
    box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(180deg, #fff, #fff), linear-gradient(180deg, #847979, #1A85B7);
    border-radius: 0 0 30px 30px;
    cursor: pointer;
    text-align: left;
    padding: 18px;
    border-top: 1px solid #847979 !important;
    margin-bottom: 20px;
}

.accordion-item:last-of-type {
    border-radius: 0 0 30px 30px !important;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #3E3E3E;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.accordion-body {
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    color: #787878;
    font-family: "Poppins";
    font-size: 16px;
}

/* =====inner-contact==== */
.inner-contact {
    background-image: url('../images/contactus.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.inner-contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.innerpage-contactus {
    padding: 100px 0;
}

/* ===message-center=== */
.message-center {
    background-image: url('../images/crm-customer-relationship-management-concept-600nw-2473867597.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.message-center::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.messagecenter {
    padding: 100px 0;
}

.message-box {
    text-align: center;
}

.message-box .heading h2 {
    font-size: 40px;
}

.message-box p {
    text-align: center;
    width: 70%;
    margin: auto;
}

.inbox-img img {
    width: 100%;
}

.compose-message {
    padding-bottom: 100px;
    text-align: center;
}

.compose-message .heading h2 {
    font-size: 30px;
}

.compose-message .heading p {
    text-align: center;
}

/* ====meetings==== */
.meetings-banner {
    background-image: url('../images/meetings\ \(1\).jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;


}



/* =====pipeline=== */
.pipeline {
    background-image: url('../images/pipeline-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-position: center;
}

.pipeline::after,
.meetings-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.salesflow {
    padding: 100px 0;
    overflow-x: hidden;
}

.sales-flowimg img {
    width: 100%;
    border-radius: 10px;
}

.sales-content,
.smarter-content,
.customer-content {
    display: flex;
    gap: 15px;
}

.sales-icon,
.smarter-icon,
.customer-icon {
    background-color: #1A85B7;
    width: 70px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.sales-icon img,
.smarter-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.salesflow-content ul li,
.smarter-contents ul li,
.customer-acquisition-content ul li {
    font-size: 18px;
    font-family: "Poppins";
    color: #626262;
    margin-bottom: 10px;
}

.smarter {
    overflow: hidden;
    background-color: #E1EDF0;
    padding: 50px 0;
}

.visual {
    padding: 100px 0;
}


.smart-img {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.smart-img img {
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.smart-img::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 500px;
    height: 300px;
    background-color: #1A85B7;
    border-radius: 10px;
    z-index: 1;
}

.visual .heading {
    text-align: center;
}

.visual .heading p {
    text-align: center;
}

/* ===automated leadcapture=== */
.autolead-banner {
    background-image: url('../images/autolead-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.autolead-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.customer-acquisition {
    padding: 100px 0;
    background-color: #E1EDF0;
}

.customerimg img {
    width: 100%;
}

.autolead-smarter {
    padding-top: 100px;
}

/* ===salescycle== */
.salescycle {
    background-image: url('../images/salescycle.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.salescycle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.custom-sales {
    padding: 100px 0;
    text-align: center;
    background-color: #E1EDF0;
}

.custom-sales .heading p {
    text-align: center;
}

.sales-img {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.sales-img img {
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.sales-img::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 400px;
    height: 400px;
    background-color: #1A85B7;
    border-radius: 10px;
    z-index: 1;
}

.custom-sales-list {
    display: flex;
    gap: 15px;
    /* align-items: flex-start; */
}

.sale-list-content {
    text-align: left;
}

.custom-sales-icon {
    background-color: #1A85B7;
    width: 70px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.custom-sales-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
}

.sale-list-content h6 {
    font-family: "Poppins";
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

/* ====multile-contact=== */
.multile-contact-banner {
    background-image: url('../images/multiple-contact.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.multile-contact-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.multiple-contact {
    padding: 100px 0;
    background-color: #E1EDF0;
}

.multiple-contact .heading {
    text-align: center;
}

.multiple-contact .heading p {
    text-align: center;
}

.multiple-contact .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.multiple-contact .col-xl-4,
.multiple-contact .col-md-6 {
    display: flex;
}

.multiple-contacts {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex: 1;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;

}


.micon {
    background-color: #1A85B7;
    width: 70px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.micon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.m-content h6 {
    font-size: 20px;
    font-family: "Poppins";
    color: #000;
}

/* ====notifications-rollup=== */
.notifications-rollup-banner {
    background-image: url('../images/salescycle.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.notifications-rollup-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.organized-alert {
    padding: 100px 0;
}

.alert-list {
    display: flex;
    gap: 15px;
}

.alert-icon img {
    width: 20px;
    height: 20px;
}

.alert-content p {
    font-size: 18px;
    font-family: "poppins";
    color: #000000;
}

/* ===taskmanager=== */
.taskmanager {
    padding: 100px 0;
    background-color: #F7F7FE;
}

.taskmanager .col-xl-4,
.taskmanager .col-md-6 {
    display: flex;
}

.rollup {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 30px;
}


.ricon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.r-content h6 {
    font-size: 25px;
    font-family: "Poppins";
    color: #000;
}

.crm-software {
    padding: 100px 0;
}

.software-img img {
    width: 100%;
}

.crm-process ul li {
    font-family: "Poppins";
    font-size: 18px;
    margin-bottom: 10px;
    list-style-type: circle;
}

.scale-img img {
    width: 100%;
}

.insights-report {
    padding: 100px 0;
}

.insight-img img {
    width: 100%;
}



/* ===autologging-banner=== */

.autologging-banner {
    background-image: url('../images/auto-logging.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.autologging-banner::after,
.resources::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001C91;
    opacity: 0.4;
}

.logged-img img {
    width: 100%;
}

.activityimg {
    padding: 100px 0;
}

/* ===permission control=== */
.controlimg {
    padding: 100px 0;
}

.control-img img {
    width: 100%;
}


/* ====users=== */
.total-users {
    padding-top: 100px;
}

.users {
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-family: "Poppins";
    color: #000;
    height: 150px;

}

.users h6 {
    font-size: 25px;
}

.users p {
    font-size: 30px;
    color: #000;
}






















/* =====wordpress=== */
body {
    overflow-x: hidden;
}

/* ==contact-page acceptance== */

.acceptance span.wpcf7-form-control-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;

}

.acceptance input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-family: "Poppins";
}

.acceptance {
    font-size: 14px;
    line-height: 1.5;
}


/* ===inner-blog=== */
.inner-blogbanner {
    background-image: url('../images/best-crm.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.inner-blogbanner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.6);

}


.inner-blog {
    padding: 100px 0;
}

.inner-blog-img img {
    width: 100%;
}

.inner-blog ol li {
    font-family: "poppins";
    font-size: 20px;
}

.inner-blog ul li {
    font-family: "poppins";
    font-size: 15px;
    color: #8D8D8D;
}

.inner-blog h6 {
    font-family: "Poppins";
    margin-top: 10px;
}

.privacy-banner {
    background-image: url('../images/pivacy.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms,
.privacy {
    padding: 100px 0;
}

.terms ol li,
.privacy ol li {
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 500;
}


.terms ul li {
    font-family: "Poppins";
    font-size: 18px;

}

.privacy h3 {
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 600;
}

.terms ol>ul>li,
ol>li>ul>li,
.privacy ol>ul>li,
ol>li>ul>li {
    color: #1e1919;
    font-weight: normal;
    font-size: 18px;
}

/* Second-level nested <ul> (like inside another <ul>) */
.terms ol ul ul li,
.privacy ol ul ul li {
    color: #8D8D8D;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 5px;
}

.terms p,
.privacy p {
    font-size: 18px;
}

/* ==resources== */
.resources {
    background-image: url('../images/resource.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#popmake-1103 {
	border: none;
}

#popmake-1103 #pum_popup_title_1103 {
	font-family: '';
	padding: 20px;
    text-align: center;
}

.footer-icon a {
	text-decoration: none;
}
/* ====404 page=== */
.not_found_404 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
 background:#f0f8ff;
	font-family:Poppins;
}