/* --------------------------header section ------------------------------------/ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f5f7fb;
    overflow-x: hidden;
}

/* ------------------------------------------btn css-------------------------------- */
.member-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0d888e, #0b6d72);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(13, 140, 146, 0.20);
    position: relative;
}

.member-view-btn::after {
    content: "\F138";
    font-family: "bootstrap-icons";
    font-size: 16px;
    transition: 0.3s ease;
}

.member-view-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 18px 40px #0c848a;
}

.member-view-btn:hover::after {
    transform: translateX(4px);
}

/* ---------------------------------------nav css--------------------------------- */
.custom-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 4px 25px rgba(15, 23, 42, 0.04);
    transition: 0.3s ease;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: 0.4s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.right-logo {
    display: flex;
    align-items: center;
}

.right-nav-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: 0.4s ease;
}

.right-nav-logo:hover {
    transform: scale(1.04);
}

.navbar-nav {
    align-items: center;
    gap: 25px;
}

.navbar-nav .nav-link {
    position: relative;
    color: #1e293b !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0 !important;
    transition: 0.4s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #0d8c92;
    border-radius: 50%;
    transform:
        translateX(-50%) scale(0);
    opacity: 0;
    transition: 0.35s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background:
        linear-gradient(to right,
            #0d8c92,
            #23c2a5);
    border-radius: 20px;
    transition: 0.4s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d8c92 !important;
}

.navbar-nav .nav-link:hover::before {
    opacity: 1;
    transform:
        translateX(-50%) scale(1);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ACTIVE */
.navbar-nav .nav-link.active {
    color: #0d8c92 !important;
}

.navbar-nav .nav-link.active::before {
    opacity: 1;
    transform:
        translateX(-50%) scale(1);
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
    position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
    border: none;
    border-radius: 22px;
    padding: 18px;
    min-width: 260px;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.10);
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(15px);
    transition: 0.35s ease;
    display: block;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
}

/* DROPDOWN ITEMS */
.dropdown-item {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* ITEM HOVER BG */
.dropdown-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(13, 140, 146, 0.08),
            rgba(35, 194, 165, 0.10));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
    z-index: -1;
    border-radius: 14px;
}

/* ITEM HOVER */
.dropdown-item:hover {
    color: #0d8c92;
    padding-left: 24px;
    background: transparent;
}

.dropdown-item:hover::before {
    transform: scaleX(1);
}

/* DROPDOWN ICON */
.dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: bootstrap-icons !important;
    font-size: 11px;
    vertical-align: middle;
    margin-left: 4px;
    transition: 0.35s ease;
}

/* ROTATE ICON */
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* APPLY SAME EFFECT ON DROPDOWN MENU */
.dropdown:hover .nav-link {
    color: #0d8c92 !important;
}

.dropdown:hover .nav-link::before {
    opacity: 1;
    transform:
        translateX(-50%) scale(1);
}

.dropdown:hover .nav-link::after {
    width: 100%;
}

/* =========================
   NEW BADGE
========================= */
.nav-badge-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-badge {
    background:
        linear-gradient(135deg,
            #0c848a,
            #0b7177);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================
   TOGGLER
========================= */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler-icon {
    width: 1.7em;
    height: 1.7em;
}

/* =========================
   MOBILE
========================= */
@media(max-width:991px) {
    .custom-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: white;
        margin-top: 18px;
        padding: 25px;
        border-radius: 22px;
        box-shadow:
            0 15px 40px rgba(15, 23, 42, 0.08);
    }

    .navbar-nav {
        gap: 14px;
        margin: 30px 0;
        align-items: flex-start;
    }

    .navbar-nav .nav-link {
        display: inline-flex;
        font-size: 16px;
    }

    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        padding: 10px 0 0;
        margin-top: 10px;
        background: #f8fafc;
        width: 100%;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 12px 14px;
    }

    .right-logo {
        justify-content: center;
    }

    .nav-logo {
        height: 44px;
    }

    .right-nav-logo {
        height: 38px;
    }
}

