.contact-info {
        font-size: 14px;      
        font-weight: 700;
    }

    /*.navbar-brand {
        background-color: #333; /* Default background color */
    }*/

   
    /*@media (max-width: 991.98px) {
        .navbar-brand {
            background-color: #f00; /* New background color for tablet and mobile view */
        }
    }*/
    #ftco-nav {
        background: linear-gradient(to right, rgba(206, 75, 232, 0), #ce4be8);        
        margin-top: 40px;
        margin-botton: 10px;
        height: 40px;


    }
    .whatsapp-button {
        position: fixed;
        bottom: 50px;
        left: 20px;
        background-color: #25d366;
        color: white;
        border-radius: 50px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        text-decoration: none; /* Ensure there's no underline on the link */
    }
    .whatsapp-button:hover {
        background-color: #20b058;
        cursor: pointer;
    }
    .whatsapp-button img {
        width: 30px; /* Adjust size as needed */
        height: 30px; /* Adjust size as needed */
    }
    .ftco-navbar-light {
        background: linear-gradient(to right, #ce4be8, #0091ff) !important; /* Gradient from #ce4be8 to #0091ff */
        background: -webkit-linear-gradient(left, #ce4be8, #0091ff) !important; /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(right, #ce4be8, #0091ff) !important; /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(right, #ce4be8, #0091ff) !important; /* For Firefox 3.6 to 15 */
        top: 0 !important;
        height: 75px;
    }

#expert {
    margin-bottom: 0px;
}

#expert .testimony-wrap {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#expert .writer-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#expert .user-img-container {
    position: relative;
}

#expert .user-img {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

#expert .online-status {
    width: 10px;
    height: 10px;
    background-color: #4caf50;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

#expert .pl-3 {
    margin-left: 15px;
}

#expert .name {
    font-weight: bold;
    font-size: 16px;
}

#expert .star {
    color: #ffc107;
}

#expert .position {
    color: #888;
    font-size: 14px;
}

#expert .details-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
}

#expert .details-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 10px;
}

#expert .details-list li span {
    color: #4caf50;
    margin-right: 5px;
}

#expert hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px dotted #ddd;
}

body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 20px;
        }


        .content {
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            position: relative;
        }

        /* Blur effect for the second two-thirds of the content */
        .blurred {
            filter: blur(2.2px);
            pointer-events: none; /* Disable interactions with blurred content */
        }

        /* Styling for the blurred section */
        .blurred-section {
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            position: relative;
        }

        /* Download button styling */
        .download-button {
            position: fixed; /* Make it fixed to the viewport */
            bottom: 10%;
            left: 50%;
			width: 50%;
            transform: translateX(-50%);
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .download-button.visible {
            opacity: 1; /* Show button when scrolling */
        }

        .download-button:hover {
            background-color: #0056b3; /* Darker shade on hover */
        }