/* ═══════════════════════════════════════════════════
   News & Events — Redesigned stylesheet
   Scoped to .ne-* classes | Bootstrap-compatible | Mobile-first
   ════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --ne-blue:        #0a66c2;
  --ne-blue-dark:   #07479c;
  --ne-navy:        #07111f;
  --ne-ink:         #0f1c2e;
  --ne-slate:       #3a4868;
  --ne-muted:       #6b7a9b;
  --ne-surface:     #f7f9fc;
  --ne-border:      #e8ecf4;
  --ne-white:       #ffffff;
  --ne-accent:      #00d2b4;

  --ne-radius-sm:   8px;
  --ne-radius-md:   14px;
  --ne-radius-lg:   20px;
  --ne-radius-xl:   28px;

  --ne-shadow-sm:   0 2px 8px rgba(7,17,31,.06);
  --ne-shadow-md:   0 8px 24px rgba(7,17,31,.09);
  --ne-shadow-lg:   0 20px 50px rgba(7,17,31,.13);

  --ne-font-head:   'Sora', sans-serif;
  --ne-font-body:   'DM Sans', sans-serif;

  --ne-trans:       .2s ease;
}

/* ── BASE ───────────────────────────────────────────── */
.ne-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ne-sec {
  padding: 80px 0;
}

.ne-sec--alt {
  background: var(--ne-surface);
}

.mt-lg { margin-top: 40px; }

/* ── SECTION HEADER ─────────────────────────────────── */
.ne-sec-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.ne-sec-head--left {
  margin-left: 0;
  text-align: left;
}

.ne-sec-head h2 {
  font-family: var(--ne-font-head);
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--ne-ink);
  margin: 8px 0 14px;
  line-height: 1.18;
}

.ne-sec-head p {
  font-family: var(--ne-font-body);
  font-size: 1.02rem;
  color: var(--ne-muted);
  margin: 0;
  line-height: 1.7;
}

/* ─ EYEBROW LABEL ───────────────────────────────────── */
.ne-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ne-font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ne-blue);
  background: rgba(10,102,194,.1);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ══════════ MODAL SLIDER ARROWS ═════════ */

/* Arrow Buttons styling */
#eventCarousel .carousel-control-prev,
#eventCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--ne-blue); /* Softcore Blue Theme */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 32px; /* Arrow size bada kiya */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid transparent;
}

/* Left Arrow position */
#eventCarousel .carousel-control-prev {
    left: -25px; /* Modal se thoda bahar dikhega, look cool */
}

/* Right Arrow position */
#eventCarousel .carousel-control-next {
    right: -25px;
}

/* Hover Effect */
#eventCarousel .carousel-control-prev:hover,
#eventCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--ne-blue-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Mobile Responsive: Arrows ko thoda andar move karna */
@media (max-width: 768px) {
    #eventCarousel .carousel-control-prev {
        left: 5px;
    }
    #eventCarousel .carousel-control-next {
        right: 5px;
    }
    #eventCarousel .carousel-control-prev,
    #eventCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Modal ka container padding (taki arrows image ke upar na aaye) */
.ne-modal .modal-content {
    padding: 10px;
    border-radius: var(--ne-radius-lg);
    background: transparent;
    border: none;
}

.ne-modal .modal-lg {
    max-width: 900px;
}

/* ─ BUTTONS ────────────────────────────────────────── */
.ne-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ne-font-body);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--ne-radius-sm);
  cursor: pointer;
  transition: background var(--ne-trans), color var(--ne-trans), transform var(--ne-trans), box-shadow var(--ne-trans);
  padding: 11px 22px;
  font-size: .95rem;
  white-space: nowrap;
}

.ne-btn--primary {
  background: var(--ne-blue);
  color: var(--ne-white);
}

.ne-btn--primary:hover {
  background: var(--ne-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10,102,194,.3);
}

.ne-btn--outline {
  background: transparent;
  border-color: var(--ne-blue);
  color: var(--ne-blue);
}

