* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Neuropolitical';
    src: url('./assets/fonts/neuropolitical/Neuropolitical\ Rg.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
}

p {
    font-size: 16px;
}

.section {
    padding: 60px 0;
}

.bg-vd {
    position: relative;
}

/* ---------- Hero (Srinagar) ---------- */

.hero .bg-vd {
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    background: #04163f;
}

.hero .banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 50% 48%, rgba(3, 20, 58, 0.5) 0%, rgba(3, 20, 58, 0) 72%),
        linear-gradient(180deg, rgba(3, 20, 58, 0.55) 0%, rgba(3, 20, 58, 0.15) 28%, rgba(3, 20, 58, 0.2) 62%, rgba(3, 20, 58, 0.75) 100%),
        linear-gradient(120deg, rgba(42, 217, 245, 0.14) 0%, rgba(42, 217, 245, 0) 45%, rgba(12, 247, 58, 0.08) 100%);
}

.hero-leaves {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-leaves .leaf {
    position: absolute;
    top: -40px;
    left: var(--x);
    color: var(--c);
    opacity: 0.85;
    animation: leaf-fall var(--dur) linear var(--delay) infinite;
    will-change: transform;
}

.hero-leaves .leaf svg {
    display: block;
    width: var(--size);
    height: var(--size);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    animation: leaf-sway calc(var(--dur) / 4) ease-in-out var(--delay) infinite alternate;
}

@keyframes leaf-fall {
    to {
        transform: translateY(max(110vh, 700px));
    }
}

@keyframes leaf-sway {
    from {
        transform: translateX(calc(var(--sway) * -1)) rotate(-30deg) rotateY(0deg);
    }

    to {
        transform: translateX(var(--sway)) rotate(40deg) rotateY(55deg);
    }
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 96px 20px 150px;
    text-align: center;
}

.hero-content>* {
    animation: hero-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-logo {
    width: min(600px, 42vw, 64vh);
    height: auto;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

.hero-theme {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 2.1vw, 30px);
    font-weight: 600;
    line-height: 1.3;
    text-wrap: balance;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-theme span {
    background: linear-gradient(90deg, #2ad9f5, #34f06a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Hero CTA — chinar-autumn primary, Zabarwan-frost secondary.
   Both carry a gilt hairline inside the rim, the way papier-mache work is edged.

   The tokens live on :root, not on .hero-cta — .hero-btn-* is reused in section
   CTAs and modals outside the hero, and an unresolved var() there would
   invalidate the whole background shorthand and leave a white-on-white button. */

:root {
    --chinar-light: #d14d1c;
    --chinar: #b8321a;
    --chinar-deep: #8f2410;
    --saffron: #f2a93b;
    --pine: #04163f;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.hero-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 200px;
    padding: 15px 30px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Gilt inner ring */
.hero-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 4px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Light sweep — sun crossing the lake */
.hero-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -60%;
    bottom: -60%;
    left: -75%;
    width: 45%;
    transform: translateX(-60%) rotate(18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.75s ease, opacity 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn:hover::before {
    transform: translateX(420%) rotate(18deg);
    opacity: 1;
}

.hero-btn:active {
    transform: translateY(-1px) scale(0.985);
}

.hero-btn:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 3px;
}

.hero-btn-primary {
    color: #fff;
    border: 0;
    background:
        radial-gradient(120% 140% at 12% 0%, rgba(242, 169, 59, 0.45) 0%, rgba(242, 169, 59, 0) 55%),
        linear-gradient(135deg, var(--chinar-light) 0%, var(--chinar) 52%, var(--chinar-deep) 100%);
    text-shadow: 0 1px 2px rgba(78, 18, 6, 0.45);
    box-shadow:
        0 12px 30px rgba(143, 36, 16, 0.45),
        0 2px 0 rgba(255, 255, 255, 0.22) inset,
        0 0 0 1px rgba(242, 169, 59, 0.55) inset;
}

.hero-btn-primary::after {
    border-color: rgba(255, 233, 196, 0.45);
}

.hero-btn-primary:hover {
    color: #fff;
    box-shadow:
        0 18px 40px rgba(143, 36, 16, 0.55),
        0 0 26px rgba(242, 169, 59, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.3) inset,
        0 0 0 1px rgba(242, 169, 59, 0.85) inset;
}

.hero-btn-primary i {
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    box-shadow: 0 8px 24px rgba(3, 20, 58, 0.28);
}

.hero-btn-glass::after {
    inset: 5px;
    border-color: rgba(242, 169, 59, 0.45);
}

.hero-btn-glass i {
    color: var(--saffron);
    transition: color 0.3s ease;
}

.hero-btn-glass:hover {
    color: var(--chinar-deep);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--saffron);
    box-shadow: 0 14px 32px rgba(3, 20, 58, 0.35), 0 0 22px rgba(242, 169, 59, 0.3);
}

.hero-btn-glass:hover i {
    color: var(--chinar);
}

/* The modal sits on white, so the gilt ring and warm glow are dialled back there */
.agenda-modal .hero-btn-primary {
    box-shadow: 0 10px 24px rgba(143, 36, 16, 0.3), 0 0 0 1px rgba(242, 169, 59, 0.5) inset;
}

.hero-ridge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    display: block;
    width: 100%;
    height: 160px;
    pointer-events: none;
}

.agenda-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.agenda-modal::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(90deg, #2ad9f5, #34f06a);
}

.agenda-modal .modal-body {
    position: relative;
    padding: 40px 32px 36px;
}

.agenda-modal .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.agenda-modal-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    background: linear-gradient(120deg, #0a7d8f, #15803d);
}

.agenda-modal h3 {
    margin-bottom: 10px;
    color: #04163f;
    font-weight: 700;
}

.agenda-modal p {
    margin-bottom: 24px;
    color: #475569;
}

/* ---------- partner credit strip above the menu ----------
   Full bleed, no padding: the artwork carries its own margins. Sits in
   normal flow so it scrolls away on its own, and the fixed menu is offset
   by --strip-h and follows the strip up until it pins to the top. JS
   measures the real height; the calc below is the matching no-JS fallback
   (source is 8000x750, so height is width / 10.6667). */
:root {
    --strip-h: calc(100vw / 10.6667);
}

.top-strip {
    position: relative;
    z-index: 1;
    padding: 0;
    background: #fff;
    line-height: 0;
}

.top-strip img {
    display: block;
    width: 100%;
    height: auto;
}

/* Menu sits on the hero until the page scrolls (.scrolled is toggled in index.html) */
.header-overlay.fixed-top {
    top: var(--strip-h);
}

.header-overlay,
.header-overlay .navbar {
    transition: background-color 0.3s ease;
}

.header-overlay:not(.scrolled),
.header-overlay:not(.scrolled) .navbar {
    background-color: transparent;
}

.header-overlay:not(.scrolled) .nav-link {
    color: #fff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.header-overlay:not(.scrolled) .nav-link:hover,
.header-overlay:not(.scrolled) .nav-link:focus {
    color: #34f06a !important;
}

.header-overlay:not(.scrolled) .navbar-toggler {
    background: rgba(255, 255, 255, 0.9);
}

.header-overlay .logo-on-light,
.header-overlay.scrolled .logo-on-dark {
    display: none;
}

.header-overlay.scrolled .logo-on-light {
    display: inline;
}

@media (max-width: 991px) {
    .event_logo {
        height: 72px;
    }

    .elets_logo {
        height: 34px;
    }

    .egov_logo {
        height: 28px;
    }

    .brand-group {
        gap: 10px;
    }

    .brand-divider {
        height: 36px;
    }

    .header-overlay:not(.scrolled) .navbar-collapse {
        margin-top: 10px;
        padding: 8px 16px;
        border-radius: 14px;
        background: rgba(4, 22, 63, 0.92);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 767px) {
    .hero .bg-vd {
        min-height: 560px;
    }

    .hero-content {
        gap: 18px;
        padding: 90px 18px 120px;
    }

    .hero-logo {
        width: min(88vw, 420px);
    }

    .hero-theme {
        font-size: 19px;
    }

    .hero-cta {
        width: 100%;
        max-width: 380px;
        gap: 12px;
    }

    .hero-btn {
        flex: 1 1 150px;
        min-width: 0;
        padding: 14px 18px;
        font-size: 15px;
    }

    .hero-btn::after {
        inset: 3px;
    }

    .hero-btn-glass::after {
        inset: 4px;
    }

    .hero-ridge {
        height: 90px;
    }

    .hero-leaves .leaf:nth-child(even) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-leaves {
        display: none;
    }

    .hero-content>* {
        animation: none;
    }

    .hero-btn,
    .hero-btn-primary i,
    .hero-btn::before {
        transition: none;
    }

    .hero-btn::before {
        display: none;
    }

    .hero-btn:hover {
        transform: none;
    }
}

/* ---------- /Hero ---------- */


section {
    scroll-margin-top: 82px;
}

.logo-mid {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
}

.logo-mid2 {
    position: absolute;
    top: 1%;
    left: 20px;
    width: 160px;
}

.logo-mid4 {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
}

.logo-mid3 {
    position: absolute;
    top: 1%;
    right: 20px;
    width: 40%;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
    align-items: center;
}

.navbar {
    background-color: #fff;
    padding: 10px 0;
}

.button_22 {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #3ea34c !important;
}

.tagline {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: #ffffff;
}

@supports (text-shadow: 1px 1px 1px 1px black) {
    .title {
        text-shadow:

            var(--x-offset) var(--y-offset) 0px 0px var(--background-color),

            var(--x-offset) var(--y-offset) var(--stroke) 0px var(--stroke-color);

    }
}

/* Runs straight on from the hero ridge — no divider strip, no seam */
#about {
    padding: 30px 0 60px;
    position: relative;
    z-index: 1000;
    margin-top: -1px;
    background: #fff;
}

/* #about::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: red;
} */

#about p {
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}

.about_number h1 {
    font-size: 30px;
    text-align: left;
}

.about_number h1 span {
    color: #2ad36e;
    font-size: 60px;
    font-weight: 800;
    font-family: 'Beluga', sans-serif;
}

.abt-box {
    /* box-shadow: rgb(2 0 249) 0px 2px 4px; */
}


.segment_wrapper .carousel-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 10px;
    margin: 15px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    box-shadow: 0 8px 32px rgb(0 0 0 / 2%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.segment_wrapper .carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.segment_wrapper .carousel-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffcc00;
    border-bottom: 2px solid rgba(255, 204, 0, 0.5);
    padding-bottom: 10px;
}

.segment_wrapper .carousel-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgb(53 140 54);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 15px 10px;
    color: #fff;
    min-height: 85px;
}

.segment_wrapper .carousel-item ul {
    list-style-type: none;
    padding-left: 0;
}

.segment_wrapper .carousel-item li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.segment_wrapper .carousel-item li:before {
    content: "•";
    color: #ffcc00;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.digital-1 {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-9.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

.startups_1 {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-13.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

.cloud_1 {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-6.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

.arti_1 {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-17.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}


.infra_1 {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-8.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

.workforce {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-1.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

.citizen {
    background: url('https://nbfc100.eletsonline.com/assets/images/gall/img-11.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Owl Navigation Styling */
.segment_wrapper .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.segment_wrapper .owl-prev,
.segment_wrapper .owl-next {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    margin: 0 10px !important;
    font-size: 24px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.segment_wrapper .owl-prev:hover,
.segment_wrapper .owl-next:hover {
    background: rgba(255, 204, 0, 0.8) !important;
    color: #000 !important;
}

.segment_wrapper .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.segment_wrapper .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.segment_wrapper .owl-dot.active {
    background: #ffcc00 !important;
    transform: scale(1.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    .fixed-top {
        background-color: rgba(0, 128, 0, 0.836);
    }

    .segment_wrapper .carousel-item {
        height: auto;
        min-height: 280px;
        padding: 20px;
    }

    .segment_wrapper .carousel-item h3 {
        font-size: 1.5rem;
    }

    .navbar-light .navbar-toggler {
        background: #fff;
    }

    .countdown_txt h4 {
        font-size: 18px !important;
    }

    .logo-area {
        margin: 0 auto;
    }

    .logo-area img {
        width: 350px;
    }
}



#why-up ul li {
    font-size: 18px;
    margin-top: 20px;
    list-style: none;
    border: 1px solid #ffc616;
    padding: 5px 15px;
    border-radius: 5px;
}

#why-up ul {
    padding-left: 0;
}

#who-should-attend {
    background: url('./assets/img/bg-attend.webp');
    background-size: cover;
    padding: 50px 0 50px;
    height: 650px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.segment_wrapper {
    /* background: #010120 url('./assets/img/advantage.JPG'); */
    background: #fff;
    position: relative;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    background-attachment: fixed !important;
    overflow: hidden;
    padding: 30px 0;
    z-index: 1;
}

.segment_wrapper::before {
    /* content: ''; */
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to top, #d5612491, #000000b0);
    z-index: -1;
}

.scrolled {
    background: #fffffff2;
}

.scrolled .nav-link {
    color: #000 !important;
}

#who-should-attend .title {
    text-shadow: unset !important;
    background: linear-gradient(to right, #ffffff, #ffffff, #04A9F5, #ffffff, #ffffff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    margin-bottom: 60px;
}

#who-should-attend ul li {
    list-style-type: none;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgb(255 255 255 / 7%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 0%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgb(255 255 255 / 0%), inset 0 -1px 0 rgb(255 255 255 / 34%), inset 0 0 12px 6px rgb(255 255 255 / 0%);
    position: relative;
    overflow: hidden;
}

.countdown {
    padding: 60px 0;
    background: url('./assets/img/genda.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 440px;
    background-position: bottom;
}

.custom-5 {
    width: 50%;
    margin: 0;
    padding: 0 5px;
}

.countodown_inner {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #2222222e;
    margin: 10px 0;
    border-radius: 10px;
}


.countdown_txt h4 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.countdown_txt {
    margin-left: 10px;
}

.countdown_txt p {
    margin: 0;
    font-size: 13px;
}

.countodown_inner img {
    width: 40px;
}

#highlights p {
    margin-top: -100px;
    color: #fff;
    z-index: 1000;
    text-align: center;
    padding: 20px;
    font-size: 17px;
}

#highlights .title {
    margin-top: 20px;
}

.particles-wrapper {
    height: 80vh;
    position: relative;
}

#particles-js {
    width: 100%;
    height: 100%;
    background: #e6e6e6;
}

.agenda-h {
    text-align: center;
    background-color: #fff;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgb(2 0 249) 0px 2px 4px;
    border-radius: 5px;
    margin-bottom: 25px;
    padding: 10px;
}

.agenda-h i {
    font-size: 32px;
    color: #0609B8;
}

.agenda-h p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 17px;
}

.uplift {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 1000; */
}

.bg-blues {
    background: linear-gradient(to right, #0609b8, #0609b8, #04A9F5, #0609b8, #0609b8);
}

.shiny-section {

    background: #000;
}

@keyframes shine-bg {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}


.title {
    color: #0609B8;
    font-size: 42px;
    line-height: 52px;
    font-family: "Alan Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(45deg, rgb(213 97 36), rgb(66, 207, 111));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


header .nav-link {
    color: #000000 !important;
    margin-left: 15px;
    font-size: 14px;
}

.menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
}

.widget_title {
    font-size: 16px;
    color: #fff;
}

.menu li::marker {
    color: #fff;
}

.social-icon {
    margin-top: 10px;
}

footer .fa,
footer .social-icon a {
    text-decoration: none;
    color: #fff;
    margin-right: 7px;
}

.footer-area {
    padding: 30px 0;
    background: linear-gradient(to top, #0609b8, #282828, #282828);
}

.contact-div {
    box-shadow: rgb(60 159 72) 0px 2px 4px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact_inner {
    padding: 20px;
}

.contact_inner p {
    margin-bottom: 10px;
}

.top_badge {
    background: linear-gradient(320deg, rgb(48 126 40) 0%, rgb(83 223 134) 100%);
    color: #000000;
    padding: 10px 20px;
}

.top_badge h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.contact_inner i {
    color: #0609B8;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* nav position clickable fix */
}

.owl-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff !important;
    border: none;
    padding: 15px 20px;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    /* allow clicks */
}

.spkr {
    border-radius: 5px;
}

.spkr h4 {
    font-size: 18px;
}

.spkr p {
    font-size: 15px;
}

.spkr img {
    border-radius: 5px;
    background: radial-gradient(#44ba45, #0b3400);
    background: radial-gradient(#ffffff, #d56124);
    padding: 5px 0 0;
}

.ps .owl-nav button {
    color: #06b815 !important;
}

.ps .spkr img {
    max-width: 75%;
    margin: 5px auto;
}

.pp .title {
    text-shadow: unset !important;
    background: linear-gradient(to right, #ffffff, #ffffff, #04A9F5, #ffffff, #ffffff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    margin-bottom: 60px;
}

.pp {
    background: radial-gradient(#44ba45, #0b3400);
}

.pp .col-md-2 {
    padding: 0 3px;
}

.pp img {
    max-width: 150px;
    max-height: 60px;
    width: 100%;
}

.pp .pp-img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    margin: 0 0 4px;
    min-height: 80px;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.contact {
    position: relative;
    z-index: 1;
    /* background: linear-gradient(320deg, rgb(48 126 40) 0%, rgb(83 223 134) 100%); */
    background: url('./assets/img/bg-footer.png');
    padding: 60px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

/* .contact::before {
    position: absolute;
    content: '';
    background: url('https://events.eletsonline.com/india-cx-summit/assets/cx-img/abstract.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
} */

.space-10 {
    height: 10px;
}

.ico-heading h1 {
    font-size: 48px;
    text-transform: capitalize;
    font-weight: 700;
}

.space-30 {
    height: 30px;
}

.cont {
    width: 100%;
    max-width: 360px;
    margin: auto;
    border: 1px solid rgb(231 211 218);
    padding: 30px 10px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cont h4 {
    color: #c60e0e;
    font-size: 17px;
    line-height: 23px;
}

.cont h5 {
    font-size: 15px;
    line-height: 1.8;
    color: #1a1a1a;
}

.cont h5 span {
    font-weight: 700;
    font-size: 17px;
}

.cont h5 a,
.cont h5 a:hover {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

.cont h5 a:hover {
    color: #c60e0e;
}

.single-footer li a {
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
}



/* .owl-nav button:hover {
  background: #04A9F5;
  color: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
} */

.owl-theme .owl-dots .owl-dot span {
    margin: 0px 1px !important;
    background: #0cf663 !important;
}

.owl-nav button span {
    font-size: 44px;
    line-height: 1;
}

section.wave-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Make sure canvas fills the section */
section.wave-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

section.wave-section .content {
    position: relative;
    z-index: 2;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    height: 100%;
}

.speaker-card {
    text-align: center;
    box-shadow: rgb(2 0 249) 0px 2px 4px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.speaker-card img {
    max-width: 40%;
}

.speaker-card h5 {
    background-color: #0609B8;
    color: #fff;
    border-radius: 5px;
    padding: 4px;
}

/* Magazine Wrapper */
.magazines_wrapper {
    padding: 200px 0px 40px;
    background: #fff;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.magazines_wrapper .container {
    max-width: 1000px;
    min-width: 350px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 35px;
}

.magazines_wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.shelf-left {
    left: 0;
    width: 82px;
    /* background: url(https://pubhtml5.com/images_16/home/shelf1.png); */
    background: url(https://events.eletsonline.com/his/images_16/shelf1.webp);
}

.demo-self {
    position: absolute;
    height: 100%;
    top: 0;
}

.shelf-mid {
    left: 82px;
    right: 82px;
    background: url(https://events.eletsonline.com/his/images_16/shelf2.webp);
}

.shelf-right {
    right: 0;
    width: 82px;
    background: url(https://events.eletsonline.com/his/images_16/shelf3.webp);
}


.home-banner-demo-ul-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home-banner-demo-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-banner-demo-ul>.tall {
    display: inline-block;
    position: relative;
    margin: 0 31px;
    margin-top: -166px;
    margin-bottom: 80px;
}

.home-banner-demo-img-container {
    position: relative;
    cursor: pointer;
}

.home-banner-demo-img-container {
    overflow: hidden;
}

.home-banner-demo-thum {
    display: block;
    max-width: 100%;
    height: auto;
}

.home-banner-demo-thum {
    position: relative;
    display: block;
    width: 160px;
    height: auto;
}

.demo-self {
    position: absolute;
    height: 100%;
    top: 0;
}

.bg-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.apply_btn {
    text-align: center;
    margin-top: 30px;
}

/* Site CTA pill — the compact cousin of .hero-btn-primary (chinar red, gilt ring) */
.button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 4px;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    background:
        radial-gradient(120% 140% at 12% 0%, rgba(242, 169, 59, 0.45) 0%, rgba(242, 169, 59, 0) 55%),
        linear-gradient(135deg, #d14d1c 0%, #b8321a 52%, #8f2410 100%);
    text-shadow: 0 1px 2px rgba(78, 18, 6, 0.4);
    box-shadow:
        0 8px 20px rgba(143, 36, 16, 0.38),
        0 2px 0 rgba(255, 255, 255, 0.2) inset,
        0 0 0 1px rgba(242, 169, 59, 0.5) inset;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}

/* Gilt inner ring */
.button::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 4px;
    border-radius: inherit;
    border: 1px solid rgba(255, 233, 196, 0.4);
    pointer-events: none;
}

.button::after {
    content: "\2192";
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(143, 36, 16, 0.48),
        0 0 22px rgba(242, 169, 59, 0.35),
        0 2px 0 rgba(255, 255, 255, 0.28) inset,
        0 0 0 1px rgba(242, 169, 59, 0.8) inset;
}

.button:hover::after {
    transform: translateX(4px);
}

.button:active {
    transform: translateY(0) scale(0.98);
}

.button:focus-visible {
    outline: 3px solid #f2a93b;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .button,
    .button::after {
        transition: none;
    }

    .button:hover {
        transform: none;
    }
}

.text_button {
    position: relative;
    z-index: 1;
}

.host_logo {
    width: 250px;
}

.event_logo {
    height: 88px;
    width: auto;
    max-width: 100%;
}

/* Elets mark + event lockup share the brand slot in the menu bar */
.brand-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-elets {
    display: inline-flex;
    align-items: center;
}

.elets_logo {
    height: 42px;
    width: auto;
}

.brand-egov {
    display: inline-flex;
    align-items: center;
}

.egov_logo {
    height: 34px;
    width: auto;
}

/* self-contained block mark — a white pad keeps it readable over the dark hero */
.header-overlay:not(.scrolled) .egov_logo {
    padding: 3px 5px;
    background: #fff;
    border-radius: 4px;
}

/* the light-header version is a white-background JPG — round it off so it sits cleanly */
.elets_logo.logo-on-light {
    border-radius: 6px;
}

.brand-divider {
    width: 1px;
    height: 46px;
    background: currentColor;
    opacity: 0.3;
}

.header-overlay:not(.scrolled) .brand-divider {
    background: #fff;
    opacity: 0.45;
}

.header-overlay.scrolled .brand-divider {
    background: #04163f;
    opacity: 0.2;
}

/* The white lockup sits on the photo hero — give it a shadow so it reads on bright sky */
.logo-on-dark {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.speaker_wrapper {
    padding: 60px 0;
    background: #ffffff;
}

.partner_wrapper {
    padding: 60px 0;
    background-image: url(https://events.eletsonline.com/nbfc100/15th-edition/images/content/about_bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.speaker_wrapper h2,
.partner_wrapper h2 {
    /* font-family: "Neuropolitical"; */
    font-weight: 600;
    text-align: center;
    padding: 0 0 30px;
    font-size: 40px;
}

.segment_wrapper {
    background: #F0F7FA;
}





.partner_inner p {
    background: #ceffce;
    margin: 0px -15px 10px;
    padding: 5px;
    font-weight: 600;
}

.partner_inner {
    margin-bottom: 50px;
    text-align: center;
    border-radius: 5px;
    padding: 0 15px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
     box-shadow: rgb(255 255 255 / 2%) 0px 1px 1px 0px inset, rgb(50 50 93 / 14%) 0px 50px 100px -20px, rgb(0 0 0 / 1%) 0px 30px 60px -30px;
    border-radius: 10px;
    background-color: #fff;
        border: 1px solid #ddd;
    overflow: hidden;
    min-height: 152px;
}

.partner_inner:hover{
    transform: scale(1.03);
}

.speaker-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 30px;
    justify-content: center;
}

.spk-img {
    position: relative;
    /* height: 18vw; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* .spk-img:before {
    content: '';
    display: block;
    position: absolute;
    top: 6vw;
    width: 17.5vw;
    height: 17.5vw;
    border-radius: 10vw;
    background-color: #50d77f;
    transition: all ease .4s;
} */

.speaker-box:hover .spk-img::before {
    background-color: #358d36;
}

.spk-img img {
    width: auto;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, #5be9c4, #2aff0466);
    border-radius: 10px;
}

.spk-img img:hover {
    background: linear-gradient(to left, #5be9c4, #2aff0466);
}

/* .spk-img:after {
    content: '';
    display: block;
    width: 90%;
    height: 2px;
    background-color: #ffa778;
    bottom: 0;
    position: absolute;
    z-index: 3;
} */

.spk-des {
    width: 95%;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2vw;
    justify-content: center;
}

.spk-name {
    font-size: 1.2vw;
    font-weight: 600;
    text-transform: uppercase;
}

.spk-job {
    font-weight: 400;
    font-size: 0.9vw;
    line-height: 1vw;
    padding: 0.2vw 2vw;
}

.spk-comp {
    font-size: 1vw;
    line-height: 1vw;
}


.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.slide-track {
    display: flex;
    width: max-content;
    /* sized to content so translateX(-50%) is exactly one set of logos */
    animation: scroll 24s linear infinite;
}

.slider .item {
    flex: 0 0 auto;
    width: 120px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    min-height: 80px;
}

.slider .item img {
    width: 100%;
    height: auto;
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.wht_happening h5 {
    color: #fff;
}


.blog_wrapper {
    background: url('./assets/blog-bg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.blog_wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(45deg, black, transparent);
    z-index: -1;
}

.blog_wrapper h2 {
    font-size: 48px;
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
    padding-top: 100px;
}

.blog_inner {
    margin: 30px 0;
    box-shadow: 0px 20px 50px #D9DBDF;
    border-radius: 10px;
}

.blog_contnet {
    padding: 20px 10px;
}

.blog_contnet h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    color: #000;
}

.blog_contnet p {
    text-decoration: none;
    color: #000000d2;
}

.blog_main {
    margin: 40px 0;
}

.blog_main h5 {
    font-size: 28px;
    font-weight: 600;
}

.blog_main p {
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 600px) and (max-width: 991px) {
    .countdown_txt h4 {
        font-size: 18px;
    }

    .countodown_inner {
        min-height: 100px;
    }
}



@media only screen and (max-width:600px) {
    .spk-img:before {
        top: 30vw;
        width: 100%;
        height: 100%;
    }

    .spk-img {
        height: 336px;
        width: auto;
    }

    .spk-name {
        font-size: 20px;
    }

    .spk-job {
        font-weight: 400;
        font-size: 17px;
        line-height: 24px;
    }

    #about {
        padding: 30px 0;
    }

    .spk-comp {
        font-size: 12px;
        line-height: 17px;
        margin: 5px 0 0;
    }

    .logo-mid2 {
        width: 60px;
    }

    .logo-mid4 {
        width: 80px;
        top: 18%;
    }

    .logo-mid3 {
        width: 60%;
    }

    .tagline {
        display: none;
    }

    .logo-mid {
        width: 45%;
        top: 45%;
    }

    p {
        font-size: 16px;
    }

    .title {
        font-size: 24px;
    }

    #about {
        margin-top: -1px;
    }

    .countodown_inner {
        background: #ffffffd1;
    }


    #who-should-attend {
        background-position: top;
    }

    #why-up ul li {
        margin-top: 10px;
        font-size: 16px;
    }

    .uplift {
        position: unset;
        transform: unset;
        margin-top: -145px;
    }

    .particles-wrapper {
        height: unset;
    }

    ol,
    ul {
        padding-left: 0;
    }

    .navbar>.container {
        padding: 10px;
    }

    .host_logo {
        width: 260px;
    }

    .event_logo {
        height: 62px;
    }

    .elets_logo {
        height: 28px;
    }

    .egov_logo {
        height: 24px;
    }

    .brand-group {
        gap: 8px;
    }

    .brand-divider {
        height: 30px;
    }
}