/* =========================
   MOBILE
========================= */
@media(max-width:991px) {
    .custom-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        margin-top: 18px;
        background: white;
        padding: 25px;
        border-radius: 20px;
        box-shadow:
            0 10px 30px rgba(15, 23, 42, 0.08);
    }

    .navbar-nav {
        margin: 25px 0;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .right-logo {
        justify-content: center;
    }

    .brand-logo {
        gap: 10px;
    }

    .nav-logo {
        height: 52px;
    }

    .right-nav-logo {
        height: 52px;
    }
}

/* ------------------------------------hero section css------------------------------- */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: all 1s ease;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0b7177c7, #0b71777d, #0b717752);
    z-index: 2;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 5;
    padding: 0px 30px;
}

.hero-section .row {
    align-items: center;
}

.hero-content {
    max-width: 540px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
}

.primary-btn {
    background: #fff;
    color: #111;
}

.primary-btn:hover {
    color: #111;
    transform: translateY(-4px);
}

.secondary-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ----------------------------------hero ssection images css -------------------------- */
.book-carousel-section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.book-carousel-container {
    width: 100%;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-slide {
    position: absolute;
    transition: all 0.8s ease;
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.book-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.book-slide.active {
    width: 68%;
    aspect-ratio: 16/10;
    z-index: 10;
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
}

.book-slide.next-1 {
    width: 50%;
    aspect-ratio: 16/10;
    z-index: 8;
    opacity: 0.75;
    transform: translateX(150px) scale(0.92);
    filter: blur(4px);
}

.book-slide.next-2 {
    width: 35%;
    aspect-ratio: 16/10;
    z-index: 6;
    opacity: 0.4;
    transform: translateX(240px) scale(0.84);
    filter: blur(7px);
}

.book-slide.prev-1 {
    width: 50%;
    aspect-ratio: 16/10;
    z-index: 8;
    opacity: 0.75;
    transform: translateX(-150px) scale(0.92);
    filter: blur(4px);
}

.book-slide.prev-2 {
    width: 35%;
    aspect-ratio: 16/10;
    z-index: 6;
    opacity: 0.4;
    transform: translateX(-240px) scale(0.84);
    filter: blur(7px);
}

.carousel-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.carousel-btns button {
    width: 48px;
    height: 48px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btns button:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.2);
}

@media(max-width:991px) {
    .book-carousel-container {
        height: 320px;
    }

    .book-slide.active {
        width: 72%;
    }

    .book-slide.next-1,
    .book-slide.prev-1 {
        width: 56%;
    }

    .book-slide.next-2,
    .book-slide.prev-2 {
        width: 40%;
    }

    .book-slide.next-1 {
        transform: translateX(110px) scale(0.9);
    }

    .book-slide.prev-1 {
        transform: translateX(-110px) scale(0.9);
    }

    .book-slide.next-2 {
        transform: translateX(180px) scale(0.82);
    }

    .book-slide.prev-2 {
        transform: translateX(-180px) scale(0.82);
    }
}

@media(max-width:767px) {
    .book-carousel-section {
        padding: 20px 0;
    }

    .book-carousel-container {
        height: 240px;
    }

    .book-slide {
        border-radius: 18px;
    }

    .book-slide.active {
        width: 86%;
    }

    .book-slide.next-1,
    .book-slide.prev-1 {
        width: 68%;
    }

    .book-slide.next-2,
    .book-slide.prev-2 {
        width: 50%;
    }

    .book-slide.next-1 {
        transform: translateX(70px) scale(0.88);
    }

    .book-slide.prev-1 {
        transform: translateX(-70px) scale(0.88);
    }

    .book-slide.next-2 {
        transform: translateX(120px) scale(0.78);
    }

    .book-slide.prev-2 {
        transform: translateX(-120px) scale(0.78);
    }

    .carousel-btns {
        margin-top: 22px;
        gap: 10px;
    }

    .carousel-btns button {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
}

/* --------------------------------content section css---------------------------------- */
.discussion-section {
    padding: 90px 0;
    background: #f8fafc;
}

.discussion-wrapper {
    max-width: 1150px;
    margin: auto;
}

.discussion-content {
    margin-bottom: 55px;
}

.discussion-content p {
    font-size: 19px;
    line-height: 2;
    color: #334155;
    margin-bottom: 28px;
    font-weight: 400;
}

.discussion-topic {
    background: white;
    border-radius: 24px;
    padding: 25px 50px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

/* TOP LIGHT EFFECT */
.discussion-topic::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(250, 204, 21, 0.10);
    border-radius: 50%;
    top: -120px;
    right: -100px;
    filter: blur(50px);
}

/* LABEL */
.discussion-label {
    display: inline-block;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* TITLE */
.discussion-topic h3 {
    font-size: 30px;
    line-height: 1.7;
    color: #022425;
    font-weight: 600;
    font-style: italic;
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.discussion-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.discussion-btn {
    text-decoration: none;
    background: #0f172a;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.discussion-btn:hover {
    background: linear-gradient(135deg, rgb(11, 105, 110) #108d94);
    color: white;
    transform: translateY(-3px);
}

.secondary-discussion-btn {
    background: linear-gradient(135deg, #0d888e, #0b6d72);
}

.secondary-discussion-btn:hover {
    background: linear-gradient(135deg, rgb(11, 105, 110) #108d94);
    color: #fcfcfd;
}

@media(max-width:991px) {
    .discussion-section {
        padding: 70px 0;
    }

    .discussion-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .discussion-topic {
        padding: 40px 25px;
    }

    .discussion-topic h3 {
        font-size: 24px;
        line-height: 1.6;
    }

    .discussion-buttons {
        flex-direction: column;
        align-items: center;
    }

    .discussion-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* ----------------------------footer section css------------------------------------- */
.main-footer {
    background: #071c24;
    padding-top: 80px;
    color: rgba(255, 255, 255, 0.76);
    position: relative;
    overflow: hidden;
}

/* Gradient Layer */
.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(13, 140, 146, 0.20),
            transparent 35%),
        radial-gradient(circle at bottom left,
            rgba(31, 182, 173, 0.12),
            transparent 30%);
    pointer-events: none;
}

/* Top Border Glow */
.main-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(126, 231, 220, 0.5),
            transparent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 60px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer-desc {
    line-height: 1.9;
    font-size: 15px;
    max-width: 350px;
    color: rgba(255, 255, 255, 0.70);
    position: relative;
    z-index: 2;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
    transition: 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #7ee7dc;
    padding-left: 5px;
}

.footer-contact {
    position: relative;
    z-index: 2;
}

/* Icons via CSS */
.footer-contact p {
    margin-bottom: 18px;
    line-height: 1.8;
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact p::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #7ee7dc;
    font-weight: 700;
}

.footer-icon-envelope::before {
    content: "\2709";
    /* Envelope Icon */
}

.footer-icon-phone::before {
    content: "\260E";
    /* Telephone Icon */
}

.footer-icon-location::before {
    content: "\1F4CD";
    /* Location Pin Icon */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding: 25px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(8px);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
}

/* Responsive */
@media(max-width:991px) {
    .main-footer {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        margin: auto;
    }

    .footer-contact p {
        padding-left: 0;
    }

    .footer-contact p::before {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* ----------------------------------member css---------------------------- */
.member-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(13, 140, 146, 0.08);
    color: #0c848a;
    font-size: 18px;
    font-weight: 600;
}

.members-slider {
    overflow: hidden;

    width: 100%;

    position: relative;
}

.members-track {
    display: flex;

    align-items: center;

    gap: 24px;

    width: max-content;

    flex-wrap: nowrap;

    will-change: transform;

    animation: memberScroll 25s linear infinite;
}


/* IMPORTANT */

.members-track>* {
    flex-shrink: 0;
}


/* PAUSE */

.members-track:hover {
    animation-play-state: paused;
}


/* CONTINUOUS INFINITE */

@keyframes memberScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* PAUSE ON HOVER */
.members-track:hover {
    animation-play-state: paused;
}



.members-section-dark {
    background: #137f8526;
}

/* ---------------------------------knowledge partner section css---------------------- */
.knowledge-partner-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.kp-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(13, 140, 146, 0.08);
    color: #0d8c92;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

.kp-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.kp-desc {
    color: #64748b;
    font-size: 16px;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* Slider */
.kp-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.kp-slider-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: kpScroll 15s linear infinite;
}

@keyframes kpScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logo Box */
.kp-logo-box {
    width: 220px;
    height: 110px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    flex-shrink: 0;
}

.kp-logo-box:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); */
}

.kp-logo-box img {
    max-width: 120px;
    max-height: 72px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
    /* filter: grayscale(100%); */
}

.kp-logo-box:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive */
@media(max-width:991px) {
    .kp-title {
        font-size: 34px;
    }

    .kp-logo-box {
        width: 180px;
        height: 95px;
    }
}

@media(max-width:767px) {
    .kp-title {
        font-size: 28px;
    }

    .kp-desc {
        font-size: 14px;
    }

    .kp-logo-box {
        width: 150px;
        height: 85px;
        padding: 20px;
    }

    .kp-slider-track {
        gap: 18px;
    }
}

/* -----------------------------inner pages css-------------------------------- */
.strip-head {
    background-color: #086368;
    padding: 10px 0px 10px 30px;
    color: white;
    border-radius: 20px 0px 20px 0px;
}

.organizer-section {
    background: #f8fafc;
    overflow: hidden;
}

.organizer-page-header {
    position: relative;
    padding: 30px 0 90px;
    background:
        linear-gradient(135deg,
            #071c24,
            #0b2f3a,
            #114b5f);
    overflow: hidden;
}

/* GLOW EFFECT */
.organizer-page-header::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        rgba(35, 194, 165, 0.10);
    filter: blur(60px);
    top: -180px;
    right: -120px;
}

/* HEADER CONTENT */
.organizer-header-content {
    position: relative;
    z-index: 2;
}

/* HEADING */
.organizer-header-content h1 {
    font-size: 38px;
    line-height: 1.2;
    color: white;
    font-weight: 700;
    margin-bottom: 35px;
}

/* BREADCRUMB */
.organizer-breadcrumb {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.organizer-breadcrumb a {
    color: #7ee7dc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.organizer-breadcrumb span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.organizer-breadcrumb p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.organizer-content-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.organizer-card {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 25px 55px;
    margin-bottom: 35px;
    overflow: hidden;
    border:
        1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.05);
    transition: 0.4s ease;
}

/* TOP GRADIENT LINE */
.organizer-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background:
        linear-gradient(to right,
            #0d8c92,
            #23c2a5);
}

.con-main {
    font-size: 17px;
    font-weight: 900;
    color: #086368;
}

.organizer-card p {
    font-size: 17px;
    line-height: 2.1;
    color: #475569;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.organizer-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d8c92;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: 0.35s ease;
}

.organizer-card a:hover {
    color: #23c2a5;
    transform: translateX(4px);
}

@media(max-width:991px) {
    .organizer-card {
        padding: 40px;
    }

    .organizer-card h3 {
        font-size: 26px;
    }
}

@media(max-width:767px) {
    .organizer-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .organizer-card h3 {
        font-size: 22px;
        line-height: 1.5;
    }

    .organizer-card p {
        font-size: 15px;
        line-height: 1.95;
    }
}

.organizer-list {
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

/* LIST ITEM */
.organizer-list li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    padding-left: 34px;
    margin-bottom: 10px;
    transition: 0.35s ease;
}

.organizer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 10px 0px 10px 0px;
    background:
        linear-gradient(135deg,
            #0d8c92,
            #23c2a5);
    box-shadow:
        0 0 14px rgba(35, 194, 165, 0.35);
}

.organizer-list li strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    color: #071c24;
    margin-bottom: 8px;
    font-weight: 700;
}

.organizer-list li:hover {
    transform: translateX(4px);
}

@media(max-width:767px) {
    .organizer-list li {
        padding-left: 24px;
    }

    .organizer-list li strong {
        font-size: 17px;
    }

    .organizer-list li span {
        font-size: 15px;
        line-height: 1.8;
    }
}

.awardees-wrapper {
    margin-top: 70px;
}

.awardees-top-action {
    text-align: center;
    margin-bottom: 55px;
}

.awardees-top-action a {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: #0b7a80;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.awardees-top-action a:hover {
    color: #ff8c5a;
}

.awardees-top-action p {
    margin: 0;
    font-size: 15px;
    color: #475569;
}

.awardees-top-action span {
    color: #0d8c92;
    font-weight: 600;
}

.awardees-title h2 {
    font-size: 42px;
    color: #071c24;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* UNDERLINE */
.awardees-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 30px;
    background:
        linear-gradient(to right,
            #0d8c92,
            #23c2a5);
}

.awardees-wrapper .row {
    justify-content: center;
}

.awardee-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 10px 22px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    border:
        1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 14px 40px rgba(15, 23, 42, 0.05);
    transition: 0.4s ease;
    max-width: 320px;
    margin: auto;
}

/* SIDE ACCENT */
.awardee-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 5px;
    height: 70px;
    border-radius: 30px;
    background:
        linear-gradient(to bottom,
            #0d8c92,
            #23c2a5);
}

/* LIGHT GLOW */
.awardee-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background:
        rgba(35, 194, 165, 0.06);
    right: -80px;
    top: -80px;
    filter: blur(10px);
}

/* HOVER */
.awardee-card:hover {
    transform:
        translateY(-8px) scale(1.01);
    box-shadow:
        0 24px 55px rgba(15, 23, 42, 0.08);
}

/* =========================
   IMAGE
========================= */
.awardee-image {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background:
        linear-gradient(135deg,
            #0d8c92,
            #23c2a5);
}

.awardee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

.awardee-image-individual {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background:
        linear-gradient(135deg,
            #0d8c92,
            #23c2a5);
}

.awardee-image-individual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

/* =========================
   NAME
========================= */
.awardee-card h4 {
    font-size: 21px;
    color: #071c24;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* =========================
   DESIGNATION
========================= */
.awardee-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    min-height: 38px;
}

/* =========================
   BADGE
========================= */
.awardee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background:
        linear-gradient(135deg,
            #071c24,
            #0d2f3d);
    color: white;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    min-height: 62px;
    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px) {
    .awardees-title h2 {
        font-size: 34px;
    }

    .awardee-card {
        max-width: 100%;
    }
}

@media(max-width:767px) {
    .awardees-wrapper {
        margin-top: 55px;
    }

    .awardees-top-action a {
        font-size: 18px;
    }

    .awardees-title h2 {
        font-size: 28px;
    }

    .awardee-card {
        border-radius: 22px;
        padding: 24px 18px;
    }

    .awardee-card h4 {
        font-size: 19px;
    }

    .awardee-card p {
        font-size: 13px;
        min-height: auto;
    }

    .awardee-badge {
        font-size: 12px;
        padding: 10px 14px;
        min-height: auto;
    }
}

/* ------------------------stage cards--------------------------- */
.stage-card {
    margin: 20px;
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 34px 40px;
    margin-bottom: 30px;
    border-left: 5px solid #0d8c92;
    box-shadow:
        0 16px 45px rgba(15, 23, 42, 0.05);
    transition: 0.35s ease;
}

/* TITLE */
.stage-card h5 {
    line-height: 1.4;
    color: #071c24;
    font-weight: 700;
}

/* HIGHLIGHT */
.stage-card h5 span {
    color: #0d8c92;
}

/* ------------------------------------gallery page code-------------------------------- */
.gallery-container {
    padding: 30px 0;
    background: #f8fafc;
}

.gallery-title {
    font-size: 42px;
    line-height: 1.5;
    color: #071c24;
    font-weight: 700;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
}

.gallery-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    border-radius: 30px;
    background:
        linear-gradient(to right,
            #0d8c92,
            #23c2a5);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: 0.6s ease;
}

/* HOVER */
.gallery-item:hover {
    transform: translateY(-6px);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background:
        rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9999;
}

/* ACTIVE */
.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

/* IMAGE */
.gallery-modal-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    object-fit: contain;
}

/* CLOSE */
.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 55px;
    color: white;
    cursor: pointer;
    line-height: 1;
}

/* BUTTONS */
.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background:
        rgba(255, 255, 255, 0.22);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

@media(max-width:991px) {
    .gallery-title {
        font-size: 34px;
    }
}

@media(max-width:767px) {
    .gallery-container {
        padding: 80px 0;
    }

    .gallery-title {
        font-size: 26px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .gallery-prev,
    .gallery-next {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .gallery-close {
        top: 20px;
        right: 25px;
        font-size: 42px;
    }
}