body {
    padding: 0px;
}

.dropdown-item:hover {
    background: #ecfdf5;
    color: #0b5d46;
}

.btn-login {
    padding: 11px 18px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid #d0d5dd;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
    transition: .3s;
}

.btn-login:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-register {
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #0b5d46, #063a2c);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(11, 93, 70, 0.22);
    transition: .3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    color: #fff;
}

@media(max-width:991px) {
    .premium-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        margin-top: 18px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .nav-link {
        margin: 7px 0;
    }

    .nav-btns {
        margin-top: 15px;
        flex-direction: column;
        align-items: start !important;
    }
}

/* ---------------------------------section heading------------------- */

.section-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    margin-bottom: 20px;

    background: linear-gradient(90deg, #022c22, #065f46, #047857);
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    border-radius: 50px;
    position: relative;
    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Icon using CSS only */
.section-heading::before {
    content: "✦";
    font-size: 12px;
    color: #86efac;
}

/* Shine Effect */
.section-heading::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 80px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-25deg);
    animation: shine 4s linear infinite;
}

@keyframes shine {
    0% {
        left: -120px;
    }

    100% {
        left: 120%;
    }
}


/* -------------------------------------nav section--------------------------- */

.conference-topbar {
    background: linear-gradient(90deg, #012c22, #065f46);
    padding: 12px 0;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 6px 14px 6px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

/* badge dot */
.topbar-badge::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #86efac;
    transform: translateY(-50%);
}

.topbar-content p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.conference-navbar {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #edf2f7;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.conference-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: #065f46;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 10px;
    transition: 0.3s ease;
}

.logo-box span {
    background: #ffffff;
    border-radius: 3px;
}

.conference-logo:hover .logo-box {
    transform: rotate(6deg);
}

.logo-text h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.logo-text p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #94a3b8;
}

.conference-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.conference-menu li a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 14px;
    transition: 0.3s ease;
    display: inline-block;
    position: relative;
}

/* hover effect */
.conference-menu li a:hover {
    background: rgba(6, 95, 70, 0.08);
    color: #065f46;
    transform: translateY(-2px);
}

/* active menu */
.conference-menu li a.active {
    background: #065f46;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(6, 95, 70, 0.15);
}

.conference-menu li a.active:hover {
    background: #044e39;
    color: #ffffff;
}

.navbar-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brochure-btn,
.register-btn {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* brochure */
.brochure-btn {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
}

.brochure-btn:hover {
    border-color: #065f46;
    color: #065f46;
    transform: translateY(-2px);
}

/* register */
.register-btn {
    background: #065f46;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(6, 95, 70, 0.15);
}

.register-btn:hover {
    background: #044e39;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .navbar-inner {
        flex-direction: column;
        gap: 20px;
    }

    .conference-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .conference-topbar {
        padding: 10px 0;
    }

    .topbar-content {
        text-align: center;
    }

    .topbar-content p {
        font-size: 13px;
    }

    .conference-navbar {
        padding: 16px 0;
    }

    .conference-menu {
        gap: 8px;
    }

    .conference-menu li a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .logo-text h4 {
        font-size: 18px;
    }

    .navbar-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .brochure-btn,
    .register-btn {
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* -------------------------------------hero section--------------------------- */

.hero-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(to bottom, #f8fafc, #eef4f2);
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.blur-one {
    width: 280px;
    height: 280px;
    background: rgba(11, 93, 70, 0.18);
    top: -50px;
    left: -80px;
}

.blur-two {
    width: 260px;
    height: 260px;
    background: rgba(109, 255, 191, 0.18);
    bottom: -80px;
    right: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logos {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-logos img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.hero-tag {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(11, 93, 70, 0.08);
    border: 1px solid rgba(11, 93, 70, 0.10);
    border-radius: 50px;
    color: #0b5d46;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-tag span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b5d46;
    box-shadow: 0 0 10px #0b5d46;
}

/* ========================= */
/* HEADING */
/* ========================= */
.hero-content h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #101828;
    margin-bottom: 22px;
}

.hero-content h1 span {
    color: #0b5d46;
}

/* ========================= */
/* DESCRIPTION */
/* ========================= */
.hero-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    max-width: 650px;
}

/* ========================= */
/* INFO PILLS */
/* ========================= */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-pill {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 13px 18px;
    border-radius: 18px;
    font-size: 13px;
    color: #344054;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.hero-pill i {
    color: #0b5d46;
}

/* ========================= */
/* BUTTONS */
/* ========================= */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0b5d46, #063a2c);
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .35s;
    box-shadow: 0 18px 35px rgba(11, 93, 70, 0.20);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
}

.hero-btn-secondary {
    background: #fff;
    color: #101828;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: .35s;
}

.hero-btn-secondary:hover {
    transform: translateY(-4px);
    color: #0b5d46;
}

/* ========================= */
/* RIGHT SIDE */
/* ========================= */
.hero-right-wrapper {
    position: relative;
    z-index: 2;
}

.hero-main-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-radius: 35px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ========================= */
/* CARD TOP */
/* ========================= */
.hero-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.conference-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b5d46, #063a2c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.hero-card-top h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #101828;
}

.hero-card-top p {
    margin: 0;
    color: #667085;
    font-size: 12px;
}

/* ========================= */
/* IMAGE */
/* ========================= */
.hero-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
}

