@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Poppins:wght@300;400;500;600&display=swap');

.yellow-line-event{
    color: #F7A707;
    font-weight: 400;
}
/* Section Base Wrapper */
.events-m6-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 20px 100px 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 150px;
}

.events-m6-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Header & Dropdown Row Layout */
.events-m6-header-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 35px;
}

/* Custom Dropdown Container */
.events-m6-dropdown-wrapper {
  position: relative;
  background-color: #052622; /* Dark Green Palette */
  border: 1.5px solid #052622;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  user-select: none;
  min-width: 250px;
  box-sizing: border-box;
}

.events-m6-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.events-m6-custom-select {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  margin-left: auto;
}

.events-m6-selected-text {
  font-size: 16px;
  font-weight: 600;
}

.events-m6-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Dropdown Open Arrow Rotation */
.events-m6-dropdown-wrapper.events-m6-open .events-m6-arrow-icon {
  transform: rotate(180deg);
}

/* Custom Options Floating Panel */
.events-m6-options-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: -1.5px;
  right: -1.5px;
  background-color: #052622;
  border: 1.5px solid #052622;
  z-index: 50;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.events-m6-dropdown-wrapper.events-m6-open .events-m6-options-panel {
  display: flex;
}

.events-m6-option {
  padding: 12px 20px;
  color: #ffffff;
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.events-m6-option:hover,
.events-m6-option.events-m6-active {
  background-color: #F7A707; /* Gold Accent */
  color: #052622;
  font-weight: 600;
}


/* Thumbnail Overlay Container */
.events-m6-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Thumbnail Image */
.events-m6-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.events-m6-thumbnail-overlay:hover .events-m6-thumb-img {
  transform: scale(1.03);
  opacity: 1;
}

/* Red / Yellow Play Button */
.events-m6-play-btn {
  position: absolute;
  width: 68px;
  height: 48px;
  background-color: #F7A707; /* Theme Yellow / Red Color */
  border: none;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.events-m6-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.events-m6-thumbnail-overlay:hover .events-m6-play-btn {
  background-color: #ff0000; /* YouTube Red on Hover */
  transform: scale(1.1);
}

/* Hide Thumbnail Class */
.events-m6-thumbnail-overlay.events-m6-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Main Golden Framed Media Box */
.events-m6-media-frame {
  position: relative;
  border: 2px solid #F7A707; /* Yellow/Gold Border */
  padding: 24px;
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive YouTube Aspect Ratio Wrapper */
.events-m6-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 54%; /* Aspect Ratio approx 16:9 */
  height: 0;
  background-color: #000000;
  overflow: hidden;
}

.events-m6-youtube-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Overlapping Bottom-Left Badge */
.events-m6-badge-box {
  position: absolute;
  left: -80px;
    bottom: -120px;
  width: 220px;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border: 2px solid #F7A707;
  padding: 14px;
  box-sizing: border-box;
  text-decoration: none;
  z-index: 10;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-m6-badge-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(229, 176, 56, 0.25);
}

.events-m6-badge-inner {
  background-color: #F7A707; /* Solid Yellow Box */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

.events-m6-yt-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-m6-yt-icon svg {
  width: 100%;
  height: 100%;
}

.events-m6-badge-text {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (All Screen Sizes)
   ========================================== */

/* Laptop / Small Desktop */
@media (max-width: 1024px) {
  .events-m6-media-frame {
    padding: 18px;
  }
  .events-m6-badge-box {
    width: 180px;
    left: -15px;
    bottom: -30px;
    padding: 10px;
  }
  .events-m6-badge-text {
    font-size: 12px;
  }
}

/* Tablets (Portrait & Landscape) */
@media (max-width: 768px) {
  .events-m6-section {
    padding: 40px 15px 80px 15px;
  }
  .events-m6-header-row {
    justify-content: center;
  }
  .events-m6-dropdown-wrapper {
    width: 100%;
    max-width: 320px;
  }
  .events-m6-media-frame {
    padding: 12px;
  }
  .events-m6-badge-box {
    width: 150px;
    left: -10px;
    bottom: -25px;
    padding: 8px;
  }
  .events-m6-yt-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
  }
  .events-m6-badge-text {
    font-size: 10.5px;
  }
}

/* Mobile Devices (All Sizes) */
@media (max-width: 480px) {
  .events-m6-section {
    padding: 30px 10px 70px 10px;
  }
  .events-m6-media-frame {
    padding: 8px;
    border-width: 1.5px;
  }
  /* On mobile, stack badge gracefully inside or bottom center */
  .events-m6-badge-box {
    position: relative;
    left: 0;
    bottom: 0;
    margin: 15px auto 0 auto;
    width: 160px;
  }
  .events-m6-dropdown-wrapper {
    min-width: 100%;
  }
}

/* External Section Container (White Background around dark banner) */
.events-m6-intro-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0 60px 0; /* टॉप पैडिंग लोगो को ऊपर स्पेस देने के लिए */
  position: relative;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Dark Green Main Banner */
.events-m6-intro-container {
  width: 100%;
  margin: 0 auto;
  background-color: #052622; /* Dark Green Color from layout */
  padding: 60px 140px;
  position: relative;
  box-sizing: border-box;
  margin-bottom:150px;
}

/* Floating Top-Right White Card */
.events-m6-intro-logo-card {
  position: absolute;
  top: -100px; /* डार्क ग्रीन बॉक्स से 50% बाहर लटकने का लॉजिक */
  right: 120px;
  width: 230px;
  height: 230px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}

.events-m6-intro-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Main Heading (Gold / Yellow Serif Typography) */
.events-m6-intro-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 6.2rem);
  color: #F7A707; /* Gold Accent */
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 70%; /* लोगो कार्ड से टेक्स्ट टकराए नहीं */
}

/* Body Text Styling */
.events-m6-intro-paragraph {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0 0 24px 0;
  letter-spacing: 0.2px;
  font-family: 'Poppins', sans-serif;
}

.events-m6-intro-paragraph:last-child {
  margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Laptops to Mobile)
   ========================================== */

/* Laptops & Medium Desktops (1024px to 1200px) */
@media (max-width: 1200px) {
  .events-m6-intro-container {
    max-width: 90%;
    padding: 50px 50px;
  }
  .events-m6-intro-logo-card {
    right: 40px;
    width: 180px;
    height: 180px;
    top: -50px;
  }
}

/* Tablets (768px to 1023px) */
@media (max-width: 1023px) {
  .events-m6-intro-section {
    padding: 70px 0 40px 0;
  }
  .events-m6-intro-container {
    padding: 50px 35px 40px 35px;
  }
  .events-m6-intro-logo-card {
    right: 30px;
    width: 150px;
    height: 150px;
    top: -45px;
    padding: 12px;
  }
  .events-m6-intro-heading {
    max-width: 65%;
    margin-bottom: 25px;
  }
  .events-m6-intro-paragraph {
    font-size: 14.5px;
    line-height: 1.7;
  }
}

/* Mobile Devices (Max 767px) */
@media (max-width: 767px) {
  .events-m6-intro-section {
    padding: 60px 15px 30px 15px;
  }
  .events-m6-intro-container {
    max-width: 100%;
    padding: 70px 20px 30px 20px; /* लोगो के लिए टॉप स्पेस */
  }
  
  /* मोबाइल में लोगो कार्ड सेंटर में ऊपर सेट होगा */
  .events-m6-intro-logo-card {
    right: 50%;
    transform: translateX(50%);
    top: -45px;
    width: 130px;
    height: 130px;
    padding: 10px;
  }

  .events-m6-intro-heading {
    max-width: 100%;
    text-align: center;
    font-size: 2.2rem;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .events-m6-intro-paragraph {
    font-size: 13.5px;
    line-height: 1.65;
    text-align: justify;
    margin-bottom: 18px;
  }
}

/* Extra Small Mobiles (Max 400px) */
@media (max-width: 400px) {
  .events-m6-intro-heading {
    font-size: 1.8rem;
  }
}

/* Section Base Container */
.events-m6-grid-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 20px 80px 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin-bottom:150px;
}

.events-m6-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); /* Left Grid & Right Image */
  gap: 40px;
  align-items: center;
}

