  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ── Variables ── */
    :root {
      --red: #ff009dff;
      --dark: #111;
      --white: #fff;
      --light-bg: #f8f8f8;
      --gold: #c9a84c;
      --primary-font: "Montserrat", sans-serif;
    }
    body {
      font-family: var(--primary-font); ;
      color: #1a1a1a;
      background: #140d24;
      overflow-x: hidden;
    }
    /* ── Utility ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
    .btn {
      display: inline-block;
      padding: 14px 32px;
      background: linear-gradient(135deg, #FF006E, #8338EC);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-desktop .row{
      align-items: center;
    }
    .btn:hover { 
      background: #ffffff;
      color: #FF009D !important;
      border: 2px solid #FF009D;
      box-shadow: 0 0 12px rgba(255, 0, 157, 0.5), 0 0 28px rgba(255, 0, 157, 0.35);
      transform: translateY(-2px);
   }
    .btn-outline {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-1px); }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1.15;
    }
    .section-subtitle {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      line-height: 1.75;
      color: #444;
    }

    /* ══════════════════════════
       DESKTOP NAV
    ══════════════════════════ */
    .nav-desktop {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.82);
      backdrop-filter: blur(8px);
      padding: 14px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0;
    }
    .nav-desktop .logo img { height: 48px; object-fit: contain; }
    .nav-desktop ul {
      list-style: none;
      display: flex;
      gap: 32px;
      align-items: center;
      justify-content: right;
    }
    .nav-desktop ul li a {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.06em;
      text-transform: capitalize;
      transition: opacity 0.2s;
    }
    .nav-desktop ul li a:hover { opacity: 1; }
    .nav-cta { display: flex; align-items: center; gap: 16px; }

    /* Mobile nav */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.92);
      padding: 14px 20px;
      align-items: center;
      justify-content: space-between;
    }
    .nav-mobile .logo img { height: 40px; object-fit: contain; }
    .hamburger {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: rgba(0,0,0,0.95);
      z-index: 999;
      padding: 20px;
      flex-direction: column;
      gap: 16px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    @media (max-width: 900px) {
      .nav-desktop { display: none; }
      .nav-mobile { display: flex; }
    }

    /* ══════════════════════════
       HERO
    ══════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: #000;
    }
    #hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
    }
    #hero .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
    }
    #hero .content {
      position: relative;
      z-index: 2;
      max-width: 1150px;
      padding: 0 24px;
    }
    #hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: clamp(2rem, 5.5vw, 4rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    }
    #hero h1 span{
      color: var(--red);
    }
    #hero p {
      font-size: clamp(1rem, 2.2vw, 1.25rem);
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    #hero .hero-btns { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ══════════════════════════
       SPONSOR MARQUEE
    ══════════════════════════ */
    .marquee-section { 
      background: #fff; 
      box-shadow: 2px 2px 6px 4px #ff7af636;
      padding: 20px 40px;
      background-color: var(--color-bessjncx);
      backdrop-filter: blur(26px);
      width: 100%;
      border-color: var(--brandboards-new_color_465);
      border-width: 1px;
      border-style: solid;
      margin: -100px 0 0; 
    }
    .marquee-track {
      display: flex;
      gap: 48px;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-track img { height: 48px; object-fit: contain; filter: grayscale(30%); opacity: 0.8; }
    .marquee-track-2 { animation-direction: reverse; margin-top: 16px; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ══════════════════════════
       ABOUT SCARBOROUGH
    ══════════════════════════ */
    
    #about-scarborough .section-title { margin-bottom: 28px; }
    #about-scarborough .section-subtitle { max-width: 860px; margin: 0 auto 60px; text-align: center; }
    .gallery-scroll-wrap { overflow: hidden; }
    .gallery-scroll {
      display: flex;
      gap: 12px;
      animation: galleryScroll 40s linear infinite;
      width: max-content;
    }
    .gallery-scroll img {
      height: 240px;
      width: 320px;
      object-fit: cover;
      flex-shrink: 0;
      border-radius: 4px;
    }
    .gallery-scroll-2 { animation-direction: reverse; margin-top: 12px; }
    @keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ══════════════════════════
       MISSION / VISION
    ══════════════════════════ */
    #mission-vision { padding: 100px 0; background: var(--light-bg); }
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }
    .mv-block .section-title { font-size: 2rem; margin-bottom: 20px; color: var(--red); }
    .mv-block .section-subtitle { color: #444; }
    @media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; gap: 40px; } }

    /* ══════════════════════════
       WHO WE ARE
    ══════════════════════════ */
    .who-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .who-text .section-title { margin-bottom: 24px; }
    .who-text .section-subtitle { margin-bottom: 32px; }
    .who-text .social-links { display: flex; gap: 16px; margin-bottom: 32px; }
    .who-text .social-links a img { height: 36px; width: 36px; }
    .who-img img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    @media (max-width: 800px) {
      .who-grid { grid-template-columns: 1fr; }
      .who-img { order: -1; }
      .who-img img { height: 300px; }
    }

    /* ══════════════════════════
       VALUES
    ══════════════════════════ */
    #values { padding: 100px 0; background: var(--dark); color: #fff; }
    #values .section-title { color: #fff; text-align: center; margin-bottom: 60px; }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .value-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 36px 24px;
      border-radius: 6px;
      text-align: center;
      transition: background 0.25s;
    }
    .value-card:hover { background: rgba(255,255,255,0.1); }
    .value-card img { height: 52px; margin: 0 auto 20px; }
    .value-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: var(--gold);
    }
    .value-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.75); }
    @media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

    /* WHO IS IT FOR */
    #who-for { padding: 80px 0; background: #fff; }
    #who-for .section-title { text-align: center; margin-bottom: 48px; }
    .who-for-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }
    .who-for-item {
      text-align: center;
      padding: 28px 12px;
      border: 1px solid #eee;
      border-radius: 6px;
    }
    .who-for-item img { height: 44px; margin: 0 auto 16px; }
    .who-for-item p {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      color: #333;
    }
    @media (max-width: 900px) { .who-for-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 500px) { .who-for-grid { grid-template-columns: 1fr 1fr; } }

    /* ══════════════════════════
       PROGRAMS
    ══════════════════════════ */
    #programs { padding: 100px 0; background: var(--light-bg); }
    #programs .section-title { text-align: center; margin-bottom: 60px; }
    .program-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }
    .program-block.reverse { direction: rtl; }
    .program-block.reverse > * { direction: ltr; }
    .program-img img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .program-text .tag {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 16px;
    }
    .program-text h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      margin-bottom: 16px;
    }
    .program-text p { font-size: 0.95rem; line-height: 1.8; color: #555; }
    .program-sponsors { display: flex; gap: 16px; margin-top: 24px; }
    .program-sponsors img { height: 56px; object-fit: contain; border-radius: 4px; }
    @media (max-width: 800px) {
      .program-block, .program-block.reverse { grid-template-columns: 1fr; direction: ltr; }
      .program-img img { height: 240px; }
    }

    /* ══════════════════════════
       EVENTS
    ══════════════════════════ */

    #events .section-title { text-align: center; margin-bottom: 60px; }
    .event-card {
      max-width: 800px;
      margin: 0 auto;
      background: var(--dark);
      color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    .event-card img { width: 100%; height: 360px; object-fit: cover; }
    .event-card-body { padding: 40px; }
    .event-card-body h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      margin-bottom: 16px;
    }
    .event-badge {
      display: inline-block;
      background: #2ecc71;
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .event-details { margin: 16px 0 28px; }
    .event-details p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.9;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .event-details p::before { content: "📍"; font-size: 0.9rem; flex-shrink: 0; }
    .event-details p.date::before { content: "📅"; }
    .event-map { margin-top: 24px; border-radius: 8px; overflow: hidden; }
    .event-map img { width: 100%; height: 200px; object-fit: cover; }

    /* ══════════════════════════
       GET INVOLVED
    ══════════════════════════ */

    #get-involved .section-title { color: #fff; text-align: center; margin-bottom: 24px; }
    #get-involved .lead {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.9);
    }
    .involve-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      margin-bottom: 52px;
    }
    .involve-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 32px 20px;
      border-radius: 8px;
      text-align: center;
    }
    .involve-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      margin-bottom: 10px;
    }
    .involve-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
    .involve-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      background: #fff;
      color: var(--red);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
    @media (max-width: 900px) { .involve-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .involve-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════
       IMPACT
    ══════════════════════════ */
    #impact { padding: 100px 0; background: #fff; }
    .impact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .impact-text .section-title { margin-bottom: 24px; }
    .impact-text .section-subtitle { margin-bottom: 32px; }
    .impact-list { list-style: none; }
    .impact-list li {
      font-size: 0.95rem;
      color: #fff;
      border-bottom: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .impact-list li::before { content: "✦"; color: var(--red); font-size: 0.7rem; flex-shrink: 0; }
    .impact-img img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 16px 50px rgba(0,0,0,0.12);
    }
    @media (max-width: 800px) {
      .impact-grid { grid-template-columns: 1fr; }
      .impact-img img { height: 260px; }
    }

    /* ══════════════════════════
       COUNTDOWN
    ══════════════════════════ */
    #countdown { padding: 80px 0; background: var(--dark); color: #fff; text-align: center; }
    #countdown .section-title { color: #fff; margin-bottom: 48px; }
    .countdown-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .countdown-unit { text-align: center; }
    .countdown-unit .num {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: clamp(3rem, 8vw, 5.5rem);
      color: var(--red);
      line-height: 1;
    }
    .countdown-unit .label {
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 8px;
    }
    .countdown-sep {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 3rem;
      color: rgba(255,255,255,0.2);
      align-self: flex-start;
      padding-top: 8px;
    }

    /* ══════════════════════════
       CONTACT
    ══════════════════════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-info .section-title { margin-bottom: 32px; }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      font-size: 0.95rem;
      color: #444;
    }
    .contact-detail strong {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }
    .contact-map { margin-top: 28px; border-radius: 8px; overflow: hidden; }
    .contact-map img { width: 100%; height: 220px; object-fit: cover; }
    .contact-form label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 6px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.95rem;
      margin-bottom: 20px;
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--red); }
    .contact-form textarea { height: 120px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 800px) {
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════
       FOOTER
    ══════════════════════════ */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand img { height: 52px; margin-bottom: 20px; }
    .footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 340px; }
    .footer-brand .social-links { display: flex; gap: 12px; margin-top: 20px; }
    .footer-brand .social-links a img { height: 32px; width: 32px; }
    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-contact p { font-size: 0.88rem; margin-bottom: 10px; }
    .footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .footer-contact a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
    .footer-btns { display: flex; gap: 12px; }
    @media (max-width: 700px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /*======================== counter + marquee section =====================================*/
    .event-counter-section {
    max-width: 970px;
    margin: -80px auto 80px;
    background: linear-gradient(135deg,#0b0220,#13072f);
    border: 2px solid #ff00b8;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255,0,184,.4);
    position: relative;
    z-index: 10;
}

/* Marquee */
.counter-marquee {
    padding: 12px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.top-marquee {
    border-bottom: 1px solid #fff;
}

.bottom-marquee {
    border-top: 1px solid #fff;
}

/* Counter */
.counter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 20px 180px;
}

.counter-item {
    text-align: center;
    position: relative;
}

.counter-item span {
    display: block;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.counter-item p {
    margin-top: 10px;
    color: #d9d9d9;
    font-size: 18px;
    text-transform: lowercase;
}

/* Divider */
.counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 10px;
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,.15);
}

/* Mobile */
@media(max-width:991px){

    .counter-wrapper{
        gap:30px;
    }

    .counter-item span{
        font-size:50px;
    }

    .counter-item:not(:last-child)::after{
        right:-15px;
    }
}

@media(max-width:767px){

    .counter-wrapper{
        flex-wrap:wrap;
        gap:25px;
    }

    .counter-item{
        width:45%;
    }

    .counter-item span{
        font-size:42px;
    }

    .counter-item:not(:last-child)::after{
        display:none;
    }
}

/*============================ About Section ==========================================*/
.about-section{
    background:#0d0221;
    padding:100px 0;
    position:relative;
}

.about-content{
    text-align:center;
    margin:0 auto 60px;
}

.about-content h2{
    color:#ff00b8;
    font-size:72px;
    font-weight:800;
    margin-bottom:30px;
    line-height:1.1;
}

.about-content p{
    color:#ffffff;
    font-size:19px;
    line-height:1.8;
    max-width:1100px;
    margin:auto;
}

/* Slider */

.about-slider{
    position:relative;
    max-width:1100px;
    margin:auto;
    border-radius:25px;
    overflow:hidden;
    border:3px solid #ff00b8;
    box-shadow:
        0 0 20px rgba(255,0,184,.5),
        0 0 60px rgba(104,66,255,.4);
}

.slider-wrapper{
    position:relative;
}

.slide{
    display:none;
}

.slide.active{
    display:block;
}

.slide img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

/* Arrows */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:5;
    backdrop-filter:blur(10px);
}

