/* General Body Styles */
body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #d9d9d9;
}

:root {
  /* Brand Colors derived from your existing design */
  --color-secondary: #000240;
  --color-primary: #5b007f;
  --color-primary-bg: #f3f0ff;
  --color-white: #ffffff;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-700: #374151;

  /* Fonts */
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* Layout */
  --container-max: 1400px;
  --container-padding: 24px;
  --header-height: 80px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;

  /* UI */
  --radius-md: 6px;
  --radius-lg: 12px;
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-fast: 0.2s ease;
}

.ht-80vh{
    height: 80vh !important;
}

.ht-60vh{
    height: 60vh !important;
}

.ht-50vh{
    height: 50vh !important;
}

.clr-orange{
    color: #ff6d01 !important;
}

.clr-purple{
    color: #5b007f !important;
}

/*Shimmer effect starts*/

.shimmer-text {
  background: linear-gradient(
    110deg, 
    #ff6d01 40%,   /* Your Base Orange Color */
    #ffffff 50%,   /* The Shine Color (White) */
    #ff6d01 60%    /* Your Base Orange Color */
  );

  background-size: 200% auto;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: shimmer 2.5s linear infinite;
  
  display: inline-block;
}

/* The Animation Keyframes */
@keyframes shimmer {
  to {
    background-position: -200% center;
  }
}
/*Shimmer effect ends*/

/*Shimmer effect starts*/

.shimmer-text-2 {
  background: linear-gradient(
    110deg, 
    #5b007f 40%,   /* Your Base Orange Color */
    #ff6d01 50%,   /* The Shine Color (White) */
    #5b007f 60%    /* Your Base Orange Color */
  );

  background-size: 200% auto;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: shimmer 2.5s linear infinite;
  
  display: inline-block;
}

/* The Animation Keyframes */
@keyframes shimmer {
  to {
    background-position: -200% center;
  }
}
/*Shimmer effect ends*/

.micro-heading {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ff6d01;
    margin-bottom: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================================
   Header style starts (Light Version - Redesigned) 
   ========================================================================= */

:root {
  --header-bg: #ffffff; 
  --header-logo-color: #5D0085; /* Deep purple matching screenshot */
  --header-nav-text: #334155;   /* Dark slate for elegant contrast */
  --header-nav-hover: #5D0085;  /* Purple text on hover */
  --header-cta-bg: #5D0085;
  --header-cta-hover: #4a006a;  /* Slightly darker purple for hover */
  --header-height: 80px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  height: var(--header-height);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06); /* Clean, subtle border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%; 
  margin: 0 auto;
  padding: 0 30px; /* Slightly more padding for breathing room */
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--header-logo-color);
  text-decoration: none;
  font-family: var(--font-display), sans-serif;
  font-weight: 800; /* Extra bold matching the screenshot */
  font-size: 1.75rem; 
  z-index: 1002;
  letter-spacing: -0.2px;
}

.header__logo:hover {
  color: var(--header-cta-hover);
}

/* Desktop Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 8px;
    color: var(--header-nav-text);
    font-family: var(--font-body), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

/* Removed background hover effect for a cleaner, text-only hover */
.nav__link:hover,
.nav__link--active {
  color: var(--header-nav-hover);
}

.nav__dropdown-icon {
  width: 12px;
  height: 12px;
  margin-top: 2px;
  transition: transform 0.2s ease;
  color: currentColor;
}

/* Dropdown Logic */
.nav__item:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% - 15px);
  left: 0; 
  min-width: 260px;
  padding: 8px;
  background: #ffffff; 
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  transform: translateY(10px);
}

.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 25px;
  background: transparent;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--header-nav-text);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body), sans-serif;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav__dropdown-item:hover {
  background: rgba(93, 0, 133, 0.05); /* Very light purple hover */
  color: var(--header-logo-color);
  padding-left: 20px;
}

.nav__dropdown-item--featured {
  background: rgba(255, 165, 0, 0.1);
  color: var(--header-logo-color);
  font-weight: 700;
  margin-bottom: 4px;
}

.nav__dropdown-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}

/* CTA Button */
.header__cta-group {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.btn-header {
  background-color: var(--header-cta-bg); 
  color: #ffffff;
  padding: 10px 26px;
  font-family: var(--font-body), sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 2px; /* Sharp corporate look */
}

.btn-header:hover {
  background-color: var(--header-cta-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(93, 0, 133, 0.25);
}

/* Mobile Toggle */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--header-logo-color); 
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
  transition: color 0.3s ease;
}

.header__mobile-toggle:hover {
  color: var(--header-cta-hover);
}

/* Mobile Menu Drawer (Light Theme to match desktop) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff; 
  z-index: 1001;
  padding: 100px 24px 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__item {
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0; 
  padding-bottom: 12px;
}

.mobile-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display), sans-serif;
  font-size: 1.15rem;
  color: var(--header-nav-text); 
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-nav__link:hover {
  color: var(--header-logo-color); 
}

.mobile-dropdown {
  display: none;
  padding-left: 10px;
  margin-top: 10px;
  background: #fcfcfc; 
  border-radius: 6px;
  border-left: 2px solid var(--header-logo-color);
}

.mobile-dropdown.is-open {
  display: block;
}

.mobile-dropdown__item {
  display: block;
  padding: 12px 10px;
  color: var(--header-nav-text);
  text-decoration: none;
  font-family: var(--font-body), sans-serif;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.mobile-dropdown__item:hover {
  color: var(--header-logo-color);
  padding-left: 15px;
  background: #f9f9f9;
}

.mobile-dropdown__item:last-child {
  border-bottom: none;
}

/* Responsiveness adjustments */
@media (max-width: 1400px) {
  .nav__link {
    padding: 8px 5px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1170px) {
  .header__nav {
    display: none;
  }
  .header__cta-group {
    display: none;
  }
  .header__mobile-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .header__logo {
    font-size: 1.5rem;
  }
  .header__inner {
    padding: 0 20px;
  }
}
/* Header style ends */

/* Hero Banner Styles */
.hero-banner {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("/images/home/IPR-banner-img.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  padding-left: 100px;
}

.hero-content {
  z-index: 1;
  text-align: left;
}

.edition-number {
  font-family: "DM Sans", sans-serif;
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 400;
  margin-bottom: 10px;
  -webkit-text-fill-color: #ffffff00;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ffffff;
}

.conference-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.conference-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #d9d9d9;
}

.get-ticket-link {
  background-color: transparent;
  color: #fff;
  border: 1px solid #ff6d01;
  padding: 0.8rem 2rem;
  border-radius: 0px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: fit-content;
}

.get-ticket-link:hover {
  background-color: #ff6d01;
  color: #ffffff;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff" class="bi bi-arrow-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive Styles */
@media (max-width: 1500px){
    .conference-title{
        font-size: 2.6rem;
        margin-top: 40px;
    }
}

@media (max-width: 1200px) {
  .hero-banner {
    padding-left: 70px;
    height: 100vh;
  }
  .conference-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 992px) {
  .navbar-brand {
    margin-left: 20px;
  }
  .get-ticket-btn {
    margin-right: 20px;
  }
  .hero-banner {
    padding-left: 50px;
    height: 100vh;
  }
  .conference-title {
    font-size: 2.2rem;
  }
  .edition-number {
    font-size: 5rem;
    line-height: 6rem;
  }
  .conference-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    background-color: #131313;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
  }
  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }
  .get-ticket-btn {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-banner {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    height: 100vh;
  }
  .hero-content {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .conference-title {
    font-size: 2.2rem;
  }
  .edition-number {
    font-size: 5rem;
  }
  .conference-description {
    font-size: 1rem;
  }
  .get-ticket-link {
    margin: 0 auto;
  }
  .scroll-to-top-container {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
  }
  .navbar-brand .logo {
    /* height: 25px; */
  }
  .hero-banner {
    height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
  }
  .conference-title {
    font-size: 2rem;
  }
  .edition-number {
    font-size: 3rem;
    line-height: 4rem;
  }
  .conference-description {
    font-size: 0.8rem;
  }
  .get-ticket-link {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
  .scroll-to-top-btn {
    width: 40px;
    height: 40px;
  }
  .scroll-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* new-conferences-section Starts */

.new-conferences-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fffbf5 0%, #fdfcff 50%, #f4f0ff 100%);
}

.new-conf-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styling */
.new-conf-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #131313;
  line-height: 1.1;
}

.new-conf-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 5px;
}

.new-conf-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}

