/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #40C57A;
    --font-primary: "Catamaran", serif;
    --heading-color: #3B6662;
    --second-primary-color: #DAFFE2;
    --small-text: #1e1e2aba;
    --primary-bg-color: #3D6864;
    --secondry-bg-color: #f5f8f8;
    --primary-bg-text: #ffff;
}

body {
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
}

ul,
ol {
    padding: 0;
    margin: 0 !important;
}

.pt-70 {
    padding-top: 50px;
}

.pb-70 {
    padding-bottom: 50px;
}

p {
    font-weight: normal;
}

h1.inner_page_title,
h2.inner_page_title,
h3.inner_page_title,
h4.inner_page_title,
h5.inner_page_title,
h6.inner_page_title {
    color: #3b6662;
    font-weight: 500;
    line-height: normal;
}
h2.inner_page_title{
    font-size: 54px;
    font-weight:600;
}
p.p_description {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    color: rgba(30, 30, 42, 73%);
}
.p_max-w{
    max-width: 540px;
}
/* .accordion-body .common-p {
    margin-bottom: 0;
    font-size: 16px;
} */
.common-p {
    font-size: 16px;
}

/* Header starts*/
.header {
    background: #fff;
}

.navbar {
    position: relative;
}
#videoIframe-2{
    height:500px;
    width:100%;
}
#navbarNav ul li {
    margin-right: 40px;
}
#navbarNav .nav-item a{
    transition: .3s ease    ;
}

 #navbarNav .nav-item a:hover {
    transform: translateY(-5px);

} 

#navbarNav ul li a {
    transition: .3s ease;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: #1E1E2A;
}

/* #navbarNav ul li .active {
    color: #40C57A;
    font-weight: bold;
} */

.green-btn {
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 6px;
    font-size: 18px;
    padding: 12px;

    background: #1C403E;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: .3s ease;
    border:unset;
 
}

.navbar-nav .green-btn {
    font-size: 14px;
    border-radius: 8px;
    padding: 9px 13px;
}
.green-btn:hover{
    background: transparent;
    color: #1C403E;
    border: 1px solid #1C403E;

}

.banner-how-work-btn {
    font-size: 18px;
    display: inline-block;
    margin-left: 25px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 12px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    transition: .3s ease;
 
}
.jetcounter-btn{
    border:1px solid #Fff;
}
.banner-how-work-btn:hover{
    color: #1C403E;
    background-color: #fff;
}
.download-now-btn {
    border:1px solid #fff;
    color:#1C403E;
    background-color: #fff;
    font-size: 18px;
}
.download-now-btn:hover{
    color:#fff;
    border:1px solid #fff;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

.banner-btns img {
    margin-right: 5px;
    width: 18px;
}

.banner-btns svg {
    margin-right: 5px;
}

.green-btn:hover svg {
    fill: #fff;
}

.green-btn svg {
    fill: #1C403E;
}

.banner-how-work-btn svg {
    fill: #fff;
}

.banner-how-work-btn:hover svg {
    fill: #1C403E;
}

#videoModal {
    margin-top: 60px;
}

.green-btn-area a {
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* 31-01-25 */
.topbar-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header-topbar {
   background: #3D6864;
}
.topbar-left ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
}
.topbar-left ul li {
    padding: 12px 12px 12px 0;
}
.topbar-left li:last-child {
    padding-right: 0;
}
.topbar-left ul li a img{
    width: 35px;
}


/* header ends */

/* banner section starts */
.banner {
    background-image: url(../img/hero-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 125px 20px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    height: 600px;
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.banner .slide-up {
    opacity: 0;
    animation: slideUp .8s ease-out forwards;
    animation-delay: 0.3s;
}

.banner .content-wrapper {
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.banner h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 56px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.banner h1 span {
    color: var(--primary-color);
}

.banner h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #40C57A;
    transform: scaleY(0);
    animation: scaleBorder 2s infinite;
}

@keyframes scaleBorder {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
    }
}

.banner h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-top: 15px;
}

