@media(min-width: 992px){
    nav.fixed-top:not(.show-menu) .bg-wrap{
        opacity: 0 !important;
    }
}
nav.sticky-top.fixed-top:not(.show-menu) .bg-wrap, nav.fixed-top.sticky-top:not(.show-menu) .bg-wrap{
       opacity: 1 !important;
}
#slimemail-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

/* Hero Content Animation */
#slimemail-hero .hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge */
#slimemail-hero .hero-badge {
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.2s both;
}

#slimemail-hero .badge-text {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Title */
#slimemail-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

#slimemail-hero .highlight-text {
    background: linear-gradient(45deg, #FF6B00, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

#slimemail-hero .coffee-emoji {
    font-size: 3rem;
    vertical-align: middle;
    margin-left: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Hero Subtitle */
#slimemail-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

#slimemail-hero .separator {
    color: #FF6B00;
    font-weight: bold;
    margin: 0 0.5rem;
}

/* Buttons */
#slimemail-hero .hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

#slimemail-hero .hero-cta-main {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8F00 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

#slimemail-hero .hero-cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#slimemail-hero .hero-cta-main:hover::before {
    left: 100%;
}

#slimemail-hero .hero-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #FF8F00 0%, #FF6B00 100%);
}

#slimemail-hero .hero-cta-demo {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    text-decoration: none;
}

#slimemail-hero .hero-cta-demo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    border-color: #FF6B00;
    color: #FF6B00;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Hero Visual */
#slimemail-hero .hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 1s ease-out 1s both;
}

#slimemail-hero .floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

#slimemail-hero .email-preview {
    width: 280px;
    height: 200px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

#slimemail-hero .email-header {
    background: #f8fafc;
    padding: 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
}

#slimemail-hero .email-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    animation: pulse 2s ease-in-out infinite;
}

#slimemail-hero .email-dot:first-child {
    background: #ef4444;
    animation-delay: 0s;
}

#slimemail-hero .email-dot:nth-child(2) {
    background: #f59e0b;
    animation-delay: 0.2s;
}

#slimemail-hero .email-dot:nth-child(3) {
    background: #10b981;
    animation-delay: 0.4s;
}

#slimemail-hero .email-body {
    padding: 20px;
}

#slimemail-hero .email-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 12px;
    animation: loadingLine 3s ease-in-out infinite;
}

#slimemail-hero .email-line.short {
    width: 60%;
    animation-delay: 0.5s;
}

#slimemail-hero .email-line:nth-child(3) {
    animation-delay: 1s;
}

/* Background Elements */
#slimemail-hero .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#slimemail-hero .bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 143, 0, 0.05) 100%);
    animation: pulseBackground 8s ease-in-out infinite;
}

#slimemail-hero .circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

#slimemail-hero .circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

#slimemail-hero .circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

/* CSS Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes pulseBackground {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@keyframes loadingLine {
    0% {
        background: #e2e8f0;
    }
    50% {
        background: #FF6B00;
    }
    100% {
        background: #e2e8f0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    #slimemail-hero .hero-title {
        font-size: 2.5rem;
    }
    
    #slimemail-hero .coffee-emoji {
        font-size: 2rem;
    }
    
    #slimemail-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    #slimemail-hero .hero-cta-main,
    #slimemail-hero .hero-cta-demo {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    #slimemail-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    #slimemail-hero .hero-title {
        font-size: 2rem;
    }
    
    #slimemail-hero .coffee-emoji {
        font-size: 1.5rem;
    }
    
    #slimemail-hero .hero-subtitle {
        font-size: 1rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #slimemail-hero * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

#header-img-video .bg {
	background-image: url('../images/887/bgslimemailhero03.jpg');
}#sep-center-2 .bg-wrap {
    background-color: rgba(255, 255, 255, 0);
}
#slimemail-benefits {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    font-family: 'Inter', 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Benefits Title */
#slimemail-benefits .benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

#slimemail-benefits .highlight-text {
    background: linear-gradient(45deg, #FF6B00, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#slimemail-benefits .benefits-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Benefit Cards */
#slimemail-benefits .benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

#slimemail-benefits .benefit-card:nth-child(1) {
    animation-delay: 0.4s;
}

#slimemail-benefits .benefit-card:nth-child(2) {
    animation-delay: 0.6s;
}

