html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
.hero-date-bar {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    padding: 14px 30px;
    border-radius: 6px 6px 0 0;
    opacity: 0.70;
   
}

/* Watermark layer */
.hero-watermark-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

/* Logo */
.hero-date-left img {
    width: 200px;
}



/* RIGHT */
.hero-date-right {
    text-align: center;
    padding-left: 0px;
}

/* DATE BOXES */
.date-boxes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8px;
}

.date-box {
     border-radius: 6px;
     color:#ffffff;
     background-color: #9042c4;
    border: 1px solid #000;
    padding: 4px 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.date-sep {
    margin: 0 5px;
    font-size: 26px;
    font-weight: 600;
}

/* MONTH */
.date-month {
    margin: 6px;
    font-size: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color:#000;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-date-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        width:90%
    }
    .hero-date-left img {
    width: 200px;
}

    .hero-date-right {
        text-align: center;
    }

    .date-boxes {
        justify-content: center;
    }

    .date-box {
     border-radius: 6px;
     color:#ffffff;
     background-color: #9042c4;
    border: 1px solid #000;
    padding: 4px 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.date-sep {
    margin: 0 5px;
    font-size: 16px;
    font-weight: 600;
}

/* MONTH */
.date-month {
    margin: 6px;
     font-size: 16px;
   line-height:22px;
    text-transform: uppercase;
    font-weight: 500;
    color:#000;
}
}


.hero-logo {
    animation: pulseGlow 3s infinite ease-in-out;
}

/* Default state (top of page) */
.navbar {
    transition: all 0.3s ease;
}

.navbar .nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #c47dfc;
}

/* Scrolled state */
.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-link {
    color: #000000;
}

.navbar.scrolled .nav-link:hover {
    color: #c47dfc;
}

/* Dropdown links */
.navbar.scrolled .dropdown-menu a {
    color: #000;
}


