/* ============================================================
   DESIGN TOKENS
============================================================ */:root {
  --ink:        #0d0f13;
  --ink-mid:    #1c2128;
  --ink-muted:  #767c88;
  --ink-ghost:  rgba(13, 15, 19, 0.08);
  --paper:      #ffffff;
  --paper-tint: #f7f7f8;
  --accent:     #111318;
  --accent-dim: rgba(17, 19, 24, 0.72);

  --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "DM Sans", ui-sans-serif, system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 80px;
  --pad-x: clamp(20px, 5vw, 72px);
}a {
  color: inherit;
  text-decoration: none;
}/* Reduce motion for users who prefer it *//* LOADER *//* ============================================================
   HEADER
============================================================ */.nav-action {
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}.brand {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      /* Smooth scale on hover/tap */
      transition: transform 0.2s ease;
    }.brand:active {
      transform: scale(0.95);
    }.brand img {
      display: block;
      width: 100px;
      height: auto; /* Changed to auto to maintain aspect ratio naturally */
      max-height: 40px;
      object-fit: contain;
    }/* Fallback logo text styling if image fails to load */.nav-action-wrapper {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 16px;
    }.nav-action {
      display: inline-flex;
      align-items: center;
      height: 40px;
      padding: 0 24px;
      border: 1.5px solid rgba(17, 19, 24, 0.2);
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      background: transparent;
      backdrop-filter: blur(4px);
      text-decoration: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s var(--ease-out-expo);
    }/* Interactive button hover & active states */.nav-action:hover {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }.nav-action:active {
      transform: translateY(1px) scale(0.96);
    }/* Mobile Hamburger Menu */.menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 40px;
      height: 40px;
      position: relative;
      z-index: 101;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(5px);
    }.menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background-color: var(--ink);
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.3s ease;
    }.menu-toggle span:nth-child(1) { top: 35%; }.menu-toggle span:nth-child(2) { top: 50%; }.menu-toggle span:nth-child(3) { top: 65%; }.menu-toggle.is-active span:nth-child(1) {
      top: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
    }.menu-toggle.is-active span:nth-child(2) {
      opacity: 0;
    }.menu-toggle.is-active span:nth-child(3) {
      top: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);
    }@media (max-width: 768px) {
.menu-toggle {
        display: block;
      }/* Move Explore button into the mobile menu if needed, or keep it up top.
         Let's keep it up top but smaller for mobile. */.nav-action {
        padding: 0 16px;
        font-size: 0.65rem;
      }
}/* ============================================================
           HERO SECTION
        ============================================================ */.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-top: 0;
    z-index: 10; /* Added z-index to keep Hero above the pulled-up Blog section */
}.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }.hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.6;
            transform: scale(1.05);
            transition: transform 0.5s ease-out;
        }.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.4) 50%, rgba(20,20,20,0.8) 100%);
            z-index: 2;
        }.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;

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

    text-align: center;
}.hero-subtitle {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            animation: fadeUp 1s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }.hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 700;
            line-height: 1.1;
            color: #ffffff;
            max-width: 800px;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
            animation: fadeUp 1s ease 0.2s forwards;
            opacity: 0;
            transform: translateY(20px);
        }.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}.btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            background: white;
            color: black;
            padding: 12px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 180px;
        }.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255,255,255,0.1);
        }.btn-primary .arrow-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border: 1px solid black;
            border-radius: 50%;
            margin-left: 16px;
            transition: transform 0.3s ease;
        }.btn-primary:hover .arrow-circle {
            transform: translateX(4px);
        }.btn-icon-blur {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
            text-decoration: none;
            transition: all 0.3s ease;
        }.btn-icon-blur:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }@keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }@media (max-width: 768px) {
.hero-content {
        padding: 0 20px;
    }.hero-actions {
        flex-direction: column;
        align-items: center;
    }
}.blogs-section-container {
    background: #fafafa;
    color: #111;
    font-family: var(--font-body);
}
.blogs-section-container * {
    box-sizing: border-box;
}/* ============================================================
           OUR BLOG CAROUSEL SECTION
        ============================================================ */.blog-slider-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            height: 550px;
            perspective: 1000px;
        }@media (min-width: 768px) {
.blog-slider-container { height: 600px; }
}.blog-card {
            position: absolute;
            top: 0;
            width: 280px;
            transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
            will-change: transform, opacity, left;
        }@media (min-width: 768px) {
.blog-card { width: 500px; }
}.blog-card-img-wrapper {
            width: 100%;
            aspect-ratio: 1.15 / 1;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: all 0.7s ease;
        }.blog-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }/* Carousel States */.slide-active {
            left: 50%;
            transform: translateX(-50%) scale(1);
            z-index: 50;
            opacity: 1;
        }.slide-prev {
            left: 15%;
            transform: translateX(-50%) scale(0.8);
            z-index: 40;
            opacity: 0.8;
        }.slide-next {
            left: 85%;
            transform: translateX(-50%) scale(0.8);
            z-index: 40;
            opacity: 0.8;
        }.slide-prev-2 {
            left: 0%;
            transform: translateX(-50%) scale(0.65);
            z-index: 30;
            opacity: 0.4;
        }.slide-next-2 {
            left: 100%;
            transform: translateX(-50%) scale(0.65);
            z-index: 30;
            opacity: 0.4;
        }@media (min-width: 768px) {
.slide-prev { left: 22%; }.slide-next { left: 78%; }.slide-prev-2 { left: 5%; }.slide-next-2 { left: 95%; }
}.slide-hidden-left {
            left: -15%;
            transform: translateX(-50%) scale(0.5);
            z-index: 10;
            opacity: 0;
            pointer-events: none;
        }.slide-hidden-right {
            left: 115%;
            transform: translateX(-50%) scale(0.5);
            z-index: 10;
            opacity: 0;
            pointer-events: none;
        }/* Title styling based on carousel state */.card-title-wrapper {
            margin-top: 1.5rem;
            text-align: center;
            padding: 0 1rem;
            transition: all 0.5s ease;
        }.slide-active .card-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: #111;
            text-decoration: none;
        }@media (min-width: 768px) {
.slide-active .card-title { font-size: 1.25rem; }
}.slide-prev .card-title,
        .slide-next .card-title {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 500;
            color: #555;
            text-decoration: underline;
            text-underline-offset: 4px;
        }/* Hide text completely for far slides */.slide-prev-2 .card-title-wrapper,
        .slide-next-2 .card-title-wrapper,
        .slide-hidden-left .card-title-wrapper,
        .slide-hidden-right .card-title-wrapper {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-10px);
        }/* Events Hero Section */.events-hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            background: #f5f5f5;
        }.events-heading {
            width: 100%;
            height: 180px;
            background: #f3f3f3;
            display: flex;
            align-items: center;
            justify-content: center;
        }.events-heading h1 {
            font-size: 62px;
            font-weight: 800;
            color: #000;
        }.blogs-hero-bg {
            width: 100%;
            height: 420px;
            background: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2000&q=80") center center/cover no-repeat;
            position: relative;
        }.blogs-hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.45);
        }.event-card {
            width: 88%;
            max-width: 1250px;
            height: 390px;
            margin: -110px auto 80px auto;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            z-index: 10;
            display: flex;
            align-items: stretch;
            background: linear-gradient(
                90deg,
                #07131b 0%,
                #0b1b24 35%,
                #0f2430 50%,
                #0b1b24 70%,
                #07131b 100%
            );
            box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        }.event-content {
            width: 40%;
            padding: 50px 40px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }.event-tag {
            display: inline-block;
            width: fit-content;
            background: #ff9d73;
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 18px;
            border-radius: 50px;
            margin-bottom: 80px;
        }.event-date {
            font-size: 14px;
            color: #d8d8d8;
            margin-bottom: 18px;
        }.event-content h2 {
            font-size: 40px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 22px;
        }.event-location {
            font-size: 15px;
            color: #d5d5d5;
        }.event-image {
            width: 23%;
            overflow: hidden;
            position: relative;
        }.event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }.right-side {
            flex: 1;
        }.slider-buttons {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 14px;
        }.slider-buttons button {
            width: 52px;
            height: 52px;
            border: none;
            border-radius: 50%;
            background: white;
            color: black;
            font-size: 28px;
            cursor: pointer;
            transition: 0.3s ease;
        }.slider-buttons button:hover {
            transform: scale(1.08);
        }@media(max-width: 992px){
.events-heading h1 { font-size: 42px; }.event-card { flex-direction: column; height: auto; }.event-content { width: 100%; }.event-image { width: 100%; height: 320px; }.event-content h2 { font-size: 30px; }.right-side { display: none; }.slider-buttons { bottom: 18px; }
}/* Events List Section */.events-list-section {
            width: 100%;
            padding: 20px 0 100px;
            background: #f5f5f5;
        }.event-list-card {
            width: 88%;
            max-width: 1250px;
            margin: 0 auto 28px auto;
            background: #fff;
            border-radius: 24px;
            display: flex;
            align-items: stretch;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
        }.event-list-image {
            width: 25%;
            min-height: 210px;
            overflow: hidden;
        }.event-list-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }.event-list-content {
            width: 50%;
            padding: 32px 34px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }.event-info-top {
            display: flex;
            gap: 22px;
            color: #9b9b9b;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 18px;
        }.event-list-content h2 {
            font-size: 28px;
            line-height: 1.3;
            color: #111;
            font-weight: 700;
            margin-bottom: 18px;
        }.event-list-content p {
            color: #8d8d8d;
            font-size: 15px;
        }.event-list-right {
            width: 25%;
            border-left: 1px solid #ececec;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            padding: 20px;
        }.book-btn {
            background: #FF724C;
            color: white !important;
            padding: 10px 24px;
            font-family: var(--font-display);
            font-weight: 700;
            border-radius: 999px;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 0.1em;
            transition: all 0.3s var(--ease-out-expo);
            text-decoration: none;
            text-align: center;
            display: inline-block;
            border: 1.5px solid #FF724C;
            cursor: pointer;
            width: 180px;
            height: auto;
        }.book-btn:hover {
            background: transparent;
            color: #FF724C !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 114, 76, 0.15);
        }.speakers {
            display: flex;
            align-items: center;
        }.speakers img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            margin-left: -10px;
        }.speakers img:first-child {
            margin-left: 0;
        }.speakers span {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #ff8a65;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
            margin-left: -10px;
        }@media(max-width: 992px){
.event-list-card { flex-direction: column; }.event-list-image, .event-list-content, .event-list-right { width: 100%; }.event-list-image { height: 260px; }.event-list-right { border-left: none; border-top: 1px solid #ececec; padding: 30px 20px; }.event-list-content h2 { font-size: 24px; }.event-info-top { flex-direction: column; gap: 8px; }.book-btn { width: 100%; }
}

@media (max-width: 768px) {
    .blog-slider-container {
        height: 380px !important;
    }
    .blog-card {
        width: 240px !important;
    }
    .slide-prev {
        left: 0% !important;
        opacity: 0.5 !important;
        transform: translateX(-50%) scale(0.75) !important;
    }
    .slide-next {
        left: 100% !important;
        opacity: 0.5 !important;
        transform: translateX(-50%) scale(0.75) !important;
    }
    .slide-prev-2, .slide-next-2 {
        display: none !important;
    }
}