@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.bc-business-connect,
.bc-business-connect *{
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

.bc-business-connect{
  --blue:#00609e;
  --navy:#071326;
  --deep:#003f6b;
  --yellow:#fdb712;
  --soft:#f7fbff;
  --softblue:#eef8ff;
  --cream:#fff8df;
  --line:#d7eaf5;
  --text:#071326;
  --muted:#4a5b6c;
  width:100%;
  background:#fff;
  color:var(--text);
  overflow:hidden;
}

.bc-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 22px;
}

.bc-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-width:250px;
  min-height:56px;
  padding:0 30px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.bc-btn-primary,
.bc-btn-yellow{
  background:var(--yellow);
  color:var(--navy);
  box-shadow:0 12px 26px rgba(253,183,18,.28);
}

.bc-btn-primary:hover,
.bc-btn-yellow:hover{
  background:#ffd54f;
  transform:translateY(-3px);
}

.bc-btn-secondary,
.bc-btn-light{
  color:#fff;
  border:2px solid rgba(255,255,255,.75);
  background:rgba(255,255,255,.10);
}

.bc-btn-secondary:hover,
.bc-btn-light:hover{
  background:#fff;
  color:var(--blue);
  transform:translateY(-3px);
}

/* HERO */
.bc-about-hero{
  position:relative;
  min-height:560px;
  padding:70px 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  border-bottom:5px solid var(--yellow);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bc-about-hero:before{\n  content:"";\n  position:absolute;\n  inset:0;\n  background:\n    radial-gradient(circle at 18% 24%,rgba(253,183,18,.16),transparent 24%),\n    radial-gradient(circle at 82% 20%,rgba(255,255,255,.10),transparent 26%);\n}

.bc-hero-inner{
  position:relative;
  z-index:2;
  max-width:920px;
  width:100%;
  margin:auto;
}

.bc-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:34px;
  padding:18px 40px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:clamp(36px,5vw,64px);
  font-weight:800;
  letter-spacing:-1px;
  line-height:1;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.bc-label span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--yellow);
  flex-shrink:0;
}

.bc-hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top: 48px !important; /* Moved lower sit comfortably beneath Business Connect title */
}

/* FLYER */
.bc-flyer-section{
  padding:58px 0 34px;
  background:#fff;
}

.bc-flyer-frame{
  width:100%;
  border-radius:22px;
  padding:12px;
  background:linear-gradient(90deg,var(--yellow),var(--blue),var(--navy));
  box-shadow:0 16px 35px rgba(0,70,110,.10);
}

.bc-flyer-image{
  width:100%;
  min-height:520px;
  border-radius:16px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color:#071326;
}

/* COUNTDOWN */
.bc-countdown-section{
  padding:0 0 52px;
  background:#fff;
}

.bc-countdown{
  background:#f6fbff;
  border:1px solid var(--line);
  border-left:5px solid var(--yellow);
  border-radius:18px;
  padding:18px 22px 22px;
}

.bc-countdown-title{
  margin:0 0 16px;
  color:var(--blue);
  font-size:14px;
  font-weight:700;
}

.bc-countdown-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.bc-time-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 8px;
  text-align:center;
}

.bc-time-box strong{
  display:block;
  color:var(--navy);
  font-size:25px;
  line-height:1;
  font-weight:700;
}

.bc-time-box span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:11px;
  font-weight:600;
}