/* Desktop View (Large Screens) */
@media (min-width: 1200px) {
  .new-conf-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

/* Laptop View */
@media (min-width: 992px) and (max-width: 1199px) {
  .new-conf-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Tablet View */
@media (max-width: 991px) {
  .new-conf-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .new-conf-grid {
    /* Stack vertically */
    grid-template-columns: 1fr;
  }
  .new-conf-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

/* Card Styling */
.new-conf-card {
  position: relative;
  height: 400px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 4px solid #ff6d01;
}

/* Top Image Area */
.card-image-bg {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 20px 0 20px;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 1;
}

.card-text-content {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.card-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 15px;
}

.card-location {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #cccccc;
  margin-bottom: 5px;
}

.card-date {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.card-date .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #5b007f;
  border-radius: 50%;
}
.card-date .dot-purple {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #5b007f;
  border-radius: 50%;
}

/* Button Container */
.card-buttons {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: #000000;
  width: 100%;
  box-sizing: border-box;
}

.btn-register,
.btn-details {
  flex: 1;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 12px 0;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-align: center;
}

.btn-register {
  background-color: #5b007f;
  color: #ffffff;
}

.btn-register:hover {
  background-color: #75159b;
}

.btn-details {
  background-color: #5b007f;
  color: #ffffff;
}

.btn-details:hover {
  background-color: #75159b;
}

.new-conf-card:first-child .card-title {
  font-size: 1.5rem;
}

/* new-conferences-section Ends */

/* About Conference Section starts */
.about-conference-section {
  background: linear-gradient(
    to right,
    #fffaf4 0%,
    #fdfcff 50%,
    #f4f0ff 100%
  );
  padding: 100px 0;
}

.about-conference-section .container {
  max-width: 1200px;
}

/* Typography Updates */
.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.2;
}

.section-subtitle-bold {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 25px;
}

.about-description-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem; /* Slightly smaller to fit dense text */
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.about-description-text span{
    font-family: "DM Sans", sans-serif !important;
}

/* Feature Grid Styles */
.about-features-grid {
  margin-top: 40px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #5b007f;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.feature-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.3;
}

.image-grid {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.image-grid .grid-image-left,
.image-grid .grid-image-right {
  width: 50%;
  height: 380px;
  object-fit: cover;
}

.image-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-left: 0; /* Reset left margin */
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.2rem;
  }
  .image-grid .grid-image-left,
  .image-grid .grid-image-right {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .text-content-left {
    margin-bottom: 50px;
  }

  .section-title,
  .section-subtitle-bold,
  .about-description-text {
    text-align: left; /* Keep text left aligned even on tablet/mobile as per modern standards */
  }

  .about-features-grid {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-conference-section {
    padding: 60px 0;
  }

  .feature-box {
    margin-bottom: 10px;
  }

  .image-grid .grid-image-left,
  .image-grid .grid-image-right {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .image-grid {
    flex-direction: row; /* Keep side by side even on mobile if possible, or vertical if images are too thin */
  }
  .image-grid .grid-image-left,
  .image-grid .grid-image-right {
    height: 200px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

/* About Conference Section ends */

/* key-themes-section starts (Light Version) */

.key-themes-section {
  background-color: #f5f5f5; /* Clean, premium light grey */
  padding: 100px 0;
  overflow: hidden;
}

.themes-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #131313; /* Dark text for contrast */
  margin-bottom: 10px;
}

.themes-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555; /* Medium dark grey */
  font-weight: 500;
}

/* Container for the circles */
.themes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* Individual Circle Item */
.theme-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  /* Semi-transparent brand purple border */
  border: 2px dashed rgba(91, 0, 127, 0.3); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s ease; /* Smooth transition for hover effect */
  background-color: transparent;
}

/* Pro UI Touch: Subtle interactive hover state */
.theme-circle:hover {
  background-color: #ffffff; /* Fills with white */
  border-color: #ff6d01; /* Border turns Orange */
  transform: translateY(-5px); /* Slight lift */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

/* The Gradient Number */
.theme-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: -10px;
  /* Original gradient looks incredible on light grey */
  background: linear-gradient(135deg, #ff6d01 0%, #5b007f 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.theme-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600; /* Increased from 500 to 600 for better readability on light bg */
  color: #131313; /* Dark text */
  line-height: 1.3;
  max-width: 200px;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .themes-container {
    gap: 20px;
  }
  .theme-circle {
    width: 230px; /* Slightly scaled down for tablets */
    height: 230px;
  }
  .theme-number {
    font-size: 5rem;
  }
  .theme-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .key-themes-section {
    padding: 70px 0;
  }
  
  .themes-heading {
    font-size: 2rem;
  }
  
  .themes-subheading {
    font-size: 1rem;
  }

  .theme-circle {
    width: 240px;
    height: 240px;
    border-width: 2px;
  }
  
  .theme-number {
    font-size: 4.5rem;
  }
  
  .theme-text {
    font-size: 0.95rem;
  }
}
/* key-themes-section ends */

/* track-record-section starts */
.track-record-section {
  padding: 100px 0;
  /* Subtle gradient background based on screenshot */
  background: linear-gradient(135deg, #fffbf5 0%, #fbf8ff 50%, #f4f0ff 100%);
}

/* --- Header Area --- */
.ptr-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.2;
  margin-bottom: 25px;
}

.btn-view-all {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-view-all:hover {
  background-color: #75159b;
}

.ptr-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 25px;
  margin-top: 5px;
}

/* --- Stats Grid (Top Right) --- */
.ptr-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.ptr-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ptr-icon {
  width: 30px;
  height: 30px;
  background-color: #ff6d01;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.ptr-icon i {
  color: #ffffff;
}

.ptr-stat-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.4;
}

/* --- Timeline Filter --- */
.timeline-filter-wrapper {
  margin: 60px 0;
  width: 100%;
  /* Horizontal scroll for mobile */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.timeline-filter-wrapper::-webkit-scrollbar {
  display: none;
}

.timeline-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 800px; /* Ensures layout doesn't crush on mobile */
  border-bottom: 0px solid #eee; /* Optional visual guide */
}

.tf-item {
  background: transparent;
  border: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tf-item:hover {
  color: #5b007f;
}

.tf-item.active {
  background-color: #ff6d01;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(117, 70, 255, 0.3);
}

/* Dotted Separator */
.tf-separator {
  flex-grow: 1;
  height: 1px;
  border-top: 2px dotted #cccccc;
  margin: 0 10px;
  position: relative;
  top: 0px;
}

/* --- Conference Cards --- */
.ptr-cards-row {
  margin-top: 0px;
}

.ptr-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ptr-card-img {
  width: 100%;
  height: 180px;
  margin-bottom: 15px;
  overflow: hidden;
}

.ptr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ptr-card:hover .ptr-card-img img {
  transform: scale(1.05);
}

.ptr-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ptr-edition {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff6d01;
  margin-bottom: 8px;
  display: block;
}

.ptr-card-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.4;
  margin-bottom: 10px;
  /* Limit to 2 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ptr-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  margin-bottom: 4px;
  font-weight: 400;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 991px) {
  .ptr-heading {
    font-size: 2.4rem;
  }
  .ptr-stats-grid {
    margin-top: 30px;
  }
  .timeline-filter-wrapper {
    margin: 40px 0;
  }
}

@media (max-width: 767px) {
  .track-record-section {
    padding: 60px 0;
  }
  .ptr-heading {
    font-size: 2rem;
  }
  .ptr-description {
    margin-bottom: 20px;
  }
  .ptr-stats-grid {
    grid-template-columns: 1fr; /* Stack stats on mobile */
    gap: 20px;
  }
  /* Timeline styling updates for scroll */
  .timeline-filter {
    gap: 10px; /* Less gap for visual flow on scroll */
  }
  .tf-separator {
    width: 30px; /* Fixed width separator on mobile */
    flex-grow: 0;
  }
}
/* track-record-section ends */

/* purple-breaker-section starts  */
.purple-breaker-section {
  position: relative;
  background-color: #5b007f; /* Main Brand Purple */
  padding-top: 100px;
  padding-bottom: 120px; /* Extra space for the wave */
  overflow: hidden;
}

.breaker-container-inner {
  position: relative;
  z-index: 2; /* Ensure content sits above the SVG */
}

/* Heading Typography */
.breaker-main-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Button Group Container */
.breaker-cta-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* White Button (Buy Ticket) */
.btn-breaker-white {
  background-color: #ffffff;
  color: #5b007f;
  border: 1px solid #ffffff;
  padding: 14px 35px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-breaker-white:hover {
  background-color: transparent;
  color: #ffffff;
}

/* Outline Button (Nominate Yourself) */
.btn-breaker-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ff6d01;
  padding: 14px 35px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 2px;
}

.btn-breaker-outline:hover {
  background-color: #ffffff;
  color: #5b007f;
  border-color: #ffffff;
}

/* The Bottom Wave SVG Container */
.breaker-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  overflow: hidden;
}

.breaker-wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

@media (max-width: 991px) {
  .purple-breaker-section {
    padding-top: 80px;
    padding-bottom: 140px;
  }

  .breaker-main-heading {
    font-size: 2.2rem;
    text-align: start;
    margin-bottom: 30px;
  }

  .breaker-cta-group {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .purple-breaker-section {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .breaker-main-heading {
    font-size: 1.8rem;
  }

  .breaker-cta-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .btn-breaker-white,
  .btn-breaker-outline {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  .breaker-wave-bottom svg {
    height: 80px;
  }
}
/* purple-breaker-section ends */

/* magazine-section starts */
.magazine-section {
  padding: 100px 0;
  /* The subtle gradient background from the screenshot */
  background: linear-gradient(135deg, #fffbf5 0%, #fbf8ff 50%, #f4f0ff 100%);
}

/* --- Typography --- */
.magazine-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 15px;
}

.magazine-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 40px;
}

/* --- Features Grid (Top) --- */
.magazine-features-grid {
  margin-bottom: 40px;
}

.mag-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mag-feature-icon {
  width: 30px;
  height: 30px;
  background-color: #ff6d01;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.mag-feature-icon i {
  color: #ffffff;
}

.mag-feature-item span {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #555555;
}

/* --- Dotted Divider --- */
.dotted-divider {
  border-top: 2px dotted #d9cfff;
  margin: 20px 0;
}

/* --- Quarterly Filter Tabs --- */
.quarterly-filter {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.qf-item {
  padding: 8px 25px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  color: #131313;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qf-item:hover {
  background-color: #efefef;
}

.qf-item.active {
  background-color: #5b007f;
  color: #ffffff;
  border-color: #5b007f;
}

/* --- Magazine Article Cards --- */
.magazine-card {
  background-color: transparent;
  border: none;
  height: 100%;
  max-width: 400px;
}

.mag-card-img {
  width: 100%;
  height: 160px; /* Fixed height for image consistency */
  overflow: hidden;
  margin-bottom: 15px;
}

.mag-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.magazine-card:hover .mag-card-img img {
  transform: scale(1.05);
}

.mag-card-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.4;
  margin-bottom: 10px;
  /* Limit text to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}

.magazine-card:hover .mag-card-title {
  color: #5b007f;
}

.mag-card-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #777777;
  margin-bottom: 0;
}

/* For the 5-column layout on large screens */
@media (min-width: 1200px) {
  .col-lg {
            flex: 0 1 33% !important;
        width: 33% !important;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .magazine-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .magazine-section {
    padding: 60px 0;
  }
  .magazine-heading {
    font-size: 2rem;
  }
  /* Stack feature items on mobile */
  .magazine-features-grid .row {
    justify-content: flex-start;
  }
  .mag-feature-item {
    margin-bottom: 10px;
  }
  /* Allow tabs to scroll on mobile */
  .quarterly-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px; /* space for scrollbar */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .quarterly-filter::-webkit-scrollbar {
    display: none;
  }
  .qf-item {
    flex-shrink: 0; /* Prevent buttons from shrinking */
  }
}
/* magazine-section ends */

/* Sponsors Section */
.sponsors-section {
  background-color: #fff;
  padding: 90px 0;
}

.sponsors-section .container {
  max-width: 1200px;
}

.sponsors-section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 600; /* Semi bold */
  margin-bottom: 50px;
}

.sponsor-card {
  background-color: #5b007f; /* Match section background */
  border: 1px solid rgba(255, 255, 255); /* White border, slightly transparent */
  border-radius: 5px;
  position: relative;
  height: 280px; /* Fixed height for consistent cards */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Important for clip-path */
}

/* New element for the slanted white background */
.sponsor-top-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Take full height of the card */
  background-color: #f5f5f5; /* White background */
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 35%);
  /* Adding a shadow to this white shape */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 1; /* Below text and content */
}

/* Sponsor Label (Text positioned on the white background) */
.sponsor-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px; /* Padding for the text from top-left corner */
  pointer-events: none; /* Allows clicks to pass through to card */
  z-index: 2; /* Above the white background shape */
}

.sponsor-label .category-text {
  color: #131313;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.sponsor-content {
  flex-grow: 1; /* Take up remaining space */
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 3; /* Above all other layers */
  display: flex; /* Ensure content is still flex for centering */
  /* flex-direction: column; */
  justify-content: center;
  /* align-items: center; */
  top: 50px;
}

.sponsor-logo {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
  margin-right: 20px;
}

.sponsor-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 400; /* Regular */
  line-height: 1.3;
  text-align: start;
}

