/* CSS Variables for Brand Colors */
:root {
  --primary-color: #a0845c; /* Gold/Brown */
  --dark-color: #1e2a38; /* Dark Navy */
  --light-color: #f5f5f5;

  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

/* Global Reset & Body */
body {
  font-family: var(--font-body);
  background-color: var(--light-color);
  margin: 0;
  padding: 0;
}

/* =========================================
   Header Section Starts
========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.custom-navbar {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

/* Brand / Logo */
.custom-navbar .navbar-brand {
  font-family: var(--font-body);
  color: var(--primary-color);
  font-weight: 800;
  /* Scales the logo smoothly so it doesn't crowd the links on mid-sized screens */
  font-size: clamp(1.3rem, 2vw, 1.8rem); 
  letter-spacing: -0.5px;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.custom-navbar .navbar-brand:hover {
  color: var(--dark-color);
}

/* Navigation Links (Desktop Optimization) */
.custom-navbar .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.85rem; /* Slightly smaller to fit all 10 links elegantly */
  padding: 8px 10px !important; /* Tighter horizontal padding */
  transition: color 0.3s ease;
  white-space: nowrap; /* Prevents text from breaking onto two lines */
}

.custom-navbar .nav-link:hover {
  color: var(--primary-color);
}

/* Contact Button */
.btn-contact {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.btn-contact:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

/* Hamburger Menu Icon Styling */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 5px;
}

.navbar-toggler:focus {
  outline: none;
}

/* =========================================
   Mobile Adjustments (Up to 1199px)
========================================= */
@media (max-width: 1199.98px) {
  .custom-navbar {
    padding: 12px 0; /* Slightly tighter on mobile */
  }

  /* CRITICAL: Allows scrolling inside the mobile menu for long lists */
  .custom-navbar .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #ffffff;
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .custom-navbar .nav-item {
    text-align: center;
  }

  /* Larger tap targets for mobile screens */
  .custom-navbar .nav-link {
    font-size: 1rem; 
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(0,0,0,0.02);
  }

  .btn-contact {
    display: block;
    width: 90%;
    margin: 15px auto 0 auto !important;
  }
}
/* Header Section Ends */

/* hero-section starts */
.hero-section {
  background-color: var(--dark-color);
  padding: 150px 0;
  font-family: var(--font-body);
  color: #ffffff;
  overflow: hidden; /* Prevents horizontal scroll from floating elements */
}

/* Eyebrow / Subtitle */
.eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 30px;
  height: 1px;
  background-color: var(--primary-color);
}

