﻿/* Base styling for the list */
.social-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.info-block-one .social-links li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    font-size: 34px;
    color: #fff;
    border: dashed;
    border-width: 1px;
    border-color: #fff;
    border-radius: 50%;
    text-align: center;
    background: #fff;
}

.social-links i {
    font-size: 28px; /* Adjust size as needed */
    transition: transform 0.2s ease-in-out;
}

/* Hover effect */
.social-links a:hover i {
    transform: scale(1.1);
}

/* Authentic Brand Colors */

/* Facebook Blue */
.bs-facebook i {
    color: #1877F2;
}

/* YouTube Red */
.bs-youtube i {
    color: #FF0000;
}

/* Instagram Gradient - This applies the color to the icon shape itself */
.bs-instagram i {
    background: -webkit-radial-gradient(32% 106%, circle cover, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: radial-gradient(circle at 32% 106%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-box img {
    max-height: 140px;
}