/* ========================= */
/* STATS */
/* ========================= */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.hero-stat-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.hero-stat-box h3 {
    margin: 0;
    color: #0b5d46;
    font-size: 24px;
    font-weight: 800;
}

.hero-stat-box span {
    color: #667085;
    font-size: 12px;
}

/* ========================= */
/* FLOATING CARDS */
/* ========================= */
.hero-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-glass-card small {
    display: block;
    color: #667085;
    font-size: 11px;
    margin-bottom: 5px;
}

.hero-glass-card h4 {
    margin: 0;
    color: #101828;
    font-size: 18px;
    font-weight: 700;
}

.card-one {
    top: -25px;
    left: -40px;
}

.card-two {
    bottom: -20px;
    right: -35px;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media(max-width:991px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-right-wrapper {
        margin-top: 40px;
    }

    .card-one,
    .card-two {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin-bottom: 20px;
    }
}

@media(max-width:576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-stats {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-logos img {
        width: 70px;
        height: 70px;
    }
}

/* -------------------------------------coountdown section--------------------------- */

.clock-countdown-section {
    padding: 20px 0;
    background: #f6faf8;
}

.clock-wrapper {
    background: linear-gradient(135deg, #02241c, #063a2c);
    border-radius: 35px;
    padding: 25px 16px;
    position: relative;
    overflow: hidden;
}

.clock-wrapper::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(109, 255, 191, 0.07);
    border-radius: 50%;
    top: -150px;
    right: -120px;
    filter: blur(30px);
}

.clock-heading {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.clock-heading span {
    color: #6dffbf;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.clock-heading h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 800;

}

/* CLOCK STYLE TIMER */

.clock-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.clock-box {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.03),
        0 10px 30px rgba(0, 0, 0, 0.25);
}

/* OUTER GLOW RING */

.clock-box::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px dashed rgba(109, 255, 191, 0.35);
    animation: rotate 18s linear infinite;
}

/* INNER DOT */

.clock-box::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #6dffbf;
    border-radius: 50%;

}

.clock-inner {
    text-align: center;
}

.clock-inner h3 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.clock-inner span {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-top: 12px;
}

/* SMALL CLOCK HAND */

.hand {
    position: absolute;
    width: 1px;
    height: 50px;
    background: #6dffbf;
    top: 35px;
    left: 50%;
    border-radius: 10px;
    transform-origin: bottom center;
    animation: fullRotate 4s linear infinite;

}

