body {
  font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */

.lucknow-navbar {
  background: transparent;
  transition: all 0.3s ease;
  padding: 16px 0;
}

.lucknow-navbar .nav-link {
  color: #fff;
  font-weight: 500;
}

.lucknow-navbar .nav-link:hover,
.lucknow-navbar .nav-link.active {
  color: #f6c56f;
}

.lucknow-navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.6);
}

.lucknow-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Award Button */
.lucknow-navbar .btn-award {
  background: #f6c56f;
  color: #3a260e;
}

/* ================= NAVBAR ON SCROLL ================= */
.lucknow-navbar.scrolled {
  background: rgba(255, 248, 235, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.lucknow-navbar.scrolled .nav-link {
  color: #5a3e1b;
}

.lucknow-navbar.scrolled .nav-link:hover {
  color: #c0892b;
}


/* ================= HERO SECTION ================= */

/* ================= HERO HASHTAG IMAGE ================= */
.hero-hashtag {
  margin-bottom: 12px;
  opacity: 0;
  animation: slideFadeDown 1s ease forwards;
  animation-delay: 0.4s;
}

.hashtag-img {
  max-width: 280px;   /* adjust if needed */
  height: auto;
}

/* Existing animation (keep as-is) */
@keyframes slideFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .hashtag-img {
    max-width: 140px;
  }
}



.hero-section {
  position: relative;
  background: url('../assets/images/hero_Img.png') center / cover no-repeat;
  color: #fff;
  padding: 120px 0 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(58, 38, 14, 0.92),
    rgba(58, 38, 14, 0.65)
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

/* MAIN CONTENT */
.hero-main {
  min-height: 70vh;
}

/* LEFT CONTENT */
.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.hero-title span {
  color: #f6c56f;
}

.hero-theme {
  font-style: italic;
  margin-top: 15px;
  font-size: 1.1rem;
}

.hero-date {
  margin-top: 14px;
  font-weight: 500;
  color: #f6c56f;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
}

.btn-primary-hero {
  background: #f6c56f;
  color: #3a260e;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
}

.btn-primary-hero:hover {
  background: #e0ae50;
  color: #3a260e;
}

.btn-outline-hero {
  border: 2px solid #f6c56f;
  color: #f6c56f;
  padding: 9px 22px;
  border-radius: 30px;
  margin-left: 12px;
  font-weight: 600;
}

.btn-outline-hero:hover {
  background: #f6c56f;
  color: #3a260e;
}

/* RIGHT LOGO */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  max-width: 100%;
  width: 480px;
}

/* HERO FOOTER BOX */

.hero-footer {
  margin-top: 40px;
  padding: 26px 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);

  /* FULL BORDER LINE */
  border-top: 2px solid #f6c56f;
  border-bottom: 2px solid #ffffff;
  
}

.hero-footer p {
  margin: 0;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================= TYPEWRITER EFFECT ================= */
.cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s infinite;
  font-weight: 700;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}



@media (max-width: 768px) {
  .hero-footer p {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 10px;
  }
}


/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-main {
    text-align: center;
  }

  .hero-logo-img {
    width: 260px;
    margin-top: 30px;
  }

  .btn-outline-hero {
    margin-left: 0;
    margin-top: 15px;
  }

  .hero-footer {
    margin-top: 30px;
  }
}



/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 90px 0;
  background: #fff8eb; /* same ivory tone as navbar on scroll */
}

.section-tag {
  color: #c0892b;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #3a260e;
  margin-bottom: 20px;
}

