.elementor-1502 .elementor-element.elementor-element-3770abf{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1502 .elementor-element.elementor-element-9325e6b{--display:flex;--min-height:0px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-1502 .elementor-element.elementor-element-adcdf6a.elementor-element{--flex-grow:1;--flex-shrink:0;}.elementor-1502 .elementor-element.elementor-element-adcdf6a{text-align:left;font-size:20px;}.elementor-1502 .elementor-element.elementor-element-6f2dbf9{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1502 .elementor-element.elementor-element-b4f95d0 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-1502 .elementor-element.elementor-element-adcdf6a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:10px 10px 10px 10px;}}@media(min-width:768px){.elementor-1502 .elementor-element.elementor-element-9325e6b{--width:50%;}.elementor-1502 .elementor-element.elementor-element-6f2dbf9{--width:50%;}}/* Start custom CSS for image, class: .elementor-element-b4f95d0 */#animate-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    transition: all 0.3s ease;
}

#animate-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -25px;
    right: -25px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(144, 238, 144, 0.1), rgba(152, 251, 152, 0.15), rgba(173, 255, 173, 0.1), rgba(144, 238, 144, 0.12));
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: textGradientFlow 4s ease infinite;
}

#animate-image::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -35px;
    right: -35px;
    bottom: -25px;
    /* Enhanced rotation visibility */
    background: conic-gradient(
        from 45deg, 
        rgba(144, 238, 144, 0.25), 
        rgba(173, 255, 173, 0.4), 
        rgba(152, 251, 152, 0.3), 
        rgba(50, 205, 50, 0.35),
        rgba(144, 238, 144, 0.25)
    );
    border-radius: 30px;
    z-index: -2;
    animation: textRotate 8s linear infinite; /* Faster rotation */
    opacity: 0.8; /* Increased opacity */
}

/* Alternative: Even more visible rotation */
.text-rotate-visible::after {
    background: conic-gradient(
        from 0deg, 
        rgba(144, 238, 144, 0.4), 
        rgba(173, 255, 173, 0.6), 
        rgba(152, 251, 152, 0.5), 
        rgba(50, 205, 50, 0.6),
        rgba(34, 139, 34, 0.4),
        rgba(144, 238, 144, 0.4)
    );
    opacity: 1;
    animation: textRotate 6s linear infinite;
}

/* Text background animations */
@keyframes textGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-8px) translateX(4px) rotate(1deg); }
    50% { transform: translateY(-4px) translateX(-6px) rotate(-1deg); }
    75% { transform: translateY(-10px) translateX(2px) rotate(0.5deg); }
}

@keyframes textBreathe {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

@keyframes textPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

/* Floating text particles */
.text-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.text-particle-1 {
    width: 6px;
    height: 6px;
    background: rgba(144, 238, 144, 0.3);
    top: -5px;
    left: 10%;
    animation: textFloat 6s ease-in-out infinite;
}

.text-particle-2 {
    width: 8px;
    height: 8px;
    background: rgba(173, 255, 173, 0.25);
    top: 80%;
    right: 15%;
    animation: textBreathe 8s ease-in-out infinite;
    animation-delay: -2s;
}

.text-particle-3 {
    width: 4px;
    height: 4px;
    background: rgba(152, 251, 152, 0.35);
    bottom: -8px;
    left: 70%;
    animation: textFloat 7s ease-in-out infinite;
    animation-delay: -4s;
}

.text-particle-4 {
    width: 5px;
    height: 5px;
    background: rgba(144, 238, 144, 0.28);
    top: 30%;
    right: 5%;
    animation: textBreathe 5s ease-in-out infinite;
    animation-delay: -1s;
}

/* Text background shapes */
.text-bg-shape {
    position: absolute;
    z-index: -3;
    opacity: 0.2;
}

.text-bg-shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.08), rgba(173, 255, 173, 0.12));
    border-radius: 50%;
    top: -15px;
    left: -25px;
    animation: textFloat 15s ease-in-out infinite;
}

.text-bg-shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(152, 251, 152, 0.1), rgba(144, 238, 144, 0.06));
    transform: rotate(45deg);
    bottom: -10px;
    right: -20px;
    animation: textRotate 20s linear infinite;
}

.text-bg-shape-3 {
    width: 80px;
    height: 30px;
    background: linear-gradient(135deg, rgba(173, 255, 173, 0.07), rgba(152, 251, 152, 0.09));
    border-radius: 15px;
    top: 60%;
    left: -30px;
    animation: textBreathe 12s ease-in-out infinite;
    animation-delay: -6s;
}

/* Text wave background */
@keyframes textWave {
    0%, 100% { transform: translateY(0px) scaleY(1); }
    50% { transform: translateY(-5px) scaleY(1.05); }
}

.text-wave-bg {
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    z-index: -4;
    background: linear-gradient(90deg, rgba(144, 238, 144, 0.04), rgba(173, 255, 173, 0.06), rgba(152, 251, 152, 0.04));
    border-radius: 12px;
    animation: textWave 3s ease-in-out infinite;
}

/* Hover effects */
#animate-image:hover::after {
    opacity: 1; /* Full opacity on hover */
    animation: textRotate 3s linear infinite; /* Faster on hover */
}

#animate-image:hover::before {
    animation: textPulse 1.5s ease-in-out infinite;
    background: linear-gradient(45deg, rgba(144, 238, 144, 0.15), rgba(152, 251, 152, 0.2), rgba(173, 255, 173, 0.15), rgba(144, 238, 144, 0.17));
}

#animate-image:hover {
    transform: translateY(-2px);
}

/* Additional glow effect */
.text-glow {
    position: absolute;
    top: -25px;
    left: -30px;
    right: -30px;
    bottom: -25px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.03) 0%, rgba(173, 255, 173, 0.05) 40%, transparent 70%);
    border-radius: 25px;
    z-index: -5;
    animation: textPulse 6s ease-in-out infinite;
}

/* Shimmer effect */
@keyframes textShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.text-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    animation: textShimmer 3s ease-in-out infinite;
    animation-delay: 2s;
}/* End custom CSS */