:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --charcoal: #2d2d2d;
  --gold: #b68832;
  --gold-dark: #8a6a28;
}

.alternate { color: var(--gold); }

.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 130px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(182,136,50,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.page-header .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
}
.page-header .breadcrumb-item.active { color: var(--gold); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.section-title {
  margin-bottom: 40px;
}
.section-title h2,
.section-title h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
}
.section-title p {
  color: #888;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 10px auto 0;
}

.content-section {
  padding: 70px 0;
}
.content-section-alt {
  background: linear-gradient(135deg, #f9f9fb, #fff);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.team-card {
  background: #fff;
  border: 1px solid #eee;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  height: 100%;
}
.team-card:hover {
  box-shadow: 0 6px 25px rgba(182,136,50,0.12);
  transform: translateY(-3px);
}
.team-card .name { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 2px; }
.team-card .prof { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.team-card .bio { font-size: 0.88rem; color: #666; line-height: 1.6; }

.speaker-thumb {
  border-radius: 10px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  padding: 4px;
}
.speaker-thumb:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(182,136,50,0.2);
  transform: translateY(-3px);
}
.speaker-thumb img { border-radius: 8px; width: 100%; }
.speaker-label { font-size: 0.78rem; color: #555; font-weight: 600; margin-top: 6px; text-align: center; }

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(182,136,50,0.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card .sc-icon {
  width: 60px; height: 60px; line-height: 60px;
  border-radius: 50%;
  background: rgba(182,136,50,0.08);
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}
.service-card:hover .sc-icon { background: var(--gold); color: #fff; }
.service-card .sc-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.service-card .sc-desc { font-size: 0.85rem; color: #666; line-height: 1.6; }

.vm-card {
  background: #fff;
  border: 2px solid #eee;
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.vm-card:hover {
  box-shadow: 0 8px 30px rgba(182,136,50,0.12);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.vm-card .vm-icon { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.vm-card .vm-title { font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 2px; }
.vm-card .vm-desc { font-size: 0.9rem; color: #666; line-height: 1.7; }

.challenge-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.challenge-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(182,136,50,0.05), transparent);
  transition: left 0.5s ease;
}
.challenge-card:hover::before { left: 100%; }
.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(182,136,50,0.2);
  border-left-color: #000;
}
.challenge-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), #d4a855);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.challenge-card:hover .challenge-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #000, #333);
}
.challenge-icon i { font-size: 28px; color: #fff; }
.challenge-card h5 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.challenge-card p { font-size: 0.9rem; line-height: 1.7; color: #666; margin-bottom: 0; }

.solution-box {
  background: linear-gradient(135deg, var(--gold), #d4a855);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(182,136,50,0.3);
  position: relative;
  overflow: hidden;
}
.solution-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: sol-pulse 8s ease-in-out infinite;
}
@keyframes sol-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.solution-box h3 { color: #fff; font-size: 2rem; font-weight: 700; position: relative; z-index: 1; }
.solution-box h3 .alternate { color: var(--navy); font-style: italic; }
.solution-box p { color: #fff; position: relative; z-index: 1; font-size: 1rem; line-height: 1.8; }
.solution-box .btn { position: relative; z-index: 1; }

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(182,136,50,0.12);
  transform: translateY(-3px);
}
.blog-card .post-thumb img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .post-content { padding: 20px; position: relative; }
.blog-card .post-date {
  position: absolute;
  top: -30px; left: 20px;
  background: var(--gold);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.2;
}
.blog-card .post-date h4 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; }
.blog-card .post-date span { font-size: 0.65rem; font-weight: 600; display: block; opacity: 0.9; }
.blog-card .post-title h2 { font-size: 1.1rem; font-weight: 700; margin: 10px 0 0; }
.blog-card .post-title a { color: var(--charcoal); text-decoration: none; }
.blog-card .post-title a:hover { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.gallery-grid .gallery-item { position: relative; overflow: hidden; border-radius: 8px; }
.gallery-grid .image-block { position: relative; }
.gallery-grid .image-block img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; transition: transform 0.4s ease; }
.gallery-grid .image-block:hover img { transform: scale(1.05); }
.gallery-grid .gallery-item.grid-h .image-block img { height: 280px; }
.gallery-grid .primary-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,46,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}
.gallery-grid .image-block:hover .primary-overlay { opacity: 1; }
.gallery-grid .primary-overlay a {
  color: #fff;
  font-size: 2rem;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.gallery-grid .primary-overlay a:hover { transform: scale(1.1); }

.gallery-filters .filter-btn {
  background: none;
  border: 2px solid #ddd;
  color: #888;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 3px 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gallery-filters .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filters .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.gallery-grid .gallery-item.hidden { display: none; }

.webinar-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.webinar-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.webinar-card .webinar-image { position: relative; }
.webinar-card .webinar-image img { width: 100%; height: 200px; object-fit: cover; }
.webinar-card .webinar-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: #dc3545;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.webinar-card .webinar-content { padding: 24px; }
.webinar-card .webinar-meta { display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.webinar-card .webinar-meta span { font-size: 0.8rem; color: #888; }
.webinar-card .webinar-meta i { color: var(--gold); margin-right: 5px; }
.webinar-card .webinar-title { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; line-height: 1.4; }
.webinar-card .webinar-description-text { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 16px; }
.webinar-card .webinar-speaker { margin-bottom: 16px; padding-top: 12px; border-top: 1px solid #f0f0f0; }
.webinar-card .webinar-speaker h4 { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; }
.webinar-card .webinar-speaker p { font-size: 0.85rem; color: #555; margin: 0; }
.webinar-card .webinar-actions { margin-top: 16px; }

.form-control.main {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control.main:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(182,136,50,0.15);
}
.form-control.main.is-invalid { border-color: #dc3545; box-shadow: 0 0 0 2px rgba(220,53,69,0.15); }
.form-control.main.is-valid { border-color: #28a745; box-shadow: 0 0 0 2px rgba(40,167,69,0.15); }
.invalid-feedback { font-size: 0.8rem; color: #dc3545; margin-top: -15px; margin-bottom: 10px; }

.float {
  position: fixed;
  width: 56px; height: 56px;
  bottom: 24px; left: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.float:hover { background: #1ebe5e; color: #fff; transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

#formFeedback.alert { border-radius: 8px; font-size: 0.9rem; }
#formFeedback.alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
#formFeedback.alert-danger { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

@media (max-width: 767px) {
  .page-header { padding: 110px 0 40px; }
  .page-header h1 { font-size: 1.6rem; }
  .content-section { padding: 50px 0; }
  .section-title h2, .section-title h3 { font-size: 1.4rem; }
  .solution-box { padding: 35px 25px; }
  .solution-box h3 { font-size: 1.5rem; }
  .blog-card .post-thumb img { height: 180px; }
  .gallery-grid .image-block img { height: 180px; }
}
@media (max-width: 480px) {
  .page-header { padding: 100px 0 35px; }
  .page-header h1 { font-size: 1.3rem; }
  .section-title h2, .section-title h3 { font-size: 1.2rem; }
}