.slider-btn:hover{
    background:#ff00b8;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* Responsive */

@media(max-width:991px){

    .about-content h2{
        font-size:52px;
    }

    .about-content p{
        font-size:18px;
    }

    .slide img{
        height:450px;
    }
}

@media(max-width:767px){

    .about-section{
        padding:70px 20px;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.7;
    }

    .slide img{
        height:280px;
    }

    .slider-btn{
        width:40px;
        height:40px;
        font-size:18px;
    }
}

/*================================= Mission Vission Section ==============================*/
.mission-vision-section {
    padding: 50px 0;
    background: url("../images/mission-banner.png") center center/cover no-repeat;
    position: relative;
}

.mv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.mv-card {
    width: 500px;
    padding: 35px 40px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(34,0,57,.9),
        rgba(4,8,35,.95)
    );
    border: 2px solid rgba(255,0,184,.5);
    box-shadow:
        0 0 20px rgba(255,0,184,.35),
        0 0 40px rgba(255,0,184,.15);
    transition: all .4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 25px rgba(255,0,184,.5),
        0 0 50px rgba(255,0,184,.25);
}

.mv-card h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.mv-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.5);
    margin: 15px auto 25px;
}

.mv-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .mv-grid {
        gap: 30px;
    }

    .mv-card {
        width: 100%;
    }

    .mv-card h2 {
        font-size: 40px;
    }

    .mv-card p {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .mission-vision-section {
        padding: 60px 20px;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-card h2 {
        font-size: 32px;
    }

    .mv-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/*=================================== who we are section ============================*/
.who-we-are-section{
    background:#130028;
    padding:100px 0;
}

.who-we-are-section .container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    color:#ff00b8;
    font-size:72px;
    font-weight:800;
    margin-bottom:60px;
    line-height:1;
}

.who-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

/* Image */

.who-image{
    flex:0 0 48%;
}

.who-image img{
    width:100%;
    border-radius:8px;
    display:block;
    border:2px solid rgba(255,0,184,.6);
    box-shadow:
        0 0 15px rgba(255,0,184,.4),
        0 0 35px rgba(255,0,184,.15);
}

/* Content */

.who-content{
    flex:0 0 48%;
}

.who-content p{
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Button */

.volunteer-btn{
    display:inline-block;
    margin-top:20px;
    padding:16px 40px;
    background:linear-gradient(
        90deg,
        #ff008a,
        #9c3dff
    );
    color:#fff;
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.volunteer-btn:hover{
    transform:translateY(-3px);
}

/* Social */



.social-icons a{
    width:40px;
    height:40px;
    background:#fff;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff00b8;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .who-wrapper{
        flex-direction:column;
    }

    .who-image,
    .who-content{
        flex:100%;
        width:100%;
    }

    .section-title{
        font-size:54px;
    }
}

@media(max-width:767px){

    .who-we-are-section{
        padding:70px 20px;
    }

    .section-title{
        font-size:40px;
        margin-bottom:40px;
    }

    .who-content p{
        font-size:16px;
    }

    .volunteer-btn{
        width:100%;
        text-align:center;
    }
}

/*================================ Our Value Section ========================================*/

.our-values-section{
    background:#140027;
    padding:100px 0;
}

.values-title{
    text-align:center;
    color:#ff00b8;
    font-size:72px;
    font-weight:800;
    margin-bottom:50px;
    line-height:1;
}

.values-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.value-card{
    display:flex;
    align-items:center;
    gap:25px;
    padding:30px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    text-align: left;
    background:
    linear-gradient(
        135deg,
        rgba(32,12,64,.95),
        rgba(3,10,37,.95)
    );

    border:2px solid rgba(255,255,255,.75);

    transition:.4s ease;
}

.value-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 30%,
    rgba(255,0,184,.18),
    transparent 40%);

    pointer-events:none;
}

