.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .social-box i {
        font-size: 22px;
        margin-bottom: 5px;
    }

    /* Base colors */
    .social-box.facebook {
        background-color: #3b5998; /* Facebook Blue */
    }

    .social-box.twitter {
        background-color: #000000; /* X (Twitter) black */
    }

    .social-box.linkedin {
        background-color: #0077b5; /* LinkedIn Blue */
    }

    /* Hover brighten effect */
    .social-box:hover {
        transform: translateY(-3px);
        filter: brightness(1.15);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }


/* Button hover */
#btnSubscribe:hover {
    background-color: #6a9832 !important;
    box-shadow: 0 5px 15px rgba(132,186,63,0.4);
    transform: translateY(-2px);
}

/* Email focus */
#txtEmail:focus {
    border-color: #6a9832 !important;
    box-shadow: 0 0 10px rgba(132,186,63,0.3);
    outline: none;
}