.eyebrow-text {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title .text-gold {
  color: var(--primary-color);
  font-style: normal;
}

.hero-desc {
  font-size: 1.05rem;
  color: #b4b9c0; /* Muted light gray */
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 35px;
}

/* Info Row (Icons + Text) */
.hero-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: #d1d5da;
  font-weight: 500;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-info-item svg {
  stroke: var(--primary-color);
}

/* Delegates Row */
.delegates-text {
  font-size: 0.85rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.delegates-roles {
  color: var(--primary-color);
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-hero-primary {
  background-color: #ffffff;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 12px;
  border-radius: 6px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.btn-hero-outline {
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 12px;
  border-radius: 6px;
  border: 1px solid #4a5665;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  color: #ffffff;
}

/* Right Column - Image & Floating Card */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.hero-image {
  width: 100%;
  height: auto; /* Let aspect-ratio handle the height */
  display: block; /* Removes any extra space below the image */
  aspect-ratio: 4.5 / 5; /* Defines the portrait shape */
  object-fit: cover; /* Ensures the image fills the shape without distortion */
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-card {
  position: absolute;
  bottom: 25px;
  left: -60px; /* Pulls it out to the left on desktop */
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  z-index: 10;
  width: max-content;
}

.floating-card-icon {
  width: 44px;
  height: 44px;
  background-color: #f4ebe0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card-icon svg {
  stroke: var(--primary-color);
  width: 22px;
  height: 22px;
}

.floating-card-text h6 {
  color: var(--dark-color);
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0 0 2px 0;
}

.floating-card-text p {
  color: #6c757d;
  font-size: 0.75rem;
  margin: 0;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-visual-wrapper {
    margin: 60px auto 30px auto;
  }
  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-info-row {
    flex-direction: column;
    gap: 12px;
  }
  .delegates-text {
    line-height: 1.8;
  }
}

/* hero-section ends */

/* =========================================
   Stats Section Starts
========================================= */
.stats-section {
  background-color: #ffffff; /* Pristine white background as per screenshot */
  padding: 80px 0;
}

.stats-item {
  position: relative;
  padding: 10px 0;
}

/* Vertical Dividers */
.stats-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: rgba(
    160,
    132,
    92,
    0.2
  ); /* Subtle gold tint matching the theme */
}

/* Typography for Numbers */
.stats-number {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

/* Thinner + Sign Styling */
.stats-plus {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--primary-color);
  opacity: 0.65;
  vertical-align: text-top;
  margin-left: 2px;
}

/* Typography for Labels */
.stats-label {
  font-family: var(--font-body);
  color: #5c6773; /* Muted slate grey */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  /* Remove divider for the absolute last item on desktop */
  .stats-item:last-child::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .stats-section {
    padding: 60px 0;
  }
  .stats-item {
    margin-bottom: 30px;
  }
  /* On mobile (2 columns), remove the right line from the 2nd and 4th items */
  .stats-item:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .stats-section {
    padding: 50px 0;
  }
  .stats-number {
    font-size: 2.5rem;
  }
  .stats-plus {
    font-size: 1.8rem;
  }
}
/* Stats Section Ends */

/* =========================================
   Events Section Starts
========================================= */
.events-section {
  background-color: var(--light-color); /* Matches the #F4F1EC background */
  padding: 80px 0 100px 0;
  font-family: var(--font-body);
}

/* Section Header Styling */
.section-header {
  margin-bottom: 50px;
}

.section-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #5c6773;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Event Card Styling */
.event-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  /* Distinct solid offset shadow matching the design */
  box-shadow: -6px 6px 0px rgba(160, 132, 92, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: -10px 10px 0px rgba(160, 132, 92, 0.2);
}

/* Card Header (Number & Badge) */
.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.event-card-number {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.event-card-badge {
  background-color: var(--light-color);
  color: #5c6773;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 4px;
}

.badge-flagship {
  background-color: #ebe5db; /* Slightly darker gold/beige for flagship */
  color: #8c7046;
}

/* Card Content Typography */
.event-card-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.event-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.event-card-date svg {
  stroke: var(--primary-color);
}

.event-card-desc {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1; /* Pushes the buttons to the bottom regardless of text length */
}

/* Card Buttons */
.event-card-actions {
  display: flex;
  gap: 10px;
}

.btn-card-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.btn-card-primary:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

.btn-card-outline {
  background-color: #ffffff;
  color: var(--dark-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid #d1d5da;
  transition: all 0.3s ease;
}

.btn-card-outline:hover {
  background-color: var(--light-color);
  border-color: #d1d5da;
  color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 767.98px) {
  .events-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
}
/* Events Section Ends */

/* =========================================
   About Section Starts
========================================= */
.about-section {
  background-color: #ffffff; /* Clean white background */
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Left Column Typography */
.about-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.about-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 3rem;
  line-height: 1.2;
}

.about-subtitle {
  color: #8c98a4;
  font-size: 0.85rem;
}

.about-text {
  color: #5c6773;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Call to Action Button */
.btn-about {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.btn-about:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

/* Right Column Visuals */
.about-visual-wrapper {
  position: relative;
  padding: 30px; /* Provides space for the decorative corners */
  max-width: 500px;
  margin: 0 auto;
}

/* Decorative Gold Brackets (L-Shapes) */
.about-visual-wrapper::before,
.about-visual-wrapper::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--primary-color);
  border-style: solid;
  opacity: 0.8;
}

.about-visual-wrapper::before {
  top: 0;
  left: 0;
  border-width: 1.5px 0 0 1.5px; /* Top and Left borders */
}

.about-visual-wrapper::after {
  bottom: 0;
  right: 0;
  border-width: 0 1.5px 1.5px 0; /* Bottom and Right borders */
}

/* Images Layout */
.about-images-container {
  display: flex;
  gap: 15px;
}

.about-img-col {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-img-left {
  /* Shifts the left image down to create the offset effect */
  transform: translateY(40px);
}

.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 5; /* Keeps the images perfectly proportioned */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-section {
    padding: 80px 0;
  }
  .about-title {
    font-size: 2.5rem;
  }
  .about-visual-wrapper {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .about-title {
    font-size: 2.2rem;
  }
  .about-images-container {
    gap: 10px;
  }
  .about-img-left {
    transform: translateY(20px); /* Reduce offset on mobile */
  }
  .about-visual-wrapper {
    padding: 20px;
  }
  .about-visual-wrapper::before,
  .about-visual-wrapper::after {
    width: 40px;
    height: 40px;
  }
}
/* About Section Ends */

/* =========================================
   Core Pillars Section Starts
========================================= */
.pillars-section {
  background-color: var(--light-color); /* Matches the #F4F1EC background */
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Intro Text Column */
.pillars-intro {
  padding-top: 10px; /* Aligns text visually with the content inside the cards */
  padding-right: 15px;
}

.pillars-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.pillars-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pillars-desc {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pillar Cards */
.pillar-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02); /* Extremely subtle border for crisp edges */
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

/* Icon Wrapper */
.pillar-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: #f8f4ee; /* Very soft beige/gold tint */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon-wrapper svg {
  stroke: var(--primary-color);
  width: 20px;
  height: 20px;
}

/* Card Typography */
.pillar-card-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.4;
  margin-bottom: 12px;
}

.pillar-card-text {
  font-size: 0.82rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .pillars-section {
    padding: 80px 0;
  }
  .pillars-intro {
    padding-top: 0;
    padding-right: 0;
    margin-bottom: 20px; /* Adds space below intro text on smaller screens */
  }
  .pillars-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .pillars-section {
    padding: 60px 0;
  }
  .pillars-title {
    font-size: 2.2rem;
  }
}
/* Core Pillars Section Ends */

/* =========================================
   Global Summit Section Starts
========================================= */
.summit-section {
  background-color: var(--dark-color); /* Dark Navy #1E2A38 */
  padding: 100px 0;
  color: #ffffff;
  font-family: var(--font-body);
}

/* Left Column - 2026 Graphic */
.summit-graphic-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.summit-year {
  font-family: var(--font-heading);
  /* Uses clamp for perfect scaling across desktop, tablet, and mobile */
  font-size: clamp(8rem, 12vw, 14rem);
  line-height: 1;
  color: rgba(
    255,
    255,
    255,
    0.12
  ); /* Muted/transparent white for the background text */
  margin: 0;
  user-select: none;
  letter-spacing: -2px;
}

.summit-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Right Column - Text Content */
.summit-content {
  padding-left: 20px;
}

.summit-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.summit-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Info Row (Icons + Text) */
.summit-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.summit-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #d1d5da;
  font-weight: 500;
}

.summit-info-item svg {
  stroke: var(--primary-color);
  width: 16px;
  height: 16px;
}

/* Description & Features */
.summit-desc {
  color: #b4b9c0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 95%;
}

.summit-features {
  font-size: 0.85rem;
  color: #d1d5da;
  margin-bottom: 35px;
}

.summit-features .highlight-gold {
  color: var(--primary-color);
  font-weight: 600;
}

/* Buttons */
.summit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-summit-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-summit-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-summit-primary:hover {
  background-color: #ffffff;
  color: var(--dark-color);
  border-color: #ffffff;
}

.btn-summit-primary:hover svg {
  transform: translateX(3px); /* Small arrow nudge animation */
}

.btn-summit-outline {
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-summit-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .summit-section {
    padding: 80px 0;
  }
  .summit-graphic-wrapper {
    margin-bottom: 50px;
  }
  .summit-content {
    padding-left: 0;
  }
  .summit-title {
    font-size: 2.4rem;
  }
  .summit-desc {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .summit-title {
    font-size: 2rem;
  }
  .summit-info-row {
    flex-direction: column;
    gap: 12px;
  }
  .summit-features {
    line-height: 1.8;
  }
  .summit-actions {
    flex-direction: column;
    width: 100%;
  }
  .summit-actions .btn-summit-primary,
  .summit-actions .btn-summit-outline {
    width: 100%;
    justify-content: center;
  }
}
/* Global Summit Section Ends */

/* =========================================
   Community Section Starts
========================================= */
.community-section {
  background-color: var(--light-color); /* #F4F1EC */
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Header Typography */
.community-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.community-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.community-subtitle {
  color: #5c6773;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

/* Community Cards */
.community-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(160, 132, 92, 0.1);
}

/* Icon Wrapper */
.community-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(160, 132, 92, 0.08); /* Very soft gold tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.community-icon-wrapper svg {
  stroke: var(--primary-color);
  width: 20px;
  height: 20px;
}

/* Card Text */
.community-card-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #5c6773;
  line-height: 1.4;
  margin: 0;
}

/* Button */
.btn-community {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.btn-community svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-community:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

.btn-community:hover svg {
  transform: translateX(4px); /* Hover arrow animation */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .community-section {
    padding: 80px 0;
  }
  .community-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 575.98px) {
  .community-section {
    padding: 60px 0;
  }
  .community-title {
    font-size: 2rem;
  }
  .community-card {
    padding: 24px 15px;
  }
}
/* Community Section Ends */

/* =========================================
   Speaker Faculty Section Starts
========================================= */
.speakers-section {
  background-color: #f9f8f6; /* Very light warm gray to contrast with white cards */
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Left Column - Content */
.speakers-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.speakers-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 30px;
}

/* Custom Checkmark List */
.speakers-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.speakers-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #5c6773;
  font-size: 0.9rem;
  line-height: 1.5;
}

.speakers-list svg {
  flex-shrink: 0;
  margin-top: 2px; /* Aligns the checkmark perfectly with the first line of text */
  stroke: var(--primary-color);
  width: 16px;
  height: 16px;
}

/* Buttons */
.speakers-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-speaker-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-speaker-primary:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

.btn-speaker-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.btn-speaker-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-speaker-link:hover {
  color: var(--dark-color);
}

.btn-speaker-link:hover svg {
  transform: translateX(4px);
}

/* Right Column - Speaker Cards */
.speaker-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(160, 132, 92, 0.12);
}

.speaker-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1.05; /* Keeps images beautifully proportioned like portraits */
  overflow: hidden;
}

.speaker-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img-wrapper img {
  transform: scale(1.03); /* Subtle zoom effect on hover */
}

.speaker-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.speaker-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.speaker-role {
  font-size: 0.8rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes the badge to the bottom */
}

/* Badges */
.speaker-badge {
  display: inline-block;
  background-color: #f5efeb; /* Very light beige/gold */
  color: #987c58;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  width: max-content;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .speakers-section {
    padding: 80px 0;
  }
  .speakers-title {
    font-size: 2.6rem;
  }
  .speakers-actions {
    margin-bottom: 50px; /* Adds space before cards wrap */
  }
}

@media (max-width: 575.98px) {
  .speakers-section {
    padding: 60px 0;
  }
  .speakers-title {
    font-size: 2.2rem;
  }
  .speakers-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-speaker-primary {
    text-align: center;
  }
  .btn-speaker-link {
    justify-content: center;
  }
}
/* Speaker Faculty Section Ends */

/* =========================================
   Insights & Analysis Section Starts
========================================= */
.insights-section {
  background-color: #f9f8f6; /* Matches Speaker section background */
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Reusable Section Header classes are applied directly in HTML */
/* No new header CSS needed unless overrides are required */

/* Article Card Styling */
.article-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden; /* Ensures the image respects the rounded corners */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(160, 132, 92, 0.1);
}

/* Image Wrapper */
.article-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10; /* Perfect for landscape article images */
}

.article-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img-wrapper img {
  transform: scale(1.03); /* Zoom on hover */
}

/* Image Badge */
.article-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(30, 42, 56, 0.7); /* Semi-transparent dark navy */
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px); /* Glassmorphism effect */
}