.value-card:hover{
    border:2px solid #ff00b8;

    box-shadow:
    0 0 18px rgba(255,0,184,.6),
    0 0 40px rgba(255,0,184,.25);
}

.value-card:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 20px rgba(255,0,184,.45);
}

.value-icon{
    min-width:90px;
    text-align:center;
}

.value-icon i{
    font-size:70px;
    color:#ffffff;
}

.value-content h3{
    color:#ffffff;
    font-size:23px;
    font-weight:700;
    margin-bottom:10px;
}

.value-content p{
    color:#ffffff;
    font-size: 17px;
    line-height: 25px;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .values-grid{
        grid-template-columns:1fr;
    }

    .values-title{
        font-size:54px;
    }

    .value-content h3{
        font-size:32px;
    }

    .value-content p{
        font-size:18px;
    }
}

/* Mobile */

@media(max-width:767px){

    .our-values-section{
        padding:70px 20px;
    }

    .values-title{
        font-size:40px;
    }

    .value-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .value-icon i{
        font-size:55px;
    }

    .value-content h3{
        font-size:28px;
    }

    .value-content p{
        font-size:16px;
    }
}
/*====================== Our Program Section =======================*/

.our-programs{
    background:#020d1b;
    padding:80px 0;
}

.sub-title{
    color:#b5b5b5;
    font-size:14px;
    display:block;
}

