

        .fixed-award-button {
            position: fixed;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: #FFEBCA;
            width: 380px;
            height: 48px;
            border: none;
            border-radius: 6px;
            font-family: var(--roxborough-font);
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            color: #67121E;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 1;
            align-items: center !important;
        }

        .fixed-award-button:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .modal-dialog {
            max-width: 532px;
            margin: 1.75rem auto;
        }

        .modal-content {
            background: linear-gradient(135deg, #f5e6d3 0%, #e8d4b8 100%);
            border-radius: 16px;
            border: none;
            overflow: hidden;
            max-width: 532px;
            padding: 24px;
            gap: 16px;
            opacity: 1;
        }

        .modal-header {
            border: none;
            padding: 0 0 0 0;
            gap: 16px;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
        }

        .modal-title {
            color: #67121E;
            font-family: var(--visia-font);
            font-size: 24px;
            font-weight: 400;
            line-height: 28px;
            letter-spacing: 0%;
            width: 100%;
            margin: 0;
            margin-top: 40px;
            padding-right: 0;
            white-space: normal;
        }

        .btn-close {
            background: transparent;
            border: none;
            font-size: 32px;
            color: #67121E;
            opacity: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            position: absolute;
            top: 0;
            right: 0;
        }

        .btn-close::before {
            content: "×";
            font-size: 36px;
            font-weight: 300;
        }

        .carousel-inner {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .carousel-item img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            background: linear-gradient(135deg, #5c4a7d 0%, #3d2e5c 100%);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: #FFEBCA;
            border-radius: 100px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            border: 1px solid #67121E;
        }

        .carousel-control-prev {
            left: -24px;
            margin-left: 6px;
        }

        .carousel-control-next {
            right: -24px;
            margin-right: 4px;
        }

       /* Common styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 50px;      /* icon size */
    height: 50px;     /* icon size */
}

/* common styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 24px;
    height: 24px;
}

/* LEFT arrow */
.carousel-control-prev-icon {
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M15 4 L7 12 L15 20' stroke='%2367121E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
    background-color: #67121e;
}

/* RIGHT arrow */
.carousel-control-next-icon {
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 4 L17 12 L9 20' stroke='%2367121E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
    background-color: #67121e;
}


        .carousel-indicators {
            bottom: -35px;
            margin-bottom: 0;
            display: flex;
            align-items: center;
        }

        .carousel-indicators button {
            width: 8px !important;
            height: 8px !important;
            border-radius: 50%;
            background-color: #8c7355 !important;
            border: none;
            opacity: 0.5;
            margin: 0 4px;
        }

        .carousel-indicators button.active {
            width: 12px !important;
            height: 12px !important;

            background-color: #67121E !important;
            opacity: 1;
        }

        .modal-body {
            padding: 0;
            gap: 16px;
        }

        .modal-footer {
            border: none;
            padding: 16px 0 0 0;
            justify-content: center;
            gap: 16px;
        }

        .award-footer-text {
            background: linear-gradient(135deg, #c4b59d 0%, #a89b7f 100%);
            padding: 16px 24px;
            border-radius: 12px;
            color: #67121E;
            font-family: 'ABeeZee', sans-serif;
            font-size: 18px;
            font-weight: 400;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            width: 100%;
        }

        
        /* Placeholder for image */
        .award-image-placeholder {
            width: 100%;
            height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            text-align: center;
            border-radius: 8px;
            
            background-color: red;
        }
        .award-image-placeholder{
            width:100%;
            height:100%;
            object-fit: cover;
        }

        @media (max-width: 576px) {
            .modal-content {
                width: 100%;
                max-width: 532px;
                margin: 0 16px;
            }

            .modal-content

            .fixed-award-button {
                width: 90%;
                max-width: 361px;
            }
        }
   