/* Card Body Content */
.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Makes the card body fill the available space */
}

.article-date {
  font-size: 0.75rem;
  color: #8c98a4;
  margin-bottom: 12px;
}

.article-title {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--dark-color);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.article-desc {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.6;
  flex-grow: 1; /* Pushes the 'Read Article' link to the very bottom */
  margin-bottom: 24px;
}

.article-link {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  transition: color 0.3s ease;
}

.article-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.article-link:hover {
  color: var(--dark-color);
}

.article-link:hover svg {
  transform: translateX(4px);
}

/* Main CTA Button */
.btn-insights-cta {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
   white-space: nowrap;
}

.btn-insights-cta:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .insights-section {
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .insights-section {
    padding: 60px 0;
  }
}
/* Insights & Analysis Section Ends */

/* =========================================
   Dual Feature (Recognition & Network) Starts
========================================= */
.dual-feature-section {
  background-color: #ffffff; /* Pristine white background */
  padding: 100px 0;
  font-family: var(--font-body);
}

/* Typography */
.df-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.df-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.df-subtitle {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Layout Columns & Divider */
.df-left-col {
  padding-right: 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.df-right-col {
  padding-left: 60px;
}

/* Awards Grid Elements (Left Column) */
.award-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
}

.award-item:hover {
  border-color: rgba(160, 132, 92, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.award-icon {
  width: 36px;
  height: 36px;
  background-color: #fbf9f6; /* Extremely light gold tint */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.award-icon svg {
  stroke: var(--primary-color);
  width: 18px;
  height: 18px;
}

.award-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
  margin: 0;
}

/* Search Form (Right Column) */
.network-search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.country-tag img {
  width: 16px;
  height: auto;
  border-radius: 2px; /* Slight rounding for a softer look */
  display: block;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2); /* Tiny shadow to define white flags */
}

.network-search-input {
  flex-grow: 1;
  background-color: var(--light-color); /* #F4F1EC */
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--dark-color);
  outline: none;
  transition: border-color 0.3s ease;
}

