#animated-text {
    display: inline-block;
    white-space: nowrap;
}

.font-weight-extrabold {
    font-weight: 800;
    }

.font-weight-black {
    font-weight: 900;
}

.divider {
    width: 80px;
    height: 6px;
    background: #f9c23c;
    border-radius: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.shadow-smooth {
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.08);
}

.btn-hover-custom {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-hover-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 130%;
    height: 400%;
    background-color: #B7FF3A; 
    border-radius: 100%;
    transform: translate(-50%) scale(0);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: -1;
    opacity: 0;
}

.btn-hover-custom:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.btn-hover-custom:hover p {
    color: #343A40;
    transition: color 0.3s ease-in-out;
}

.card-hover-custom {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.card-hover-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 400%;
    background-color: #04364A; 
    border-radius: 100%;
    transform: translate(-50%) scale(0);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    z-index: -1;
    opacity: 0;
}

.card-hover-custom:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.card-hover-custom:hover .title {
    color: #FFFFFF !important;
    transition: color 0.9s ease-in-out;
}

.card-hover-custom:hover .desc {
    color: #B7FF3A !important;
    transition: color 0.8s ease-in-out;
}


.img-left, .img-right {
    max-width: 500px;
    position: absolute;
    top: 10%;
}
.img-left {
    left: 0;
    z-index: -1;
}
.img-right {
    right: 0;
    z-index: -1;
}
.img-center {
    z-index: 1;
}

.image-stack {
    position: relative;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}



.gradient-button {
    background: linear-gradient(90deg, #a8e063, #56ab2f);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    width: 200px;
}

.subscription-button {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    width: 200px;
}

.pricing-box {
    background: linear-gradient(to right, #00c853, #a5d6a7);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.price {
    font-size: 2em;
    margin: 10px 0;
}
.btn-price {
    
}

.btn-price .btn-primary {
    
}
.btn-price .btn-outline {
    
}


.card-pricing-hover-custom {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.card-pricing-hover-custom::before {
    background: linear-gradient(to bottom, #2ca5d8, #0f3d6d); 
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 400%;
    border-radius: 10%;
    transform: translate(-50%) scale(0);
    z-index: -1;
    opacity: 0;
}

.card-pricing-hover-custom:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.card-pricing-hover-custom:hover h1,
.card-pricing-hover-custom:hover h2,
.card-pricing-hover-custom:hover h5,
.card-pricing-hover-custom:hover h6 {
    color: #FFFFFF !important;
}

.card-service-hover-custom {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.card-service-hover-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #04364A;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.card-service-hover-custom:hover::before {
    transform: translateX(0%);
}

.card-service-hover-custom:hover h2,
.card-service-hover-custom:hover h3,
.card-service-hover-custom:hover h4,
.card-service-hover-custom:hover h5,
.card-service-hover-custom:hover h6,
.card-service-hover-custom:hover li {
    color: #FFFFFF !important;
}
.card-service-hover-custom h2 {
    font-size:20px
}
.card-service-hover-custom:hover p {
    color: #B7FF3A !important;
    transition: color 0.8s ease-in-out;
}
.btn-rate {
    border-radius:15px;
    padding: 10px 30px;
    font-weight:bold;
    font-size:15px
}
.btn-rate.btn-brand-primary {
    background: #04364A !important;
}
.btn-rate.btn-brand-primary {
    background: #04364A !important;
    color: white !important;
}
.btn-rate.btn-brand-primary:hover {
    background: #04364A !important;
    color: #B7FF3A !important;
}
.btn-rate.btn-brand-outline {
    border: 1px solid #04364A !important;
    color : #04364A !important;
}
.btn-rate.btn-brand-outline:hover {
    background: #04364A !important;
    color: #B7FF3A !important;
}