.bg-lavender {
    background-color: #ECE3F7;
}


.bg-lavender-btn {
    background-color: #9575CD !important; /* Background color */
    border-color: #9575CD !important; /* Match border color to background */
    color: white !important; /* Text color to white */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Added padding for better size */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}
  
.bg-lavender-btn:hover {
    background-color: #7E57C2 !important; /* Darker background on hover */
    border-color: #7E57C2 !important; /* Match border color */
    color: #FFFFFF !important; /* Maintain white text */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.header-img {
    object-fit: cover;
    padding-bottom: 3px;
}

.header-text {
    color: #2A1B3C;
    :hover {
        color: #5D3FD3;
    }
}

body {
    background-color: #F5F5FA;
}

.bg-gradient-top-to-bottom {
    background: linear-gradient(to bottom, #F5F5FA, #ECE3F7);
}

.bg-gradient-bottom-to-top {
    background: linear-gradient(to top, #F5F5FA, #ECE3F7);
}

.vh-90 {
    height: 90vh;
}

.bg-light-lavender {
    background-color: #F5F5FA;
}

.bg-channels-wrapper {
    background-color: #f8f5fa;
}

.button-icon {
    padding-bottom: 0px;
}

#main-features {
    transition: opacity 0.3s ease-in-out; /* Reduced duration */
    opacity: 1;
}

#main-features.fade-out {
    opacity: 0;
}

#main-features.fade-in {
    opacity: 1;
}

/* For the pricing toggle buttons */
#monthly-btn,
#yearly-btn {
  border-color: #ECE3F7 !important;
  color: #000 !important; /* Text color to black for unselected buttons */
}

#monthly-btn.active,
#yearly-btn.active {
  background-color: #ECE3F7 !important;
  border-color: #ECE3F7 !important;
  color: #000; /* Text color for selected buttons */
}

#monthly-btn:hover,
#yearly-btn:hover {
  background-color: #E3D5F1;
  border-color: #E3D5F1;
  color: #000; /* Text color remains black */
}

/* For the "Get Started" buttons in the pricing section */
.pricing-btn {
  background-color: #ECE3F7 !important; /* Background color */
  border-color: #ECE3F7 !important; /* Border color */
  color: #000 !important; /* Text color to black */
}

.pricing-btn:hover {
  background-color: #E3D5F1 !important;
  border-color: #E3D5F1 !important;
  color: #000 !important; /* Text color remains black */
}

/* Custom CSS for the original price */
.original-price {
  font-size: 1.5rem; /* Larger font size */
  vertical-align: super; /* Aligns text to the top */
  margin-left: 3px; /* Adjusts the space between the prices */
  text-decoration: line-through; /* Strikes through the text */
  display: inline-block; /* Ensures proper placement next to the main price */
}

#pricing {
    padding-top: 20px;
}


/* Pricing cards */
.custom-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.custom-list li:last-child {
    border-bottom: none;
}

.list-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.custom-cta-bg {
    position: relative;
    background-image: url('../img/chart_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.5rem; /* Maintain the rounded corners */
    overflow: hidden; /* Ensure the rounded corners are visible */
}

/* Special CSS only for Firefox */
@-moz-document url-prefix() {
    .custom-cta-bg {
        clip-path: inset(1px 0 1px 0); /* Cuts 1px from the top and bottom -> Fix for rendering bug */
    }
}

.custom-cta-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #e6e6fa, #d8bfd8); /* Your gradient */
    opacity: 0.95; /* Increase the opacity to make the image less distracting */
    border-radius: inherit; /* Ensure the gradient follows the rounded corners */
    z-index: 1; /* Ensure the gradient is on top of the image */
}

.custom-cta-bg .row {
    position: relative;
    z-index: 2; /* Ensure the content is above the gradient */
}

#contact-us-button {
    cursor: pointer;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.fade-out {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.hidden {
    display: none !important;
}
