:root {
    --tp-ff-body: 'Jost', sans-serif;
    --tp-ff-heading: 'Jost', sans-serif;
    --tp-ff-p: 'Kumbh Sans', sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    --tp-common-white: #ffffff;
    --tp-common-black: #000;
    --tp-common-gray: #F4F5FA;
    --tp-theme-primary: #00A3C3;
    --tp-theme-secondary: #16243E;
    --tp-gradient-primary: linear-gradient(90deg, #7ebc45 0%, #2f7611 100%);
    --tp-heading-primary: #16243E;
    --tp-heading-secondary: #16243E;
    --tp-text-body: #333F4D;
    --tp-text-1: #67687A;
    --tp-text-2: #757474;
    --tp-border-primary: #EAEBED;
    --tp-border-secondary: #F0F2F4;
}

.tp-pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tp-pricing-card:hover {
    transform: translateY(-8px);
}

.tp-pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: #0a1c2a;
}

.tp-pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}

.tp-pricing-title {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 600;
}

.tp-pricing-desc {
    font-size: 15px;
    color: #6b7280;
    margin-top: 10px;
}

.tp-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-pricing-features ul li {
    padding: 10px 0;
    font-size: 15px;
    color: #0a1c2a;
    border-bottom: 1px solid #e5e7eb;
}

.tp-pricing-btn {
    margin-top: auto;
    text-align: center;
}

.industry-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .tp-hero-thumb-2 {
        display: none !important;
    }
}

.tp-about-item-2-icon i {
    font-size: 40px;
    color: #6faf3b !important;
}

.call-now-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    /* circle width */
    height: 60px;
    /* circle height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #7ebc45 0%, #2f7611 100%);
    color: white;
    font-size: 26px;
    /* icon size */
    border-radius: 50%;
    /* makes it circular */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 9999;
}

.call-now-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .call-now-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 44px;
        right: 20px;
    }
}

.tp-footer-widget-content ul li a:hover {
    background-size: 0 1px, 100% 1px;
    border-bottom: 1px solid #00A3C3;
}