:root {
    --primary-blue: #003087;
    --secondary-blue: #0050b3;
    --accent-gold: #FFC300;
    --dark-blue: #001f5c;
    --light-blue: #e6f0ff;
    --light-gray: #f4f7f9;
    --medium-gray: #6c757d;
    --dark-gray: #212529;
    --white: #ffffff;
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 48, 135, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

.hero-section {
    background: url('bg2.png') center center / cover no-repeat;
    color: white;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 92, 0.92), rgba(0, 51, 135, 0.88));
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 0;
}

.hero-row {
    position: relative;
    z-index: 2;
}

.memorial-img {
    max-width: 80%;
    height: auto;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 0px solid rgba(255, 255, 255, 0.1);
}

.hero-text-content {
    padding-left: 3rem;
}

.risk-title {
    font-size: 5.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
        transform: scale(1.05);
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 1.8rem;
}

.event-details {
    font-size: 1.5rem;
    color: #B0C4DE;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.event-details i {
    color: #FFD700;
    margin-right: 0.6rem;
}

.organiser-sponsor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 3rem 0 0;
}

.org-sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.badge {
    padding: 0.6rem 1.4rem;
    border-radius: 5px;
    font-weight: 400;
    font-size: 1.1rem;
}

.badge.sponsor {
    color: #E49B0F;
}

.org-sponsor-logo {
    height: 130px;
    width: 250px;
    object-fit: contain;
    object-position: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.custom-navbar {
    background: var(--dark-blue);
    padding: 0.4rem 0;
    min-height: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.custom-navbar .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.navbar-logo {
    height: 30px;
    width: auto;
}

.custom-navbar .navbar-brand {
    padding: 0;
    margin: 0;
}

.custom-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-left: 1.2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: var(--accent-gold);
}

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.custom-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.section-title {
    position: relative;
    margin-bottom: 3.5rem;
    text-align: center;
    font-size: 2.0rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 5px;
}

.content-section, .about-nia, .fees-section {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.background-content p {
    font-size: .85rem;
    margin-bottom: 1.25rem;
    text-align: justify;
}





.panel-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.panel-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 48, 135, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.panel-card:hover:before {
    opacity: 1;
}

.panel-number {
    display: inline-flex;
    background: var(--primary-blue);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 48, 135, 0.3);
}

.panel-title {
    font-size: 1.10rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    line-height: 1.4;
    font-weight: 600;
}

.panel-card p {
    font-size: 0.80rem;
    color: var(--medium-gray);
}

.schedule-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    border-left: 3px solid var(--light-blue);
    padding-left: 20px;
    position: relative;
    transition: background-color 0.3s ease;
}

.schedule-item:hover {
    background-color: rgba(0, 48, 135, 0.03);
    border-radius: 8px;
}

.schedule-item:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-blue);
}

.schedule-time-modern {
    flex: 0 0 150px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    padding-top: 8px;
}

.schedule-event-modern {
    flex: 1;
    padding: 8px 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
}

.schedule-event-modern p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.schedule-item.panel-item .schedule-event-modern {
    border-left: 4px solid var(--accent-gold);
    background: var(--light-blue);
}

.attend-list {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.attend-list .list-group-item {
    border: none;
    padding: 15px 20px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 40px;
}

.attend-list .list-group-item:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-gold);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.attend-list .list-group-item:nth-child(odd) {
    background-color: var(--white);
}

.attend-list .list-group-item:nth-child(even) {
    background-color: var(--light-gray);
}

.fees-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.fees-section .section-title {
    color: var(--accent-gold);
}

.fees-table-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 1.1rem;

}

.fees-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);

}

.fees-table td:first-child {
    font-weight: 300 !important;
    width: 65%;
    font-size: 1rem;
    
}

.fees-table td:last-child {
    text-align: right;
    color: var(--accent-gold);
    font-weight: 300 !important;
    
    font-size: 1rem;
}

