/* Social Icons and Phone Number Styling */

/* For desktop (large screens) */
.right-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.right-panel .social-icons {
    display: flex;
    gap: 15px;
}

.right-panel .social-icons li {
    list-style: none;
}

.right-panel .social-icons li a {
    color: #007bff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.right-panel .social-icons li a:hover {
    color: #0056b3;
}

.right-panel .phone-number {
    color: #007bff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.right-panel .phone-number:hover {
    color: #0056b3;
}

/* For mobile view */
.d-block.d-xl-none {
    text-align: center;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.d-block.d-xl-none .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.d-block.d-xl-none .social-icons li {
    list-style: none;
}

.d-block.d-xl-none .social-icons li a {
    color: #007bff;
    font-size: 25px;
    transition: color 0.3s ease;
}

.d-block.d-xl-none .social-icons li a:hover {
    color: #0056b3;
}

.d-block.d-xl-none .phone-number {
    color: #007bff;
    font-size: 18px;
    display: block;
    margin-top: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.d-block.d-xl-none .phone-number:hover {
    color: #0056b3;
}

/* Ensure the phone number and social icons are not too large on mobile */
@media (max-width: 576px) {
    .right-panel .social-icons li a {
        font-size: 18px;
    }

    .right-panel .phone-number {
        font-size: 14px;
    }

    .d-block.d-xl-none .social-icons li a {
        font-size: 22px;
    }

    .d-block.d-xl-none .phone-number {
        font-size: 16px;
    }

    body {
        background-image: url('assets/images/logo-watermark.png'); /* Path to your logo */
        background-repeat: no-repeat;
        background-position: center;
        background-size: 50%; /* Adjust size as needed */
        opacity: 0.1; /* Adjust transparency */
    }
}