.main-title{
    color:#ff00b7;
    font-weight:700;
    font-size:48px;
}

.program-card{
    background:#140722;
    border:1px solid #fff;;
    border-radius:15px;
    padding:15px;
    box-shadow:0 0 15px rgba(255,0,183,.25);
}

.program-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    border:2px solid #ff00b7;
}

.program-content{
    padding:15px;
}

.program-content h4{
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.program-content p{
    color: #fff;
    font-size: 16px;
    line-height:1.7;
}

.carousel-indicators{
    bottom:0;
}

.carousel-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50%;
}

@media(max-width:991px){

    .main-title{
        font-size:36px;
    }

    .program-card img{
        height:250px;
        margin-bottom:20px;
    }

    .program-content{
        padding:0;
    }
}
/*================================== Upcoming event section =======================================*/
.upcoming-events-section{
    background:#16051f;
    padding:90px 0;
    position:relative;
}

.section-heading{
    margin-bottom:50px;
}

.section-heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: #ff00b8;
    margin: 0;
}

.event-poster{
    border:2px solid #ff00b8;
    box-shadow:0 0 20px rgba(255,0,184,.45);
    overflow:hidden;
    position: sticky;
    top: 120px;
}

.event-poster img{
    width:100%;
    display:block;
}

.event-details h3{
    color:#fff;
    font-size: 25px;
    font-weight:700;
    margin-bottom:10px;
}