/* DETAILS */
.bc-details{
  padding:72px 0;
  background:
    radial-gradient(circle at 10% 18%,rgba(253,183,18,.18),transparent 26%),
    radial-gradient(circle at 88% 24%,rgba(255,255,255,.16),transparent 28%),
    linear-gradient(135deg,#003f6b 0%,#00609e 58%,#00a0b5 100%);
  color:#fff;
}

.bc-details-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  padding:42px;
  box-shadow:0 22px 48px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.bc-details-card h2{
  margin:0 0 26px;
  color:#fff;
  font-size:clamp(30px,3.8vw,46px);
  line-height:1.12;
  font-weight:800;
}

.bc-detail-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.bc-detail-item{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  padding:22px 20px;
  min-height:122px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.bc-detail-item strong{
  display:block;
  color:#ffd54f;
  font-size:12px;
  margin-bottom:8px;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.3px;
}

.bc-detail-item span{
  display:block;
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.55;
}

/* GALLERY */
.bc-past-events{
  padding:64px 0;
  background:#fff;
}

.bc-section-title{
  text-align:center;
  max-width:820px;
  margin:0 auto 34px;
}

.bc-section-title h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(30px,3.8vw,46px);
  line-height:1.12;
  font-weight:700;
}

.bc-section-title p{
  margin:10px auto 0;
  max-width:650px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.bc-event-scroll{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:8px 0 16px;
}

.bc-event-photo{
  flex:0 0 360px;
  height:250px;
  scroll-snap-align:start;
  border-radius:22px;
  overflow:hidden;
  background:#071326;
  box-shadow:0 14px 32px rgba(0,70,110,.08);
  cursor:pointer;
  border:none;
  padding:0;
}

.bc-event-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:.35s ease;
}

.bc-event-photo:hover img{
  transform:scale(1.05);
}

/* POPUP */
.bc-popup{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(3,13,26,.88);
  padding:22px;
}

.bc-popup.active{
  display:flex;
}

.bc-popup img{
  max-width:94vw;
  max-height:86vh;
  object-fit:contain;
  border-radius:18px;
  background:#fff;
}

.bc-popup-close{
  position:absolute;
  top:22px;
  right:24px;
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:var(--navy);
  cursor:pointer;
  font-size:28px;
  font-weight:700;
}

/* VISUAL */
.bc-visual-strip{
  padding:70px 0;
  background:linear-gradient(135deg,#003f6b 0%,#00609e 60%,#005b91 100%);
  color:#fff;
}

.bc-visual-text{
  max-width:850px;
  margin:0 auto 28px;
  text-align:center;
}

.bc-visual-text h2{
  margin:0;
  font-size:clamp(30px,3.8vw,44px);
  line-height:1.1;
  font-weight:700;
}

.bc-floating-images{
  min-height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
}

.bc-floating-images img{
  width:34%;
  max-height:300px;
  object-fit:contain;
  filter:drop-shadow(0 24px 28px rgba(0,0,0,.22));
  animation:bcPulseFloat 3.8s ease-in-out infinite;
}

.bc-floating-images img:nth-child(2){animation-delay:.45s}
.bc-floating-images img:nth-child(3){animation-delay:.9s}

@keyframes bcPulseFloat{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-14px) scale(1.04)}
}

/* VALUE / BENEFITS SECTION */
.bc-value{
  padding:70px 0;
  /* Premium golden depth gradient with reduced brightness around 25-30% */
  background: radial-gradient(circle at center, #ebb934 0%, #bca120 100%) !important;
}

.bc-value .bc-section-title h2{
  color:var(--navy);
  font-weight:800;
}

.bc-value .bc-section-title p{
  color:#1F2937;
  font-weight:600;
}

.bc-value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.bc-value-card{
  background:#ffffff !important; /* Pure white background */
  border:1px solid rgba(0,0,0,0.06) !important;
  border-radius:20px !important; /* 18-22px rounded corners */
  padding:30px 26px !important;
  min-height:200px !important;
  box-shadow:0 10px 30px rgba(0,0,0,0.06) !important; /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease !important; /* Smooth transition */
}

.bc-value-card:hover{
  transform: translateY(-5px) !important; /* Subtle 5px hover lift */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important; /* Slightly stronger shadow */
}

.bc-line{
  width:48px;
  height:5px;
  border-radius:20px;
  background:var(--blue) !important; /* Blue accent line at top */
  margin-bottom:20px;
}

.bc-value-card h3{
  margin:0 0 10px;
  color:#1F2937 !important; /* Dark Heading */
  font-size:21px;
  line-height:1.25;
  font-weight:800;
}

.bc-value-card p{
  margin:0;
  color:#374151 !important; /* Dark high contrast body text */
  font-size:15px;
  line-height:1.6;
}

/* SOCIAL */
.bc-echo{
  padding:64px 0;
  background:linear-gradient(135deg,#f7fbff 0%,#fff 100%);
}

.bc-echo-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:22px;
  padding:38px;
  background:#fff;
  box-shadow:0 16px 34px rgba(0,70,110,.05);
}

.bc-echo-text h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(30px,3.8vw,46px);
  line-height:1.1;
  font-weight:700;
}