#slimemail-benefits .benefit-card:nth-child(3) {
    animation-delay: 0.8s;
}

#slimemail-benefits .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #FF8F00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#slimemail-benefits .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

#slimemail-benefits .benefit-card:hover::before {
    opacity: 1;
}

/* Benefit Icons */
#slimemail-benefits .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #FF6B00, #FF8F00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

#slimemail-benefits .benefit-icon i {
    font-size: 2rem;
    color: white;
}

#slimemail-benefits .benefit-card:hover .benefit-icon {
    animation: bounce 0.6s ease;
}

/* Benefit Content */
#slimemail-benefits .benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

#slimemail-benefits .benefit-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Background Elements */
#slimemail-benefits .benefits-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#slimemail-benefits .bg-gradient {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 143, 0, 0.02) 100%);
    animation: floatBackground 10s ease-in-out infinite;
}

#slimemail-benefits .gradient-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

#slimemail-benefits .gradient-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #slimemail-benefits .benefits-title {
        font-size: 2rem;
    }
    
    #slimemail-benefits .benefits-subtitle {
        font-size: 1rem;
    }
    
    #slimemail-benefits .benefit-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    #slimemail-benefits .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    #slimemail-benefits .benefit-icon i {
        font-size: 1.5rem;
    }
    
    #slimemail-benefits .benefit-title {
        font-size: 1.2rem;
    }
    
    #slimemail-benefits {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    #slimemail-benefits .benefits-title {
        font-size: 1.8rem;
    }
    
    #slimemail-benefits .benefit-card {
        padding: 25px 15px;
    }
    
    #slimemail-benefits .benefit-title {
        font-size: 1.1rem;
    }
    
    #slimemail-benefits .benefit-description {
        font-size: 0.9rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #slimemail-benefits * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
#benefits-3col-17 .bg-wrap {
}#sep-center-2--0 .bg-wrap {
    background-color: rgba(255, 255, 255, 0);
}#sep-center-2--1 .bg-wrap {
    background-color: rgba(255, 255, 255, 0);
}
#slimemail-gallery {
    background-color: #f8f9fa;
    position: relative;
}

#slimemail-gallery .section-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

#slimemail-gallery .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

#slimemail-gallery .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

#slimemail-gallery .gallery-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

#slimemail-gallery .gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#slimemail-gallery .gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

#slimemail-gallery .gallery-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
    aspect-ratio: 16/9;
}

#slimemail-gallery .gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}

#slimemail-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#slimemail-gallery .gallery-card:hover .gallery-overlay {
    opacity: 1;
}

#slimemail-gallery .overlay-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#slimemail-gallery .gallery-card:hover .overlay-icon {
    transform: scale(1);
}

#slimemail-gallery .gallery-content {
    padding: 20px;
    background-color: #fff;
}

#slimemail-gallery .gallery-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

#slimemail-gallery .gallery-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: #777;
    background-color: #f0f0f0;
    padding: 3px 10px;
    border-radius: 12px;
}