.ne-btn--outline:hover {
  background: var(--ne-blue);
  color: var(--ne-white);
}

.ne-btn--white {
  background: var(--ne-white);
  color: var(--ne-blue);
}

.ne-btn--white:hover {
  background: var(--ne-surface);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.ne-btn--sm {
  padding: 7px 14px;
  font-size: .85rem;
}

.ne-btn--lg {
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: var(--ne-radius-md);
}

/* ── GRID ──────────────────────────────────────────── */
.ne-grid {
  display: grid;
  gap: 24px;
}

.ne-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ─ EMPTY STATE ────────────────────────────────────── */
.ne-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--ne-muted);
}

.ne-empty-state span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.ne-hero {
  position: relative;
  padding: 96px 0 80px;
  background:
    linear-gradient(135deg, rgba(7,17,31,.96) 0%, rgba(10,66,122,.9) 60%, rgba(0,210,180,.15) 100%),
    var(--hero-bg, linear-gradient(135deg, #07111f, #0a66c2));
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ne-hero__noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ne-hero__inner {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.ne-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ne-font-body);
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}

.ne-breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--ne-trans);
}

.ne-breadcrumb a:hover { color: #fff; }

/* Hero layout */
.ne-hero__content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.ne-hero__left .ne-eyebrow {
  color: var(--ne-accent);
  background: rgba(0,210,180,.12);
  margin-bottom: 20px;
}

.ne-hero__left h1 {
  font-family: var(--ne-font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.ne-hero__left p {
  font-family: var(--ne-font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin: 0 0 36px;
  line-height: 1.7;
  max-width: 520px;
}

.ne-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.ne-hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.ne-hero__stat:first-child { padding-left: 0; }

.ne-hero__stat strong {
  font-family: var(--ne-font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ne-hero__stat span {
  font-family: var(--ne-font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

.ne-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* Hero visual */
.ne-hero__visual {
  position: relative;
  height: 320px;
}

.ne-hero__orb {
  position: absolute;
  border-radius: 50%;
}

.ne-hero__orb--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(10,102,194,.6) 0%, transparent 70%);
  top: 10px;
  right: 10px;
}

.ne-hero__orb--2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,210,180,.4) 0%, transparent 70%);
  bottom: 20px;
  left: 0;
}

.ne-hero__card-float {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--ne-radius-md);
  padding: 12px 18px;
  font-family: var(--ne-font-body);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}

.ne-hero__card-float--a {
  top: 40px;
  right: 0;
  animation-delay: 0s;
}

.ne-hero__card-float--b {
  bottom: 60px;
  right: 60px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ════════════════════════════════════════════════════
   STICKY TABS
   ══════════════════════════════════════════════════════ */
.ne-tabs {
  position: sticky;
  top: 0;              /* adjust if WP admin bar offset needed */
  z-index: 1;         /* below site header (typically 50-100), above content */
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ne-border);
  padding: 0;
}

.ne-tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ne-tabs__list::-webkit-scrollbar { display: none; }

.ne-tabs__link {
  display: block;
  font-family: var(--ne-font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ne-slate);
  text-decoration: none;
  padding: 14px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--ne-trans), border-color var(--ne-trans);
}

.ne-tabs__link:hover {
  color: var(--ne-blue);
}

.ne-tabs__link.is-active {
  color: var(--ne-blue);
  border-bottom-color: var(--ne-blue);
}

/* ═══════════════════════════════════════════════════
   LATEST HAPPENINGS
   ════════════════════════════════════════════════════ */
.ne-linkedin-embed {
  max-width: 900px;
}

.ne-linkedin-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--ne-white);
  border: 1px solid var(--ne-border);
  border-radius: var(--ne-radius-lg);
  padding: 28px 32px;
  box-shadow: var(--ne-shadow-sm);
  flex-wrap: wrap;
}

.ne-linkedin-cta__icon {
  width: 52px;
  height: 52px;
  background: #0a66c2;
  color: #fff;
  border-radius: var(--ne-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--ne-font-head);
}