.about-content p {
  color: #4b3a22;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Highlight "About" word */
.title-about {
  color: #ffffff;
  background: #3a260e;
  padding: 2px 4px;
  border-radius: 4px;
  margin-right: 6px;
}


/* IMAGE */
.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ANIMATIONS */
.about-content {
  animation: fadeLeft 1.1s ease forwards;
}

.about-image {
  animation: fadeRight 1.1s ease forwards;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-image {
    margin-top: 30px;
  }
}




/* ================= LEGACY SECTION start================= */


.legacy-section {
  padding: 80px 0;
  background: #fff8eb; /* Same as About section */
}

/* HEADING */
.legacy-heading {
  margin-bottom: 50px;
}

/* BOX */
.legacy-box {
  background: #8e683a;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* ICON WITH CIRCLE */
.legacy-box i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #8e683a;
  background: #ffffff;
  border-radius: 50%;
  margin-bottom: 12px;
  transition: background 0.35s ease, color 0.35s ease;
}

/* NUMBER */
.legacy-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff8eb;
  margin-bottom: 5px;
  transition: color 0.35s ease;
}

/* TITLE */
.legacy-box h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff8eb;
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

/* TEXT */
.legacy-box p {
  font-size: 0.9rem;
  color: #fff8eb;
  line-height: 1.6;
  transition: color 0.35s ease;
}

/* HOVER EFFECT */
.legacy-box:hover {
  background: #7a562f;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  transform: translateY(-6px);
}

/* ICON HOVER */
.legacy-box:hover i {
  background: #ffffff;
  color: #7a562f;
}

/* ROW SPACING */
.legacy-row {
  margin-top: 25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .legacy-section {
    padding: 60px 0;
  }

  .legacy-box {
    margin-bottom: 20px;
  }
}

/* ================= LEGACY SECTION Close ================= */




/* =========================
   WHY BHARATCOOP26 SECTION
   ========================= */


.why-bharatcoop-alt {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff8eb 0%, #fff3de 100%);
  position: relative;
  overflow: hidden;
}



/* subtle pattern */
.why-bharatcoop-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(192,137,43,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* Heading */
.why-heading {
  margin-bottom: 50px;
}

/* List wrapper */
.why-list {
  position: relative;
  padding-left: 45px;
  margin-top: 40px;
}

/* Vertical accent line */
.why-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #c0892b, #8e683a);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(192,137,43,0.4);
}

/* Item */
.why-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(192,137,43,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Icon */
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8e683a, #c0892b);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff8eb;
  margin-right: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(192,137,43,0.18);
  transition: all 0.4s ease;
}

/* Content */
.why-content h6 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #3a260e;
  margin-bottom: 6px;
}

.why-content p {
  font-size: 0.95rem;
  color: #4b3a22;
  line-height: 1.7;
}