@keyframes fullRotate {

    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@media(max-width:991px) {

    .clock-heading h2 {
        font-size: 32px;
    }

    .clock-box {
        width: 150px;
        height: 150px;
    }

    .clock-inner h3 {
        font-size: 38px;
    }

    .hand {
        height: 40px;
        top: 28px;
    }
}

@media(max-width:576px) {

    .clock-wrapper {
        padding: 40px 20px;
    }

    .clock-heading h2 {
        font-size: 24px;
    }

    .clock-box {
        width: 120px;
        height: 120px;
    }

    .clock-inner h3 {
        font-size: 28px;
    }

    .hand {
        height: 32px;
        top: 20px;
    }
}

/* -------------------------------------dashboard section--------------------------- */

.dashboard-section {
    padding: 60px 0;
    background: #f6faf8;
    position: relative;
}

.content-area {
    min-height: 100vh;
}

.committee-heading {
    margin-bottom: 40px;
}

.committee-heading span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(11, 93, 70, 0.08);
    color: #0b5d46;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.committee-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 42px;
    font-weight: 800;
}


.member-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fcfa);
    border-radius: 28px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(2, 36, 28, 0.06);
    transition: .35s;
    box-shadow:
        0 10px 30px rgba(2, 36, 28, 0.05);
}

.member-card:hover {
    transform: translateY(-6px);
}

/* LIGHT EFFECT */
.member-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    top: -90px;
    right: -90px;
    filter: blur(12px);
}

/* IMAGE */
.member-img {
    position: relative;
    z-index: 2;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #edf3f1;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* CONTENT */
.member-content {
    position: relative;
    z-index: 2;
    padding: 18px 6px 6px;
}

.member-content h4 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.member-content p {
    margin: 0;
    color: #0b5d46;
    font-size: 13px;
    font-weight: 700;
}


.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    opacity: 1;
    border-radius: 18px;
    background:
        linear-gradient(135deg, #0b5d46, #063a2c);
    transform: translateY(-50%);
    box-shadow:
        0 10px 25px rgba(11, 93, 70, 0.18);
}

.carousel-control-prev {
    left: -24px;
}

.carousel-control-next {
    right: -24px;
}

/* ICON */
.carousel-control-prev::after,
.carousel-control-next::after {
    font-family: bootstrap-icons;
    color: #fff;
    font-size: 18px;
}

.carousel-control-prev::after {
    content: "\f12f";
}

.carousel-control-next::after {
    content: "\f138";
}

.sticky-dashboard {
    position: sticky;
    top: 110px;
    padding: 24px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff, #f8fcfa);
    border: 1px solid rgba(2, 36, 28, 0.06);
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(2, 36, 28, 0.06);
}

/* BG EFFECT */
.sticky-dashboard::before,
.sticky-dashboard::after {
    content: '';
    position: absolute;
}

.sticky-dashboard::before {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(109, 255, 191, 0.10);
    top: -120px;
    right: -100px;
    filter: blur(25px);
}

.sticky-dashboard::after {
    width: 160px;
    height: 160px;
    background: rgba(2, 36, 28, 0.03);
    border-radius: 30px;
    bottom: -60px;
    left: -60px;
    transform: rotate(30deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.dashboard-mini-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(11, 93, 70, 0.08);
    color: #0b5d46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dashboard-header h3 {
    margin: 0;
    color: #101828;
    font-size: 24px;
    font-weight: 800;
}

.pulse-ring {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11, 93, 70, 0.08);
    position: relative;
    animation: pulse 2s infinite;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0b5d46;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px #0b5d46;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 93, 70, 0.18);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(11, 93, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(11, 93, 70, 0);
    }
}

.date-card-list {
    position: relative;
    z-index: 2;
}

.dashboard-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90px;
    padding: 18px 18px 18px 88px;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(2, 36, 28, 0.05);
    transition: .35s;
    box-shadow:
        0 10px 25px rgba(2, 36, 28, 0.04);
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(109, 255, 191, 0.10);
    right: -40px;
    top: -40px;
}