.fees-note {
    margin: 20px 0;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.fees-subtitle {
    color: var(--accent-gold);
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.bank-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

.bank-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bank-table td:first-child {
    
    font-weight: 300 !important;
    
    font-size: 1rem;
    width: 40%;
    color: var(--white);
}

.bank-table td:last-child {
    color: var(--accent-gold);
}

.registration-portal .download-btn {
    background: var(--accent-gold);
    color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.registration-portal .download-btn:hover {
    background: #E49B0F;
}

.about-nia {
    padding: 90px 0;
    background: var(--white);
    color: var(--dark-gray);
}

.nia-logo-container {
    background: var(--primary-blue);
    padding: 30px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    margin-bottom: 25px;
}

.nia-logo-container img {
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.about-nia-content {
    padding-left: 40px;
    border-left: 4px solid var(--accent-gold);
}

.contact-card-modern {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-blue);
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 48, 135, 0.1);
}

.contact-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 1.8rem;
    border: 3px solid var(--accent-gold);
}

.contact-name-modern {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.contact-role-modern {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 15px;
    font-style: italic;
}

.contact-email-modern {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email-modern:hover {
    color: var(--accent-gold);
}

.footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 195, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 195, 0, 0.9);
    }
}

@media (max-width: 1200px) {
    .risk-title {
        font-size: 4.5rem;
    }
    .subtitle {
        font-size: 1.5rem;
    }
    .acronym-char-fullwidth {
        font-size: 4.2rem;
    }
}

@media (max-width: 992px) {
    .hero-text-content {
        padding-left: 0;
        text-align: center;
        margin-top: 3rem;
    }
    .custom-navbar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .custom-navbar {
        padding: 0.5rem 0;
    }
    .custom-navbar .navbar-nav {
        background: rgba(0, 31, 92, 0.95);
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    .custom-navbar .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        min-height: 80vh;
    }
    .risk-title {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .organiser-sponsor-container {
        gap: 3rem;
    }
    .org-sponsor-logo {
        max-height: 80px;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .organiser-sponsor-container {
        gap: 2rem;
        flex-direction: column;
    }
    .org-sponsor-logo {
        max-height: 80px;
        width: 180px;
    }
}
.acronym-fullwidth-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 40px;
    margin: 60px 0;
    padding: 0 50px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: transparent;
    overflow: visible;
}

.acronym-card-fullwidth {
    text-align: center;
    flex: 1;
    max-width: 220px;
    padding: 20px 10px;
    background: transparent;
    opacity: 0;
    transform: translateX(-300px);
}

[data-aos="fade-left"] {
    transform: translateX(-300px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.acronym-char-fullwidth {
    display: block;
    font-size: 5.4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--accent-gold);
    animation: pulse-blue 1s ease-in-out infinite;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 20, 80, 1), 0 0 16px rgba(0, 20, 80, 1), 0 0 28px rgba(0, 20, 80, 0.95), 0 0 42px rgba(0, 20, 80, 0.9), 0 0 60px rgba(0, 20, 80, 0.85);
}

.acronym-word-fullwidth {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #0F52BA;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: pulse-blue 2s ease-in-out infinite;
    opacity: 0.95;
    text-shadow: 0 0 8px rgba(0, 20, 80, 1), 0 0 16px rgba(0, 20, 80, 1), 0 0 28px rgba(0, 20, 80, 0.95), 0 0 42px rgba(0, 20, 80, 0.9), 0 0 60px rgba(0, 20, 80, 0.85);
}

@keyframes pulse-blue {
    0%, 100% {
        text-shadow: 0 0 8px rgba(0, 20, 80, 1), 0 0 16px rgba(0, 20, 80, 1), 0 0 28px rgba(0, 20, 80, 0.95), 0 0 42px rgba(0, 20, 80, 0.9), 0 0 60px rgba(0, 20, 80, 0.85);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 12px rgba(0, 20, 80, 1), 0 0 24px rgba(0, 20, 80, 1), 0 0 40px rgba(0, 20, 80, 1), 0 0 60px rgba(0, 20, 80, 0.95), 0 0 90px rgba(0, 20, 80, 0.9);
        transform: scale(1.05);
    }
}


.venue-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.venue-address {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .acronym-fullwidth-container {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 20px;
    }
    .acronym-card-fullwidth {
        flex: none;
        max-width: none;
        width: 100%;
    }
    .acronym-char-fullwidth {
        font-size: 4.5rem;
    }
    .acronym-word-fullwidth {
        font-size: 1.2rem;
    }
}