:root {
  --primary-color: #2a1215;
  --secondary-color: #8c323a;
  --background-light: #f5f5f5;
  --background-white: #f4f2f0;
  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

body {
  background-color: var(--background-white);
}

/* --- Header Fixed + Styling --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Dynamic spacing so content doesn't overlap header */
body {
    padding-top: clamp(70px, 10vw, 80px); 
}

.bg-white{
    background-color: #fff;
}

.bg-grey{
    background-color: #f5f5f5;
}

/* --- Header Fixed + Styling --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}


/* Brand - Fluid Typography */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem); 
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    padding: 0;
    white-space: nowrap; /* Prevents logo from wrapping */
}

/* Nav Links - Base & Large Desktop (1500px+) */
.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    padding: 0.5rem;
    margin: 0 0.3rem; 
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevents text like "Annual Summit" from breaking */
}

.nav-link:hover,
.nav-link:focus {
    color: var(--secondary-color);
}

/* Get Tickets Button */
.btn-get-tickets {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
}

.btn-get-tickets:hover {
    background-color: #1a0b0d;
    border-color: #1a0b0d;
    color: #fff;
}

/* Toggler Icon Customization */
.navbar-toggler:focus {
    box-shadow: none;
}

/* ========================================================
   THE DANGER ZONE (1200px - 1499px)
   Laptops and small monitors. We must compress everything!
======================================================== */
@media (min-width: 1200px) and (max-width: 1499.98px) {
    .navbar-brand {
        font-size: 1.5rem; /* Shrink logo */
        margin-right: 10px; /* Pull menu closer to logo */
    }
    
    .nav-link {
        font-size: 0.85rem; /* Absolute minimum readable size (approx 13.6px) */
        padding: 0.4rem 0.2rem; /* Squeeze internal padding */
        margin: 0 0.15rem; /* Squeeze gaps between links */
        letter-spacing: -0.2px; /* Pull characters slightly tighter */
    }
    
    .btn-get-tickets {
        padding: 0.5rem 1rem; /* Shrink button padding */
        font-size: 0.85rem;
    }
}

/* ========================================================
   MOBILE & TABLET (Below 1200px)
   Hamburger Menu Configuration
======================================================== */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        background-color: #fcfcfc;
        border-radius: 10px;
        margin-top: 15px;
        padding: 1.5rem;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.02), 0 10px 20px rgba(0,0,0,0.05);
        max-height: 75vh; /* Prevents overflow on horizontal phones */
        overflow-y: auto; 
    }
    
    .nav-item {
        text-align: center;
        border-bottom: 1px solid #eaeaea;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 1rem 0; /* Huge touch targets for mobile thumbs */
        margin: 0;
        font-size: 1rem;
        white-space: normal;
    }
}

/* Hero Section Starts */
.hero-section {
  background-color: var(--primary-color);
  color: var(--background-white);
  padding: 80px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section .text-highlight {
  color: var(--secondary-color);
}

.hero-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--background-light);
  max-width: 500px; /* To prevent text from becoming too wide */
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Allows buttons to stack on smaller screens */
}