.sponsor-now-card {
  border: 1px solid #fff;
}

.sponsor-now-card .sponsor-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sponsor-now-btn {
  background-color: transparent;
  color: #ff6d01;
  border: 1px solid #ff6d01;
  padding: 0.7rem 1.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  border-radius: 0;
}

.sponsor-now-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #fff;
}

/* Responsive Styles for Sponsors Section */
@media (max-width: 1200px) {
  .sponsors-section-title {
    font-size: 2.7rem;
  }
  .sponsor-card {
    height: 260px;
  }
  .sponsor-label {
    padding: 12px;
  }
}

@media (max-width: 992px) {
  .sponsors-section {
    padding: 60px 0;
  }
  .sponsors-section-title {
    font-size: 2.2rem;
  }
  .col-lg-3 {
    flex: 0 0 50%; /* Two cards per row on tablets */
    max-width: 50%;
  }
  .sponsor-card {
    height: 250px;
  }
  /* Adjust clip-path for slightly different slant on smaller cards if needed */
  .sponsor-top-bg-shape {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 0%,
      0% 36%
    ); /* Slightly different slant for balance */
  }
  .sponsor-label {
    padding: 10px;
  }
  .sponsor-label .category-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .sponsors-section-title {
    font-size: 1.8rem;
  }
  .col-md-6 {
    flex: 0 0 80%; /* One card per row on smaller tablets, centered */
    max-width: 80%;
    margin: 0 auto 20px auto;
  }
  .sponsor-card {
    height: 220px;
  }
  .sponsor-logo {
    max-width: 60px;
  }
  .sponsor-name {
    font-size: 1rem;
  }
  .sponsor-now-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  .sponsor-top-bg-shape {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 36%);
  }
  .sponsor-label {
    padding: 8px;
  }
  .sponsor-label .category-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .sponsors-section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .col-sm-6 {
    flex: 0 0 95%; /* Almost full width on mobile */
    max-width: 95%;
  }
  .sponsor-card {
    height: 200px;
  }
  .sponsor-logo {
    max-width: 50px;
  }
  .sponsor-name {
    font-size: 1rem;
  }
  .sponsor-now-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .sponsor-top-bg-shape {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 36%);
  }
  .sponsor-label {
    padding: 5px;
  }
  .sponsor-label .category-text {
    font-size: 0.7rem;
  }
}