.bc-social-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.bc-social-card{
  min-height:108px;
  border-radius:18px;
  background:#f8fcff;
  border:1px dashed #b9dff3;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.bc-social-card img{
  width:64px;
  height:64px;
  object-fit:contain;
}

/* CTA */
.bc-register-cta{
  padding:64px 0 36px;
  background:#eef8ff;
}

.bc-register-box{
  background:linear-gradient(135deg,#003f6b 0%,#00609e 58%,#0074ad 100%);
  color:#fff;
  border-radius:22px;
  padding:50px 46px;
  text-align:center;
  border-top:5px solid var(--yellow);
}

.bc-register-box span{
  display:inline-flex;
  padding:9px 15px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:18px;
}

.bc-register-box h2{
  margin:0 auto 26px;
  max-width:850px;
  font-size:clamp(30px,4.6vw,52px);
  line-height:1.1;
  font-weight:700;
}

.bc-register-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* FORM */
.bc-form-section{
  padding:36px 0 64px;
  background:#eef8ff;
}

.bc-form-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:30px;
  align-items:stretch;
}

.bc-form-card,
.bc-ticket-card{
  border-radius:22px;
  padding:36px;
}

.bc-form-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 34px rgba(0,70,110,.04);
}

.bc-ticket-card{
  background:
    radial-gradient(circle at top right,rgba(253,183,18,.28),transparent 28%),
    linear-gradient(145deg,#003f6b,#00609e);
  color:#fff;
  border-top:5px solid var(--yellow);
  min-height:100%;
  overflow:hidden;
}

.bc-form-card h2,
.bc-ticket-card h2{
  margin:0 0 14px;
  font-size:clamp(30px,3.8vw,44px);
  line-height:1.12;
  font-weight:700;
}

.bc-form-card p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.bc-ticket-price{
  font-size:56px;
  line-height:1;
  font-weight:800;
  color:var(--yellow);
  margin:0 0 8px;
}

.bc-ticket-small{
  margin:0 0 24px;
  color:rgba(255,255,255,.88);
  font-size:14px;
  line-height:1.55;
}

.bc-benefit-stack{
  display:grid;
  gap:12px;
}

.bc-benefit{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.22);
  transition:.25s ease;
}

.bc-benefit:hover{
  background:rgba(255,255,255,.20);
  transform:translateX(4px);
}

.bc-benefit-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:#fff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.bc-benefit strong{
  display:block;
  font-size:15px;
  color:#fff;
  margin-bottom:4px;
}

.bc-benefit span{
  display:block;
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.84);
}

.bc-ticket-highlight{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--yellow),#ffe38a);
  color:var(--navy);
  font-size:14px;
  line-height:1.6;
  font-weight:600;
}

.bc-ticket-highlight strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
}

/* FORM FIELDS */
.bc-form{
  display:grid;
  gap:14px;
}

.bc-form input,
.bc-form select,
.bc-form textarea{
  width:100%;
  min-height:54px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fbfdff;
  padding:0 16px;
  outline:none;
  font-size:14px;
  color:var(--text);
}

.bc-form textarea{
  min-height:130px;
  padding:16px;
  resize:vertical;
}

.bc-form-subtitle{
  margin:6px 0 0;
  font-size:14px;
  color:var(--navy);
  font-weight:700;
}

.bc-check-grid,
.bc-radio-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.bc-check{
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  background:#fbfdff;
  border-radius:14px;
  padding:10px 12px;
  color:#20334c;
  font-size:14px;
}

.bc-check input{
  width:16px;
  height:16px;
  min-height:auto;
  padding:0;
  accent-color:var(--blue);
}