.hero-buttons .btn {
  font-family: var(--font-body);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border-width: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-buttons .btn-explore {
  background-color: var(--background-white);
  color: var(--primary-color);
  border-color: var(--background-white);
}

.hero-buttons .btn-explore:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.hero-buttons .btn-outline-light {
  border-color: var(--background-white);
  color: var(--background-white);
}

.hero-buttons .btn-outline-light:hover {
  background-color: var(--background-white);
  color: var(--primary-color);
}

.hero-image {
  border-radius: 15px;
}
.hero-visual-wrapper {
    position: relative;
    /*max-width: 600px;*/
    margin-left: auto;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Hero Section Ends */

/* --- Global Utilities for New Sections --- */
.section-subtitle {
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-subtitle::before {
  content: "";
  width: 25px;
  height: 1.5px;
  background-color: var(--secondary-color);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}
.icon-check {
  width: 16px;
  height: 16px;
  stroke: var(--secondary-color);
  fill: none;
  stroke-width: 2.5;
}
.btn-dark-custom {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.btn-dark-custom:hover {
  background-color: #1a0b0d;
  color: white;
}
.btn-outline-dark-custom {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline-dark-custom:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
.btn-danger-custom {
  background-color: #8c323a; /* Darker red matching screenshot */
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  border: none;
}
.btn-danger-custom:hover {
  background-color: #6b262c;
  color: white;
}

/* --- Section 1: Stats --- */
.stats-section {
  background-color: var(--background-white);
}
.stat-item {
  border-right: 1px solid #e8e5e1;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #e8e5e1;
    padding-bottom: 1.5rem;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* --- Section 2: Upcoming Conferences --- */
.conf-card {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.conf-card .card-img-top {
  height: 240px;
  object-fit: cover;
}
.conf-card .card-body {
  padding: 2rem;
}
.conf-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 700;
}
.badge-dark-pill {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  font-size: 0.65rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

/* --- Section 3: About Platform --- */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.quote-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  border-left: 3px solid var(--secondary-color);
}
.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary-color);
  line-height: 1.4;
}
.quote-author {
  font-size: 0.7rem;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
}
.check-item {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 992px) {
  .quote-box {
    right: 10px;
    bottom: -20px;
    max-width: 85%;
    padding: 20px;
  }
}

/* --- Section 4: Core Tracks --- */
.track-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: white;
  transition: transform 0.3s;
}
.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.track-icon {
  width: 50px;
  height: 50px;
  background-color: #fdf2f3; /* Light red tint */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.track-icon svg {
  width: 24px;
  height: 24px;
  stroke: #a3414a; /* Matching icon color to screenshot */
}
.track-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.track-text {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Section 5: Flagship Event --- */
.flagship-section {
  background-color: var(--primary-color);
}
.big-year {
  font-family: var(--font-heading);
  font-size: 16rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.8;
  letter-spacing: -5px;
}
.flagship-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #b08e61; /* Goldish color from screenshot */
  color: white;
  padding: 0.4rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  white-space: nowrap;
}
.icon-sm {
  width: 16px;
  height: 16px;
}
.event-meta span {
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.text-light-grey {
  color: #a09d9d;
  line-height: 1.7;
}
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.tags-row span {
  color: #8c323a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.btn-light-custom {
  background-color: white;
  color: var(--primary-color);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
}
.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 992px) {
  .big-year {
    font-size: 10rem;
  }
}

/* --- Section 6: Who Should Attend --- */
.attend-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  background: white;
  height: 100%;
}
.attend-card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
}

/* --- Section 7: Speakers --- */
.speaker-img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.speaker-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}
.speaker-title {
  font-size: 0.9rem;
}
.speaker-company {
  color: #a3414a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* --- Section 8: Insights --- */
.insight-card {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: none;
}
.insight-card .card-img-top {
  height: 200px;
  object-fit: cover;
}
.insight-category {
  color: #a3414a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}
.insight-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}
.insight-card .card-body {
  padding: 1.5rem;
}
.insight-footer {
  background: transparent;
  border-top: 1px solid #eaeaea;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.read-more {
  color: #a3414a;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.read-more:hover {
  color: var(--primary-color);
}

/* --- Section 9: Awards & Directory --- */
.award-item {
  display: flex;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #e8e5e1;
}
.award-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #a3414a;
  width: 45px;
  font-weight: 600;
}
.award-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.search-group .form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 6px 0 0 6px;
  border: 1px solid #e8e5e1;
  font-size: 0.9rem;
}
.search-group .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
.btn-search {
  background-color: var(--primary-color);
  color: white;
  border-radius: 0 6px 6px 0;
  padding: 0 1.5rem;
  font-weight: 500;
}
.btn-search:hover {
  background-color: #1a0b0d;
  color: white;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-tag {
  border: 1px solid #ddd;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #555;
  background: white;
  font-weight: 500;
}

/* --- Section 10: Sponsors --- */
.sponsor-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b5b5b5;
  letter-spacing: 1px;
  line-height: 1.2;
}
.sponsor-icon {
  width: 45px;
  height: 45px;
  background-color: #fdf2f3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sponsor-icon svg {
  width: 20px;
  height: 20px;
  stroke: #a3414a;
}
.max-w-800 {
  max-width: 800px;
}

/* --- Footer Section Starts --- */
.site-footer {
  background-color: var(--primary-color);
}

.main-footer,
.footer-bottom {
  background-color: #1a0b0d; /* Slightly darker shade matching the screenshot */
}