/* ipr-awards-section-detailed starts (Light Version with Redesigned Cards) */
.ipr-awards-section-detailed {
  background-color: #f5f5f5;
  padding: 100px 0;
  overflow: hidden;
}

/* --- Header Area --- (No changes here from previous step) */
.awards-main-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 10px;
  line-height: 1.1;
}

.awards-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
  font-weight: 500;
}

.btn-nominate-yourself {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(91, 0, 127, 0.2);
}

.btn-nominate-yourself:hover {
  background-color: #ff6d01;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.3);
}

.awards-description-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 25px;
}

.awards-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.award-cat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.award-cat-icon {
  width: 35px;
  height: 35px;
  background-color: #ff6d01;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.award-cat-icon i {
  color: #ffffff;
  font-size: 0.9rem;
}

.award-cat-item span {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #131313;
}

/* --- Redesigned Award Winner Cards --- */
.ipr-award-card {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 40px 30px;
  height: 250px; /* Increased height for better balance */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden; /* Important for the pseudo-element */
  gap: 20px; /* Space between icon and title */
}

/* Elegant Gradient highlight that appears on hover */
.ipr-award-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #5b007f;
  transform: translateY(5px); /* Initially hidden below */
  transition: transform 0.35s ease;
}

.ipr-award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}

.ipr-award-card:hover::after {
  transform: translateY(0); /* Slides up into view */
}

/* NEW: Circular emblem for the icon */
.award-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.ipr-award-card:hover .award-icon-wrapper {
  border-color: #5b007f;
  background-color: var(--color-primary-bg);
}

.award-icon-wrapper img {
  height: 45px;
  width: auto;
  filter: invert(34%) sepia(91%) saturate(2227%) hue-rotate(244deg) brightness(97%) contrast(93%);
}

/* NEW: Prominent award title */
.award-title {
  font-family: "Bricolage Grotesque", sans-serif; /* Using display font */
  font-size: 1.25rem;
  font-weight: 700;
  color: #131313;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.ipr-award-card:hover .award-title {
  color: #5b007f;
}


/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .awards-main-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .ipr-awards-section-detailed {
    padding: 70px 20px;
  }
  .awards-main-heading {
    font-size: 2.4rem;
  }
  .awards-categories-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .btn-nominate-yourself {
    width: 100%;
    max-width: 300px;
  }
  .ipr-award-card {
    height: 230px;
    padding: 30px 20px;
  }
}
/* ipr-awards-section-detailed ends */

/* ip-directory-section starts */
.ip-directory-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f4f0ff 100%); /* Softer, premium light gradient */
}

.ip-directory-header h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #131313;
  line-height: 1.1;
  margin-top: 5px;
}