.network-search-input::placeholder {
  color: #a0aab5;
}

.network-search-input:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
}

.btn-search-dark {
  background-color: var(--dark-color);
  color: #ffffff;
  border: 1px solid var(--dark-color);
  border-radius: 6px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-search-dark:hover {
  background-color: #2a3b4e; /* Lighter navy */
  color: #ffffff;
}

/* Country Tags */
.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.country-tag {
  background-color: var(--light-color);
  color: #5c6773;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: background-color 0.3s ease;
}

.country-tag:hover {
  background-color: #ebe5db;
}

/* Call to Action Row */
.df-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.btn-df-gold {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-df-gold:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

.btn-df-dark {
  background-color: var(--dark-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-df-dark:hover {
  background-color: #ffffff;
  color: var(--dark-color);
}

.btn-df-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.btn-df-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-df-link:hover {
  color: var(--dark-color);
}

.btn-df-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .dual-feature-section {
    padding: 80px 0;
  }
  .df-left-col {
    padding-right: 0;
    border-right: none;
    margin-bottom: 60px;
  }
  .df-right-col {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .dual-feature-section {
    padding: 60px 0;
  }
  .df-title {
    font-size: 1.8rem;
  }
  .network-search-form {
    flex-direction: column;
  }
  .btn-search-dark {
    padding: 12px 24px;
  }
  .df-action-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-df-gold,
  .btn-df-dark {
    text-align: center;
  }
  .btn-df-link {
    justify-content: center;
  }
}
/* Dual Feature Ends */

/* =========================================
   Our Partners Section Starts
========================================= */
.partners-section {
  background-color: var(--light-color); /* Matches the #F4F1EC background */
  padding: 100px 0;
  font-family: var(--font-body);
  text-align: center;
}

/* Header Typography */
.partners-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.partners-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.partners-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Partner Logo Cards */
.partner-logo-card {
  background-color: #ffffff;
  border-radius: 6px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  color: #a0aab5;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  user-select: none;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(160, 132, 92, 0.08);
  color: var(--primary-color);
}

/* Partner Features Below Logos */
.partner-features-wrapper {
  margin-top: 60px;
}

.partner-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.partner-feature-icon {
  width: 44px;
  height: 44px;
  background-color: #f0eae1; /* Very subtle gold/beige tint matching design */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.partner-feature-icon svg {
  stroke: var(--primary-color);
  width: 18px;
  height: 18px;
}

.partner-feature-text {
  font-size: 0.82rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Call to Action Buttons */
.partners-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}

.btn-partner-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-partner-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-partner-primary:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: #ffffff;
}

.btn-partner-primary:hover svg {
  transform: translateX(4px);
}

.btn-partner-outline {
  background-color: transparent;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-partner-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .partners-section {
    padding: 80px 0;
  }
  .partners-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 575.98px) {
  .partners-section {
    padding: 60px 0;
  }
  .partners-title {
    font-size: 2rem;
  }
  .partners-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-partner-primary,
  .btn-partner-outline {
    justify-content: center;
  }
}
/* Our Partners Section Ends */

/* =========================================
   INSIGHTS GRID SECTION
========================================= */
.insights-grid-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: var(--font-body);
}

.ig-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: block;
}

/* Card Base Styles */
.ig-featured-card,
.ig-standard-card {
  background-color: var(--light-color); /* Beige #f4f1ec */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ig-featured-card:hover,
.ig-standard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Typography & Meta */
.ig-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  line-height: 1.3;
}
.ig-desc {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.6;
}
.ig-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}
.ig-meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-color);
}

