.dark-section {
    position: relative;

    background-image:
        radial-gradient(circle at 90% 10%, #ede9ff 0, #ede9ff 120px, transparent 121px),
        radial-gradient(circle at 10% 90%, #ffe8f4 0, #ffe8f4 90px, transparent 91px);
}

.dark-section p {

    font-size: 17px;
    line-height: 1.8;
    color: #554bb9;

    margin-bottom: 12px;
}

.dark-section p:first-child {
    font-weight: 600;
    color: #554bb9;
}

.dark-section p:last-child {
    margin-bottom: 40px;
}

p {
    text-align: justify;
    font-size: 18px;
    margin: 40px 0px;
}

/* -------------------------------nav section css------------------------ */
.custom-navbar {
    background: #fff;
    padding: 12px 0;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-menu a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff2f9d;
}

.media-btn {
    background: linear-gradient(135deg, #5b4fd8, #785fff);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    display: inline-block;
}

.media-btn:hover {
    background: linear-gradient(135deg, #ff2f9d, #785fff);
}

@media(max-width:991px) {

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

}

a:focus,
a:active,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

.nav-badge-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-badge {

    background: linear-gradient(135deg, rgba(74, 74, 225, .78) 0%, rgba(115, 72, 220, .78) 45%, rgba(235, 50, 150, .78) 100%);
    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);
    }
}

/* -------------------------------slider section css -------------------------- */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-inner .item {
    height: 650px;
}

.carousel-fade .carousel-inner {
    position: relative;
}

.carousel-fade .carousel-inner .item {
    position: absolute;
    top: 0;
    left: 0 !important;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    display: block !important;
    z-index: 1;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
    z-index: 2;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev {
    opacity: 1;
    z-index: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-inner>.item {
    left: 0 !important;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 4s linear;
}

.item.active .slide-bg {
    transform: scale(1.04);
}

/* NO DARK OVERLAY */
.slide-bg:before {
    display: none;
}

.hero-slider .container {
    position: relative;
    height: 100%;
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 500px;
    padding: 30px;
    transform: translateY(-50%);
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(74, 74, 225, .78) 0%,
            rgba(115, 72, 220, .78) 45%,
            rgba(235, 50, 150, .78) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, .15),
        0 0 40px rgba(130, 90, 255, .15);
    overflow: hidden;
}

.hero-content:before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.hero-content:after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.item.active .hero-content {
    animation: panelSlide .8s ease;
}

@keyframes panelSlide {
    from {
        opacity: 0;
        transform: translate(-80px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.hero-content h1 {
    margin: 0 0 35px;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.info-box {
    width: 250px;
    padding: 8px 28px;
    margin-bottom: 15px;
    border-radius: 60px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.info-box:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateX(5px);
}

.info-box-2 {
    width: 350px;
    padding: 8px 28px;
    margin-bottom: 15px;
    border-radius: 60px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    transition: .3s;
}

.info-box-2:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateX(5px);
}

.hero-slider:before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 40px solid rgba(92, 82, 255, .20);
    border-radius: 50%;
    left: -320px;
    bottom: -260px;
    z-index: 2;
}

.hero-slider:after {
    content: '';
    position: absolute;
    width: 820px;
    height: 820px;
    border: 28px solid rgba(92, 82, 255, .10);
    border-radius: 50%;
    left: -430px;
    bottom: -380px;
    z-index: 1;
}

.carousel-indicators {
    right: 30px;
    left: auto;
    width: auto;
    margin: 0;
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-indicators li {
    display: block;
    width: 10px;
    height: 10px;
    margin: 10px 0;
    border: none;
    background: rgba(255, 255, 255, .45);
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, .8);
}

/* Hide Arrows */
.carousel-control {
    display: none;
}

@media(max-width:767px) {

    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-inner .item {
        height: 500px;
    }

    .hero-content {
        width: 90%;
        left: 5%;
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .info-box {
        width: 100%;
        font-size: 16px;
    }
}



/* --------------------------topic section css---------------------- */
.ai-panel-section {
    position: relative;
    align-items: center;
    background: url('../assets/images/bg.png') no-repeat center center;
    background-size: 100% 100%;
    background-color: #4e45c9;
}

.panel-content {
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.panel-title {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 15px;
}

.panel-title span {
    color: #ff4b9b;
    font-weight: 500;
}

.topic-box {
    background: linear-gradient(90deg,
            #5f52dc 0%,
            #4e45c9 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 12px 15px;
    border-radius: 80px;
    margin-bottom: 45px;
    box-shadow:
        0 15px 35px rgba(95, 82, 220, .25);
}

.panel-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-policy,
.btn-media {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
}

.btn-policy {
    background: linear-gradient(90deg,
            #ff278a,
            #d91c74);
    box-shadow:
        0 10px 20px rgba(255, 39, 138, .25);
}

.btn-media {
    background: linear-gradient(90deg,
            #6356df,
            #4c43c9);
    box-shadow:
        0 10px 20px rgba(99, 86, 223, .25);
}

.btn-policy:hover,
.btn-media:hover {
    color: #fff;
    transform: translateY(-4px);
    text-decoration: none;
}

.panel-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

.panel-image img {
    max-width: 100%;
    width: 520px;
    height: auto;
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.topic-box:before {
    content: '';
    position: absolute;
    display: none;
}

@media(max-width:1199px) {
    .panel-title {
        font-size: 40px;
    }

    .topic-box {
        font-size: 24px;
    }

    .panel-image img {
        width: 450px;
    }
}

@media(max-width:991px) {
    .panel-content {
        padding-left: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .panel-buttons {
        justify-content: center;
    }

    .topic-box {
        margin-left: auto;
        margin-right: auto;
    }

    .panel-image img {
        width: 380px;
    }
}

@media(max-width:767px) {
    .ai-panel-section {
        padding: 60px 0;
    }

    .panel-title {
        font-size: 28px;
    }

    .topic-box {
        font-size: 18px;
        padding: 18px 25px;
        border-radius: 30px;
    }

    .btn-policy,
    .btn-media {
        width: 100%;
        text-align: center;
    }

    .panel-image img {
        width: 100%;
        max-width: 320px;
    }
}

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

h5 {
    font-size: 22px;
}

.stage-card h5 {
    line-height: 1.4;
    color: #071c24;
    font-weight: 700;
    font-size: 22px;
}

.stage-card h5 span {
    color: #554bb9;
    font-size: 22px;
}

.stage-card {
    margin: 20px;
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 8px 36px;
    margin-bottom: 30px;
    background-color: #544bb913;
    border-top: 5px solid #544bb9;
    ;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.35s ease;
}

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

.organizer-page-header {
    position: relative;
    padding: 8px 0 67px;
    background:
        linear-gradient(135deg,
            rgba(74, 74, 225, .78) 0%,
            rgba(115, 72, 220, .78) 45%,
            rgba(235, 50, 150, .78) 100%)
}

/* 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;

}

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

.organizer-breadcrumb a {
    color: #beff11;
    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: white;
    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,
            #554bb9,
            #f35ca3be);
}

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

.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: #e11e79;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: 0.35s ease;
}

.organizer-card a:hover {
    color: #f35ca3;
    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: 16px 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;

    transition: 0.35s ease;
}

.organizer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50px 43px 46px 0px;
    background: linear-gradient(135deg, rgba(74, 74, 225, .78) 0%, rgba(115, 72, 220, .78) 45%, rgba(235, 50, 150, .78) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.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);
}

/* --------------------------------mem-card css------------------- */
.member-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(88, 72, 190, 0.15);
    border: 1px solid #e60d809f;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}


.member-header {
    background: linear-gradient(135deg, #5a4bc4 0%, #7b5ce0 50%, #d96aa8 100%);
    height: 90px;
    position: relative;
}

.member-avatar {
    width: 135px;
    height: 135px;
    background: #fff;
    border-radius: 50%;
    border: 5px solid #fff;
    position: absolute;
    left: 50%;
    bottom: -48px;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-body {
    padding: 65px 25px 25px;
    text-align: center;
}

.member-name {
    color: #4f46b8;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0px;
}

.member-designation {
    display: inline-block;
    background: #f2efff;
    color: #5a4bc4;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-affiliation {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.center-cards {
    text-align: center;
}

.center-cards .col-md-4 {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-right: -4px;
}

/* -------------------------------line event css----------------------- */
.event-section {
    background: #d9d8ea;
    padding: 10px 0;
}

.event-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 70px;
}

/* Main Card */
.event-card {
    width: 62%;
    background: #11102a;
    border-radius: 120px;
    padding: 12px 35px 12px 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.event-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding-left: 35px;
}

.event-content h2 {
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.event-info {
    margin-left: auto;
}

.event-info .info-item {
    color: #b7b4c8;
    font-size: 16px;
    margin-bottom: 10px;
}

.event-info .glyphicon {
    color: #5b48ff;
    margin-right: 10px;
}

.event-info .date {
    margin-left: 28px;
}

/* Artists */
.artists-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.line {
    width: 100px;
    border-top: 2px dashed;
}

.left-line {
    border-color: #ff2c87;
}

.right-line {
    border-color: #5b48ff;
}

.artist {
    width: 58px;
    height: 58px;
    overflow: hidden;
    transform: rotate(45deg);
    margin: 0 -4px;
}

.artist img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.35);
}

/* Button */
.ticket-btn {

    background: #11102a;
    border-radius: 50%;
    color: #fff;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ticket-btn:hover {
    color: #fff;
    background: #11102a;
}

/* Bootstrap 3 Responsive */
@media(max-width:991px) {
    .event-wrapper {
        display: block;
        text-align: center;
    }

    .event-card {
        width: 100%;
        display: block;
        border-radius: 40px;
        text-align: center;
    }

    .event-image {
        margin: 0 auto 20px;
    }

    .event-content {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .event-info {
        margin-left: 0;
    }

    .artists-wrap {
        justify-content: center;
        margin: 30px 0;
    }

    .ticket-btn {
        margin: 0 auto;
    }
}

/* -------------------------------award page css ----------------------------------- */
.awardees-top-action {
    text-align: center;
    margin-bottom: 55px;
}

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

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

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

.awardees-top-action span {
    color: #4f46b8;
    font-weight: 600;
}

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

/* -------------------------------event section css----------------------------- */
.event-schedule {
    padding: 40px 0;
    background: #dcd9e9;
    overflow: hidden;
}

.schedule-header {
    text-align: center;
    margin-bottom: 20px;
}

.schedule-tabs {
    display: inline-flex;
    border-radius: 40px 0px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.day-btn {
    border: none;
    outline: none;
    cursor: pointer;
    min-width: 220px;
    padding: 18px 35px;
    background: #111224;
    color: #fff;
    transition: .35s;
}

.day-btn strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 6px;
}

.day-btn span {
    display: block;
    font-size: 12px;
    opacity: .9;
}

/* Active States */
.day-btn.day1.active {
    background: linear-gradient(135deg,
            #5c4fd8,
            #7864ff);
}

.day-btn.day2.active {
    background: linear-gradient(135deg,
            #5c4fd8,
            #7864ff);
}

.schedule-content {
    display: none;
}

.schedule-content:first-of-type {
    display: block;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.event-card {
    width: 70vw;
    background: #111224;
    border-radius: 80px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    transition: .3s;
}

.event-card:hover {
    transform: translateY(-3px);
}

.event-img img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, .12);
}

.event-info {
    flex: 1;
}

.event-info h4 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
}

.event-info p {
    margin: 4px 0;
    color: #d6d6e7;
    font-size: 14px;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    margin: 35px auto;
    border-radius: 50%;
    background: #ec3e9d;
    border: 4px solid #5c4fd8;
}

.ticket-btn {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #111224;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: .3s;
}

.ticket-btn:hover {
    background: #5c4fd8;
    color: #fff;
    text-decoration: none;
}

@media(max-width:991px) {
    .event-row {
        flex-direction: column;
    }

    .event-card {
        width: 100%;
        border-radius: 30px;
    }

    .day-btn {
        min-width: 180px;
    }
}

@media(max-width:767px) {
    .event-schedule {
        padding: 60px 0;
    }

    .schedule-header h2 {
        font-size: 30px;
    }

    .schedule-tabs {
        display: block;
        width: 100%;
    }

    .day-btn {
        width: 100%;
        min-width: auto;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        border-radius: 25px;
    }

    .event-img img {
        width: 85px;
        height: 85px;
    }

    .event-info h4 {
        font-size: 18px;
    }

    .ticket-btn {
        width: 80px;
        height: 80px;
    }
}

/* --------------------------member section css----------------------------- */
.members-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: url('bg.jpg') center center no-repeat;
    background-size: cover;
}

.members-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 35, .88);
    z-index: 1;
}

.members-section .container,
.members-section .container-fluid {
    position: relative;
    z-index: 2;
}

.member-title {
    text-align: center;
    color: #fff !important;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.member-title span {
    color: #ff2f9d;
}

.member-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.member-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: memberScroll 30s linear infinite;
}

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

.member-card {
    position: relative;
    min-width: 280px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    text-align: center;
    padding: 25px;
    backdrop-filter: blur(6px);
    transition: .35s ease;
}

.member-card:hover {
    transform: translateY(-8px);
}

.member-card:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.member-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, .15);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.designation {
    display: block;
    color: #ff2f9d;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.affiliation {
    color: #e3e3e3;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

@media(max-width:1199px) {
    .member-card {
        min-width: 250px;
        width: 250px;
        height: 250px;
    }
}

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

    .member-card {
        min-width: 220px;
        width: 220px;
        height: 220px;
    }

    .member-card h4 {
        font-size: 18px;
    }
}

@media(max-width:767px) {
    .members-section {
        padding: 60px 0;
    }

    .member-title {
        font-size: 28px;
    }

    .member-track {
        gap: 20px;
    }

    .member-card {
        min-width: 190px;
        width: 190px;
        height: 190px;
        padding: 18px;
    }

    .member-img {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .member-card h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .designation {
        font-size: 13px;
    }

    .affiliation {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* ------------------------------------partner section css--------------------------------- */

.partner-section {
    padding: 50px 0;
    background: #f3f1fb;
}

.partner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partner-item {
    width: 190px;
    height: 190px;

    border-radius: 50%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s;
}

/* Circle Border */

.partner-item:before {
    content: '';

    position: absolute;
    inset: 0;

    border-radius: 50%;

    border: 1px dashed rgba(255, 255, 255, .4);
}

/* Hover Gradient Circle */

.partner-item:after {
    content: '';

    position: absolute;
    inset: 0;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #5148d7,
            #ef3d9a);

    opacity: 0;

    transform: scale(.8);

    transition: .4s;
}

.partner-item img {
    position: relative;
    z-index: 2;

    max-width: 95px;
    max-height: 95px;

    transition: .4s;
}

/* Hover Effect */

.partner-item:hover:after {
    opacity: 1;
    transform: scale(1);
}

.partner-item:hover img {
    transform: scale(1.08);
}

/* Active Item (center logo like screenshot) */

.partner-item.active:after {
    opacity: 1;
    transform: scale(1);
}

@media(max-width:991px) {

    .partner-grid {
        gap: 25px;
        justify-content: center;
    }

    .partner-item {
        width: 160px;
        height: 160px;
    }
}