/* Hover */
.why-item:hover {
  transform: translateY(-4px) translateX(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.why-item:hover .why-icon {
  box-shadow: 0 0 0 10px rgba(192,137,43,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .why-bharatcoop-alt {
    padding: 60px 0;
  }

  .why-list {
    padding-left: 30px;
  }

  .why-list::before {
    left: 14px;
  }

  .why-icon {
    margin-right: 15px;
  }
}




/* =========================
   KEY HIGHLIGHTS
   ========================= */
.key-highlights-section {
  padding: 50px 0 80px;
  background: linear-gradient(180deg, #fff3de 0%, #fff8eb 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.key-highlights-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192,137,43,0.35), transparent 70%);
  opacity: 0.5;
}

/* Heading */
.highlights-heading {
  margin-bottom: 30px;
}

/* Grid spacing */
.highlights-grid {
  row-gap: 22px;
}

/* ===========================
   CARD – SAME FOR ALL
=========================== */
.highlight-card {
  height: 100%;
  background: #ffffff;
  padding: 24px 22px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(192,137,43,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Bottom accent strip */
.highlight-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #8e683a, #c0892b);
}

/* ===========================
   ICON – CIRCULAR & CENTERED
=========================== */
.highlight-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #8e683a, #c0892b);
  color: #ffffff;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 0 0 6px rgba(192,137,43,0.22);
  transition: all 0.4s ease;
}

/* Title */
.highlight-card h6 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #845010; /* gold text */
  margin-bottom: 6px;
}

/* Text */
.highlight-card p {
  font-size: 0.92rem;
  color: #9a6a2c; /* soft gold */
  line-height: 1.65;
  margin-bottom: 0;
}

/* Hover */
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(112, 28, 28, 0.15);
}

.highlight-card:hover .highlight-icon {
  box-shadow: 0 0 0 10px rgba(192,137,43,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .key-highlights-section {
    padding: 60px 0;
  }

  .highlight-card {
    padding: 22px 20px;
  }
}


/* =========================
   FOCUS AREAS
   ========================= */
.focus-areas-section {
  padding: 90px 0;
  background: #fff8eb; /* keep same as previous sections */
}

/* Heading */
.focus-heading {
  margin-bottom: 55px; /* more breathing space */
}

/* Wrapper */
.focus-image-wrapper.wide {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: none; /* ✅ removed background shadow */
}

/* Image */
.focus-bg-image {
  width: 100%;
  min-height: 520px;
  height: auto;
  object-fit: cover;
  object-position: center top; /* fixes bad crop */
  display: block;
}

/* Overlay – subtle contrast, not heavy */
.focus-overlay.center {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,248,235,0.15),
    rgba(255,248,235,0.65)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* Chips Container */
.focus-chips {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-content: center;
}

/* Chip */
.focus-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.95);
  color: #3a260e;
  padding: 18px 24px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

/* Icon */
.focus-chip i {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #8e683a, #c0892b);
  color: #fff8eb;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Hover – calmer & premium */
.focus-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width: 991px) {
  .focus-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .focus-overlay.center {
    padding: 50px 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .focus-bg-image {
    min-height: 420px;
  }

  .focus-chips {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .focus-chip {
    font-size: 0.9rem;
    padding: 14px 20px;
  }
}



/* =========================
   AGENDA HIGHLIGHTS
   ========================= */

.agenda-section {
  padding: 90px 0;
  background: #fff8eb;
}

/* Heading */
.agenda-heading {
  margin-bottom: 60px;
}

/* Cards Layout */
.agenda-cards {
  row-gap: 40px;
}

/* Card */
.agenda-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 28px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border: 1px solid rgba(192,137,43,0.25);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px);
}

/* Accent strip */
.agenda-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #8e683a, #c0892b);
}

/* =========================
   DAY LABEL (UPDATED)
   ========================= */

.agenda-day {
  text-align: center;
  margin-bottom: 22px;
}

.agenda-day span {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #8e683a;
  /* text-transform: uppercase; */
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(192,137,43,0.6);
}

.agenda-day h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 10px;
  color: #3a260e;
}

/* =========================
   LIST
   ========================= */

.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agenda-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4b3a22;
  line-height: 1.6;
}

/* Bullet */
.agenda-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c0892b;
  font-size: 1.2rem;
}

/* =========================
   FEATURED (DAY 2)
   ========================= */

.agenda-card.featured {
  background: linear-gradient(135deg, #8e683a, #c0892b);
  color: #fff8eb;
}

.agenda-card.featured .agenda-day span {
  color: #fff8eb;
  border-bottom-color: rgba(255,248,235,0.7);
}

.agenda-card.featured .agenda-day h5 {
  color: #fff8eb;
}

.agenda-card.featured .agenda-list li {
  color: #fff8eb;
}

.agenda-card.featured .agenda-list li::before {
  color: #fff8eb;
}

/* =========================
   HOVER
   ========================= */

.agenda-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(230, 10, 10, 0.18);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  .agenda-section {
    padding: 70px 0;
  }

  .agenda-card {
    padding: 26px 22px;
  }

  .agenda-day span {
    font-size: 1.2rem;
  }
}



/* ================================
   WHY LUCKNOW SECTION
================================ */

.why-lucknow-section {
  padding: 80px 0 0;
  background: #fff8eb;
}

/* ---- BOX STYLE (UPDATED) ---- */
.lucknow-box {
  background: #ffffff;
  border-radius: 14px;
  height: 230px; /* REDUCED SIZE */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  border: 1px solid rgba(142, 104, 58, 0.15);
}

/* ICON */
.lucknow-box i {
  font-size: 34px;
  color: #ffffff;
  background: #8e683a;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

/* TITLE */
.lucknow-box h6 {
  color: #8e683a;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.lucknow-box p {
  font-size: 0.88rem;
  color: #4b3a22;
  line-height: 1.6;
  margin: 0;
}

/* HOVER EFFECT */
.lucknow-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.2);
}