.ne-linkedin-cta h3 {
  font-family: var(--ne-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ne-ink);
  margin: 0 0 4px;
}

.ne-linkedin-cta p {
  font-family: var(--ne-font-body);
  font-size: .9rem;
  color: var(--ne-muted);
  margin: 0;
}

.ne-linkedin-cta .ne-btn {
  margin-left: auto;
}

/* ═══════════════════════════════════════════════════
   UPCOMING EXPO CARDS
   ═════════════════════════════════════════════════════ */
.ne-expo-card {
  position: relative;
  background: var(--ne-white);
  border: 1px solid var(--ne-border);
  border-radius: var(--ne-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--ne-trans), box-shadow var(--ne-trans);
}

.ne-expo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ne-shadow-lg);
}

.ne-expo-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #dcfce7;
  color: #166534;
  font-family: var(--ne-font-body);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ne-expo-card__date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--ne-blue);
  color: #fff;
  border-radius: var(--ne-radius-sm);
  padding: 12px 16px;
  line-height: 1;
  width: fit-content;
}

.ne-expo-card__date strong {
  font-family: var(--ne-font-head);
  font-size: 1.8rem;
  font-weight: 800;
}

.ne-expo-card__date span {
  font-family: var(--ne-font-body);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 5px;
  opacity: .9;
}

.ne-expo-card__title {
  font-family: var(--ne-font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ne-ink);
  margin: 0;
}

.ne-expo-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ne-expo-card__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ne-font-body);
  font-size: .87rem;
  color: var(--ne-muted);
}

.ne-expo-card__meta svg {
  flex-shrink: 0;
  color: var(--ne-blue);
}

.ne-expo-card__desc {
  font-family: var(--ne-font-body);
  font-size: .9rem;
  color: var(--ne-slate);
  margin: 0;
  line-height: 1.6;
}

.ne-expo-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

/* ════════════════════════════════════════════════════
   RECENT EXPOS SLIDER
   ═══════════════════════════════════════════════════ */
.ne-slider {
  position: relative;
}

.ne-recent-card {
  background: var(--ne-white);
  border: 1px solid var(--ne-border);
  border-radius: var(--ne-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--ne-trans);
}

.ne-recent-card:hover {
  box-shadow: var(--ne-shadow-md);
}

.ne-recent-card__img {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ne-surface);
  overflow: hidden;
}

.ne-recent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.ne-recent-card:hover .ne-recent-card__img img {
  transform: scale(1.04);
}

.ne-recent-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
}

.ne-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7,17,31,.82);
  color: #fff;
  font-family: var(--ne-font-body);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ne-recent-card__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ne-recent-card__body h3 {
  font-family: var(--ne-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ne-ink);
  margin: 0 0 10px;
}

.ne-recent-card__body p {
  font-family: var(--ne-font-body);
  font-size: .9rem;
  color: var(--ne-muted);
  margin: 0 0 16px;
  line-height: 1.6;
  flex: 1;
}

.ne-recent-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ne-font-body);
  font-size: .82rem;
  color: var(--ne-muted);
  border-top: 1px solid var(--ne-border);
  padding-top: 14px;
}

.ne-recent-card__footer a {
  color: var(--ne-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--ne-trans);
}

.ne-recent-card__footer a:hover {
  color: var(--ne-blue-dark);
}

/* Slider controls */
.ne-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.ne-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--ne-white);
  border: 1px solid var(--ne-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ne-slate);
  transition: background var(--ne-trans), color var(--ne-trans), box-shadow var(--ne-trans);
}

.ne-slider__btn:hover {
  background: var(--ne-blue);
  color: #fff;
  border-color: var(--ne-blue);
  box-shadow: 0 4px 14px rgba(10,102,194,.3);
}

.ne-slider__dots {
  position: static !important;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.ne-slider__dots button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--ne-border) !important;
  border: 0 !important;
  opacity: 1 !important;
  transition: background var(--ne-trans), transform var(--ne-trans) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ne-slider__dots button.active {
  background: var(--ne-blue) !important;
  transform: scale(1.3);
}