/* Custom Border Subtles for Dark Theme */
.border-dark-subtle {
  border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Dark Input Field */
.form-control-dark {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-dark:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: none;
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Icons */
.icon-xs {
  width: 14px;
  height: 14px;
}

/* Logo Details */
.footer-logo-icon {
  width: 32px;
  height: 32px;
  background-color: #a3414a; /* Using the muted red to match screenshot */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 16px;
  height: 16px;
}

/* Footer Gorilla Circles */
.gorilla-circle {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gorilla-circle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Footer Link Columns */
.footer-heading {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: #a09d9d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom a:hover {
  color: white !important;
}

/* --- Footer Section Ends --- */

/* --- Global Platform Section --- */
.global-platform-section {
  background-color: var(--primary-color);
}
.platform-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
}
.platform-img {
  height: 400px;
  width: 100%;
}

/* --- Our Story & Mission Sections --- */
.story-img {
  height: 600px;
}
.mission-img {
  height: 500px;
}
.mission-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #a3414a; /* Precise red from screenshot */
  margin-bottom: 0.2rem;
}

/* --- Values Section --- */
.value-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.value-badge {
  width: 45px;
  height: 45px;
  background-color: #fdf2f3;
  color: #a3414a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.value-content h5 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.value-content p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Gorilla Family Section --- */
.family-card {
  background: white;
  border: 1px solid #eaeaea;
  border-top: 4px solid;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.family-card.border-red {
  border-top-color: #a3414a !important;
}
.family-card.border-gold {
  border-top-color: #b08e61 !important;
}
.family-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.family-badge.badge-red {
  background-color: #fdf2f3;
  color: #a3414a;
}
.family-badge.badge-gold {
  background-color: #fdf8eb;
  color: #b08e61;
}
.family-title {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.tag-pill {
  border: 1px solid #eaeaea;
  border-radius: 50px;
  padding: 0.35rem 0.8rem;
  font-size: 0.65rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 8px;
  background-color: white;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .platform-title {
    font-size: 2.5rem;
  }
  .story-img,
  .mission-img {
    height: 400px;
  }
  .value-card {
    padding: 1.5rem;
  }
  .family-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .platform-title {
    font-size: 2.2rem;
  }
  .story-img,
  .mission-img {
    height: 300px;
  }
  .value-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* --- Conference Header Section --- */
.conf-header-section {
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.conf-header-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
}
.badge-dark-solid {
  background-color: rgba(255, 255, 255, 0.08);
  color: #e0e0e0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
}

/* --- Events List Section --- */
.event-card-horizontal {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.flagship-card {
  border: 2px solid #a3414a; /* Bold red border for flagship */
}
.event-card-img-container {
  height: 100%;
  min-height: 100%;
}
.event-card-img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.event-number-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #a3414a;
  color: white;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.event-number-badge.badge-white {
  background-color: white;
}
.event-card-body {
  padding: 3rem;
}
.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}
.event-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Meta Badges */
.badge-light-red-sm {
  background-color: #fdf2f3;
  color: #a3414a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.badge-outline-grey-sm {
  border: 1px solid #eaeaea;
  color: #666;
  background-color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.badge-light-green-sm {
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.event-meta-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Keyword Pills */
.keyword-pill {
  background-color: #fdf2f3;
  color: #a3414a;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Button variants */
.btn-text-red {
  color: #a3414a;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}
.btn-text-red:hover {
  color: var(--primary-color);
}

/* Responsive adjustments for horizontal cards */
@media (max-width: 992px) {
  .event-card-body {
    padding: 2rem;
  }
  .event-card-img-container {
    position: relative;
    height: 250px; /* Give image fixed height on tablet/mobile when stacked */
  }
}
@media (max-width: 576px) {
  .conf-header-title {
    font-size: 2.5rem;
  }
  .event-card-body {
    padding: 1.5rem;
  }
}

/* --- Experience Section --- */
.bg-light-gray {
  background-color: var(--background-white);
}
.exp-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s;
}
.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.exp-icon-box {
  width: 50px;
  height: 50px;
  background-color: #fdf2f3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.exp-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: #a3414a;
}
.exp-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.exp-text {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Speakers Hero Section --- */
.speakers-hero-section {
  background-color: var(--primary-color);
  padding: 1rem 0;
}
.speakers-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
}
.text-highlight-red {
  color: #a3414a; /* Precise red matching the screenshot */
}
.btn-white-custom {
  background-color: white;
  color: var(--primary-color);
  border-radius: 6px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-white-custom:hover {
  background-color: #f0f0f0;
  color: var(--primary-color);
}

/* --- Speakers Grid Section --- */
.bg-light-gray {
  background-color: var(--background-white);
}

/* Filter Pills */
.filter-pill {
  background-color: white;
  border: 1px solid #e0e0e0;
  color: #555;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.filter-pill:hover {
  background-color: #f9f9f9;
  color: #333;
}
.filter-pill.active {
  background-color: #8c323a; /* Dark red matching the active button */
  border-color: #8c323a;
  color: white;
}

/* Speaker Profile Cards */
.speaker-profile-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.speaker-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.speaker-profile-card .card-img-top {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  width: 100%;
}
.speaker-profile-card .card-body {
  padding: 1.5rem;
}
.speaker-profile-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}
.speaker-profile-role {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.8rem;
}
.speaker-profile-company {
  font-size: 0.65rem;
  font-weight: 700;
  color: #a3414a; /* Matching red */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.speaker-divider {
  margin: 1rem 0;
  border-color: #eaeaea;
  opacity: 1;
}
.speaker-profile-panel {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Speaker Demographics Section --- */
.demo-card {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}
.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.demo-card-title {
  color: #a3414a;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.demo-card-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Bottom Demographic Pills */
.max-w-1000 {
  max-width: 1000px;
}
.demo-pill {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .speakers-hero-title {
    font-size: 2.5rem;
  }
  .speakers-hero-section {
    padding: 4rem 0;
  }
  .demo-card {
    padding: 2rem 1rem;
  }
}

/* --- Articles Section Styles --- */

/* Featured Article Card */
.featured-article-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.featured-img {
  min-height: 100%;
}

.article-category {
  color: #a3414a; /* Specific red */
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-article-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}

.featured-article-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.article-meta {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-dot {
  color: #ccc;
  font-weight: bold;
}

.btn-lg-custom {
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
}

/* Filter Tabs */
.filter-tab-pill {
  background-color: white;
  border: 1px solid #eaeaea;
  color: #444;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-tab-pill:hover {
  background-color: #f9f9f9;
  border-color: #ddd;
  color: var(--primary-color);
}

.filter-tab-pill.active {
  background-color: #a3414a;
  border-color: #a3414a;
  color: white;
}

/* Article Grid Cards */
.article-grid-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.article-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.article-grid-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.article-card-body {
  padding: 1.8rem;
}

.article-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}

.article-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

.article-card-footer {
  background-color: transparent;
  border-top: 1px solid #f0f0f0;
  padding: 1.2rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-meta-sm {
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
}

.read-link {
  color: #a3414a;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.read-link:hover {
  color: var(--primary-color);
}

/* Load More Button */
.btn-outline-load-more {
  border: 1px solid #ddd;
  color: var(--primary-color);
  background-color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-outline-load-more:hover {
  background-color: #f9f9f9;
  border-color: #bbb;
  color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .featured-img {
    height: 300px; /* Give fixed height to the image on mobile/tablet when it stacks */
  }

  .featured-article-title {
    font-size: 1.8rem;
  }

  .article-card-body,
  .article-card-footer {
    padding: 1.5rem;
  }
}

/* --- Award Categories Section --- */
.award-cat-card {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.award-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.award-cat-badge {
  width: 48px;
  height: 48px;
  background-color: #eadadc; /* Soft muted pink from screenshot */
  color: #a3414a; /* Precise red */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.award-cat-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.award-cat-content p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Process Section --- */
.process-row {
  position: relative;
  z-index: 1;
}
.process-line {
  position: absolute;
  top: 32px; /* Centers the line exactly behind the circles */
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background-color: #e0e0e0;
  z-index: -1;
}
.step-circle {
  width: 64px;
  height: 64px;
  background-color: #f6e6e8; /* Background matches screenshot circle color */
  color: #a3414a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  /* Create a pseudo border to seamlessly cut the line behind it */
  box-shadow: 0 0 0 12px var(--background-white);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* --- Judging Panel Section --- */
.judging-img {
  height: 520px;
}
.pill-outline {
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.65rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  background-color: transparent;
  transition: all 0.2s ease;
}
.pill-outline:hover {
  background-color: white;
  border-color: #ccc;
  color: var(--primary-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .judging-img {
    height: 400px;
  }
  .award-cat-card {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  /* For Mobile: Add bottom borders to process steps instead of a horizontal line */
  .process-step {
    padding-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
  }
  .process-step:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .step-circle {
    box-shadow: none; /* remove pseudo-border on mobile */
  }
}

/* --- Sponsor Hero Section --- */
.sponsor-hero-section {
  background-color: var(--primary-color);
}
.sponsor-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
}

/* --- Why Sponsor Section --- */
.feature-icon-box {
  width: 45px;
  height: 45px;
  background-color: #fdf2f3; /* Light pink/red tint */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: #a3414a; /* Matching red */
}

/* --- Sponsorship Tiers Section --- */
.tier-card {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.tier-card-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eaeaea;
}
.tier-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.tier-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #a3414a;
  font-weight: 700;
}
.tier-card-body {
  padding: 2rem;
}
.icon-check-green {
  width: 16px;
  height: 16px;
  stroke: #2e7d32; /* Deep green */
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}
.tier-list-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

/* --- Addons Section --- */
.addon-card {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.addon-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.addon-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #a3414a;
  font-weight: 700;
}

/* --- Who Should Sponsor Section --- */
.org-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  background: white;
  height: 100%;
  transition: box-shadow 0.3s ease;
}
.org-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}
.org-card svg {
  width: 20px;
  height: 20px;
  stroke: #a3414a;
  flex-shrink: 0;
}
.org-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .sponsor-hero-title {
    font-size: 2.5rem;
  }
  .tier-card-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
  .tier-price {
    padding-left: 28px; /* Align with text */
  }
  .org-card {
    padding: 15px;
  }
}

/* --- Summit Global Section Styles --- */

/* Summit Hero Section */
.summit-hero-section {
  background-color: var(--primary-color);
}
.summit-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
}
.summit-hero-section .badge-dark-solid {
  background-color: rgba(255, 255, 255, 0.08);
  color: #e0e0e0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
}

/* Summit Overview Section */
.tag-pill-light {
  background-color: #fdf2f3;
  color: #a3414a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Agenda Section */
.agenda-item {
  border-color: #e8e5e1 !important;
}
.agenda-time {
  color: #a3414a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.agenda-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.agenda-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.agenda-tag {
  background-color: #fdf2f3;
  color: #a3414a;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
}
.agenda-tag-outline {
  border: 1px solid #eaeaea;
  background-color: white;
  color: #666;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Registration Section */
.pricing-card {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.pricing-highlight {
  border: 1px solid #a3414a;
  background-color: #fdf8f9; /* Slight red tint */
  transform: scale(1.03); /* Slightly larger */
  z-index: 2;
  box-shadow: 0 10px 30px rgba(163, 65, 74, 0.08);
}
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a3414a;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}
.pricing-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pricing-unit {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0;
}
.pricing-divider {
  border-color: #eaeaea;
  margin: 1.5rem 0;
  opacity: 1;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.pricing-features li {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pricing-features li:last-child {
  margin-bottom: 0;
}
.icon-check-green-sm {
  width: 16px;
  height: 16px;
  stroke: #2e7d32;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.btn-outline-pricing {
  border: 1px solid #ccc;
  color: var(--primary-color);
  background-color: transparent;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-outline-pricing:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #f9f9f9;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .summit-hero-title {
    font-size: 2.8rem;
  }
  .pricing-highlight {
    transform: scale(1);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .agenda-time {
    margin-bottom: 0.5rem;
  }
  .summit-hero-title {
    font-size: 2.4rem;
  }
}

/* --- Contact Page Section Styles --- */

/* Contact Hero Section */
.contact-hero-section {
  background-color: var(--primary-color);
  padding: 4rem 0;
}
.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
}

/* Contact Form Section */
.contact-form-section {
  background-color: var(--background-white);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-details-list li span {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}
.contact-icon {
  width: 20px;
  height: 20px;
  stroke: #888;
  flex-shrink: 0;
}

.contact-form-wrapper {
  background-color: #ebe9e9;
  border-radius: 12px;
  padding: 3rem;
}

.contact-form-wrapper .form-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form-input {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
}

.contact-form-input:focus {
  background-color: white;
  border-color: #a3414a;
  box-shadow: 0 0 0 3px rgba(163, 65, 74, 0.1);
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 992px) {
  .contact-hero-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

/* media-partners-section starts */
.media-partners-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom right,
    #fdfcff 0%,
    #f5f0ff 80%,
    #f5f0ff 100%
  );
  overflow: hidden;
}

.media-partners-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #131313;
  text-align: center;
  margin-bottom: 50px;
}
.sponsor-content {
    flex-grow: 1;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    /* align-items: center; */
    top: 50px;
}
.partner-card {
  background: linear-gradient(to bottom right, #ffffff 0%, #ffffff 100%);
  border: 1px solid #131313;
  /*padding: 60px 50px;*/
  /* height: 120px;  */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.partner-logo-content img {
  height: 180px;
}

.partner-logo-content .partner-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  color: #131313;
  line-height: 1.4;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
  .media-partners-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .media-partners-section {
    padding: 80px 0;
  }
  .media-partners-title {
    font-size: 2.2rem;
  }
  .partner-card {
    height: 100px;
  }
}

@media (max-width: 575px) {
  .partner-logo-content .partner-name {
    font-size: 1rem;
  }
}
/* 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: #8c323a;
  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;
}
.sponsors-hero {
    background-color: var(--dark-navy);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.sponsors-hero-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.sponsors-hero-desc {
    /*max-width: 900px;*/
    margin: 0 auto 25px;
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    font-family: "DM Sans", sans-serif;
}

.sponsors-hero-btn {
    background: #6c757d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.sponsors-hero-btn:hover {
    background: #5a6268;
    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;
  }
}
/* media-partners-section ends */

