:root{
    --second-color: #d7fec8;
    --third-color: #006a43;
}
.fs-7 {
    font-size: 0.875rem;
}

.bg-green {
    background: var(--second-color);
}

.text-main-color {
    color: var(--third-color) !important;
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}
.our-platform .platform-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.our-platform .platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.our-platform .platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.our-platform .platform-card:hover::before {
    transform: scaleX(1);
}

.our-platform .marketing {
    --accent-color: #8b5cf6;
}

.our-platform .sales {
    --accent-color: #ef4444;
}

.our-platform .conversations {
    --accent-color: #ec4899;
}

.our-platform .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.our-platform .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.our-platform .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.our-platform .marketing .card-icon {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
}

.our-platform .sales .card-icon {
    background: linear-gradient(135deg, #f87171, #ef4444);
    color: white;
}

.our-platform .conversations .card-icon {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    color: white;
}

.our-platform .card-description {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.our-platform .features-section {
    flex-grow: 1;
}

.our-platform .features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.our-platform .features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.our-platform .features-list li {
    color: #64748b;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.our-platform .features-list li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.our-platform .cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.025em;
}

.our-platform .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.our-platform .cta-button:active {
    transform: translateY(0);
}
.stats-section {
    text-align: center;
    padding: 30px 0;
}

.stats-item {
    padding: 18px;
    position: relative;
}

.stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    width: 1px;
    background-color: #d9d9d9;
}

.stats-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00a38d;
}

.stats-text {
    font-size: 0.95rem;
    color: #555;
    margin-top: 5px;
}
.our-industries .slick-slider {
    background: transparent !important;
}

/* Card hover effect */
.our-industries .slick-slider .card {
    transition: transform 0.3s ease-in-out;
}

.our-industries .slick-slider .card:hover {
    transform: translateY(-5px);
}

/* Custom arrows */
.our-industries .slider-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* space between arrows */
}

.our-industries .custom-arrow {
    background: var(--third-color, #0d6efd);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.our-industries .custom-arrow:hover,
.our-industries .custom-arrow:focus {
    background: #0b5ed7;
    color: #fff;
}

.our-industries .slick-prev:before,
.slick-next:before {
    display: none;
}
.pricing-section {
    background: #f9fdfb;
    padding: 80px 0;
}

.pricing-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pricing-header {
    background: var(--main-color);
    color: #fff;
    border-radius: 20px 20px 0 0;
    padding: 25px;
    text-align: center;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--third-color);
}

.pricing-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--main-color);
    margin-right: 10px;
}

.btn-custom {
    background: var(--main-color);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-custom:hover {
    background: var(--third-color);
    color: #fff;
    transform: translateY(-2px);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--third-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Toggle Switch */
.toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.toggle-switch label {
    margin: 0 12px;
    font-weight: 600;
    color: var(--third-color);
}

.form-check-input {
    width: 50px;
    height: 24px;
    cursor: pointer;
}
.our-testimonial .card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.our-why-choose-us-section .feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.our-why-choose-us-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Icon hover inside card */
.our-why-choose-us-section .feature-card:hover .icon-box {
    background-color: #28a745;
    color: #fff;
    transform: scale(1.1);
}
.our-why-choose-us-section .icon-box2 {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #28a745;
    /* WhatsApp green */
    border-radius: 12px;
    font-size: 22px;
    color: #28a745;
    transition: all 0.3s ease-in-out;
}
.our-integrations {
    background: #f8f9fa;
}

.our-integrations .img-box {
    background: #fff;
    padding: 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    margin: 0.85rem;
}

.our-integrations .img-box img {
    max-height: 70px;
    object-fit: contain;
}