.social-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-heading {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.social-heading h2 {
    font-size: 2.5em;
    /* color: #2d3436; */
    color: black;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    
}

.social-heading p {
    /* color: #636e72; */
    /* font-size: 1.1em; */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.social-heading::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    /* background: linear-gradient(90deg, #0072ff, #00c6ff); */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.social-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.2) 100%);
    transition: transform 0.6s;
    transform: translateX(-100%);
}

.social-item:hover::before {
    transform: translateX(100%);
}

.social-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.social-item.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-item.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-item.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-item.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    /* color: red; */
    color: black;
}

.social-item:hover .social-icon {
    transform: scale(1.1);
    color:white;
}

.social-name {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 10px;
    color: #636e72;
    /* text-decoration: none; */
    /* text-transform: none; */
    /* color:rgb(99,110,113); */
    /* text-decoration: none; */
}

.social-followers {
    font-size: 0.9em;
    color: #636e72;
    transition: color 0.3s ease;
}

.social-item:hover .social-name {
    color: rgba(255,255,255,0.8);
}
.social-item:hover .social-followers {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 968px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-heading h2 {
        font-size: 2em;
    }

    .social-heading p {
        font-size: 1em;
    }

    .social-item {
        padding: 20px;
    }
}