#boomCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.awards .nomination h6 {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #1e293b; /* dark slate */
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
}

.awards .nomination h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #970606, #e12b2b); /* gold */
    border-radius: 4px;
}
.nomination-cards {
    position: relative;
    height: auto;
    padding: 18px 15px 10px 0px;
    background: linear-gradient(180deg, #ffffff, #fafafa);
    border-radius: 14px;
    overflow: hidden;
    border-left: 2px solid transparent;
    background-clip: padding-box;
}
.nomination-cards::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding-left: 3px;
    background: linear-gradient(180deg, #970606, #e12b2b);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.nomination-cards {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}
.nomination-cards:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 45px rgba(220, 38, 38, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.12);
}
.nomination-cards ol {
    list-style: none;
}
.nomination-cards ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #334155;
    transition: color 0.25s ease;
}
.nomination-cards ol li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #970606, #e12b2b);
    box-shadow: 0 0 6px rgba(225, 43, 43, 0.6);
}

.nomination-cards ol li b {
    font-weight: 600;
    color: #970606;
}
.nomination-cards ol li:hover {
    color: #0f172a;
}
.avijit {
    font-family: "Jost", sans-serif;
    padding-top: 7px;
    font-weight: bold;
}
.cv-text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #111827;
}

.cv-text i {
    color: #e12b2b;
    font-size: 18px;
}
.email-text {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    color: #111827;
}

.email-text i {
    color: #e12b2b;
}

.email-text a {
    color: #970606;
    font-weight: 500;
    text-decoration: none;
}

.email-text a:hover {
    text-decoration: underline;
}
.venue-card {
    position: relative;
    max-width: 560px;
    width: 100%;
    padding: 28px 30px;
    border-left: 2px solid transparent;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.07);
    color: #111;
    overflow: hidden;
    transition: 0.45s ease, box-shadow 0.45s ease;
    border-left: 4px solid #970606; /* fallback */
}

/* HOVER ANIMATION */
.venue-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, #970606, #e12b2b);
    opacity: 0;
    transform: rotate(0deg);
    transition: 0.7s ease;
    z-index: 0;
}

.venue-card:hover::before {
    opacity: 0.2;
    transform: rotate(45deg);
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 15px 15px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.venue-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.venue-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #970606, #e12b2b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 183, 3, 0.6);
    transition: 0.4s;
}

.venue-card:hover .venue-icon {
    transform: scale(1.1) rotate(10deg);
}

.venue-title h4 {
    font-size: 22px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.venue-title span {
    font-size: 13px;
    color: #e12b2b;
    font-weight: bold;
}
.venue-card img {
    width: 100%;
    height: 300px !important; /* 90% → 80% ya 75% */
    object-fit: cover;
    display: block;
}

/* ADDRESS */
.venue-address {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* INFO STRIP */
.venue-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 25px;
    background: #fff8e1;
    border: 1px solid rgba(255, 183, 3, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
.info-box i {
    color: #ffb703;
}
.info-box:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* BUTTON */
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #970606, #e12b2b);
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4);
    transition: 0.35s;
    position: relative;
    z-index: 1;
}

.map-btn i {
    font-size: 16px;
}
.map-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 183, 3, 0.65);
}
.registration-card {
    position: relative;
    max-width: 560px;
    width: 100%;
    padding: 10px 30px;
    border-left: 2px solid transparent;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.07);
    color: #111;
    overflow: hidden;
    transition: 0.45s ease, box-shadow 0.45s ease;
    border-left: 4px solid #970606;
}
.registration-card h4 {
    font-family: "Jost", sans-serif;
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
}

.registration-card h4::before {
    content: "";
    display: block;
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #970606, #e12b2b);
    border-radius: 2px;
}

.registration-card ul {
    list-style-type: disc;
}
.registration-card ul li span {
    font-weight: 400 !important;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.registration-card ul li::marker {
    color: #970606;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.registration-card .registration-data {
    background-color: #970606;
    color: #fff;
    padding: 2px 20px;
    border-radius: 20px;
}
.account-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.account-table th,
.account-table td {
    padding: 3.8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.account-table th {
    background-color: #f8f8f8;
    width: 40%;
    color: #970606;
}

.account-table td {
    color: #333;
}
@media (max-width: 600px) {
    .registration-card {
        margin-top: 20px;
    }
}
.rupee-section {
    position: relative;
    overflow: hidden;
}

/* rupee layer */
.rupee-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* single rupee */
.rupee {
    position: absolute;
    color: rgba(120, 120, 120, 0.18); /* grey */
    font-size: 14px;
    user-select: none;
}

/* content always above */
.rupee-section .container {
    position: relative;
    z-index: 2;
}