@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 10px #000000); }
    100% { filter: drop-shadow(0 0 35px #000000); }
}

    .social-icons-vertical {
    position: absolute;
    left: 30px; /* distance from left border */
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border:1px solid #c47dfc;
    border-radius:5px;
    padding:15px;
    }

    .social-icons-vertical a {
    width: 40px;
    height: 40px;
    background: #c47dfc; /* your theme color */
    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: .3s ease-in-out;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .social-icons-vertical a:hover {
        background: #a15fe0; /* darker hover shade */
        transform: translateX(5px); /* subtle animation */
    }


    @media(max-width: 767px) {
        .social-icons-vertical {
            left: 15px;
        }
    }

    /* Optionally, adjust colors per brand */
    /* .social-icons .facebook { color: #4267B2; } */
    /* .social-icons .twitter { color: #1DA1F2; } */
    /* etc. */
/* Video always at the back */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Black overlay only over the video */
section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 2;
}

/* All section child elements above overlay */
section > *:not(video) {
    position: relative;
    z-index: 3;
}

.theme-gradient {
    padding: 20px 0; /* Desktop height */
   background: linear-gradient(120deg, #c47dfc 0%, #b65ba7ff 50%, #7b15c1 100%);
}

.theme-gradient h2 { text-shadow: 0 0 8px rgba(0,0,0,0.5); font-size:49px;}
.theme-gradient h5 {
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
}

/* Tablet */
@media (max-width: 1024px) {
    .theme-gradient {
        padding: 20px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .theme-gradient {
        padding: 40px 0;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .theme-gradient {
        padding: 30px 0;
    }
}

.why-card-section {
    padding: 80px 0;
}

.why-card {
    height: 260px;
    background: linear-gradient(145deg, #c47dfc 0%, #7b15c1 90%);
    border: 4px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    padding: 20px 15px;
    box-shadow:
        0 0 20px rgba(196, 125, 252, 0.45),
        0 0 55px rgba(196, 125, 252, 0.35);
    transition: .3s ease-in-out;
}

/* Title */
.why-title {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

/* Description reduced size */
.why-desc {
    font-size: 14px; /* ⬅ updated smaller */
    font-weight: 300;
    line-height: 1.35;
    display: block;
    padding: 0 5px;
}

/* Hover */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 30px rgba(196, 125, 252, 0.65),
        0 0 70px rgba(196, 125, 252, 0.45);
}

/* Responsive */
@media (max-width: 991px) {
    .why-card {
        height: auto;
        margin-bottom: 15px;
    }
}

.tracks-timeline-section {
    padding: 80px 0 80px; /* More top spacing */
    overflow: hidden;
}

/* Horizontal timeline line */
.tracks-line::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 6%;
    right: 6%;
    height: 3px;
    background: rgba(255,255,255,0.18);
    z-index: 0;
    animation: lineflow 4s linear infinite;
}

/* Animated flowing dots */
.tracks-line::after {
    content: "";
    position: absolute;
    top: 63px;
    left: 6%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c47dfc;
    animation: dotmove 4s linear infinite;
}

@keyframes dotmove {
    0% { left: 6%; }
    100% { left: 88%; }
}

@keyframes lineflow {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Icon Circle - White */
.track-icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #ffffff; /* WHITE CIRCLE */
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 18px rgba(196,125,252,0.7),
        0 0 35px rgba(196,125,252,0.4);
    transition: .25s ease-in-out;
    z-index: 2;
}

/* Icon Color - Dark Purple */
.track-icon-circle i {
    font-size: 32px;
    color: #7b15c1 !important;
}

/* Hover Effect */
.track-item:hover .track-icon-circle {
    transform: translateY(-10px);
    background: #ffffff; /* Stay white on hover */
    box-shadow:
        0 0 30px rgba(196,125,252,1),
        0 0 90px rgba(196,125,252,0.7);
}

.track-item:hover .track-icon-circle i {
    color: #7b15c1 !important;
}


/* Text */
.track-heading {
    color:#ffffff;
   font-size: 18px;
   line-height:25px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.track-sub {
    font-size: 16px;
    color: #d8b9ff;
    font-weight: 400;
}

/* Equal height boxes on mobile/tablet */
.track-item {
    min-height: 220px;
    margin-bottom: 20px;
}

/* Bottom arc graphic */
.timeline-arc {
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    opacity: 0.4;
}

/* Mobile */
@media(max-width: 991px) {
    .tracks-line::before,
    .tracks-line::after {
        display: none;
    }
    .track-item {
        min-height: 200px;
        margin-bottom: 45px;
    }
}
.about-video {
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(196, 125, 252, 0.35);
}

/* Stats layout */
.about-stat {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right: 15px;
    box-shadow: 0 0 18px rgba(196,125,252,0.4);
}

.stat-icon i {
    font-size: 20px;
    color: #7b15c1 !important;
}

.stat-number {
    font-size: 80px;
    font-weight: 200;
    color: #ffffff;
    margin-right: 4px;
}

.stat-plus {
    font-size: 22px;
    font-weight: 700;
    color: #c47dfc;
}

.stat-text {
    margin-left: 12px;
    font-size: 20px;
    color: #d8b9ff;
    flex: 1;
    line-height: 1.4;
}
.about-ned-section {
    padding: 0;
}

.about-ned-box {
    background: #1b1a3c;
    padding: 60px 50px;
    color: #fff;
    position: relative;
    width: 100%;
}

.since-badge {
    background: #c47dfc;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 20px;
    float:right;
}

.about-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    text-transform: uppercase;
}

.about-desc {
    color: #dcdcdc;
    font-size: 22px;
    margin: 20px 0 30px;
    width: 90%;
}

.about-stats h3 {
    color: #c47dfc;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 14px;
    line-height: 18px;
}

.stat-box {
    padding: 20px 0;
   
    margin-bottom: 5px;
}

.stat-box:nth-child(2),
.stat-box:nth-child(4) {
    border-right: none;
}

.reports {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #c47dfc;
    letter-spacing: 0.5px;
}
  
/* Mobile support */
@media(max-width: 767px){
    .about-ned-box {
        padding: 40px 25px;
    }
    .stat-box {
        border-right: none;
        text-align: center;
    }
    .about-title {
        font-size: 26px;
        line-height: 34px;
    }
}
.leaders-section {
    padding: 60px 0;
}

.leader-item {
    position: relative;
}

.leader-photo {
    height:380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 25px;
    transition: .4s ease-in-out;
    position: relative;
    border:1px solid #1e1e1e;
}

/* Dark overlay for readability */
.leader-photo::before {
    content:'';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top,rgba(0,0,0,0.75),rgba(0,0,0,0.15));
    transition: .3s ease-in-out;
}

.leader-info {
    position: relative;
    z-index: 2;
}

.leader-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    line-height:23px;
}

.leader-info p {
    font-size: 14px;
    color: #dcdcdc;
    margin: 0;
    width: 90%;
    line-height:23px;
}

/* Hover effect white overlay */
.leader-photo:hover {
    transform: scale(1);
}

.leader-photo:hover::before {
    background: rgba(206, 206, 206, 0.85); /* White transparent overlay */
}

/* Change text to black on hover */
.leader-photo:hover .leader-info h4,
.leader-photo:hover .leader-info p {
    color: #000 !important;
}
.leader-info h4,
.leader-info p {
    transition: color .2s ease-in-out;
}


/* Responsive */
@media(max-width: 767px){
    .leader-photo { height: 350px; }
}

.text-shadow-date {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}
.venues-section {
    padding: 60px 0;
}

.venue-card {
    background: #111827; /* soft dark for elegance */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.venue-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

.venue-title {
    margin-top: 20px;
    font-weight: 500;
    color: #ffffff;
    font-size: 20px;
}

.venue-desc {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.45;
}

.partners-section {
    background: #ffffff;
    padding: 80px 0;
}
.partners-section {
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
}
.partners-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.partners-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 1200px; /* Keeps wide logos aligned */
}

.partners-img {
    transition: transform .4s ease;
}
.partners-img:hover {
    transform: scale(1.02);
}

.ned-footer {
    padding: 70px 0 0;
    color: #000000;
    background-size: cover;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-title {
    color: #000000;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a,
.ned-footer a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    transition: color .3s ease;
}

.footer-links li a:hover,
.footer-social a:hover {
    color: #c47dfc; /* theme color */
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social i {
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}
.footer-social a:hover i {
    color: #c47dfc;
}

.footer-bottom {
    border-top: 1px solid rgba(141, 54, 54, 0.1);
    margin-top: 50px;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #c47dfc;
}
/* 8 in a row */
@media (min-width: 992px) {
    .col-lg-1-5 {
        width: 12.5%;
        flex: 0 0 12.5%;
    }
}

/* OVAL IMAGE STYLE */
.leader-img {
    width: 130px;
    height: 160px;
    margin: 0 auto 10px;
    border-radius: 5% ;
    border: 1px solid #6c4cff;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Text styling */
.leader-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
    line-height:19px;
    color: #ffffff;
}

.leader-role {
    font-size: 11px;
    line-height: 1.3;
    color: #ddd;
    padding: 0 5px;
}

/* Smaller devices */
@media (max-width: 767px) {
    .leader-img {
        width: 110px;
        height: 140px;
    }
    .leader-name {
        font-size: 14px;
    }
    .leader-role {
        font-size: 11px;
    }
}
/* Black Section */
.about-ned-black {
    background: #000;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
}

/* Intro Paragraph */
.about-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 20px;
    line-height: 1.6;
    color: #dcdcdc;
}

/* Stats Layout */
.ned-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Numbers */
.ned-stat-number {
    font-size: 70px;
    font-weight: 700;
}

/* Labels */
.ned-stat-label {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    color: #bbbbbb;
}

/* Button Wrap */
.about-btn-wrap {
    margin-top: 30px;
}

/* Button Custom Adjustments */
.about-btn {
    background: #6c4cff;
    border: none;
    color: #fff !important;
    padding: 14px 28px;
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ned-stat-number {
        font-size: 48px;
    }
    .ned-stats-row {
        gap: 30px;
    }
        .stat-number {
    font-size: 70px;
    font-weight: 200;
    color: #ffffff;
    margin-right: 4px;
}
}

/* Countdown Number Styling */
.countdown .countdown-box .number,
.countdown-style-02 .countdown .countdown-box .number {
    font-size: 90px !important;
    font-weight: 200 !important;
    text-shadow: 0 0 12px rgba(0,0,0,0.6), 0 0 18px rgba(0,0,0,0.4);
    line-height: 1;
    color: #000000 !important;
}

/* Countdown Label Styling */
.countdown .countdown-box .title,
.countdown-style-02 .countdown .countdown-box .title {
    font-size: 26px !important;
    font-weight: 500;
    margin-top: 10px;
    text-transform: uppercase;
   
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
     color: #000000 !important;
   
}
.countdown-box span {
    color: #000000 !important;
    font-size: 24px !important;
     opacity: 0.2;
}
/* Dots Between Numbers */
.countdown .countdown-separator {
    font-size: 50px !important;
    font-weight: 700;
    line-height: 1;
    padding: 0 10px;
     color: #000000 !important;
    text-shadow: 0 0 10px rgba(196,125,252,0.6);
}
@media (min-width: 1200px) {
    .countdown .countdown-box .number {
        font-size: 80px !important;
    }
}
.steering-section {
    background: #f1e0ff;
    padding: 50px 0;
}
.timeline-row {
    background: #f1e0ff;
    padding: 0px 30px 30px 30px;
}

.committee-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.25;
    min-height: 22px; /* Keeps all names aligned */
    color: #000;
}

.committee-role {
    font-size: 11px;
    line-height: 1.3;
    min-height: 48px; /* Uniform block height for all cards */
    color: #333;
    padding: 0 8px;
}


/* MEMBER CARD */
.sc-member {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    z-index: 2;
}
.sc-member:hover .sc-photo img {
    transform: scale(1.05);
}

/* CIRCLE PHOTO WITH DOUBLE RING */
.sc-photo {
    width: 120px;
    height: 120px;
    margin: auto;
    padding: 5px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 4px #c79aff, 0 0 0 8px #e5d9ff;
    overflow: hidden;
     margin-bottom: 15px;
}
.sc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: .3s ease;
}

/* NAME */
.sc-name {
    margin-top: 12px;
    font-weight: 600;
    color: #222;
}

/* ROLE */
.sc-role {
    font-size: 14px;
    color: #555;
    line-height: 1.35;
}

/* FADE-UP ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s forwards;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.retrospect-mega {
    width: 360px;
   
}

.mega-row {
    display: flex;
  
    border-bottom: 1px solid #eee;
}

.mega-row:last-child {
    border-bottom: none;
}

.mega-year {
    width: 90px;
    font-weight: 600;
    color: #333;
}

.mega-links a {
    display: block;
   
    color: #555;
    text-decoration: none;
}

.mega-links a:hover {
    text-decoration: underline;
}
.committee-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.committee-inner {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    animation: smooth-scroll 45s linear infinite;
}

/* Pause when user hovers */
.committee-scroll:hover .committee-inner {
    animation-play-state: paused;
}

/* Important: no wrapping */
.committee-inner .row {
    flex-wrap: nowrap;
}

@keyframes smooth-scroll {
    0% {
        transform: translateX(10%);
    }
    100% {
        transform: translateX(-110%);
    }
}
@media (max-width: 768px) {
    .committee-inner {
        animation-duration: 75s;
    }
}
.committeemem {
border:1px solid #f5edfc;font-size:11px;line-height:14px;text-align:center;color:#000000;
height:230px;border-radius: 5px;padding:5px;
}

/* Mobile fix */
@media (max-width: 767px) {
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .swiper-slide {
    display: block !important;
  }
}

.swiper {
  overflow: visible !important;
}