/* ════════════════════════════════════════════════════
   EVENTS & CELEBRATIONS
   ════════════════════════════════════════════════════ */
.ne-events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.ne-events-filter button {
  font-family: var(--ne-font-body);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ne-border);
  background: var(--ne-white);
  color: var(--ne-slate);
  cursor: pointer;
  transition: all var(--ne-trans);
}

.ne-events-filter button:hover {
  border-color: var(--ne-blue);
  color: var(--ne-blue);
}

.ne-events-filter button.is-active {
  background: var(--ne-blue);
  border-color: var(--ne-blue);
  color: #fff;
}

.ne-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ne-event-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--ne-radius-md);
  overflow: hidden;
  position: relative;
}

.ne-event-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  /* Transition ko thoda smooth kiya hai */
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Hover par image zoom hogi */
.ne-event-card:hover img {
  transform: scale(1.1);
}

.ne-event-card__overlay {
  position: absolute;
  inset: 0;
  padding: 20px 14px; /* Bottom padding thodi badhayi hai better spacing ke liye */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
  /* Gradient ko thoda upar tak rakha hai taki text hamesha readable rahe */
  background: linear-gradient(to top, rgba(7, 17, 31, 0.9) 0%, rgba(7, 17, 31, 0.4) 40%, transparent 100%);
  color: #fff;
  text-align: left;
  /* Opacity ko hamesha 1 rakha hai */
  opacity: 1; 
  transition: background 0.3s ease;
}

.ne-event-card:hover .ne-event-card__overlay {
  background: linear-gradient(to top, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.5) 60%, transparent 100%);
}

.ne-event-card__overlay strong {
  font-family: var(--ne-font-head);
  font-size: .95rem; /* Text thoda bada kiya hai visibility ke liye */
  font-weight: 700;
  line-height: 1.2;
}

.ne-event-card__overlay span {
  font-family: var(--ne-font-body);
  font-size: .78rem;
  opacity: .9; /* Text thoda aur saaf dikhega */
}

/* ── Lightbox modal ──────────────────────────────────── */
.ne-modal .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ne-modal img {
  width: 100%;
  border-radius: var(--ne-radius-lg);
  box-shadow: 0 144px 140px rgb(0 0 0 / 51%);
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.ne-modal #neModalCaption {
  color: rgba(255,255,255,.9);
  text-align: center;
  margin: 16px 0 0;
  font-family: var(--ne-font-body);
  font-size: .95rem;
}

.WidgetBackground__ContentContainer-sc {
        position: relative;
    }

    .WidgetBackground__ContentContainer-sc::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: white; /* ya section ka bg */
    }

.ne-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgb(82 82 82);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ne-trans);
  z-index: 10;
}

.ne-modal__close:hover {
  background: rgb(82 82 82);
}

.ne-calendar-dropdown {
    position: relative;
    display: inline-block;
}

.ne-calendar-dropdown .dropdown-menu {
    border-radius: var(--ne-radius-sm);
    box-shadow: var(--ne-shadow-md);
    border: 1px solid var(--ne-border);
    padding: 8px 0;
    font-size: 0.9rem;
    margin-top: 5px;
}

.ne-calendar-dropdown .dropdown-item {
    padding: 8px 20px;
    font-family: var(--ne-font-body);
    color: var(--ne-ink);
    transition: background 0.2s;
}

.ne-calendar-dropdown .dropdown-item:hover {
    background-color: var(--ne-surface);
    color: var(--ne-blue);
}

/* Arrow icon dropdown ke liye (optional) */
.ne-calendar-dropdown .dropdown-toggle::after {
    margin-left: 8px;
}

/* ═══════════════════════════════════════════════════
   AWARDS
   ═══════════════════════════════════════════════════ */
.ne-awards-intro {
  display: grid;
  /*grid-template-columns: 1fr 420px;*/
  /*gap: 60px;*/
  align-items: center;
  margin-bottom: 48px;
  text-align:center;
}

