.fade.in {
                opacity: 1 !important;
            }

            .tox .tox-promotion,
            .tox-statusbar__branding {
                display: none !important;
            }
        .float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 91px;
            right: 36px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 40px;
            box-shadow: 0 3px 3px #9999998a;
            z-index: 100;
            line-height: 1.5
        }

        .bounce {
            animation: 2s infinite bounce
        }
        
         :root {
            --primary-color: #ff8c00;
            --primary-light: rgba(255, 140, 0, 0.1);
            --primary-dark: #e67e00;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            padding: 20px;
        }
        
   
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e99 0%, #1e2a6b 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    z-index: 2;
}

.section-title h2 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 2.5rem;
}


/* Remove the orange underline for blue theme */
.section-title:after {
    display: none;
}

.feature-item {
    text-align: center;
    padding: 20px;
    transition: none; /* remove hover background transition */
    box-shadow: none; /* remove hover shadow if applied */
    background: transparent; /* no hover background */
}

.feature-item:hover {
    background: transparent !important;
    box-shadow: none !important;
}

.feature-icon {
    width: 80px;           /* same width/height for perfect circle/square */
    height: 80px;
    margin: 0 auto 15px;   /* center horizontally */
    display: flex;
    align-items: center;   /* center vertically */
    justify-content: center; /* center horizontally */
}
.feature-icon img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}





.feature-icon img {
    max-width: 50px;   /* set preferred size */
    max-height: 50px;
    object-fit: contain;
}


.feature-item:hover .feature-icon {
    background: transparent !important;
    border-color: transparent !important;
    transform: scale(1.05); /* keep a subtle zoom if you like */
}

.feature-title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
    font-size: 1.3rem;
}

.feature-title span {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Remove the orange divider for blue theme */
.divider {
    display: none;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-icon {
        margin: 0 auto 15px; /* always center */
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
}
        
        /* Example styling for the images if they need adjustment */
        .icon-image {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .integration-card {
            border: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            background: #fff;
            overflow: hidden;
            position: relative;
        }
        
        .integration-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary-light);
            transition: height 0.3s ease;
            z-index: 0;
        }
        
        .integration-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.15);
        }
        
        .integration-card:hover::before {
            height: 6px;
            background: var(--primary-color);
        }
        
        .integration-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 15px;
            font-size: 28px;
            background: var(--primary-light);
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .integration-card:hover .integration-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        
        .integration-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        
        .integration-card:hover .integration-title {
            color: var(--primary-color);
        }
        
        .integration-desc {
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
        }
        
        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            height: 30px;
            width: auto;
            margin: 15px 20px;
        }
        
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        
        .integration-header {
            background: linear-gradient(135deg, #fff 0%, #fffdf8 100%);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 140, 0, 0.1);
        }
        
        .card-content {
            position: relative;
            z-index: 1;
            padding: 25px;
        }
        
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h2 {
            font-weight: 700;
            color: #2c3e50;
        }
        
        .lead {
            color: #5a6c7d;
        }

        @keyframes bounce {
            0%,100%,25%,50%,75% {
                transform: translateY(0)
            }

            40% {
                transform: translateY(-20px)
            }

            60% {
                transform: translateY(-12px)
            }
        }
        