.bc-submit{
  border:none;
  cursor:pointer;
  min-height:54px;
  border-radius:16px;
  background:var(--yellow);
  color:var(--navy);
  font-size:15px;
  font-weight:700;
}

/* COLLAB */
.bc-collab{
  padding:64px 0;
  background:linear-gradient(135deg,#fff 0%,#fff8df 100%);
}

.bc-collab-box{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
}

.bc-collab-text{
  background:linear-gradient(135deg,#003f6b,#00609e);
  border-radius:22px;
  padding:36px;
  color:#fff;
  border-top:5px solid var(--yellow);
}

.bc-collab-text h2{
  margin:0 0 16px;
  font-size:clamp(30px,3.8vw,44px);
  line-height:1.12;
  font-weight:700;
}

.bc-collab-text p{
  margin:0 0 20px;
  color:rgba(255,255,255,.90);
  font-size:15px;
  line-height:1.6;
}

.bc-collab-points{
  display:grid;
  gap:12px;
}

.bc-collab-points div{
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  font-size:14px;
}

.bc-collab-points strong{
  color:var(--yellow);
}

.bc-collab-form{
  background:#fff;
  border:1px solid rgba(253,183,18,.28);
  border-radius:22px;
  padding:36px;
}

.bc-collab-form h3{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.15;
  font-weight:700;
}

.bc-collab-form p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:15px;
}

/* FINAL */
.bc-final{
  border-top:6px solid var(--yellow);
  padding:78px 22px;
  text-align:center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bc-final h1{
  margin:0 auto 28px;
  max-width:850px;
  color:#fff;
  font-size:clamp(34px,4.8vw,58px);
  line-height:1.1;
  font-weight:700;
}

@media(max-width:1050px){
  .bc-detail-grid,
  .bc-value-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .bc-form-grid,
  .bc-echo-box,
  .bc-collab-box{
    grid-template-columns:1fr;
  }

  .bc-flyer-image{
    min-height:420px;
  }
}

@media(max-width:768px){
  .bc-about-hero{
    min-height:500px;
    padding:48px 18px;
  }

  .bc-label{
    font-size:clamp(34px,10vw,50px);
    padding:16px 24px;
    margin-bottom:28px;
  }

  .bc-hero-buttons{
    flex-direction:column;
    gap:14px;
  }

  .bc-btn{
    width:100%;
    max-width:340px;
  }
}

@media(max-width:720px){
  .bc-wrap{
    padding:0 16px;
  }

  .bc-flyer-frame,
  .bc-details-card,
  .bc-register-box,
  .bc-form-card,
  .bc-ticket-card,
  .bc-echo-box,
  .bc-collab-text,
  .bc-collab-form{
    border-radius:18px;
    padding:24px;
  }

  .bc-flyer-section{
    padding:38px 0 24px;
  }

  .bc-flyer-image{
    min-height:300px;
    border-radius:14px;
  }

  .bc-countdown-section{
    padding-bottom:38px;
  }

  .bc-details,
  .bc-past-events,
  .bc-value,
  .bc-echo,
  .bc-register-cta,
  .bc-form-section,
  .bc-collab{
    padding-top:48px;
    padding-bottom:48px;
  }

  .bc-detail-grid,
  .bc-value-grid,
  .bc-social-grid,
  .bc-countdown-grid,
  .bc-check-grid,
  .bc-radio-row{
    grid-template-columns:1fr;
  }

  .bc-event-photo{
    flex:0 0 82%;
    height:230px;
  }

  .bc-floating-images{
    min-height:auto;
    flex-direction:column;
  }

  .bc-floating-images img{
    width:86%;
    max-height:320px;
  }

  .bc-register-actions{
    flex-direction:column;
  }
}

@media(max-width:390px){
  .bc-about-hero{
    min-height:480px;
  }

  .bc-label{
    font-size:32px;
    padding:14px 18px;
  }

  .bc-benefit{
    grid-template-columns:46px 1fr;
  }

  .bc-benefit-icon{
    width:46px;
    height:46px;
    font-size:20px;
  }
}