/* --- LEFT SIDE: 2x2 CARDS GRID --- */
.events-m6-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
}

/* Card General Outer Frame */
.events-m6-card {
  aspect-ratio: 1 / 1; /* Perfect Square Cards */
  padding: 16px;
  box-sizing: border-box;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.events-m6-card:hover {
  transform: translateY(-50%);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Inner Solid Colored Content Block */
.events-m6-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

.events-m6-card-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}

/* Card Theme 1: Dark Green */
.events-m6-card-dark {
  border: 2px solid #052622;
}
/* Normal State (जैसा पहले था) */
.events-m6-card-dark {
  border: 2px solid #052622;
  transition: all 0.3s ease; /* स्मूथ इफ़ेक्ट के लिए transition */
}

.events-m6-card-dark .events-m6-card-inner {
  background-color: #052622;
  transition: all 0.3s ease;
}

.events-m6-card-dark .events-m6-card-text {
  color: #ffffff;
  transition: all 0.3s ease;
}

/* ==========================================
   HOVER STATE (Hover करने पर Yellow होगा)
   ========================================== */

/* Outer Border Yellow होगा */
.events-m6-card-dark:hover {
  border-color: #e5b038;
}

/* Inner Background Yellow होगा */
.events-m6-card-dark:hover .events-m6-card-inner {
  background-color: #F7A707;
}

/* Text readable रखने के लिए Hover पर Dark Green हो जाएगा */
.events-m6-card-dark:hover .events-m6-card-text {
  color: #052622;
}
.events-m6-card-dark .events-m6-card-text {
  color: #ffffff;
}

/* Card Theme 2 & 3: Gold / Yellow */
.events-m6-card-gold {
  border: 2px solid #F7A707;
}
.events-m6-card-gold .events-m6-card-inner {
  background-color: #F7A707;
}
.events-m6-card-gold .events-m6-card-text {
  color: #052622;
}

/* Card Theme 4: Light Grey */
.events-m6-card-grey {
  border: 2px solid #e5e7e6;
}
.events-m6-card-grey .events-m6-card-inner {
  background-color: #e5e7e6;
}
.events-m6-card-grey .events-m6-card-text {
  color: #052622;
}


/* --- RIGHT SIDE: FEATURED IMAGE FRAME --- */
.events-m6-showcase-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Double Frame Borders */
.events-m6-showcase-frame {
  position: relative;
  border: 1px solid #e0e0e0;
  padding: 12px;
  background-color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.events-m6-showcase-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 13;
  object-fit: cover;
  display: block;
}

/* Overlapping Bottom-Right Share Button */
.events-m6-share-btn {
  position: absolute;
  right: -15px;
  bottom: -25px;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border: 2px solid #F7A707;
  padding: 8px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-m6-share-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(229, 176, 56, 0.3);
}

.events-m6-share-inner {
  background-color: #F7A707;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.events-m6-share-inner svg {
  width: 24px;
  height: 24px;
}


/* ==========================================
   RESPONSIVE MEDIA QUERIES (All Screen Sizes)
   ========================================== */

/* Laptops & Desktops (1024px to 1200px) */
@media (max-width: 1200px) {
  .events-m6-grid-container {
    gap: 30px;
  }
  .events-m6-card {
    padding: 12px;
  }
  .events-m6-card-text {
    font-size: 13px;
  }
}

/* Tablets (768px to 1023px) */
@media (max-width: 1023px) {
  .events-m6-grid-container {
    grid-template-columns: 1fr; /* Switch to Single Column */
    gap: 50px;
  }

  .events-m6-cards-grid {
    max-width: 550px;
    margin: 0 auto;
  }

  .events-m6-showcase-wrapper {
    max-width: 650px;
    margin: 0 auto;
  }

  .events-m6-share-btn {
    right: 10px;
    bottom: -20px;
    width: 70px;
    height: 70px;
  }
}

/* Mobile Devices (Max 600px) */
@media (max-width: 600px) {
  .events-m6-grid-section {
    padding: 40px 15px 60px 15px;
  }

  .events-m6-cards-grid {
    gap: 15px;
  }

  .events-m6-card {
    padding: 8px;
  }

  .events-m6-card-text {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.2px;
  }

  .events-m6-showcase-frame {
    padding: 8px;
  }

  .events-m6-share-btn {
    right: 5px;
    bottom: -15px;
    width: 60px;
    height: 60px;
    padding: 6px;
  }

  .events-m6-share-inner svg {
    width: 18px;
    height: 18px;
  }
}

/* Outer Section Setup */
.events-m6-marquee-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px 100px 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin-bottom:100px;
}