.banner .btn {
    font-size: 16px;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.banner .btn-primary {
    background-color: #40C57A;
    border: none;
    color: #fff;
}

.banner .btn-secondary {
    background-color: #333;
    border: none;
    color: #fff;
}

.banner .btn:hover {
    opacity: 0.8;
}

/* banner section ends */
/* counter section starts */
.counter-section {
    font-family: var(--font-primary);
}

.counter-section img {
    margin-bottom: 0;
    margin-right: 20px;
}

.counter-section .numbers h4 {
    font-weight: bold;
    color: #2D3748;
}

.counter-section .numbers p {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.counter-flex .flex {
    overflow: hidden;
    padding: 40px 0 0 0;
    display: flex;
    align-items: center;
}

.counter-flex {
    flex-wrap: wrap;
}

.counter-flex .flex:not(:last-child)::after {
    font-size: 30px;
    content: "|";
    margin-left: 60px;
    margin-right: 60px;
    color: #d9d9d9;
}

/* counter section ends */
/* manual counting section starts */
.manual-counting-section h5 {
    padding: 0 321px;
}

.manual-counting-section {
    font-family: var(--font-primary);
    background-color: #f5f8f8;
}

.manual-counting-section h2 {
    color: var(--heading-color);
    font-size: 45px;
    max-width: unset;
    margin: 0 auto;
    font-weight: 600;
}

.manual-counting-section p {
    margin-top: 30px;
    color: #1e1e2aba;
}


.manual-counting-section img {
    height: auto;
    display: block;
}

.manual-counting-section .row {
    margin: 0;
    padding: 0;
}
/* 
.manual-counting-section .notes {
    position: relative;
} */

.manual-counting-section .manual-bottom-section {
    display: flex;
    align-items: center;
    margin: 40px 0 0 0;
    border-radius: 6px;
    padding: 50px 75px;
    background-color: #fff;
}

/* .manual-counting-section .manual-bottom-section .note {

    position: absolute;
    font-size: 16px;
    background-color: var(--second-primary-color);
    color: #208077;
    padding: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
} */

/* .manual-counting-section .manual-bottom-section .note-1 {
    top: 16%;
    left: 13%;
    transform: translate(-50%, -50%);
}

.manual-counting-section .manual-bottom-section .note-2 {
    top: 68%;
    left: 19%;
    transform: translate(-50%, -50%);
}

.manual-counting-section .manual-bottom-section .note-3 {
    top: 78%;
    left: 90%;
    transform: translate(-50%, -50%);
} */

.manual-counting-section .manual-bottom-section p {
    padding: 0;
}

.manual-counting-section .manual-bottom-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E1E2A;
}

.manual-counting-section .manual-bottom-section p {
    font-size: 18px;
    margin-top: 10px;
    color: var(--small-text);
}

.manual-counting-section .manual-detail {
    margin-bottom: 30px;
}

.manual-counting-section .manual-detail-section {
    padding-left: 20px;
}

.manual-counting-section .manual-border-botttom {
    font-weight: bold;
    padding: 25px 0;
    font-size: 24px !important;
    color: var(--primary-bg-text);
    background-color: var(--primary-bg-color);
    margin-bottom: 0;
}

/* manual counting section starts */

/* accordian section starts */
.accordian-section {
    font-family: var(--font-primary);
}

.accordian-section .row {
    display: flex;
    flex-direction: row;
}

.accordian-section .accordion-item {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #ddd;
}

.accordian-section .accordion-item .accordion-button {
    padding: 25px 0;
    font-weight: 500;
    color: #1E1E2A;
}

.accordion-button {
    border-bottom: none;
    box-shadow: none;
}


.accordion-button:not(.collapsed) {
    border-bottom: none;
    box-shadow: none;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-body {
    border-top: none;

}

.accordion-body .common-p {
    margin-bottom: 0;
    color: #1e1e2aba;
}

.heading {
    text-transform: capitalize;
    padding: 0 0 40px 0;
    font-size: 45px;
    font-weight: 600;
    color: #3B6662;
}

.accordian-section .heading {
    color: #3B6662;
    margin-bottom: 0;
}

.industry-focused-heading .heading {
    color: #fff;
}

.accordian-section .accordion-button:focus,
.accordian-section .accordion-button:hover {
    outline: none;
    background-color: transparent;
    color: #000;
}

.accordian-section .accordion-body {
    padding: 0px 0 30px 0;
    font-size: 16px;
}

.accordian-section .accordion-button:not(.collapsed) {
    color: #1E1E2A;
    background-color: transparent;
}

.accordian-section .accordion-button:focus {
    box-shadow: none;
}

.accordian-section .row {
    align-items: flex-start;
}

/* accordian section ends */


/* testimonial section starts */

.testimonial-slider .testimonial-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}

.testimonial-text p {
    position: relative;
    padding-left: 40px;
    /* Space for the quote icon */
}

.testimonial-text p::before {
    opacity: 0.3;
    content: "";
    position: absolute;
    left: 50%;
    top: -50px;
    width: 40px;
    height: 40px;
    background-image: url(../img/testimonial-quote.png);
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, 0);
}