/* ICON */
.dashboard-card::before {
    font-family: "bootstrap-icons";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #0b5d46, #063a2c);
    color: #fff;
    font-size: 20px;
    box-shadow:
        0 10px 20px rgba(11, 93, 70, 0.18);
}

.calendar-icon::before {
    content: "\f1f6";
}

.check-icon::before {
    content: "\f26a";
}

.alarm-icon::before {
    content: "\f102";
}

/* CONTENT */
.date-content {
    position: relative;
    z-index: 2;
}

.date-content small {
    display: block;
    margin-bottom: 6px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
}

.date-content h4 {
    margin: 0;
    color: #101828;
    font-size: 16px;
    font-weight: 800;
}

.publication-card {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding: 24px;
    background: #fff;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(2, 36, 28, 0.05);
    transition: .35s;
    box-shadow:
        0 12px 30px rgba(2, 36, 28, 0.04);
}

.publication-card:hover {
    transform: translateY(-5px);
}

.publication-highlight {
    background:
        linear-gradient(135deg, #fff, #f3fff9);
}

.publication-highlight::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(109, 255, 191, 0.14);
    top: -70px;
    right: -60px;
    filter: blur(18px);
}

.publication-card h5,
.publication-card p,
.publication-card h6,
.publication-card img {
    position: relative;
    z-index: 2;
}

.publication-card h5 {
    margin-bottom: 18px;
    color: #101828;
    font-size: 18px;
    font-weight: 800;
}

.publication-card img {
    width: 95px;
    margin-bottom: 18px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.10));
}

.publication-card p {
    margin-bottom: 10px;
    color: #101828;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
}

.publication-card h6 {
    color: #c2410c;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
}

.indexing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.indexing-list span {
    padding: 10px 14px;
    border-radius: 50px;
    background: rgba(11, 93, 70, 0.08);
    color: #0b5d46;
    font-size: 11px;
    font-weight: 700;
}

.submission-text {
    color: #667085 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.8;
}

.submission-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #0b5d46, #063a2c);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .35s;
}

.submission-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

.dashboard-btn {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-top: 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, #0b5d46, #063a2c);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    transition: .35s;
    box-shadow:
        0 14px 28px rgba(11, 93, 70, 0.18);

}

.dashboard-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -40px;
    right: -30px;
}

.dashboard-btn::after {
    content: "\f138";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 20px;
    font-size: 16px;
}

.dashboard-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

