/* Chatbox icon styling */
.chatbox-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(73, 72, 72);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: color 0.3s, transform 0.2s;
}
.chatbox-icon-2 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgb(73, 72, 72);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: color 0.3s, transform 0.2s;
}

/* Chatbox form styling */
.chatbox-form {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

/* Close button styling */
.chatbox-form .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

.chatbox-icon:hover {
    background-color: #ec971f; /* Darker shade of blue */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.chatbox-icon-img {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Makes the image circular */
}

#contact{
    min-height: calc(80vh - 50px);
}