.lucknow-box:hover i {
  background: #c0892b;
}


/* FULL WIDTH IMAGE */
.lucknow-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.lucknow-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .lucknow-box {
    height: 210px;
    padding: 18px;
  }

  .lucknow-box p {
    font-size: 0.85rem;
  }
}



/* ================================
   LOYALTY PROGRAM SECTION
================================ */


.highlights-heading {
  margin-bottom: 10px;
}
.loyalty-section {
  padding: 90px 0;
  background: #fff8eb;
}

/* TAGLINE */
.loyalty-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8e683a;
  margin-bottom: 15px;
}

/* TEXT HIGHLIGHT */
.loyalty-highlight {
  font-weight: 600;
  color: #4b3a22;
  margin-top: 15px;
}

/* IMAGE */
.loyalty-image {
  max-width: 70%;
  border-radius: 10px;
  box-shadow: transparent;
}

/* HOW TO WIN */
.how-to-win-title {
  font-size: 2rem;
  font-weight: 800;
  color: #8e683a;
  margin-bottom: 10px;
}

/* WIN BOX */
.win-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  border: 1px solid rgba(142, 104, 58, 0.15);
}

.win-box i {
  width: 60px;
  height: 60px;
  background: #8e683a;
  color: #fff8eb;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.win-box h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #8e683a;
  margin-bottom: 6px;
}

.win-box p {
  font-size: 0.88rem;
  color: #4b3a22;
  margin: 0;
}

/* HOVER */
.win-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.2);
}

/* FOOTER MESSAGE */
.loyalty-footer-box {
  background: linear-gradient(135deg, #8e683a, #c0892b);
  color: #fff8eb;
  padding: 28px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.loyalty-footer-box h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.loyalty-footer-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .loyalty-section {
    padding: 70px 0;
  }

  .loyalty-tagline {
    font-size: 1.3rem;
  }

  .loyalty-image {
    margin-top: 25px;
  }
}





/* ================================
   CONTACT SECTION
================================ */

.contact-section {
  padding: 80px 0 0;
  background: #fff8eb;
}

/* CONTACT BOX */
.contact-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(142, 104, 58, 0.15);
  transition: all 0.35s ease;
}

/* TOP ICON */
.contact-box > i {
  font-size: 34px;
  color: #ffffff;
  background: #8e683a;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* HEADING */
.contact-box h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #8e683a;
  margin-bottom: 10px;
}

/* NAME */
.contact-name {
  font-weight: 600;
  color: #4b3a22;
  margin-bottom: 12px;
}

/* CONTACT DETAILS */
.contact-box p {
  font-size: 0.95rem;
  color: #4b3a22;
  margin-bottom: 8px;
}

.contact-box p i {
  color: #8e683a;
  margin-right: 6px;
}

.contact-box a {
  color: #4b3a22;
  text-decoration: none;
}

.contact-box a:hover {
  color: #c0892b;
}

/* HOVER */
.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.2);
}

/* FULL WIDTH IMAGE */
.contact-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.contact-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 0;
  }

  .contact-box {
    padding: 26px 22px;
  }
}




/* =========================
   PAST SPEAKERS SECTION
========================= */



/* ============================
   PAST SPEAKERS SECTION
============================ */
.past-speakers-section {
  padding: 90px 0;
  background: #fff8eb;
}

.past-speakers-section .section-title {
  margin-bottom: 10px;
}

.past-speakers-section .section-subtitle {
  margin-bottom: 30px;
}

/* ============================
   SWIPER CONTAINER
============================ */
.pastSpeakersSwiper {
  position: relative;
  padding: 30px 0 70px; /* bottom space for dots */
}

/* Ensure equal height slides */
.pastSpeakersSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ============================
   SPEAKER CARD
============================ */
.speaker-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(192,137,43,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
}

/* Hover */
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.15);
}

/* ============================
   SPEAKER IMAGE
============================ */
.speaker-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid rgba(192,137,43,0.4);
}