.event-price{
    color:#fff;
    font-size: 15px;
    margin-bottom:25px;
}

.event-info{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}
.event-btn{
  text-align: center;
}

.event-info li{
    color:#fff;
    font-size: 16px;
    margin-bottom:15px;
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.event-info i{
    color:#000;
    margin-top:4px;
}

.event-map{
    overflow:hidden;
    border-radius:4px;
    margin-bottom:30px;
}

.event-map iframe{
    width:100%;
    height:260px;
    border:none;
}

.btn-ticket{
    display:inline-block;
    background:#ff00b8;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    padding:18px 50px;
    border-radius:6px;
    transition:.3s;
}

.btn-ticket:hover{
    background:#d9009c;
    color:#fff;
}

@media(max-width:991px){

    .section-heading h2{
        font-size:42px;
    }

    .event-details h3{
        font-size:32px;
    }

    .event-info li{
        font-size:18px;
    }

    .btn-ticket{
        width:100%;
        text-align:center;
        font-size:18px;
        padding:15px;
    }
}
/*========================================= Why use section ========================================*/
.why-content{
  width: 20%;
  padding: 0 10px;
  min-height: 211px;
}
.why-1, .why-5{
  margin-top: 40px;
}
.why-2, .why-4{
  margin-top: 20px;
}
.join-us-section{
    background:#020d18;
    padding:90px 0;
    position:relative;
}

.section-title{
    max-width:1100px;
    margin:0 auto 50px;
}

.section-title h2{
    color: #ff00b8;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-title p{
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    max-width: 1200px;
    margin: auto;
    font-weight: 400;
}

.join-card{
    padding: 10px 15px;
    text-align:center;
    border-radius:25px;
    border:1px solid #ff00b8;
    background:
        
        url("../images/mission-banner.png") center center/cover no-repeat;
    background-size:cover;
    background-position:center;
    box-shadow:
        0 0 10px #ff00b8,
        0 0 25px rgba(255,0,184,.5);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.join-card h3{
    color:#fff;
    font-size: 18px;
    font-weight:700;
    margin-bottom:15px;
}

.join-card p{
    color:#fff;
    font-size:14px;
    line-height:1.6;
    margin:0;
}

.registration-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:50px;
}

.reg-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:260px;
    height:60px;
    background:linear-gradient(
        90deg,
        #ff008c 0%,
        #9b34d7 100%
    );
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    clip-path:polygon(
        0 0,
        88% 0,
        100% 50%,
        88% 100%,
        0 100%
    );
    transition:.3s;
}