@media (max-width: 991px) {
    #slimemail-gallery .section-title {
        font-size: 2rem;
    }
    
    #slimemail-gallery .mb-60 {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    #slimemail-gallery .section-title {
        font-size: 1.8rem;
    }
    
    #slimemail-gallery .section-subtitle {
        font-size: 1rem;
    }
    
    #slimemail-gallery .gallery-card {
        margin-bottom: 30px;
    }
    
    #slimemail-gallery .pt-100 {
        padding-top: 60px;
    }
    
    #slimemail-gallery .pb-75 {
        padding-bottom: 45px;
    }
}

        #slimemail-automation {
            background-color: #f8f9fa;
        }
        
        #slimemail-automation .badge-pill {
            display: inline-block;
            background: rgba(0, 123, 255, 0.1);
            color: #007bff;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }
        
        #slimemail-automation .animation-badge:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: shimmer 2s infinite;
        }
        
        #slimemail-automation .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        #slimemail-automation .gradient-text {
            background: linear-gradient(45deg, #007bff, #00c6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }
        
        #slimemail-automation .section-subtitle {
            font-size: 18px;
            color: #6c757d;
            max-width: 800px;
            margin: 0 auto;
        }
        
        #slimemail-automation .workflow-container {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        #slimemail-automation .workflow-diagram {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        #slimemail-automation .workflow-step {
            text-align: center;
            z-index: 2;
            position: relative;
        }
        
        #slimemail-automation .workflow-icon {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        #slimemail-automation .workflow-icon:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            background: inherit;
            filter: blur(5px);
            opacity: 0.5;
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        #slimemail-automation .workflow-icon:hover {
            transform: translateY(-5px);
        }
        
        #slimemail-automation .workflow-icon:hover:before {
            filter: blur(10px);
            opacity: 0.7;
        }
        
        #slimemail-automation .app-logo {
            width: 50px;
            height: 50px;
            object-fit: contain;
            transition: all 0.3s ease;
        }
        
        #slimemail-automation .workflow-icon:hover .app-logo {
            transform: scale(1.1);
        }
        
        #slimemail-automation .workflow-label {
            font-weight: 600;
            margin-top: 10px;
            font-size: 16px;
        }
        
        /* Connector Line Animation */
        #slimemail-automation .connector-line {
            flex: 1;
            height: 4px;
            background: #e9ecef;
            position: relative;
            margin: 0 15px;
            max-width: 100px;
            min-width: 60px;
            overflow: hidden;
            border-radius: 4px;
        }
        
        #slimemail-automation .connector-line:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 123, 255, 0.3) 50%, 
                transparent 100%);
            animation: flow 2s infinite linear;
        }
        
        #slimemail-automation .moving-dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #007bff;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            animation: moveDot 3s infinite;
            box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
        }
        
        #slimemail-automation .workflow-description {
            text-align: center;
            font-size: 18px;
            color: #495057;
            font-weight: 500;
            padding-top: 20px;
            border-top: 1px dashed #dee2e6;
        }
        
        #slimemail-automation .btn-animation {
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, #007bff, #00c6ff);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
        }
        
        #slimemail-automation .btn-animation:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s;
        }
        
        #slimemail-automation .btn-animation:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
            color: white;
            text-decoration: none;
        }
        
        #slimemail-automation .btn-animation:hover:before {
            left: 100%;
        }
        
        #slimemail-automation .btn-animation .fa {
            margin-right: 8px;
        }
        
        /* Animated Shapes */
        #slimemail-automation .shape {
            position: absolute;
            opacity: 0.05;
            border-radius: 50%;
            background: #007bff;
        }
        
        #slimemail-automation .shape-1 {
            width: 200px;
            height: 200px;
            top: -100px;
            left: -100px;
            animation: float 8s ease-in-out infinite;
        }
        
        #slimemail-automation .shape-2 {
            width: 150px;
            height: 150px;
            bottom: -50px;
            right: -50px;
            animation: float 10s ease-in-out infinite;
        }
        
        #slimemail-automation .shape-3 {
            width: 80px;
            height: 80px;
            top: 50%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }
        
        #slimemail-automation .shape-4 {
            width: 120px;
            height: 120px;
            bottom: 20%;
            left: 10%;
            animation: float 7s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        @keyframes flow {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        @keyframes moveDot {
            0% {
                left: -10px;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                left: calc(100% + 10px);
                opacity: 0;
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @media (max-width: 768px) {
            #slimemail-automation .workflow-diagram {
                flex-direction: column;
            }
            
            #slimemail-automation .workflow-step {
                margin-bottom: 20px;
            }
            
            #slimemail-automation .connector-line {
                width: 4px;
                height: 40px;
                margin: 10px 0;
            }
            
            #slimemail-automation .connector-line:before {
                animation: flowVertical 2s infinite linear;
            }
            
            #slimemail-automation .moving-dot {
                animation: moveDotVertical 3s infinite;
            }
        }
        
        @keyframes flowVertical {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100%);
            }
        }
        
        @keyframes moveDotVertical {
            0% {
                top: -10px;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                top: calc(100% + 10px);
                opacity: 0;
            }
        }
    #sep-center-2--2 .bg-wrap {
    background-color: rgba(255, 255, 255, 0);
}
.accordion-header {
    padding: 11px;
    border: 1px rgb(165, 192, 201) solid;
    margin-bottom: 10px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: normal;
    cursor: pointer;
}
  .accordion-header strong{font-weight: normal;}