/* ============================
   TEXT
============================ */
.speaker-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #8e683a;
  margin-bottom: 8px;
}

.speaker-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b3a22;
  margin-bottom: 0;
}

/* ============================
   SWIPER PAGINATION DOTS
============================ */
.pastSpeakersSwiper .swiper-pagination {
  bottom: 10px !important;
  text-align: center;
}

.pastSpeakersSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(142, 104, 58, 0.35);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.pastSpeakersSwiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #8e683a, #c0892b);
  transform: scale(1.3);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
  .speaker-card img {
    width: 95px;
    height: 95px;
  }

  .past-speakers-section {
    padding: 70px 0;
  }
}


/* ============================
  Past Partners
============================ */

.past-partners-section {
  padding: 90px 0;
  background: #fff8eb;
}

/* Swiper spacing */
.past-partners-section .swiper {
  padding: 30px 0 60px;
}

/* Partner Card */
.partner-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(192,137,43,0.2);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

/* Image */
.partner-card img {
  width: 230px;
  height: 115px;
  object-fit: contain;
}

/* Hover */
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.15);
}

/* Pagination dots */
.past-partners-pagination {
  bottom: 0 !important;
}

.past-partners-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(192,137,43,0.35);
  opacity: 1;
  margin: 0 6px !important;
}

.past-partners-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #8e683a, #c0892b);
}

/* Mobile */
@media (max-width: 768px) {
  .partner-card img {
    width: 200px;
    height: 100px;
  }
}





/* ===============================
   OUR PARTNERS SECTION
================================ */
/* ===============================
   OUR PARTNERS SECTION
================================ */

.our-partners-section {
  padding: 90px 0;
  background: #fff8eb;
}

/* Title spacing */
.our-partners-section .section-title {
  margin-bottom: 6px;
}

.our-partners-section .section-subtitle {
  margin-bottom: 0;
}

/* ===============================
   PARTNER ITEM
================================ */

.partner-item {
  text-align: center;
}

/* Partner label */
.partner-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #8e683a;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

/* ===============================
   LOGO BOX
================================ */

.partner-logo-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;

  width: 200px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(192, 137, 43, 0.18);

  transition: all 0.35s ease;
}

/* Center logo boxes ONLY in row-1 cards */
.partner-item .partner-logo-box {
  margin-left: auto;
  margin-right: auto;
}

/* Logo image */
.partner-logo-box img {
  max-width: 150px;
  max-height: 65px;
  object-fit: contain;
}

/* Hover effect */
.partner-logo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* ===============================
   SUPPORTING PARTNERS GAP FIX
================================ */

.supporting-partners {
  gap: 8px;   /* 🔥 reduced gap now works */
}

/* ===============================
   ROW SPACING
================================ */

.our-partners-section .row + .row {
  margin-top: 50px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .partner-logo-box {
    width: 180px;
    height: 90px;
  }

  .partner-logo-box img {
    max-width: 135px;
    max-height: 60px;
  }
}



/* ===============================
   ESTEEMED SPEAKERS SECTION
================================ */

.esteemed-speakers-section {
  background: #fff8eb; /* same as theme */
}

/* Speaker Card */
.speaker-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  height: 100%;
  border: 2px solid rgba(192, 137, 43, 0.55);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.speaker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 137, 43, 0.95);
  box-shadow: 0 18px 42px rgba(192, 137, 43, 0.28);
}

/* Bigger Speaker Image */
.speaker-img {
  width: 140px;   /* increased */
  height: 140px;  /* increased */
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(192, 137, 43, 0.75);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Speaker Text */
.speaker-info h5 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #2a2a2a;
}

.speaker-designation {
  margin-bottom: 2px;
  font-weight: 700;
  color: #7a5322;
  font-size: 0.95rem;
}

.speaker-company {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.35;
}

/* Mobile */
@media (max-width: 768px) {
  .speaker-img {
    width: 120px;
    height: 120px;
  }

  .speaker-card {
    padding: 22px 16px;
  }
}