.testimonial-item .testimonial-text {
    width: 100%;
    padding-right: 0;
}

.testimonial-item .testimonial-author {
    width: 100%;
    display: grid;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
}

.testimonial-content {
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.testimonial-item .testimonial-author .testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-item .testimonial-author .author-name {
    text-align: left;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-bg-text);
}

.testimonial-item .testimonial-author .author-name span {
    color: var(--primary-color);
}

.testimonial-item h6 {
    font-weight:
        300;
    text-align: left;
    color: var(--primary-bg-text);
}

.testimonial-item .testimonial-author .star-rating {
    text-align: center;
    color: #F6A81D;
    font-size: 18px;
}


.testimonial-slider-section .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.testimonial-slider-section .owl-nav {
    display: none;
}

.testimonial-slider-section {
    font-family: var(--font-primary);
    background-color: var(--secondry-bg-color);
}

.testimonial-slider .testimonial-item {
    background-color: var(--primary-bg-color);
    padding: 50px;
    padding-top: 100px;
    border-radius: 30px;
}

.testimonial-slider .testimonial-item .testimonial-text p {
    color: var(--primary-bg-text);
    font-weight: 700;
    font-size: 30px;
    margin-top: 60px;
}

/* testimonial section ends */

/* jet-computer-works section starts */

.jet-computer-works {
    font-family: var(--font-primary);
}

.jet-computer-works ul {
    padding: 0;
}

.jet-computer-works ul li {
    margin-left: 20px;
    font-weight: 400;
    list-style: none;
    font-size: 18px;
    color: #1e1e2aba;

}

.jet-computer-works .d-flex {
    margin-bottom: 20px;
    align-items: flex-start;
}

.jet-computer-works .row {
    align-items: center;
}

.learn-more-btn {
    border:1px solid #1C403E;
    padding: 10px 20px;
    margin-top: 50px;
    font-size: 18px;
}

/* jet-computer-works section ends */



/* Scrollable Container section starts*/
.scrollable-container {
    
    MARGIN: 0 !important;
    scroll-behavior: smooth;
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 10px;
}

.scrollable-container::-webkit-scrollbar {
    width: 10px;
}

.scrollable-container::-webkit-scrollbar-track {
    background-color: var(--secondry-bg-color);
}