.events-m6-marquee-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
}

/* 1. TOP-LEFT OVERLAPPING BADGE */
.events-m6-badge-top-left {
  position: absolute;
  top: -120px;
  left: 60px;
  width: 220px;
  background-color: #ffffff;
  border: 2px solid #e5e7e6;
  padding: 10px;
  box-sizing: border-box;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.events-m6-badge-inner {
  padding: 25px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.events-m6-badge-logo {
  height: 35px;
  width: auto;
  margin-bottom: 12px;
}

.events-m6-badge-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: #052622;
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.events-m6-badge-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: #052622;
  margin: 0;
}

/* 2. MARQUEE HERO BACKGROUND & OVERLAY */
.events-m6-marquee-bg-wrapper {
  position: relative;
  width: 100%;
  height: 380px; /* एक लाइन के लिए ऊँचाई कम और सेट कर दी गई है */
  background-color: #052622;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
}

.events-m6-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.65);
  transform: scale(1.05);
}

.events-m6-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 38, 34, 0.45);
}

/* 3. SINGLE LINE CONTINUOUS MARQUEE ANIMATION */
.events-m6-marquee-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
}

.events-m6-marquee-track {
  display: flex;
  width: max-content;
  /* 25 सेकंड में धीरे-धीरे बिना रुके चलेगा */
  animation: eventsM6Scroll 25s linear infinite;
}