.ip-directory-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .ip-directory-section {
    padding: 60px 20px;
  }
  .ip-directory-header h1 {
    font-size: 2.8rem;
  }
  .ip-directory-description {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .ip-directory-section {
    padding: 50px 15px;
  }
  .ip-directory-header h1 {
    font-size: 2.4rem;
  }
  .ip-directory-header {
    text-align: center;
  }
  .ip-directory-description {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .ip-directory-header h1 {
    font-size: 2rem;
  }
}
/* ip-directory-section ends */

/* page-breaker-section starts */

.page-breaker-section {
  position: relative;
  background: linear-gradient(135deg, #5b007f 0%, #601a979e 50%, #5b007f 100%);
  overflow: hidden;
  min-height: 350px;
}

.breaker-container {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 350px;
  position: relative;
}

.breaker-image-section {
  position: relative;
  width: 27%;
  height: 370px;
  overflow: hidden;
  flex-shrink: 0;
}

.breaker-image-wrapper {
  position: absolute;
  top: 0;
  left: -60px;
  /* right: 100px; */
  height: 100%;
  transform: skewX(20deg);
  transform-origin: left center;
  overflow: hidden;
}

.breaker-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(-23deg) scale(1.2);
  transform-origin: left center;
}

/* Right side - Content */
.breaker-content-section {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.breaker-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: left;
}

.breaker-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.breaker-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 26px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.breaker-btn-primary {
  background-color: #ffffff;
  color: #5b007f;
}

.breaker-btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ff6d01;
}

.breaker-btn-secondary {
  background-color: transparent;
  color: #ffffff;
}

.breaker-btn-secondary:hover {
  background-color: #ffffff;
  color: #5b007f;
  border: 2px solid #ff6d01;
}


/* ========================================
         RESPONSIVE DESIGN
         ======================================== */
@media (max-width: 1599px){
    .breaker-image-section{
        height: 300px;
    }
    .breaker-container {
      min-height: 320px;
    }
    .breaker-heading{
        font-size: 2.5rem;
    }
    .page-breaker-section .breaker-img{
        height: 320px;
    }
    .page-breaker-section {
      min-height: 320px;
    }
    .breaker-content-section{
        padding: 10px 20px;
    }
    .breaker-image-section {
      height: 320px;
      width: 30%;
    }
}

@media (max-width: 1299px){
    .page-breaker-section {
      min-height: 300px;
    }
    .page-breaker-section img{
        height: 320px;
    }
    
    .breaker-container {
      min-height: 300px;
    }
    
    .breaker-image-section {
      height: 320px;
      width: 31%;
    }
    .breaker-heading{
        font-size: 2.2rem;
    }
    .page-breaker-section .breaker-img{
        height: 320px;
    }
    
}


/* Large tablets and below (1200px) */
@media (max-width: 1199px) {
  .breaker-content-section {
    padding : 20px 60px 20px 50px;
  }
  
  .page-breaker-section .breaker-img {
        height: 320px;
    }

  .breaker-heading {
    font-size: 2.5rem;
  }

  
    .breaker-image-section {
        width: 40%;
    }
  
  .page-breaker-section .breaker-img {
        display: none;
    }
}

/* Tablets (992px) */
@media (max-width: 991px) {
  .page-breaker-section {
    min-height: 320px;
  }

  .breaker-container {
    min-height: 320px;
  }
  
  .breaker-container img{
      display: none;
  }

  .breaker-image-section {
    width: 40%;
    height: 350px;
    display: none;
  }

  .breaker-content-section {
    padding: 40px 50px 40px 40px;
  }

  .breaker-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .breaker-btn {
    font-size: 0.75rem;
    padding: 10px 22px;
  }

}

/* Mobile landscape and tablets (768px) */
@media (max-width: 767px) {
  .page-breaker-section {
    min-height: auto;
  }

  .breaker-container {
    flex-direction: column;
    min-height: auto;
  }

  .breaker-image-section {
    width: 100%;
    height: 230px;
  }

  .breaker-image-wrapper {
    transform: none;
    right: 0;
  }

  .breaker-image {
    transform: none;
  }

  .breaker-content-section {
    width: 100%;
    padding: 40px 30px;
  }

  .breaker-heading {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .breaker-buttons {
    justify-content: center;
    gap: 12px;
  }

  .breaker-btn {
    font-size: 0.7rem;
    padding: 9px 20px;
  }

}

/* Small mobile (576px) */
@media (max-width: 575px) {
  .breaker-image-section {
    height: 220px;
  }

  .breaker-content-section {
    padding: 35px 25px;
  }

  .breaker-heading {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .breaker-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .breaker-btn {
    width: 100%;
    font-size: 0.7rem;
    padding: 10px 20px;
  }

}

/* Extra small mobile (400px) */
@media (max-width: 400px) {
  .breaker-heading {
    font-size: 1.5rem;
  }

  .breaker-btn {
    font-size: 0.65rem;
    padding: 9px 18px;
  }
}
/* page-breaker-section Ends */

/* advisory-committee-section starts */

.advisory-committee-section {
  background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
}

.committee-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}

.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #131313;
  line-height: 1.2;
  flex: 0 0 auto;
}

.section-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #131313;
  line-height: 1.7;
  max-width: 500px;
  flex: 1;
}

/* Member Profile Card */
.member-profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left side - Text content */
.member-info {
  flex: 0 0 45%;
}

.member-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #131313;
  margin-bottom: 20px;
  line-height: 1.2;
}

.member-bio {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #131313;
  line-height: 1.7;
  margin-bottom: 25px;
}

.member-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tag-primary {
  background-color: #5b007f;
  color: #ffffff;
  border: 2px solid #5b007f;
}

.tag-primary:hover {
  background-color: #75159b;
  border-color: #75159b;
}

.tag-secondary {
  background-color: transparent;
  color: #131313;
  border: 2px solid #131313;
}

.tag-secondary:hover {
  background-color: #131313;
  color: #ffffff;
}

/* Right side - Images */
.member-images {
  flex: 1;
}