@media(max-width:991px) {
    .dashboard-section {
        padding: 45px 0;
    }

    .content-area {
        min-height: auto;
    }

    .sticky-dashboard {
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .committee-heading h2 {
        font-size: 34px;
    }
}

@media(max-width:576px) {
    .dashboard-section {
        padding: 35px 0;
    }

    .committee-heading h2 {
        font-size: 28px;
    }

    .sticky-dashboard {
        padding: 18px;
        border-radius: 26px;
    }

    .dashboard-header h3 {
        font-size: 20px;
    }

    .dashboard-card {
        padding: 16px 16px 16px 80px;
        border-radius: 20px;
    }

    .publication-card {
        padding: 20px;
        border-radius: 24px;
    }

    .dashboard-btn {
        border-radius: 18px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* -------------------------inner page  css------------------------------- */
.camera-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.camera-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 22px;
    font-size: 16px;
}

.camera-content>ul {
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.camera-content>ul>li {
    list-style: none;
    position: relative;
    padding-left: 55px;
    margin-bottom: 28px;
    line-height: 1.9;
    color: #374151;
    counter-increment: step;
}

/* number circle only */
.camera-content>ul>li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #084d3a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* inner ul */
.camera-content ul ul {
    margin-top: 12px;
    padding-left: 18px;
}

.camera-content ul ul li {
    margin-bottom: 10px;
    color: #4b5563;
}

/* links */
.camera-content a {
    color: #084d3a;
    text-decoration: none;
    font-weight: 600;
}

.camera-content a:hover {
    text-decoration: underline;
}

/* bold */
.camera-content strong {
    color: #111827;
}

/* mobile */
@media (max-width: 768px) {

    .camera-content {
        padding: 25px 20px;
    }

    .camera-content>ul>li {
        padding-left: 48px;
    }

    .camera-content>ul>li::before {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* ------------------------------footer css---------------------------- */

.contact-item {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
}

/* common icon style */
.contact-item::before {
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: "Bootstrap-icons";
}

/* email */
.contact-item:nth-child(2)::before,
.contact-item:nth-child(3)::before {
    content: "\f32f";
}

/* whatsapp */
.contact-item:nth-child(4)::before {
    content: "\f618";
}

/* phone */
.contact-item:nth-child(5)::before {
    content: "\f5c1";
}

/* location */
.contact-item:nth-child(6)::before {
    content: "\f3e8";
}

/* small text */
.contact-item span {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 3px;
}

/* small text */
.contact-item span {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 3px;
}

.premium-footer {
    background: #022c22;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* background glow */
.premium-footer::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -100px;
    filter: blur(20px);
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 12px;
    margin-bottom: 20px;
}

.footer-logo span {
    background: #ffffff;
    border-radius: 4px;
}

.footer-brand h4 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.9;
    margin: 0;
    font-size: 15px;
}

.footer-links,
.footer-contact {
    position: relative;
    z-index: 2;
}

.footer-links h5,
.footer-contact h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

/* heading underline */
.footer-links h5::after,
.footer-contact h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    border-radius: 50px;
    background: #10b981;
}

/* footer links */
.footer-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 14px;
    transition: 0.3s ease;
    position: relative;
    padding-left: 18px;
}

/* arrow using css */
.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #10b981;
    border-right: 2px solid #10b981;
    transform: rotate(45deg);
}

.footer-links a:hover {
    color: #10b981;
    padding-left: 24px;
}

.contact-item {
    color: #cbd5e1;
    margin-bottom: 14px;
    position: relative;
    padding-left: 26px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 991px) {
    .premium-footer {
        padding: 70px 0 25px;
    }

    .footer-brand {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-links h5::after,
    .footer-contact h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .contact-item {
        padding-left: 0;
    }

    .contact-item::before {
        display: none;
    }

    .social-icons {
        justify-content: center;
    }
}

/* -------------------------------registration fee page ---------------------------- */
.registration-table {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

/* table */

.registration-table table {
    margin-bottom: 0;
    background: #ffffff;
}

/* heading */


.registration-table thead th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 12px;
    text-align: center;
    border: none;
    background: #065f46;
}

/* body */

.registration-table tbody tr {
    background: #f8fafc;
    transition: 0.3s ease;
}

/* alternate row color */

.registration-table tbody tr:nth-child(even) {
    background: #f0fdf4;
}

.registration-table tbody tr:hover {
    background: #dcfce7;
}

.registration-table tbody td {
    padding: 15px 12px;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    color: #374151;
    border-color: #e5e7eb;
    line-height: 1.6;
}

/* first column */

.registration-table tbody td:first-child {
    font-weight: 600;
    color: #111827;
}

/* join link */

.join-link {
    margin-top: 4px;
}

.join-link a {
    color: #059669;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.join-link a:hover {
    text-decoration: underline;
}

/* button */

.register-btn-box {
    margin-top: 24px;
}

.register-btn {
    display: inline-block;
    padding: 11px 24px;
    background: linear-gradient(90deg, #065f46, #059669);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.16);
}

.register-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #044e39, #047857);
}

/* mobile */

@media (max-width: 768px) {

    .registration-table {
        overflow-x: auto;
    }

    .registration-table table {
        min-width: 650px;
    }

    .registration-table thead th,
    .registration-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }
}