/* माउस ले जाने पर मूवमेंट रुक जाएगी */
.events-m6-marquee-bg-wrapper:hover .events-m6-marquee-track {
  animation-play-state: paused;
}

@keyframes eventsM6Scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.events-m6-marquee-group {
  display: flex;
  align-items: center;
  gap: 50px; /* एक लाइन में दो लोगोज़ के बीच की दूरी */
  padding-right: 50px;
}

/* Individual Clickable Partner Logo Frame */
.events-m6-logo-link {
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.events-m6-logo-link:hover {
  transform: scale(1.15);
}

.events-m6-partner-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Black SVG Icons को White बना देगा */
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.events-m6-logo-link:hover .events-m6-partner-img {
  opacity: 1;
}

/* Highlighted White Square Card */
.events-m6-highlight-card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 8px 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.events-m6-highlight-card .events-m6-partner-img {
  filter: none;
  opacity: 1;
}

/* 4. BOTTOM-RIGHT OVERLAPPING BOX */
.events-m6-badge-bottom-right {
  position: absolute;
  bottom: -120px;
  right: 60px;
  width: 200px;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border: 2px solid #e5e7e6;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none !important;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.events-m6-badge-bottom-right:hover {
  transform: translateY(-4px);
}

.events-m6-partnership-inner {
  background-color: #e2e5df;
  padding: 20px 15px;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.events-m6-partnership-text {
  color: #052622;
  font-size: 13.5px;
  line-height: 1.4;
  margin: 0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .events-m6-badge-top-left { left: 20px; width: 180px; }
  .events-m6-badge-bottom-right { right: 20px; width: 180px; }
  .events-m6-marquee-bg-wrapper { height: 320px; }
  .events-m6-marquee-group { gap: 35px; padding-right: 35px; }
}

@media (max-width: 768px) {
  .events-m6-marquee-section { padding: 40px 15px 60px 15px; }
  .events-m6-badge-top-left {
    position: relative;
    top: 0; left: 0;
    margin: 0 auto 20px auto;
    width: 200px;
  }
  .events-m6-badge-bottom-right {
    position: relative;
    bottom: 0; right: 0;
    margin: 20px auto 0 auto;
    width: 200px;
  }
  .events-m6-marquee-bg-wrapper { height: 260px; }
  .events-m6-logo-link { width: 90px; height: 50px; }
  .events-m6-partnership-inner {
 
  aspect-ratio: unset;
}
}



/* Main Section Wrapper */
.events-m6-why-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  margin-bottom:100px;
}

/* Outer Container */
.events-m6-why-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0 60px 0; 
}

/* 1. DARK GREEN BACKGROUND FRAME */
.events-m6-why-green-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 53%;
  height: 100%;
  background-color: #03211c;
  z-index: 1;
}

/* 2. LIGHT GREY FOREGROUND CARD */
.events-m6-why-grey-card {
  position: relative;
  z-index: 2;
  margin-left: 60px;
  width: calc(100% - 60px);
  background-color: #e3e5df;
  padding: 55px 50px 55px 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 45px;
}