.featured-image-container {
  position: relative;
  margin-bottom: 15px;
  /* border-radius: 8px; */
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

/* Social Icons */
.social-icons {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: transparent;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #131313;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 5px;
  border: 1px solid #8f8f8f !important;
}

.social-icon:last-child {
  border-bottom: none;
}

.social-icon:hover {
  background-color: #5b007f;
  color: #ffffff;
}

.social-icon i {
  font-size: 1rem;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  /* border-radius: 4px; */
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.thumbnail:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
         RESPONSIVE DESIGN
         ======================================== */

/* Large tablets (1200px) */
@media (max-width: 1199px) {
  .section-title {
    font-size: 2.5rem;
  }

  .member-name {
    font-size: 1.8rem;
  }

  .member-info {
    flex: 0 0 42%;
  }
}

/* Tablets (992px) */
@media (max-width: 991px) {
  .advisory-committee-section {
    padding: 60px 0;
  }

  .section-header {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-description {
    max-width: 100%;
  }

  .member-profile {
    flex-direction: column;
    gap: 30px;
  }

  .member-info {
    flex: 1;
  }

  .member-name {
    font-size: 1.6rem;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .thumbnail {
    height: 70px;
  }
}

/* Mobile (768px) */
@media (max-width: 767px) {
  .advisory-committee-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
    text-align: start;
  }

  .section-description {
    font-size: 1rem;
    text-align: center;
  }

  .member-name {
    font-size: 1.4rem;
    text-align: start;
  }

  .member-bio {
    font-size: 1rem;
    text-align: start;
  }

  .member-tags {
    justify-content: center;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .thumbnail {
    height: 90px;
  }

  .social-icons {
    flex-direction: row;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }

  .social-icon {
    width: 50px;
    height: 40px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-icon:last-child {
    border-right: none;
  }
}

/* Small mobile (576px) */
@media (max-width: 575px) {
  .section-title {
    font-size: 1.5rem;
  }

  .member-name {
    font-size: 1.2rem;
  }

  .member-bio {
    font-size: 0.8rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 7px 15px;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .thumbnail {
    height: 100px;
  }
}

/* advisory-committee-section Ends */

/* cta-banner-section and Recent articles section starts */
.cta-banner-section {
  position: relative;
  background: linear-gradient(135deg, #5b007f 0%, #9d7bff 50%, #5b007f 100%);
  padding: 80px 0 120px 0;
  overflow: hidden;
}

.cta-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-banner-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
  max-width: 600px;
}

.cta-banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-banner-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 26px;
  border-radius: 4px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-primary {
  background-color: #ffffff;
  color: #5b007f;
}

.cta-btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

.cta-btn-secondary {
  background-color: transparent;
  color: #ffffff;
}

.cta-btn-secondary:hover {
  background-color: #ffffff;
  color: #5b007f;
}

/* Wave SVG at bottom */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  transform: rotate(180deg);
}

.wave-divider .shape-fill {
  fill: #f5f5f5;
}

/* Decorative circles */
.cta-decorative-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.cta-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: 150px;
}

.cta-circle-2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  right: -100px;
}

.recent-articles-section {
  background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
}

.articles-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.articles-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #131313;
  line-height: 1.2;
}

.articles-label {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: transparent;
  -webkit-text-stroke: 2px #131313;
  text-stroke: 2px #131313;
  line-height: 1.2;
}

/* Article List */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.1);
}

.article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Article Content (Left side) */
.article-content {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
}

.article-category {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #131313;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-category::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #5b007f;
  border-radius: 50%;
  display: inline-block;
}

.article-date {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #666666;
  font-weight: 400;
}

.article-info {
  flex: 1;
}

.article-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.article-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #131313;
  line-height: 1.4;
  transition: color 0.3s ease;
  cursor: pointer;
}

.article-title:hover {
  color: #5b007f;
}

/* Article Image (Right side) */
.article-image-container {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-image-container:hover .article-image {
  transform: scale(1.05);
}

/* View More Button */
.view-more-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.view-more-btn:hover {
  background-color: #75159b;
}

/* Tablets (992px) */
@media (max-width: 991px) {
  .cta-banner-section {
    padding: 60px 0 100px 0;
  }

  .cta-banner-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-banner-heading {
    font-size: 2.4rem;
    max-width: 100%;
  }

  .cta-banner-buttons {
    justify-content: center;
  }

  .recent-articles-section {
    padding: 60px 0;
  }

  .articles-title {
    font-size: 2.4rem;
  }

  .articles-label {
    font-size: 2rem;
  }

  .article-content {
    gap: 25px;
  }

  .article-image-container {
    width: 180px;
    height: 110px;
  }
}

/* Mobile (768px) */
@media (max-width: 767px) {
  .cta-banner-section {
    padding: 50px 0 80px 0;
  }

  .cta-banner-heading {
    font-size: 2rem;
  }

  .cta-banner-btn {
    font-size: 0.75rem;
    padding: 10px 22px;
  }

  .wave-divider svg {
    height: 60px;
  }

  .recent-articles-section {
    padding: 50px 0;
  }

  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
  }

  .articles-title {
    font-size: 2rem;
  }

  .articles-label {
    font-size: 1.5rem;
    -webkit-text-stroke: 1.5px #131313;
    text-stroke: 1.5px #131313;
  }

  .articles-list {
    gap: 30px;
  }

  .article-item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
  }

  .article-content {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .article-meta {
    flex-direction: row;
    gap: 15px;
    min-width: auto;
  }

  .article-image-container {
    width: 100%;
    height: 200px;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .view-more-btn {
    width: 100%;
    text-align: center;
  }
}

/* Small mobile (576px) */
@media (max-width: 575px) {
  .cta-banner-heading {
    font-size: 1.6rem;
  }

  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-btn {
    width: 100%;
  }

  .articles-title {
    font-size: 1.6rem;
  }

  .articles-label {
    font-size: 1.3rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 5px;
  }

  .article-title {
    font-size: 1rem;
  }
}

/* cta-banner-section and Recent articles section ends */

/* award-distribution-banner starts */
.award-distribution-banner {
  position: relative;
  background: #5b007f;
  padding: 60px 0;
  overflow: hidden;
}

.award-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between; /* Space between heading and buttons */
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2; /* Content above vector */
}

.award-banner-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; /* Bolder as per screenshot */
  font-size: 2.8rem; /* Larger font size */
  color: #ffffff;
  line-height: 1.3;
  flex: 1;
}

.award-banner-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0; /* Prevent buttons from shrinking */
}

.award-banner-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem; /* Smaller font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 28px; /* Adjusted padding */
  border-radius: 2px; /* Sharper corners */
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.award-btn-primary {
  background-color: #ffffff;
  color: #5b007f;
  border: 1px solid #ffffff;
}

.award-btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ff6d01;
}

.award-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.award-btn-secondary:hover {
  background-color: #ffffff;
  color: #5b007f;
  border-color: #ffffff;
  border: 1px solid #ff6d01;
}

/* Custom Vector Shape using SVG */
.award-vector-shape {
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none; /* Allows clicks to pass through */
  opacity: 0.8;
}

/* --- Responsive Design --- */

/* Tablets (992px) */
@media (max-width: 991px) {
  .award-distribution-banner {
    padding: 60px 0;
  }
  .award-banner-heading {
    font-size: 2.2rem;
  }
  .award-vector-shape {
    left: -120px; /* Adjust position */
  }
}

/* Mobile (767px) */
@media (max-width: 767px) {
  .award-distribution-banner {
    padding: 60px 20px;
  }
  .award-banner-container {
    flex-direction: column;
    text-align: start;
    gap: 35px;
  }
  .award-banner-heading {
    font-size: 2rem;
  }
  .award-banner-buttons {
    justify-content: center;
  }
  .award-vector-shape {
    opacity: 0.5;
    left: -180px;
  }
}

/* Small mobile (576px) */
@media (max-width: 576px) {
  .award-banner-heading {
    font-size: 1.8rem;
  }
  .award-banner-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 12px;
  }
  .award-banner-btn {
    width: auto;
  }
  .award-vector-shape {
    transform: translateY(-50%) scale(0.8);
    left: -220px;
  }
}
/* award-distribution-banner ends */

