   /* Scroll to Top Button Styles */
   #scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007BFF;
    /* Circle background color */
    color: #fff;
    /* Arrow color */
    border-radius: 50%;
    /* Makes it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    /* Keeps it on top */
}

#scrollToTop i {
    font-size: 20px;
    /* Arrow size */
}

/* Show button when visible */
#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}


.social-icons img {
    width: 40px;
    /* Adjust the size */
    height: 40px;
    margin: 10px;
    /* Adjust spacing */
}


         /* Responsive styles for smaller screens */
         @media (max-width: 768px) {

            /* Adjust container positioning */
            #expandable-bubble {
                bottom: 10px;
                /* Bring closer to the screen edge */
                left: 10px;
            }

            /* Primary button adjustments */
            .primary-bubble {
                font-size: 12px;
                /* Smaller text size */
                padding: 8px 15px;
                /* Smaller padding */
                border-radius: 20px;
                /* Slightly smaller rounded corners */
                width: auto;
                /* Allow the button to shrink if needed */
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
                /* Adjust shadow size */
            }

            /* Adjust flashing text size */
            .flashing-text {
                font-size: 12px;
                /* Slightly smaller font */
                letter-spacing: 0.8px;
                /* Reduce spacing */
            }

            /* Social icons adjustments */
            .social-icons .icon {
                width: 40px;
                /* Smaller icon size */
                height: 40px;
                font-size: 20px;
                /* Adjust icon size */
            }

            .social-icons {
                gap: 8px;
                /* Reduce spacing between icons */
            }
        }

        /* Ultra-small screens (e.g., phones in portrait mode) */
        @media (max-width: 480px) {
            #expandable-bubble {
                bottom: 5px;
                /* Further adjust position */
                left: 5px;
            }

            .primary-bubble {
                font-size: 10px;
                /* Even smaller text */
                padding: 6px 12px;
                /* Tighter padding */
            }

            .social-icons .icon {
                width: 35px;
                /* Smaller icons */
                height: 35px;
                font-size: 18px;
            }
        }


        /* Primary button styling */
        .primary-bubble {
            width: auto;
            /* Adjust width to fit the text */
            padding: 10px 20px;
            /* Add padding for button look */
            background: linear-gradient(45deg, #0077b5, #00bfff);
            /* Gradient background */
            color: white;
            border: 2px solid white;
            /* Add a white border */
            border-radius: 25px;
            /* Rounded edges */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            font-family: Arial, sans-serif;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .primary-bubble:hover {
            background: linear-gradient(45deg, #00bfff, #0077b5);
            /* Reverse gradient on hover */
            transform: translateY(-3px);
            /* Slight lift on hover */
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            /* Deeper shadow on hover */
        }

        /* Flashing text (remains the same) */
        .flashing-text {
            animation: flash 1.5s infinite;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Flashing text effect for "Contact Us" */
        .flashing-text {
            animation: flash 1.5s infinite;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Keyframes for flashing animation */
        @keyframes flash {

            0%,
            100% {
                color: white;
                text-shadow: 0 0 5px #0077b5, 0 0 10px #0077b5;
            }

            50% {
                color: #f1f1f1;
                text-shadow: 0 0 15px #00bfff, 0 0 30px #00bfff;
            }
        }

        /* Container for the expandable bubble */
        #expandable-bubble {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column-reverse;
            /* Social icons will expand upwards */
            align-items: center;
            gap: 15px;
        }



        .primary-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        /* Hidden social icons container */
        .social-icons {
            display: none;
            /* Hidden initially */
            flex-direction: column;
            /* Expand upwards */
            gap: 10px;
        }

        /* Social media icon styles */
        .social-icons .icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .social-icons .icon:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .social-icons .whatsapp {
            background-color: #25d366;
        }

        .social-icons .facebook {
            background-color: #3b5998;
        }

        .social-icons .instagram {
            background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285aeb);
        }

        .social-icons .linkedin {
            background-color: #0077b5;
        }
 
 
 /* Blog Details */
 .blog-details {
    padding: 60px 0;
}

.blog-post .post-img img {
    width: 100%;
    border-radius: 10px;
}

.blog-post .title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
}

.blog-post .meta-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.blog-post .meta-top ul li {
    display: inline;
    margin-right: 15px;
}

.blog-post .meta-top ul li i {
    color: #007bff;
    margin-right: 5px;
}

.blog-post .content {
    line-height: 1.8;
    margin: 20px 0;
}

.blog-post blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: #f7f7f7;
    border-left: 3px solid #007bff;
}

.blog-post .meta-bottom ul.tags {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.blog-post .meta-bottom ul.tags li {
    display: inline-block;
    margin-right: 10px;
    background: #f7f7f7;
    padding: 5px 10px;
    border-radius: 5px;
}

.author-box {
    margin-top: 40px;
    padding: 20px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.related-posts {
    margin-top: 60px;
}

.related-posts .post-item {
    margin-bottom: 30px;
}

.related-posts .post-item h4 {
    font-size: 18px;
    margin-top: 10px;
}

.sidebar {
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
}

.sidebar-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar-item {
    margin-bottom: 40px;
}

.sidebar-item .categories ul {
    list-style: none;
    padding: 0;
}

.sidebar-item .categories ul li {
    margin-bottom: 10px;
}

.sidebar-item .recent-posts .post-item {
    display: flex;
    margin-bottom: 15px;
}

.sidebar-item .recent-posts .post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.sidebar-item .tags ul {
    list-style: none;
    padding: 0;
}

.sidebar-item .tags ul li {
    display: inline-block;
    margin-right: 10px;
    background: #f7f7f7;
    padding: 5px 10px;
    border-radius: 5px;
}