.reg-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

@media(max-width:991px){

    .section-title h2{
        font-size:42px;
    }

    .join-card{
        min-height:auto;
    }

    .reg-btn{
        width:100%;
        max-width:350px;
    }
}
/*============================ Our Impact section ==================*/
.our-impact-section{
    background:#020d18;
    padding:100px 0;
}

.impact-image{
    border:2px solid #ff00b8;
    border-radius:8px;
    overflow:hidden;
    box-shadow:
        0 0 10px #ff00b8,
        0 0 25px rgba(255,0,184,.35);
}

.impact-image img{
    width:100%;
    display:block;
}

.impact-content h2{
    color:#ff00b8;
    font-size:72px;
    font-weight:800;
    margin-bottom:25px;
    line-height:1;
}

.impact-content p{
    color:#ffffff;
    font-size: 15px;
    line-height: 25px;
    margin-bottom:18px;
}

.impacts-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.impacts-list li{
    color:#ffffff;
    font-size:20px;
    margin-bottom:16px;
    position:relative;
    padding-left:35px;
}

.impacts-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#ff00b8;
    font-weight:700;
    font-size:22px;
}

@media(max-width:991px){

    .our-impact-section{
        padding:70px 0;
    }

    .impact-content{
        text-align:center;
    }

    .impact-content h2{
        font-size:42px;
    }

    .impact-content p{
        font-size:16px;
    }

    .impacts-list li{
        text-align:left;
        font-size:17px;
    }
}
/*======================== Leadership Section =====================================*/
.leadership-section{
    background:#020d18;
    padding:100px 0;
    position:relative;
}

