/* Social Media Share Buttons */
.social-share {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
}

.social-share-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.email {
    background-color: #ea4335;
}

/* Social Media Follow Section */
.social-follow {
    background: linear-gradient(135deg, #0c4da2, #ffc107);
    padding: 50px 0;
    text-align: center;
    color: white;
    margin: 50px 0;
}

.social-follow h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-follow p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: #0c4da2;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-icon.youtube:hover {
    background: #ff0000;
    color: white;
}

@media (max-width: 768px) {
    .social-share {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}