/* =========================================
   Featured Card Specifics
========================================= */
.ig-featured-card {
  flex-direction: column;
} /* Stacks by default on mobile */
.ig-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
}
.ig-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-featured-body {
  padding: 30px;
}
.ig-featured-body .ig-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.ig-featured-body .ig-meta {
  margin-bottom: 16px;
}

/* Desktop Horizontal Layout for Featured Card */
@media (min-width: 992px) {
  .ig-featured-card {
    flex-direction: row;
  }
  .ig-featured-img {
    flex: 0 0 38%;
    aspect-ratio: auto;
  }
  .ig-featured-body {
    flex: 1;
  }
}

/* =========================================
   Standard Card Specifics
========================================= */
.ig-standard-card {
  flex-direction: column;
}
.ig-standard-img {
  width: 100%;
  aspect-ratio: 16/9;
}
.ig-standard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-standard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ig-standard-body .ig-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.ig-standard-body .ig-desc {
  margin-bottom: 20px;
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 991.98px) {
  .insights-grid-section {
    padding: 80px 0;
  }
  /* On tablets, all cards become 2-columns */
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  /* On mobile, all cards become 1-column */
  .col-lg-6,
  .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .insights-grid-section {
    padding: 60px 0;
  }
}

/* =========================================
   1. AWARD CATEGORIES SECTION
========================================= */
.award-categories-section {
  padding: 100px 0;
}