/* Left Title & Subtitle Column */
.events-m6-why-title-col {
  flex: 0 0 30%;
  padding-top: 10px;
}

.events-m6-why-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  color: #03211c;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 1.2px;
  margin: 0 0 25px 0;
  text-transform: uppercase;
}

/* Yellow / Gold Subtitle */
.events-m6-why-subheading {
  color: #e5b038;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  margin-left: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Right Content Column */
.events-m6-why-list-col {
  flex: 1;
}

/* Intro Paragraph */
.events-m6-why-intro-text {
  color: #111111;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 20px 0;
  font-family: 'Poppins', sans-serif;
}

/* Ring Circle Bullet List (`o` Marker) */
.events-m6-why-list {
  list-style-type: circle; /* Ring shape like 'o' */
  padding-left: 18px;
  margin: 0;
}

.events-m6-why-list li {
  color: #222222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.events-m6-why-list li:last-child {
  margin-bottom: 0;
}

.events-m6-why-list li strong {
  color: #000000;
  font-weight: 700;
}

.events-m6-why-list li::marker {
  color: #03211c;
  font-size: 1em;
}


/* ==========================================
   RESPONSIVE LAYOUT FOR ALL SCREENS
   ========================================== */

/* Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
  .events-m6-why-grey-card {
    margin-left: 40px;
    margin-top: 40px;
    width: calc(100% - 40px);
    padding: 40px 35px;
    gap: 30px;
  }
  .events-m6-why-intro-text, 
  .events-m6-why-list li {
    font-size: 13.5px;
    margin-bottom: 12px;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .events-m6-why-section {
    padding: 50px 15px;
  }

  .events-m6-why-green-frame {
    width: 75%;
    height: 85%;
  }

  .events-m6-why-grey-card {
    flex-direction: column;
    margin-left: 25px;
    margin-top: 30px;
    width: calc(100% - 25px);
    padding: 35px 25px;
    gap: 20px;
  }

  .events-m6-why-title-col {
    flex: 0 0 100%;
    padding-top: 0;
  }

  .events-m6-why-heading {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }

  .events-m6-why-subheading {
    font-size: 15px;
  }
}

/* Mobile Devices (Max 767px) */
@media (max-width: 767px) {
  .events-m6-why-section {
    padding: 30px 10px;
  }

  .events-m6-why-green-frame {
    width: 90%;
    height: 95%;
  }

  .events-m6-why-grey-card {
    margin-left: 15px;
    margin-top: 20px;
    width: calc(100% - 15px);
    padding: 25px 16px;
  }

  .events-m6-why-heading {
    font-size: 2.3rem;
  }

  .events-m6-why-intro-text, 
  .events-m6-why-list li {
    font-size: 12.8px;
    line-height: 1.55;
  }

  .events-m6-why-list {
    padding-left: 15px;
  }
   .events-m6-why-subheading {
    margin: 0

  }
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Main Section Wrapper */
.events-m6-media-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px 100px 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.events-m6-media-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Main Heading */
.events-m6-media-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: #e5b038; /* Gold Accent Color */
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 40px 0;
  text-transform: uppercase;
}

/* Top Action Boxes Row */
.events-m6-top-boxes-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.events-m6-btn-box {
  padding: 16px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  text-align: center;
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-m6-btn-box:hover {
  transform: translateY(-3px);
}

/* Detailed Media Plan Box (Dark Green) */
.events-m6-plan-box {
  background-color: #03211c;
  border: 2px solid #03211c;
  outline: 1.5px solid #03211c;
  outline-offset: 4px;
}

.events-m6-plan-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.events-m6-plan-year {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* Media Contact Box (Gold Yellow) */
.events-m6-contact-box {
  background-color: #e5b038;
  border: 2px solid #e5b038;
  outline: 1.5px solid #e5b038;
  outline-offset: 4px;
  cursor: pointer;
}

.events-m6-contact-label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.events-m6-contact-name {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.events-m6-contact-link {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.events-m6-contact-sep {
  color: #ffffff;
  margin: 0 4px;
  font-size: 12px;
}
/* Top Action Boxes Row */
.events-m6-top-boxes-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* दोनों बटनों का एक समान साइज (Fixed Equal Size) */
.events-m6-btn-box {
  width: 320px;            /* दोनों की चौड़ाई सेम होगी */
  height: 95px;            /* दोनों की ऊँचाई सेम होगी */
  padding: 12px 20px;
  box-sizing: border-box;  /* बॉर्डर और पैडिंग को साइज़ में शामिल रखेगा */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-m6-btn-box:hover {
  transform: translateY(-3px);
}

/* Detailed Media Plan Box (Dark Green) */
.events-m6-plan-box {
  background-color: #03211c;
  border: 2px solid #03211c;
  outline: 1.5px solid #03211c;
  outline-offset: 4px;
}

.events-m6-plan-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.events-m6-plan-year {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* Media Contact Box (Gold Yellow) */
.events-m6-contact-box {
  background-color: #e5b038;
  border: 2px solid #e5b038;
  outline: 1.5px solid #e5b038;
  outline-offset: 4px;
}

.events-m6-contact-label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.events-m6-contact-name {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

/* लिंक्स और सेपरेटर को एक लाइन में रखने के लिए */
.events-m6-contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.events-m6-contact-link {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.events-m6-contact-sep {
  color: #ffffff;
  font-size: 12px;
}

/* मोबाइल रिस्पॉन्सिव */
@media (max-width: 767px) {
  .events-m6-btn-box {
    width: 100%;       /* मोबाइल स्क्रीन पर पूरी चौड़ाई ले लेंगे */
    max-width: 320px;
  }
}
/* Interactive Navigation Tabs */
.events-m6-tabs-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.events-m6-tab-btn {
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  position: relative;
  padding: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
}

.events-m6-tab-btn:hover {
  color: #e5b038;
}

.events-m6-tab-dot {
  width: 8px;
  height: 8px;
  background-color: #e5b038;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

/* Active Tab Indicator */
.events-m6-tab-btn.events-m6-tab-active {
  color: #e5b038;
}

.events-m6-tab-btn.events-m6-tab-active .events-m6-tab-dot {
  opacity: 1;
  transform: scale(1);
}

/* Tab Content Visibility */
.events-m6-tab-content {
  display: none;
  animation: eventsM6FadeIn 0.4s ease;
}

.events-m6-tab-content.events-m6-content-active {
  display: block;
}

@keyframes eventsM6FadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Media Items 4-Column Grid */
.events-m6-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 25px;
}

.events-m6-media-card {
  display: flex;
  flex-direction: column;
}

/* Thumbnail Box with Cross Wireframe Lines */
.events-m6-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.35;
  border: 1px solid #d0d0d0;
  background-color: #fbfbfb;
  margin-bottom: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Cross Wireframe Lines Effect (like in screenshot) */
.events-m6-thumb-box::before,
.events-m6-thumb-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.events-m6-thumb-box::before {
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), #d0d0d0 50%, transparent calc(50% + 0.5px));
}

.events-m6-thumb-box::after {
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), #d0d0d0 50%, transparent calc(50% + 0.5px));
}

.events-m6-card-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Text Styling */
.events-m6-pub-name {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 3px 0;
}

.events-m6-pub-page {
  font-size: 13.5px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 3px 0;
}

.events-m6-pub-date {
  font-size: 13.5px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (All Screens)
   ========================================== */

/* Laptops / Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
  .events-m6-media-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 20px;
  }
  .events-m6-tabs-header {
    gap: 40px;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .events-m6-media-section {
    padding: 60px 15px 80px 15px;
  }
  .events-m6-media-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on Tablet */
    gap: 25px 20px;
  }
  .events-m6-tab-btn {
    font-size: 18px;
  }
}

/* Mobiles (Max 767px) */
@media (max-width: 767px) {
  .events-m6-media-section {
    padding: 40px 12px 60px 12px;
  }
  .events-m6-media-main-title {
    font-size: 2.2rem;
  }
  .events-m6-top-boxes-row {
    gap: 20px;
  }
  .events-m6-btn-box {
    width: 100%;
    min-width: 100%;
  }
  .events-m6-tabs-header {
    gap: 20px;
    margin-bottom: 35px;
  }
  .events-m6-tab-btn {
    font-size: 15px;
  }
  .events-m6-media-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Columns on Mobile */
    gap: 20px 15px;
  }
}

/* Extra Small Mobiles (Max 420px) */
@media (max-width: 420px) {
  .events-m6-tabs-header {
    flex-direction: column;
    gap: 15px;
  }
  .events-m6-media-grid {
    grid-template-columns: 1fr; /* 1 Column on Small Mobile */
  }
}