.leadership-section .section-title{
    margin-bottom:50px;
}

.leadership-section .section-title h2{
    color:#ff00b8;
    font-size: 55px;
    font-weight: 600;
    margin:0;
}

.leadership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    align-items:center;
}

.leadership-card{
    min-height:165px;
    padding:30px 15px;
    text-align:center;
    border-radius:25px;
    border:1px solid #ff00b8;

    background:
    url("../images/mission-banner.png") center center/cover no-repeat;

    background-size:cover;
    background-position:center;

    box-shadow:
    0 0 12px #ff00b8,
    0 0 25px rgba(255,0,184,.5);
}

.leadership-card h3{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
}

.leadership-card p{
    color:#fff;
    font-size:14px;
    line-height:1.5;
    margin:0;
}

.leadership-center-btn{
    display:flex;
    justify-content:center;
    align-items:center;
}


.leadership-center-btn a:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .leadership-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .leadership-section .section-title h2{
        font-size:42px;
    }

    .leadership-card{
        min-height:auto;
    }

    .leadership-center-btn{
        order:6;
    }
}
/*=========================== Contact Section ==================================*/
.contact-section{
    background:#180726;
    padding:100px 0;
}

.contact-section .section-heading{
    margin-bottom:50px;
}

.contact-section .section-heading h2{
    color:#ff00b8;
    font-size: 52px;
    font-weight: 600;
    margin:0;
}

/* Form Box */

.contact-form-box{
    padding:40px;
    border:2px solid #ff00b8;
    background:
    linear-gradient(rgba(40,10,55,.85),rgba(15,8,40,.85)),
    url('images/contact-bg.jpg');
    background-size:cover;
    background-position:center;
    box-shadow:
    0 0 12px #ff00b8,
    0 0 30px rgba(255,0,184,.45);
}

.contact-form-box label{
    color:#fff;
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.contact-form-box .form-control{
    height:55px;
    border:none;
    border-radius:4px;
    box-shadow:none;
}

.contact-form-box textarea.form-control{
    height:200px;
    resize:none;
    padding-top:15px;
}

.submit-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:6px;
    font-size:18px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(
        90deg,
        #ff008c,
        #ff00b8
    );
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
}

/* Contact Info */

.contact-info{
    padding-left:30px;
}

.contact-info h3{
    color:#fff;
    font-size: 25px;
    font-weight:700;
    margin-bottom:25px;
}

.contact-info ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.contact-info ul li{
    color:#fff;
    font-size:15px;
    margin-bottom:15px;
}

.contact-info ul li i{
    color:#ff00b8;
    margin-right:12px;
}

.contact-map{
    overflow:hidden;
}

.contact-map iframe{
    width:100%;
    height:300px;
    border:none;
}

/* Responsive */