.ac-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ac-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.ac-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #f9f4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ac-icon-wrapper svg {
  stroke: var(--primary-color);
  width: 22px;
  height: 22px;
}

.ac-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5c6773;
  line-height: 1.4;
  margin: 0;
}

.ac-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-ac-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-ac-primary:hover {
  background-color: var(--dark-color);
}
.btn-ac-link {
  color: var(--dark-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.btn-ac-link:hover {
  color: var(--primary-color);
}

/* =========================================
   2. NOMINATION CRITERIA SECTION
========================================= */
.nomination-criteria-section {
  padding: 100px 0;
}

.nc-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.nc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.nc-number-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.nc-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 12px;
}
.nc-desc {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   3. FINAL CTA SECTION
========================================= */
.final-cta-section {
  padding: 100px 0;
}

.final-cta-title {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-size: 3rem;
  margin-bottom: 20px;
}
.final-cta-desc {
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 auto 40px auto;
  max-width: 650px;
}

/* =========================================
   Section-Wide Responsive Adjustments
========================================= */
@media (max-width: 991.98px) {
  .award-categories-section,
  .nomination-criteria-section,
  .final-cta-section {
    padding: 80px 0;
  }
  .final-cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .award-categories-section,
  .nomination-criteria-section,
  .final-cta-section {
    padding: 60px 0;
  }
  .final-cta-title {
    font-size: 2.2rem;
  }
}

/* =========================================
   1. CONTACT BANNER SECTION
========================================= */
.contact-banner-section {
  background-color: var(--dark-color);
  padding: 150px 0 60px 0;
}
.contact-banner-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
}
.contact-banner-title .text-gold {
  color: var(--primary-color);
}

/* =========================================
   2. MAIN FOOTER & CONTACT FORM
========================================= */
.main-footer-section {
  background-color: var(--light-color); /* Soft Beige */
  padding: 100px 0;
}

/* Left Info Column */
.footer-info .section-title {
  font-size: 2.5rem;
} /* Slightly smaller for balance */

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-color);
  flex-shrink: 0;
}
.footer-contact-list a {
  color: #5c6773;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact-list a:hover {
  color: var(--dark-color);
}

/* Right Form Column */
.footer-form-wrapper {
  background-color: #ede5da; /* Darker beige for contrast */
  padding: 50px;
  border-radius: 12px;
}

/* Reusing .custom-form styles with slight adjustments if needed */
.footer-form-wrapper .form-control {
  background-color: #ffffff;
  border: none;
  box-shadow: none;
}
.footer-form-wrapper .form-control:focus {
  border: 1px solid var(--primary-color);
  background-color: #ffffff;
}
.footer-form-wrapper .btn-submit {
  width: 100%;
}

/* =========================================
   Footer Responsive Adjustments
========================================= */
@media (max-width: 991.98px) {
  .main-footer-section {
    padding: 80px 0;
  }
  .contact-banner-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .main-footer-section {
    padding: 60px 0;
  }
  .contact-banner-section {
    padding: 50px 0;
  }
  .contact-banner-title {
    font-size: 2.2rem;
  }
  .footer-form-wrapper {
    padding: 30px;
  }
}