#action-text-btn-3 .bg {
    background-image: url('../images/887/bgslimemailhero05.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.2;
}
#action-text-btn-3 .bg-wrap {
	background: #4282d7;
}

        #slimemail-resources {
            background-color: #f8f9fa;
        }
        
        #slimemail-resources .badge-pill {
            display: inline-block;
            background: rgba(0, 123, 255, 0.1);
            color: #007bff;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        #slimemail-resources .resource-badge {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }
        
        #slimemail-resources .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        #slimemail-resources .section-subtitle {
            font-size: 18px;
            color: #6c757d;
            max-width: 800px;
            margin: 0 auto;
        }
        
        #slimemail-resources .resource-card {
            display: flex;
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        #slimemail-resources .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        #slimemail-resources .highlight-card {
            background: linear-gradient(45deg, rgba(0, 123, 255, 0.03), rgba(0, 123, 255, 0.07));
            border: 1px solid rgba(0, 123, 255, 0.1);
        }
        
        #slimemail-resources .premium-card {
            background: linear-gradient(45deg, rgba(255, 193, 7, 0.03), rgba(255, 193, 7, 0.07));
            border: 1px solid rgba(255, 193, 7, 0.2);
        }
        
        #slimemail-resources .premium-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(45deg, #ff9800, #ff5722);
            color: white;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 5px rgba(255, 152, 0, 0.3);
        }
        
        #slimemail-resources .resource-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            transition: all 0.3s ease;
        }
        
        #slimemail-resources .svg-primary {
            fill: #007bff;
        }
        
        #slimemail-resources .svg-premium {
            fill: #ff9800;
        }
        
        #slimemail-resources .resource-card:hover .resource-icon {
            background: #007bff;
            transform: scale(1.1);
        }
        
        #slimemail-resources .resource-card:hover .svg-primary {
            fill: white;
        }
        
        #slimemail-resources .premium-card:hover .resource-icon {
            background: #ff9800;
        }
        
        #slimemail-resources .premium-card:hover .svg-premium {
            fill: white;
        }
        
        #slimemail-resources .resource-content {
            flex-grow: 1;
        }
        
        #slimemail-resources .resource-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #212529;
        }
        
        #slimemail-resources .resource-desc {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
        }
        
        #slimemail-resources .resource-link {
            display: inline-flex;
            align-items: center;
            color: #007bff;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        #slimemail-resources .premium-link {
            color: #ff9800;
        }
        
        #slimemail-resources .resource-link .fa {
            margin-left: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        #slimemail-resources .resource-link:hover {
            color: #0056b3;
        }
        
        #slimemail-resources .premium-link:hover {
            color: #e67e00;
        }
        
        #slimemail-resources .resource-link:hover .fa {
            transform: translateX(5px);
        }
        
        @media (max-width: 991px) {
            #slimemail-resources .resource-card {
                padding: 20px;
            }
            
            #slimemail-resources .resource-icon {
                width: 50px;
                height: 50px;
                margin-right: 15px;
            }
            
            #slimemail-resources .resource-title {
                font-size: 16px;
            }
        }
    #sep-center-2--3 .bg-wrap {
    background-color: rgba(255, 255, 255, 0);
}
#action-img-text-btn-2--0 .bg {
	background-position: right center;
	background-repeat: No-repeat;
	background-size: cover;
	background-image: url('../images/887/bgslimemailhero04.jpg');
}
#media-iframe-text .bg-wrap {
	background: #fafafa;
}.tool-button-left{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1001190 !important;
}
.tool-button-left a.btn{
    padding: 0px 20px 0px 0px; border: 0px;
}
.tool-button-left a.btn.btn-primary{
    background-color: rgb(239, 43, 43);
}
@media (max-width: 767px){
    .tool-button-left a.btn{
        padding: 0;
    }
}
/*.tool-button-left .btn-lg{
    padding: 0.8rem 1rem 0.8rem 3.5rem;
    font-size: 25px;
}
.tool-button-left .btn-lg span.call-mobile{
   padding: 0.8rem 1rem 0.8rem 3.5rem !important;
}
}*/#tool-back-to-top{
    position: fixed;
    right: 130px;
    bottom: 50px;
    z-index: 1001190 !important;
}
#footer-logo-text-4 .bg-wrap {
    background: #2f444d;
}
#footer-text .bg-wrap {
	background: #2f444d;
}

#footer-logo-text-2 .bg-wrap {
	background: #2f444d;
}