.hero {
    background: linear-gradient(135deg, #4f2be0, #7b2cff);
    color: white;
    padding: 100px 0;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* Glassmorphism Effect */
.example-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    transition: 0.3s ease;
    cursor: pointer;
}

.example-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.hero-main-img {
    min-width: 120%; /* Bleeding effect */
    transform: perspective(1000px) rotateY(-5deg); /* Slight 3D effect */
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    border-radius: 20px;
}




.bg-success-light {
    background-color: #dff4e6;
}

.brand-logo {
    max-height: 50px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.brand-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-categories .active {
    background: linear-gradient(90deg, #6c4df6, #5a2be0) !important;
    border: none;
    color: white;
}





.feature-tabs .btn-primary {
    background: #6C4CF6;
    border: none;
    box-shadow: 0 4px 15px rgba(108, 76, 246, 0.3);
}

.feature-tabs .btn-link:hover {
    color: #6C4CF6 !important;
}

.feature-img-wrapper img {
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
}

.feature-img-wrapper:hover img {
    transform: scale(1.02);
}

.shape-blob {
    width: 300px;
    height: 300px;
    background: rgba(108, 76, 246, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}




.ai-rank {
    background: linear-gradient(135deg, #2b1070 0%, #4b2fd4 50%, #6c4cf6 100%);
    position: relative;
    overflow: hidden;
}

.ai-btn-glow {
    background: #22c55e !important;
    border: none;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.ai-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.6);
}

.ai-dashboard-frame {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}



.testimonial-card {
    background: #f3e8ff; /* Soft purple tint */
    border-left: 6px solid #6C4CF6;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
}

.stat-box {
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.03);
}



.tools-section {
    background: linear-gradient(135deg, #6C4CF6 0%, #3b0ca3 100%);
}

.tool-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
}

.tool-icon-box {
    width: 50px;
    height: 50px;
    background: #f3f0ff;
    color: #6C4CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}



.accordion-button:not(.collapsed) {
    background-color: #f3f0ff;
    color: #6C4CF6;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 76, 246, 0.1);
}

.accordion-item {
    border: none;
}


.trial-section {
    background: linear-gradient(135deg, #5b2ee5, #3c0fbf);
    overflow: hidden;
}

.trial-icon {
    background: #2ecc71;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.trial-form input:focus, 
.trial-form select:focus {
    background-color: #fff !important;
    border: 1px solid #6C4CF6 !important;
    box-shadow: 0 0 0 4px rgba(108, 76, 246, 0.1) !important;
}

.shadow-2xl {
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}




/* Helper Backgrounds */
.bg-primary-light { background: #f0ebff; }
.bg-success-light { background: #e8f7ee; }
.bg-warning-light { background: #fff9e6; }
.bg-danger-light  { background: #ffeeee; }
.bg-info-light    { background: #e6f7ff; }

/* Tool Cards */
.tool-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border-color: #6C4CF6;
}

.tool-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
}

/* Service Image Shadows */
.img-fluid.shadow {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #eee;
    }
}