/*insights-section css starts*/
.insights-section {
    padding: 100px 0;
    background: #fff;
}

.insights-heading {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #131313;
    line-height: 1.2;
}

.insights-description {
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555555;
    line-height: 1.6;
}

.dotted-divider {
    border-top: 2px dotted #d9cfff;
    margin: 20px 0;
}

.insights-list {
    margin-top: 40px;
}

.insights-list-header, 
.insight-item {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.8fr 2.5fr 1.5fr;
    gap: 30px;
    align-items: center;
    padding: 25px 15px;
}

/* Header Specifics */
.insights-list-header {
    padding-bottom: 15px;
    border-bottom: 2px dotted #d9cfff;
}

.header-col {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5b007f !important;
}

.insight-item {
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.insight-item:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(117, 70, 255, 0.05);
}

.col-cat {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #131313;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-dot {
    width: 8px;
    height: 8px;
    background-color: #75159b;
    border-radius: 50%;
    flex-shrink: 0;
}

.col-date {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #555555;
    white-space: nowrap;
}

.col-title {
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #131313;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.insight-item:hover .col-title {
    color: #75159b;
}

.col-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.col-img .img-wrapper {
    width: 100%;
    height: 110px;
    border-radius: 4px;
    overflow: hidden;
}

.col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insight-item:hover .col-img img {
    transform: scale(1.05);
}

.btn-view-all {
    background-color: #5b007f;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-view-all:hover {
    background-color: #75159b;
}

@media (max-width: 1200px) {
    .insights-list-header, 
    .insight-item {
        gap: 15px;
        grid-template-columns: 0.8fr 0.8fr 1.5fr 2fr 1.5fr;
    }
    
    .col-desc {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .insights-list-header {
        display: none;
    }

    .insight-item {
        grid-template-columns: 1fr 180px; 
        grid-template-rows: auto auto auto auto;
        gap: 10px 20px;
        align-items: start;
        padding: 30px 0;
        border-bottom: 2px dotted #d9cfff;
    }

    .col-cat   { grid-column: 1 / 2; grid-row: 1; margin-bottom: 5px;}
    .col-date  { grid-column: 1 / 2; grid-row: 2; font-size: 1rem; color: #777; margin-bottom: 5px; }
    .col-title { grid-column: 1 / 2; grid-row: 3; font-size: 1.2rem; margin-bottom: 10px; }
    .col-desc  { grid-column: 1 / 2; grid-row: 4; -webkit-line-clamp: 3; }
    
    .col-img {
        grid-column: 2 / 3;
        grid-row: 1 / 5;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .col-img .img-wrapper {
        height: 140px;
    }
    
    .insights-list > .dotted-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .insights-heading {
        font-size: 2rem;
    }

    .insight-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 30px 0;
    }

    /* Move Image to Top */
    .col-img {
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }

    .col-img .img-wrapper {
        height: 200px;
    }

    .col-cat {
        font-size: 1rem;
    }
    
    .col-title {
        font-size: 1.2rem;
    }
    
    .col-desc {
        display: block;
        -webkit-line-clamp: 4;
    }
}

/*insights-section css ends*/

.page-breaker-section-2 {
  position: relative;
  background: #5b007f;
  padding: 60px 0;
  overflow: hidden;
}

.page-breaker-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
  position: relative;
  z-index: 2;
}

.page-breaker-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  color: #ffffff;
  line-height: 1.3;
  /*max-width: 900px;*/
  margin: 0;
}

.page-breaker-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-breaker-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.breaker-btn-primary {
  background-color: #ffffff;
  color: #5b007f;
}

.breaker-btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ff6d01;
}

.breaker-btn-secondary {
  background-color: transparent;
  color: #ffffff;
}

.breaker-btn-secondary:hover {
  background-color: #ffffff;
  color: #5b007f;
  border: 2px solid #ff6d01;
}

/* Decorative circles - BOTH SIDES */
.page-breaker-decorative-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}


/* ========================================
         RESPONSIVE DESIGN
         ======================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .page-breaker-heading {
    font-size: 2.5rem;
  }
}

/* Tablets (768px - 1199px) */
@media (max-width: 1199px) {
  .page-breaker-section-2 {
    padding: 70px 0;
  }

  .page-breaker-heading {
    font-size: 2.2rem;
  }

}

/* Tablets portrait (768px - 991px) */
@media (max-width: 991px) {
  .page-breaker-section-2 {
    padding: 45px 0;
  }
  
  .page-breaker-decorative-circles{
      display: none;
  }

  .page-breaker-heading {
    font-size: 2.2rem;
  }

  .page-breaker-container {
    gap: 30px;
  }
}

/* Mobile (577px - 767px) */
@media (max-width: 767px) {
  .page-breaker-section-2 {
    padding: 60px 0;
  }
  .page-breaker-container{
      text-align: start;
  }

  .page-breaker-heading {
    font-size: 1.9rem;
    max-width: 100%;
  }

  .page-breaker-container {
    gap: 25px;
  }

  .page-breaker-btn {
    font-size: 0.75rem;
    padding: 11px 24px;
  }
}

/* Small mobile (400px - 576px) */
@media (max-width: 576px) {
  .page-breaker-section-2 {
    padding: 50px 0;
  }

  .page-breaker-heading {
    font-size: 1.6rem;
  }

  .page-breaker-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .page-breaker-btn {
    width: 100%;
    font-size: 0.7rem;
    padding: 11px 22px;
  }

}

/* Extra small mobile (320px - 399px) */
@media (max-width: 399px) {
  .page-breaker-section-2 {
    padding: 45px 0;
  }

  .page-breaker-heading {
    font-size: 1.4rem;
  }

  .page-breaker-btn {
    font-size: 0.65rem;
    padding: 10px 20px;
  }
}

/* featured-tickets-section starts */

.featured-tickets-section {
  background-color: #f5f3f0;
  padding: 80px 0;
}

.tickets-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}

.tickets-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #131313;
  line-height: 1.2;
}

.tickets-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  max-width: 400px;
  text-align: right;
}

/* Tickets Grid */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* Individual Ticket Card */
.ticket-card {
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.ticket-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.ticket-card-header {
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.ticket-card-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff6d01;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.ticket-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #131313;
  margin-bottom: 12px;
}

.ticket-card-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #131313;
}

.ticket-card-price-input {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #666666;
}

/* Features List */
.ticket-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.ticket-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: #333333;
  line-height: 1.5;
}

.ticket-feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.ticket-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: #131313;
}

.ticket-feature-text {
  flex: 1;
}