.scrollable-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.industry-template-section {
    font-family: var(--font-primary);
    background-color: var(--secondry-bg-color);
    padding: 50px 0;
}
.industry-template-section .about_inner_page{
    margin: 0;
    background-color: #fff;
    padding: 0;
}
.scrollable-container .image-card {
    transition: .5s ease;
    margin-bottom: 10px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.image-card img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/* .image-card:hover img {
    transform: scale(1.1); 
} */
.scrollable-container .image-name {
    margin: 0;
    padding: 15px;
    background: #e9e9e9;
    text-align: center;
    color: #1E1E2A;

}

.scrollable-container .image-card:hover {
    border: 2px solid var(--primary-bg-color);
}



/* Scrollable Container section ends*/

.industry-focused-heading {
    margin: 70px 0;
    border-radius: 30px;
    background-color:#0C423D;
    color: #fff;
    padding: 30px 0 160px 0;
}

.industry-focused-heading .heading {
    padding-bottom: 0 !important;
}

.industry-focused-heading p {
    max-width: 850px;
    padding: 0 !important;
    text-align: center;
    font-size: 20px;
    margin: 0 auto;
    text-align: center;
}

.industry-focused .card{
    padding:30px 30px;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
}

.card {
    font-family: var(--font-primary);
    border: 1px solid var(--primary-bg-color);
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.centered-btn {

    display: block;
    margin: 0px auto 0px auto;
    padding: 10px 20px;
    border-radius: 5px;
}

.industry-focused .card h4 {
    /* margin-top: 20px; */
    font-size: 25px;
    color: var(--primary-bg-color);
    font-weight: bold;
}

.small-heading {
    font-size: 16px;
    margin: 20px 0;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.industry-focused .card p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    color: #1e1e2aba;
}

.industry-focused .card-middle-section {
    height: 320px;
}

.industry-focused .card-lower-section {
    height: unset !important;
    flex-grow: 1;
}

.get-started-card-btn {

    margin: 10px auto;
}

.small-heading::after {
    content: '';
    position: absolute;
    width: 50%;
    margin-top: 3px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -7px;
    left: 0;
    transition: width 0.3s ease;
}

.free-btn {
    margin: 10px auto;
    border: 1px solid #1C403E;
    font-weight: bold;
    background: transparent;
    color: #1C403E;
    border-radius: 6px;
    padding: 10px 20px;
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s ease;
}


.free-btn:hover {
    color:#fff;
   background: #1C403E;
   transition: .3s ease;
}



.overlay-cards {
    margin-top: -200px;
    margin-bottom: 70px;
}
.industry-focused{
 
}
footer {

    background-color: var(--primary-bg-color);
}

.footer {
    color: #333;
}

.footer-logo {
    max-width: 150px;
}

.contact-info {
    margin-top: 10px;
}

.contact-info span {
    color: var(--primary-bg-text);
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item img {
    transition: .3s linear;
    margin-right: 8px;
}

.social-area {
    align-items: center;
}

.social-links img:hover {
    transform: translateY(-10px);
}

.social-links img {
    width: 55px;
    transition: .3s linear;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: end;
    margin-top: 15px;
}

.book-demo-btn {
    background: #fff;
    color: #1C403E;
    padding: 12px 15px;
    font-size: 18px;
    width: 35%;
    display: inline-block !important;
    text-transform: inherit;
}
.book-demo-btn:hover{
    background: transparent;
    color: #ffff;
    border:1px solid #ffff;
}
.book-demo-btn-section {
    display: flex;
    justify-content: end;
}

.copyright {
    font-weight: bold;

    font-size: 18px;
    color: var(--primary-bg-text);

}

.copyright span a {
    color: var(--primary-bg-text);
    margin-left: 5px;
    font-weight: 300;
/*    border-bottom: 1px solid var(--primary-bg-text);*/

}

/* guide page css */
.guide-banner {

    background-image: url('../img/guide-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 20px;
}

.counting-tips .guide-heading {
    color: #3D6864;
    font-size: 54px;
    line-height: 61px;
    font-weight: 600;

}

.counting-tips h4 {
    color: #5B5B64;
    font-size: 20px;
    font-weight: 300;
}

.guide-banner-wrapper {
    position: relative;
}

.guide-banner h3::before {
    position: absolute;
    top: 80px;
    content: '';
    left: 180px;
    display: inline-block;
    background-image: url(../img/upper-quote-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

.guide-banner h3::after {
    position: absolute;
    right: 171px;
    bottom: 80px;
    content: '';
    display: inline-block;
    background-image: url('../img/lower-quote-img.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    vertical-align: middle;
    transform: rotate(360deg);
}

.guide-choose-jetcounter {
    padding: 50px 0;
    background-color: var(--secondry-bg-color);
}

.guide-choose-jetcounter .card img {
    width: 50px;
}

.guide-choose-jetcounter .cards .card {
    height: 100%;
    line-height: 30px;
    padding: 15px;
    background-color: var(--primary-bg-text);
    border: none;
    transition: .3s ease;

}

/* .guide-choose-jetcounter .cards {
    display: flex;
    flex-wrap: wrap;
} */

.guide-choose-jetcounter .card:hover {
    transform: translateY(-10px);
}

.guide-choose-jetcounter .cards .card .card-title a {
    font-size: 24px;
    color: #208077;
    font-weight: 600;
}

.guide-choose-jetcounter .cards .card p {
    margin-top: 8px !important;
    font-weight: 300;
    font-size: 18px;
    color: var(--small-text);
}

.counting-tips li {
    margin-bottom: 10px;
    color: #1E1E2ABA;
    font-weight: 400;
    font-size: 18px;
    /* max-width: 459px; */
}

.counting-tips li b  {
    color: #3B6662;
}

.guide-heading-text {
    margin-bottom: 20px !important;
}

.counting-tips .row {
    flex-wrap: wrap;
}

.guide-note .container {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;

}

.guide-note .row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.guide-note p {
    border-radius: 15px;
    font-size: 20px;
    background-color: var(--primary-bg-color);
    color: var(--primary-bg-text);
    padding: 30px;
    text-align: center;
}

/* Inner Pages */
.about_inner_page {
    padding: 50px 0;
    background: #f5f8f8;
}

/* .about_jetcounter_sec {
    padding-top: 85px;
} */

.about_jetcounter_sec .left_about h1 {
    font-size: 45px;
    line-height: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about_tab_sec .about_tab_inner_sec {
    list-style: none;
    padding: 0 0 25px 0;
    /* border-bottom: 1px solid #208077; */
    background: #fff;
    margin: 0;
}
.home-industry-tabs .about_tab_sec .about_tab_inner_sec {
    padding: 0 0 50px 0;
    border-bottom: unset;
}

.industrial_tab_card {
    border-bottom: 1px solid #208077;
    padding: 60px 0;
}

.industrial_tab_card:last-child {
    border: 0;
    padding-bottom: 0;
}

.about_tab_sec .about_tab_inner_sec li {
    font-size: 24px;
    line-height: normal;
    color: #000000;
    margin: 0 30px;
    cursor: pointer;
}

.about_tab_sec .about_tab_inner_sec li.active {
    color: #3B6662;
    font-weight: 600;
    border-bottom: 2px solid;
}

.industrial_tab_card .inner_content span {
    font-size: 18px;
    color: #1E1E2A;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin: 0px 
}

.industrial_tab_card .left_content h2 {
    margin-bottom: 0;
    font-size: 28px;
    padding-bottom: 10px;
    font-weight: 600;
    line-height: normal;
}

.industrial_tab_card .right_img .image_wrapper {
    border: 6px solid #3B6662;
}

.industrial_tab_card .right_img .image_wrapper img {
    width: 100%;
}

.about_tab_sec .tab-content .green-btn {
    background: #1C403E;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #1C403E;
    padding: 9px 29px;
    transition: all .4s ease-in-out;
}

.about_tab_sec .tab-content .green-btn:hover {
    background-color: transparent;
    border: 1px solid #1C403E;
    color: #1C403E;
    transition: all .4s ease-in-out;
}

.improving_accuracy_Sec {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.improving_accuracy_Sec h2 {
    color: #3B6662;
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 30px;
}
.first-section .improving-p{
    margin: 0 auto;
    max-width: 770px;
}
.first-section .improving-p-more{
    margin: 0 auto;
    max-width: 1000px;
}
.second-section .improving-p{
    margin: 0 auto;
    max-width:640px;
}
.second-section .improving-p-more{
    margin: 0 auto;
    max-width: 1070px;
}
.improving_accuracy_Sec p.p_description {
    font-size: 18px;
    line-height: 30px;
}

.accuracy_wrapper {
    list-style: none;
    margin: 0;
    padding: 35px 0 15px 0;
}

.accuracy_wrapper li {
    padding: 0 6px;
}

.accuracy_wrapper li .accuracy_inner {
    background: #F5F5F5;
    border-radius: 6px;
    padding: 18px;
    border: 1px solid transparent;
    transition: all .4s ease-in-out;
}

.accuracy_wrapper li .accuracy_inner:hover {
    border: 1px solid #40C57A;
    transition: all .4s ease-in-out;
}

.accuracy_wrapper li .accuracy_inner .img_icon {
    background-color: #3B6662;
    border-radius: 6px;
    text-align: center;
    padding: 27px 0;
    margin-bottom: 15px;
}

.accuracy_wrapper li .accuracy_inner h3 {
    color: #3B6662;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 20px;
    max-height: 52px;
    overflow: hidden;
}
.p_right_p{
    padding-right: 35px;
}
.accuracy_wrapper li .accuracy_inner p.p_description {
    font-size: 16px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    /* align-items: center; */
}

.about_contact_us_sec {
    background: #f5f8f8;
    padding: 50px 0 0px;
}

.about_contact_us_sec h4 {
    font-size: 54px;
    line-height: 42px;
    font-weight: 600;
    color: #3B6662;
    margin-bottom: 15px;
}

.about_contact_us_sec p.p_description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    color: #1E1E2ABA;
}

.about_contact_us_sec form {
    margin-top: 30px;
}

.about_contact_us_sec form p {
    margin-bottom: 0;
}

.about_contact_us_sec form input {
    border: 1px solid rgba(32, 128, 119, 60%);
    border-radius: 6px;
    padding: 14px 30px 14px 20px;
    width: 100%;
    font-size: 18px;
    color: #C3C3C3;
    line-height: normal;
    font-weight: 400;
    height: 51px;
}

.about_contact_us_sec form input::placeholder {
    font-size: 18px;
    color: #C3C3C3;
    line-height: normal;
    font-weight: 400;
}

.about_contact_us_sec .submit_btn{
    margin-top: 20px;
    padding: 0;
    border: 1px solid #1C403E !important;
    background: #1C403E !important;
    color: #fff !important;
    font-weight: 500;
}



#videoModalLabel {
    color: var(--primary-bg-color);
    font-size: 25px;
    font-weight: bold;

}
/* .anim-imgs{

position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.img-fluid {
width: 100%; 
height: auto;
}

.circle-img {
    position: absolute;  
    top: 50%;  
    left: 50%;
    transform: translate(-50%, -50%);  
    animation: rotate360 15s linear infinite; 
}

@keyframes rotate360 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg); 
    }
} */





.manual-counting-section .counting-img-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-57%, -50%);
    width: 324px;
    height: 324px;
}

.manual-counting-section .circle-border {
    transform: rotate(-90deg);  
}

.manual-counting-section .circle-bg {
    opacity: 0.3;
}

.manual-counting-section .circle-fill {
    transition: stroke-dashoffset 5s linear infinite;
}

@keyframes fill-border {
    0% {
        stroke-dashoffset: 365; /* Full offset, no color */
    }
    100% {
        stroke-dashoffset: 0;   /* Fully filled border */
    }
}

.manual-counting-section .circle-fill {
    animation: fill-border 5s linear infinite;
}

/* tabs */

.about_tab_sec .about_tab_inner_sec li a.active {
    color: #3B6662;
    font-weight: 600;
    border-bottom: 2px solid;
}
.overlay-card-arrow {
    align-items: flex-start;
}
.overlay-card-arrow img {
    margin-right: 8px;
}
.new-common-p {
    margin-left: 40px;
}
.about_tab_inner_sec .nav-link {
    color: #1E1E2A;
}
.home-industry-tabs {
    background-color: #fff;
    padding: 40px;
    max-width: 1390px;
    margin: 0 auto;
}
.industry-template-section .heading {
    padding-bottom: 30px;
    margin-bottom: 0;
}
.testimonial-slider-section .heading {
    padding-bottom: 0;
    margin-bottom: 0 !important;
}
.testimonial-slider-btn {
    display: flex;
    justify-content: end;
    padding-bottom: 0;
}
.testimonial-slider-btn-flex {
    display: flex;
    gap: 10px;
}
/* .testimonial-slider-btn-flex button img {
    width: 35px;
    height: 35px;
} */
.testimonial-slider-btn-flex button {
    background: unset;
    border: unset;
}
.accordian-info {
    padding-right: 55px;
}

.guide-note {
    border-radius: 17px;
    background: #3D6864;
    margin-bottom: 20px;
}

.custom-col {
    padding: 0 20px;
}

.cards.custom-cards .row {
    margin: 0 -10px;
    row-gap: 16px;
}

.guide-why-choose{
    font-size:50px;
}


/* blog detail page */
.blog-page{
    padding: 80px 0;
}
.blog-page .blog-search-btn{
    padding:10px 36px;
  
}
.blog-page .search-bar{
    border: solid 1px #EBEBEB;
    padding: 35px 30px;
    margin-bottom: 40px;
    border-radius: 10px;
}
.blog-page .form-control{
    margin-right: 3px;
}
.blog-page  .most-viewed{
    border: solid 1px #EBEBEB;
    padding: 35px 30px;
    border-radius: 10px;
}
.blog-page  h3{
    color: #1E1E2A;
font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
.blog-page ul{
    list-style: none;
    padding-left: 0;
}
.additional-heading ul li{
    padding-top: 10px;
}
.blog-page .additional-heading ul li::before{
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: 10px;
    background: #EBEBEB;
    background: -webkit-linear-gradient(left, #EBEBEB 0%, transparent 100%);
    background: linear-gradient(to right, #EBEBEB 0%, transparent 100%);
}
.blog-page ul li a{
    color:#1E1E2A ;
    font-size: 16px;
    line-height: 1.7;
}
.blog .blog-card{
    border-radius: 10px;
   border: solid 1px #EBEBEB;
}
 .blog-name-date-info{
    display: flex;
    justify-content: space-between;

}
.blog .blog-area{
    padding: 30px 30px 10px 30px;
}
 .blog-name ,  .blog-date{
    color:#8F9BAD;
    font-weight: 400;
}
.blog-heading{
    text-transform: capitalize;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 20px 0;
}
.blog-heading a{
    color: #1E1E2A;
}
.blog-heading a:hover{
    color: #208077;
}
.blog-paragraph{
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 1.7;
    color: #8F9BAD;
}
.share p{
    margin-bottom: 0;
}
.share{
   
    font-size: 14px;
    color: #208077;
}
.detail-btns{
    height: 60px;
    border-top: 1px solid #EBEBEB;
    padding: 20px 0;
    justify-content: space-between;
}
.detail-btns a:hover{
    color: #208077;
}
.blog-detail-btn a{
    color: #8F9BAD;
}
.blog-card .social-icons li a{
    color:#8F9BAD;
}
.share-btn svg{
  width: 20px;
  height: 20px;

}
.social-icons li a:hover{
    color:#208077;
}
.blog .blog-card .social-icons::before{
    content: "";
    background: #DDD;
    display: inline-block;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
    width: 30px;
}
.bolg  .social-icons  li a{
    padding-top: 0;
    transition: .3s ease;
}

.blog-card .icons {
    display: none; 
}

.blog-card .close-icon {
    display: none; 
}

.blog-card .share-icon {
    display: block; 
}


button.green-btn.get-started-card-btn {
    border: 1px solid #1C403E;
    padding: 10px 20px;
}

body[data-form-style="minimal"] #review_form .minimal-form-input{
    width: 70% !important;
}

/*  */

.how-app-works {
    position: relative;
}
.how-app-works-img img {
    width: 100%;
}
.how-app-works-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #0000005c;
}
.how-app-works-btn button img {
    width: 70px;
}

.how-app-works-btn button{
    background: unset;
    border: unset;
}

/* 02-04-25 */
.topbar-right .contact-info {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
}
.topbar-right .contact-item {
    margin-bottom: 0;
    flex-wrap: wrap;
    position: relative;
}
.topbar-right .contact-item:first-child::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 80%;
    background: #fff;
    top: 3px;
    right: -18px;
}
#main-header {
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 3px 0px #e7eeea;
}
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
footer.footer {
    padding: 50px 0;
}
.site-heading {
    font-size: 35px !important;
    margin-bottom: 10px !important;
    /* padding-bottom: 0 !important; */
}
.site-paragraph {
    font-size: 18px !important;
    line-height: 27px;
    padding-top: 0 !important;
}
.about_contact_us_sec img {
    width: 80%;
    margin-left: auto;
}
section.about_inner_page.about_tab_sec {
    background: #fff;
}
.card-upper-section .download-now-btn {
    padding: 0;
}
.testimonial-slider-heading-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}
.testi-img {
    margin: 0 auto;
}
.jet-computer-works .heading {
    padding-bottom: 20px;
}
.jet-computer-works button.green-btn.learn-more-btn {
    margin-top: 20px !important;
}
.jet-computer-works .container {
    max-width: 1100px;
    margin: 0 auto;
}
.how-jetcounter-works-details {
    padding-left: 55px;
}
.wpcf7 {
    width: 100%;
}
body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

/* 03-04-25 */

.guide-choose-jetcounter .heading.site-heading {
    padding-bottom: 15px;
}

.custom-col {
    padding: 0 10px;
}

.guide-choose-jetcounter .cards .card .card-body {
    padding: 10px 0;
}

.counting-tips ul {
    padding-left: 25px;
}