﻿.photo-container {position: relative;display: inline-block;}
    .photo-container img {
        border:5px solid orange;
        width: 100vw;
        height: 100vw;
        max-width: 250px;
        max-height: 250px;
        object-fit: cover;
    }
    .photo-container .overlay-text {
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: darkorange;
        text-shadow: 1px 1px 3px black, -1px -1px 3px black;
        font-size: 15px; 
        font-weight: bold;
        width: 100%;
        text-align: center;
        padding: 5px;
        white-space: normal; 
        overflow: hidden; 
        word-wrap: break-word;
        word-break: break-word;
        display: inline-block;
    }


.helpline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.helpline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff8f1;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px orange;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

    .helpline-item:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 10px orange;
    }

    .helpline-item i {
        font-size: 30px;
        margin-right: 15px;
        color: steelblue;
    }

    .helpline-item span {
        font-size: 20px;
        color: orange;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .helpline-item span:hover {
            color: darkorange;
        }

/* Media Queries for responsiveness */
@media (max-width: 576px) {
    .helpline-item {
        width: 90%;
        max-width: none;
    }

        .helpline-item span {
            font-size: 18px;
        }
}

/*New Badge Style*/
.badgeOuter {
    height: 350px;
    width: 350px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.badgeBorder {
    height: 350px;
    width: 350px;
    position: relative;
    z-index: 10;
}

.badgeImage {
    height: 250px;
    width: 250px;
    position: relative;
    top: -300px;
    left: 50px;
}

.badgeText {
    position: absolute;
    top: 200px;
    left: 84px;
    color: darkorange;
    text-shadow: 1px 1px 3px black, -1px -1px 3px black;
    width: 180px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}