/* Buy Button */
.ticket-buy-btn {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ticket-buy-btn:hover {
  background-color: #75159b;
}

/* ========================================
         RESPONSIVE DESIGN
         ======================================== */

/* Large tablets and small desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .tickets-grid {
    gap: 25px;
  }

  .ticket-card {
    padding: 25px 20px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .featured-tickets-section {
    padding: 60px 0;
  }

  .tickets-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .tickets-title {
    font-size: 2.4rem;
  }

  .tickets-description {
    text-align: left;
    max-width: 100%;
  }

  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ticket-card-price {
    font-size: 1.8rem;
  }
}

/* Mobile (577px - 767px) */
@media (max-width: 767px) {
  .featured-tickets-section {
    padding: 50px 0;
  }

  .tickets-title {
    font-size: 2rem;
  }

  .tickets-description {
    font-size: 0.8rem;
  }

  .ticket-card {
    padding: 25px 20px;
    gap: 18px;
  }

  .ticket-card-price {
    font-size: 1.6rem;
  }

  .ticket-feature {
    font-size: 0.75rem;
  }
}

/* Small mobile (400px - 576px) */
@media (max-width: 576px) {
  .featured-tickets-section {
    padding: 40px 0;
  }

  .tickets-header {
    margin-bottom: 30px;
  }

  .tickets-title {
    font-size: 1.7rem;
  }

  .tickets-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ticket-card {
    padding: 25px 20px;
  }

  .ticket-card-price {
    font-size: 1.8rem;
  }

  .ticket-feature {
    font-size: 0.75rem;
    gap: 8px;
  }

  .ticket-feature-icon {
    width: 14px;
    height: 14px;
  }
}

/* Extra small mobile (< 400px) */
@media (max-width: 399px) {
  .tickets-title {
    font-size: 1.5rem;
  }

  .ticket-card {
    padding: 20px 15px;
  }

  .ticket-card-title {
    font-size: 1rem;
  }

  .ticket-card-price {
    font-size: 1.6rem;
  }
}

/* featured-tickets-section ends */

/* newsletter-section starts */
.newsletter-section {
  /* background-color: #0d0d0d; */
  border-bottom: 1px solid #555555;
  padding: 80px 0;
}

.newsletter-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.newsletter-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 15px;
}

.newsletter-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #404040;
  padding: 13px 18px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: #707070;
}

.newsletter-input:focus {
  border-color: #5b007f;
}

.newsletter-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 30px;
  background-color: #ff6d01;
  color: #ffffff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #75159b;
}

/* ========================================
         FOOTER SECTION
         ======================================== */

.footer-section {
  /* background-color: #0a0e27; */
  padding: 60px 0 30px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Left - Brand */
.footer-brand {
  flex: 1;
  max-width: 350px;
}

.footer-logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.7;
}

/* Footer Right - Links */
.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-link {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6d01;
}

/* Footer Bottom - Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
}

.footer-copyright {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: #707070;
  line-height: 1.5;
}

/* ========================================
         RESPONSIVE DESIGN
         ======================================== */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-heading {
    font-size: 2.4rem;
  }

  .footer-top {
    gap: 40px;
  }

  .footer-links {
    gap: 50px;
  }
}

/* Mobile landscape (577px - 767px) */
@media (max-width: 767px) {
  .newsletter-section {
    padding: 50px 0;
  }

  .newsletter-heading {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .newsletter-input {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-section {
    padding: 50px 0 25px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
    gap: 40px;
  }
}

/* Small mobile (< 576px) */
@media (max-width: 576px) {
  .newsletter-section {
    padding: 45px 0;
  }

  .newsletter-heading {
    font-size: 1.7rem;
  }

  .newsletter-description {
    font-size: 0.8rem;
    margin-bottom: 30px;
  }

  .newsletter-input {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .newsletter-btn {
    padding: 12px 25px;
    font-size: 0.7rem;
  }

  .footer-section {
    padding: 40px 0 20px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-description {
    font-size: 0.8rem;
  }

  .footer-column-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }
}

/* Extra small mobile (< 400px) */
@media (max-width: 399px) {
  .newsletter-heading {
    font-size: 1.5rem;
  }

  .newsletter-description {
    font-size: 0.75rem;
  }

  .footer-logo {
    font-size: 1.1rem;
  }
}

/* newsletter-section ends */

/* advisory-committee-section-v2 starts */
  .advisory-committee-section-v2 {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
  }

  .advisory-committee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* --- Section Header --- */
  .ac-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
  }

  .ac-header-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #131313;
    line-height: 1.1;
  }

  .ac-header-description {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    align-self: start;
  }

  /* --- Member Profile Grid --- */
  .member-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  /* Left Column: Member Info */
  .member-info-content .member-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #131313;
    margin-bottom: 20px;
  }

  .member-info-content .member-bio {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 5px;
  }

  .member-tags {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0px;
    margin-top: 0px;
    align-items: start;
}

  .member-tags .tag-btn {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 14px 6px 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    cursor: default; 
    line-height: 1.4;
    transition: background-color 0.3s ease;
    text-transform: capitalize; 
}
  .member-tags .tag-btn.primary {
    color: #7546ff;
}
.member-tags .tag-btn.primary::before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}
  .member-tags .tag-btn.secondary {
    color: #555555;
}

.member-tags .tag-btn.secondary::before {
    content: "\f1ad";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: #999999;
}

  .member-gallery {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .featured-image-container {
    position: relative;
    overflow: hidden;
  }

  .featured-image-container img {
    border: 2px solid #7546ff;
  }
  .featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .social-icon-overlay {
    position: absolute;
    left: 10px;
    top: 30px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #007ab5;
    color: #ffffff;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .featured-image-container:hover .social-icon-overlay {
    opacity: 1;
  }

  .thumbnail-slider-container {
    height: 400px;
    width: 100px;
  }
  .thumbnail-swiper {
    height: 100%;
  }
  .thumbnail-slide {
    width: 100px;
    height: 100px !important;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease, border 0.3s ease;
  }
  .thumbnail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-slide-thumb-active {
    opacity: 1;
    border: 3px solid #7546ff;
  }

  /* --- Responsive Design --- */
  @media (max-width: 991px) {
    .featured-image {
      width: 90vw;
    }
    .ac-header-grid,
    .member-profile-grid {
      grid-template-columns: 1fr;
    }
    .ac-header-title {
      font-size: 3rem;
      text-align: start;
    }
    .ac-header-description {
      text-align: start;
    }
    .member-info-content {
      text-align: start;
      width: 95vw;
    }
    .member-tags {
      justify-content: center;
    }
    .member-gallery {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .thumbnail-slider-container {
      height: 100px;
      width: 100%;
    }
    .thumbnail-slide {
      width: 100px !important;
      height: 100px !important;
    }
  }

  @media (max-width: 575px) {
    .advisory-committee-section-v2 {
      padding: 80px 0;
    }
    .member-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .member-tags .tag-btn {
        width: 100%;
        font-size: 0.8rem;
    }
    .ac-header-title {
      font-size: 2.5rem;
    }
    .member-info-content .member-name {
      font-size: 2rem;
    }
  }
  /* advisory-committee-section-v2 ends */