@media(max-width:991px){

    .contact-section{
        padding:70px 0;
    }

    .contact-section .section-heading h2{
        font-size:42px;
    }

    .contact-info{
        padding-left:0;
        margin-top:40px;
    }

    .contact-info h3{
        font-size:32px;
    }

    .contact-info ul li{
        font-size:18px;
    }

    .contact-form-box{
        padding:25px;
    }
}
/*================================ Footer Section ==================================*/
.festival-footer{
    background:#020d18;
    padding:60px 0 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-about,
.footer-contact{
    text-align:center;
}

.footer-about h3,
.footer-contact h3{
    color: #ff00b8;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 0px;
}

.footer-about p{
    color:#ffffff;
    font-size:14px;
    line-height:1.6;
    max-width:420px;
    margin:auto;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
}

.social-icons a{
    width:40px;
    height:40px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.social-icons i{
    color:#111;
    font-size:19px;
}

.footer-info{
    color:#fff;
}

.info-item{
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

.info-item i{
    color:#ff00b8;
    margin-right:10px;
}

.footer-buttons{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
}

.footer-btn{
    width:320px;
    text-align:center;
    padding:13px 25px;
    border-radius:6px;
    text-decoration:none;
    color:#fff;
    font-size:18px;
    font-weight:700;
    background:linear-gradient(
        90deg,
        #ff008c 0%,
        #9f3fe5 100%
    );
    transition:.3s;
}

.footer-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    background: #fff;
    color: #FF009D;
    box-shadow: 0 0 12px rgba(255, 0, 157, 0.5), 0 0 28px rgba(255, 0, 157, 0.35);
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
}

.footer-bottom p{
    color:#fff;
    font-size:13px;
    font-style:italic;
    margin:0;
}

.footer-bottom a{
    color:#ff00b8;
    text-decoration:underline;
}

@media(max-width:991px){

    .footer-about h3,
    .footer-contact h3{
        font-size:40px;
    }

    .footer-btn{
        width:100%;
        max-width:320px;
    }

    .footer-bottom{
        margin-top:30px;
    }
}

.custom-slider {
    position: relative;
    overflow: hidden;
    border: 2px solid #ff00b8;
    border-radius: 10px;
}

.slides {
    display: flex;
    width: 200%;
    animation: slideAnimation 8s infinite;
}

.slides img {
    width: 50%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@keyframes slideAnimation {
    0%, 45% {
        transform: translateX(0);
    }

    50%, 95% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

.slider-dots .dot.active {
    background: #ff00b8;
}
@media(max-width:991px){
  .nav-desktop ul li a{
    font-size: 13px;
  }
  .why-content {
    width: 50%;
    min-height: auto; 
    margin-bottom: 30px; 
  }
  .why-1, .why-5 {
    margin-top: 0;
  }
  .why-2, .why-4 {
    margin-top: 0px;
  }
  .registration-buttons{
    margin-top: 0;
  }
}
@media(max-width:767px){
  .why-content{
    width: 100%;
  }
}
.scarborough-festival-content h2 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
    text-align: left;
}

.scarborough-festival-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
    
}

.scarborough-festival-content h3::before {
    content: "";
    width: 6px;
    height: 100%;
    background: #f4a100;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.scarborough-festival-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    display:block;
    color:#fff;
}

.scarborough-festival-content strong {
    color: #fff;
}

.scarborough-festival-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.scarborough-festival-content ul li {
    font-size: 18px;
    line-height: 1.8;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: #f8f8f8;
    border-left: 5px solid #f4a100;
    border-radius: 8px;
    transition: all 0.3s ease;
    color:#000;
}
.scarborough-festival-content ul li strong{
    color:#d62828;
}
.scarborough-festival-content ul li:hover {
    transform: translateX(5px);
    background: #fff7e8;
    color: #000;
}

.festival-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.festival-highlights li {
    background: linear-gradient(135deg, #b30000, #d62828);
    color: #fff;
    border-left: none !important;
    font-weight: 500;
    padding: 18px 20px;
}

.festival-highlights li:hover {
    background: linear-gradient(135deg, #d62828, #f4a100);
    color: #fff;
}

.festival-hashtags {
    margin-top: 40px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #b30000, #d62828);
    border-radius: 12px;
}

.festival-hashtags p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.festival-hashtags strong {
    color: #fff;
}

/* CTA Section */
.festival-cta {
    text-align: center;
    margin-top: 40px;
}

.festival-cta a {
    display: inline-block;
    background: #f4a100;
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.festival-cta a:hover {
    background: #b30000;
    color: #fff;
}

/* Responsive */

@media (max-width: 991px) {

    .scarborough-festival-content h2 {
        font-size: 34px;
    }

    .scarborough-festival-content h3 {
        font-size: 26px;
    }

    .festival-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .scarborough-festival-content {
        padding: 50px 15px;
    }

    .scarborough-festival-content h2 {
        font-size: 28px;
    }

    .scarborough-festival-content h3 {
        font-size: 22px;
    }

    .scarborough-festival-content p,
    .scarborough-festival-content ul li {
        font-size: 16px;
    }

    .festival-hashtags p {
        font-size: 16px;
    }
}