/* Social Icons Styling */
.social-links li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-links li a i {
    color: #fff;
    font-size: 16px;
}

/* Get Started Button Icon */
.bot-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.bot-button .fas {
    margin-left: 12px;
    color: #fff;
    font-size: 16px;
    background: transparent;
    transition: transform 0.3s ease;
}

.bot-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bot-button:hover .fas {
    transform: translateX(4px);
}

/* Ensure icons have correct size and color */
.fab, .fas {
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

/* Right Navigation Icons */
.right-nav a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.right-nav a .fas {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.right-nav a:hover,
.right-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

.right-nav a:hover .fas,
.right-nav a.active .fas {
    transform: scale(1.1);
}

/* Tooltip styling */
.right-nav .tooltip {
    position: absolute;
    right: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-nav a:hover .tooltip {
    opacity: 1;
    right: 55px;
}

/* Add smooth transition for all icons */
.fab, .fas {
    transition: all 0.3s ease;
}