.ne-awards-intro__left .ne-eyebrow { margin-bottom: 14px; }

.ne-awards-intro__left h2 {
  font-family: var(--ne-font-head);
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--ne-ink);
  margin: 0 0 16px;
  line-height: 1.18;
}

.ne-awards-intro__left p {
  font-family: var(--ne-font-body);
  font-size: 1rem;
  color: var(--ne-muted);
  line-height: 1.7;
  margin: 0;
}

.ne-awards-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ne-awards-stat {
  display: flex;
  flex-direction: column;
}

.ne-awards-stat strong {
  font-family: var(--ne-font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ne-blue);
  line-height: 1;
}

.ne-awards-stat span {
  font-family: var(--ne-font-body);
  font-size: .8rem;
  color: var(--ne-muted);
  margin-top: 4px;
}

.ne-awards-feature {
  background: linear-gradient(140deg, var(--ne-blue) 0%, var(--ne-navy) 100%);
  color: #fff;
  border-radius: var(--ne-radius-xl);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ne-awards-feature::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -60px;
  right: -60px;
}

.ne-awards-feature__icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.ne-awards-feature h3 {
  font-family: var(--ne-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.ne-awards-feature p {
  font-family: var(--ne-font-body);
  font-size: .92rem;
  opacity: .88;
  margin: 0;
  line-height: 1.6;
}

/* Award cards */
.ne-award-card {
  background: var(--ne-white);
  border: 1px solid var(--ne-border);
  border-radius: var(--ne-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--ne-trans), box-shadow var(--ne-trans);
}

.ne-award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ne-shadow-md);
}

.ne-award-card__icon { font-size: 1.9rem; }

.ne-award-card__year {
  font-family: var(--ne-font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ne-blue);
  text-transform: uppercase;
}

.ne-award-card h4 {
  font-family: var(--ne-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ne-ink);
  margin: 0;
}

span:nth-of-type(1) {
    width: auto;
}

.ne-award-card p {
  font-family: var(--ne-font-body);
  font-size: .9rem;
  color: var(--ne-muted);
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.ne-award-card footer {
  font-family: var(--ne-font-body);
  font-size: .82rem;
  color: var(--ne-slate);
  font-weight: 600;
  border-top: 1px solid var(--ne-border);
  padding-top: 12px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════ */
.ne-cta {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--ne-navy) 0%, var(--ne-blue) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.ne-cta__bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}

.ne-cta__bg-ring--1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: -180px;
  transform: translateY(-50%);
}

.ne-cta__bg-ring--2 {
  width: 380px;
  height: 380px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}

.ne-cta__inner {
  position: relative;
  z-index: 1;
}

.ne-cta h2 {
  font-family: var(--ne-font-head);
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}

.ne-cta p {
  font-family: var(--ne-font-body);
  font-size: 1.05rem;
  opacity: .85;
  margin: 0 0 30px;
}

/* ═════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ne-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ne-hero__visual { display: none; }

  .ne-awards-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ne-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ne-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ne-sec { padding: 56px 0; }
  .ne-hero { padding: 72px 0 60px; }

  .ne-grid--3 {
    grid-template-columns: 1fr;
  }

  .ne-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ne-tabs__link {
    font-size: .82rem;
    padding: 12px 12px;
  }

  .ne-hero__stats { gap: 20px; }

  .ne-hero__stat { padding: 0 18px; }

  .ne-hero__stat strong { font-size: 1.5rem; }

  .ne-linkedin-cta { flex-direction: column; align-items: flex-start; }

  .ne-linkedin-cta .ne-btn { margin-left: 0; }
}

@media (max-width: 480px) {
  .ne-container { padding: 0 16px; }

  .ne-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ne-hero__stat-divider { display: none; }

  .ne-hero__stat { padding: 0; }

  .ne-hero__stats { gap: 24px; }

  .ne-awards-stats { gap: 20px; }

  .ne-modal__close { top: -40px; }
}