/* Premium Social Media Icons - Hero Section */
/* Horizontal square cards with icon on top, name at bottom */

.poster-section-6 .right-side-contain {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 10;
}

.poster-section-6 .social-image a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    width: 55px;
    height: 55px;
}

/* Add a subtle animation pulse effect */
@keyframes socialPulse {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    }
}

.poster-section-6 .social-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Facebook - Brand gradient */
.poster-section-6 .social-image:nth-child(1) a {
    background: linear-gradient(135deg, #667eea 0%, #4c63d2 50%, #1877F2 100%);
}

.poster-section-6 .social-image:nth-child(1) a::before {
    background: linear-gradient(135deg, #667eea 0%, #4c63d2 50%, #1877F2 100%);
}

/* Instagram - Brand gradient */
.poster-section-6 .social-image:nth-child(2) a {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.poster-section-6 .social-image:nth-child(2) a::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Twitter/X - Brand gradient */
.poster-section-6 .social-image:nth-child(3) a {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.poster-section-6 .social-image:nth-child(3) a::before {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

/* Icon styling */
.poster-section-6 .social-image a i {
    font-size: 20px;
    color: #ffffff;
    margin-right: 0 !important;
    margin-bottom: 4px;
    display: block;
    transition: all 0.3s ease;
}

/* Text styling */
.poster-section-6 .social-image a h6 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 7px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Premium Hover Effects */
.poster-section-6 .social-image a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.poster-section-6 .social-image a:hover::before {
    opacity: 1;
}

.poster-section-6 .social-image a:hover i {
    transform: scale(1.15) rotate(5deg);
}

.poster-section-6 .social-image a:hover h6 {
    letter-spacing: 1px;
}

/* Add glow effect on hover */
.poster-section-6 .social-image:nth-child(1) a:hover {
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.5);
}

.poster-section-6 .social-image:nth-child(2) a:hover {
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.5);
}

.poster-section-6 .social-image:nth-child(3) a:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Active/Focus state */
.poster-section-6 .social-image a:active {
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .poster-section-6 .right-side-contain {
        top: auto;
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .poster-section-6 .social-image a {
        width: 60px;
        height: 60px;
        padding: 10px 8px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .poster-section-6 .social-image a h6 {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .poster-section-6 .social-image a i {
        margin-bottom: 6px;
        font-size: 22px;
    }

    .poster-section-6 .social-image a:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .poster-section-6 .right-side-contain {
        right: 20px;
        bottom: 30px;
    }

    .poster-section-6 .social-image a {
        width: 75px;
        height: 75px;
        padding: 14px 12px;
    }

    .poster-section-6 .social-image a i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .poster-section-6 .social-image a h6 {
        font-size: 9px;
    }
}