
        :root {
            --primary-color: #000000;
            --secondary-color: #f8f9fa;
            --accent-color: #ffc107;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-color);
            color: white;
            overflow-x: hidden;
        }
        .navbar{background-color: #fff;}
    .hero-section {
        height: 100vh;
        background-color: #000;
        display: flex;
        align-items: center;
        color: white;
        overflow: hidden;
    }

    .text-content {
        padding: 0 5%;
    }

    .image-column {
        padding: 0;
    }

    .hero-image {
        height: 100vh;
        width: 100%;
        object-fit: contain;
        object-position: right;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        /* margin-bottom: 1.5rem; */
        line-height: 1.2;
    }

    .beerbiceps-text {
        font-size: 2.5rem;
        font-weight: 700;
        color: #f8c537;
        min-height: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 1rem;
        color: #fff;
    }

    .email-form {
        max-width: 500px;
    }

    .email-form .form-control {
        height: 50px;
        border-radius: 25px 0 0 25px;
        border: none;
        padding: 0 20px;
        background-color: #fff;
        color: white;
    }

    .email-form .btn {
        height: 50px;
        border-radius: 0 25px 25px 0;
        background-color: #f8c537;
        color: #000;
        font-weight: 600;
        border: none;
        padding: 0 25px;
        transition: all 0.3s ease;
    }

    .email-form .btn:hover {
        background-color: #ffd700;
    }

    .typing-text {
        border-right: 3px solid #f8c537;
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
    }
    #media{
        background: #232222;
    }

    @media (max-width: 992px) {
        .hero-section {
            height: auto;
            padding: 100px 0 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .beerbiceps-text {
            font-size: 1.8rem;
            min-height: 2.8rem;
        }
        
        .hero-subtitle {
            font-size: 2.0rem;
        }
        
        .image-column {
            margin-bottom: 0px;
        }
        
        .hero-image {
            height: auto;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .beerbiceps-text {
            font-size: 1.5rem;
        }
        
        .email-form .form-control,
        .email-form .btn {
            height: 45px;
        }
    }
        
        .magnetic-text {
            font-size: 5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0;
            line-height: 1;
        }
        
        .beerbiceps-text {
            font-size: 3rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-top: -1rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .card {
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 10px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
        }
        
        .card-body{color: #fff;}
        .card-img-top {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            height: 200px;
            object-fit: cover;
        }
        
        .img-fluid.rounded{padding: 20px;}
        .featured-podcast {
            background-color: rgba(255, 193, 7, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        
        .community-section {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                        url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            text-align: center;
        }
        
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: white;
            transition: color 0.3s ease;
        }
        
        .social-icon:hover {
            color: var(--accent-color);
        }
        
        .magnetic-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .magnetic-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        }
        
        .magnetic-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .magnetic-btn:hover::before {
            left: 100%;
        }
        
        /* Magnetic effect */
        .magnetic-element {
            transition: transform 0.1s ease;
            display: inline-block;
        }
        
        footer {
            background-color: #111;
            padding: 2rem 0;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .magnetic-text {
                font-size: 3rem;
            }
            
            .beerbiceps-text {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .youtube-channel-box {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }
    
    .youtube-channel-box:hover {
        transform: translateY(-5px);
    }
    
    .channel-thumbnail-container {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .channel-thumbnail {
        border-radius: 10px;
        transition: transform 0.3s ease;
        width: 100%;
    }
    
    .channel-thumbnail-container:hover .channel-thumbnail {
        transform: scale(1.03);
    }
    
    .play-button-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .channel-thumbnail-container:hover .play-button-overlay {
        opacity: 1;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        background-color: #ff0000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .play-button:hover {
        transform: scale(1.1);
        color: white;
    }
    
    .subscriber-count {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 14px;
    }
    
    .channel-info h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .channel-stats {
        color: #aaa;
        font-size: 1rem;
    }
    
    .channel-description {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #ddd;
    }
    
    .youtube-btn {
        background-color: #ff0000;
        color: white;
    }
    
    .youtube-btn:hover {
        background-color: #cc0000;
        color: white;
    }
    
    .subscribe-btn {
        background-color: #333;
        color: white;
    }
    
    .subscribe-btn:hover {
        background-color: #555;
        color: white;
    }
    
    @media (max-width: 992px) {
        .channel-info h3 {
            font-size: 1.8rem;
            margin-top: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .youtube-channel-box {
            padding: 20px;
        }
        
        .channel-info h3 {
            font-size: 1.5rem;
        }
        
        .channel-description {
            font-size: 1rem;
        }
    }


    /* -------------------------About Page-------------------------- */

    .about-hero {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://beerbiceps.com/wp-content/uploads/2023/03/about-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .about-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.2);
        }
        
        .timeline {
            position: relative;
            padding-left: 50px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--accent-color);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 3px solid var(--primary-color);
        }
        
        .stats-item {
            text-align: center;
            padding: 20px;
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .stats-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
            margin-bottom: 15px;
        }
        
        .magnetic-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .magnetic-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.3);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .about-hero {
                height: 50vh;
            }
            
            .stats-number {
                font-size: 2rem;
            }
        }


        /* ----------------------Contact Us------------------------------- */

        .contact-hero {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://beerbiceps.com/wp-content/uploads/2023/03/contact-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .contact-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.2);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .form-control {
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(248, 197, 55, 0.25);
        }
        
        textarea.form-control {
            min-height: 150px;
        }
        
        .magnetic-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .magnetic-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.3);
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 300px;
            border: none;
        }
        
        .social-link {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .contact-hero {
                height: 40vh;
            }
        }

        /* --------------------------Blogs Page---------------------------------- */

         .blog-hero {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://beerbiceps.com/wp-content/uploads/2023/03/blog-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .blog-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.2);
        }
        
        .blog-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-category {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .blog-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .blog-meta {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .blog-excerpt {
            color: #ddd;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more:hover {
            color: #ffd700;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        .sidebar-widget {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 15px;
            align-items: center;
        }
        
        .popular-post-img {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .popular-post-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .popular-post-date {
            color: #aaa;
            font-size: 0.8rem;
        }
        
        .tag {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 5px;
            margin-bottom: 10px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .newsletter-form {
            margin-top: 20px;
        }
        
        .newsletter-form input {
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            padding: 10px 15px;
            margin-bottom: 10px;
            width: 100%;
            border-radius: 5px;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 5px;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #ffd700;
        }
        
        .pagination .page-item .page-link {
            background-color: rgba(255, 255, 255, 0.05);
            border: none;
            color: white;
            margin: 0 5px;
            border-radius: 5px;
        }
        
        .pagination .page-item.active .page-link {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .pagination .page-item .page-link:hover {
            background-color: rgba(248, 197, 55, 0.3);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .blog-hero {
                height: 40vh;
            }
            
            .blog-title {
                font-size: 1.3rem;
            }
        }

        /* ---------------------------Blog-details-------------------------------------- */

        .blog-detail-hero {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://beerbiceps.com/wp-content/uploads/2023/03/blog-detail-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .blog-detail-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #aaa;
        }
        
        .blog-meta-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .blog-meta-item i {
            margin-right: 5px;
            color: var(--accent-color);
        }
        
        .blog-category {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 3px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .blog-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #ddd;
        }
        
        .blog-content h2, 
        .blog-content h3, 
        .blog-content h4 {
            margin-top: 30px;
            margin-bottom: 20px;
            color: white;
        }
        
        .blog-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .blog-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .blog-content ul, 
        .blog-content ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .blog-content li {
            margin-bottom: 10px;
            color: #ddd;
        }
        
        .highlight-box {
            background-color: rgba(248, 197, 55, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .author-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            align-items: center;
            margin: 50px 0;
        }
        
        .author-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 30px;
            border: 3px solid var(--accent-color);
        }
        
        .author-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .author-bio {
            color: #aaa;
            margin-bottom: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            text-align: center;
            line-height: 35px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .related-post-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .related-post-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.2);
        }
        
        .related-post-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .related-post-content {
            padding: 20px;
        }
        
        .related-post-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .related-post-date {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .tag {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .comment-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .comment-author {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .comment-date {
            color: #aaa;
            font-size: 0.8rem;
        }
        
        .comment-reply {
            margin-left: 30px;
            margin-top: 20px;
        }
        .magnetic-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .magnetic-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(248, 197, 55, 0.3);
        }
        /* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: auto;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 5px;
}
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .blog-detail-hero {
                height: 50vh;
            }
            
            .blog-detail-img {
                height: 250px;
            }
            
            .author-card {
                flex-direction: column;
                text-align: center;
            }
            
            .author-img {
                margin-right: 0;
                margin-bottom: 20px;
            }
             .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
        }