/* Floating Social Icons */
.floating-social {
    position: fixed;
    top: 40%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 26px;
    transition: 0.3s;
}

/* Hover animation */
.floating-social a:hover {
    transform: scale(1.2) translateX(-5px);
}

/* Icon colors */
.floating-social .yt i { color: #FF0000; }
.floating-social .fb i { color: #1877F2; }
.floating-social .ig i { color: #E4405F; }

/* Instagram gradient background */
.floating-social .ig {
    background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
}

@media (max-width: 768px) {
    .floating-social {
        right: 8px;
        top: 50%;
    }
}


.wa-icon {
    width: 34px;
    height: 34px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}



/* Hover animation */
.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.fa-whatsapp {
    font-size: 35px;
    color: white;
}

/* Social Icons Footer */

/* Social Icons Footer – BIGGER + MORE SPACING */
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 20px;               /* Proper spacing between icons */
    flex-wrap: wrap;
}

.footer-social .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;             /* Increased size */
    height: 70px;            /* Increased size */
    border-radius: 50%;
    background: white;
    color: #ff6c26;
    font-size: 32px;         /* Bigger icon size */
    border: 3px solid #ff6c26;
    transition: all 0.35s ease;
    text-decoration: none;
}

/* Hover animation */
.footer-social .social-icon:hover {
    background: #ff6c26;
    color: #fff;
    transform: translateY(-10px) scale(1.12);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* Individual Glow Effects */
.social-icon.youtube:hover {
    box-shadow: 0 0 18px #FF0000;
}

.social-icon.facebook:hover {
    box-shadow: 0 0 18px #1877F2;
}

.social-icon.instagram:hover {
    box-shadow: 0 0 18px #E1306C;
}

/* FLOATING RIGHT-SIDE SOCIAL ICONS */
.floating-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-icon {
    width: 55px;
    height: 55px;
    background: white;
    color: #ff6c26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff6c26;
    font-size: 26px;
    transition: 0.3s ease-in-out;
}

/* Hover animation */
.float-icon:hover {
    background: #ff6c26;
    color: #fff;
    transform: scale(1.15) translateX(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* Individual Glow Colors */
.float-icon.whats:hover {
    box-shadow: 0 0 15px #25D366;
}
.float-icon.fb:hover {
    box-shadow: 0 0 15px #1877F2;
}
.float-icon.ig:hover {
    box-shadow: 0 0 15px #E1306C;
}

