/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: 16px;
  z-index: 1002;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #1a4d8f;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .navbar {
    position: relative;
    flex-direction: row;
    padding: 12px 10px;
  }
  .logo {
    height: 38px;
  }
  .logo img {
    height: 60px;
    width: 60px;
  }
  .hamburger {
    display: flex;
    z-index: 200;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 16px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0 24px;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: #000;
  }
  .nav-links li a:last-child {
    border-bottom: none;
  }
  .nav-links .logout-section {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
  }
  .nav-links .logout-section a {
    color: #000;
    font-weight: bold;
    display: block;
    padding: 8px 0;
  }
}

/* Ensure navbar items are horizontally centered and link text is centered */
.nav-links {
  justify-content: center;
  align-items: center;
}
.nav-links li a {
  text-align: center;
}

/* Keep mobile nav centered when opened */
@media (max-width: 900px) {
  .nav-links {
    align-items: center;
  }
}

/* Register success message */
#registerSuccess {
  color: #27ae60;
  text-align: center;
  margin-top: 8px;
}
/* Login and Admin Page Styles */
.login-page, .admin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}
.login-content, .admin-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.login-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 36px 28px;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.login-form h1 {
  font-size: 1.5rem;
  color: #1a4d8f;
  margin-bottom: 12px;
  text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 1rem;
  color: #222;
}
.form-group input {
  padding: 8px 10px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
}
.btn {
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn:hover {
  background: #163a6b;
}
.form-error {
  color: #c0392b;
  font-size: 1rem;
  margin-top: 8px;
  text-align: center;
}
.admin-content h1 {
  font-size: 2rem;
  color: #1a4d8f;
  margin-bottom: 18px;
  text-align: center;
}
.admin-content #adminData {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 28px 18px;
  margin-bottom: 18px;
  min-width: 260px;
  text-align: center;
}
/* Under Construction Page Styling - Simple White */
.under-construction-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.under-construction-content {
  flex: 1 0 auto;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  border-radius: 0;
  margin: 48px auto 32px auto;
  max-width: 600px;
  box-shadow: none;
  padding: 24px 8px;
}
.under-construction-content h1 {
  font-size: 1.7rem;
  color: #1a4d8f;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.under-construction-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
/* Micro-interactions and hover effects */
.founder-elegant-block {
  transition: box-shadow 0.2s, transform 0.2s;
}
.founder-elegant-block:hover {
  box-shadow: 0 12px 48px rgba(26,77,143,0.18);
  transform: translateY(-6px) scale(1.025);
}
.expanded-core-block {
  transition: box-shadow 0.2s, transform 0.2s;
}
.expanded-core-block:hover {
  box-shadow: 0 12px 48px rgba(26,77,143,0.13);
  transform: translateY(-4px) scale(1.015);
}
.contact-cta-btn {
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.contact-cta-btn:hover {
  transform: scale(1.04);
}
.founder-social-icon svg {
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  border-radius: 50%;
}
.founder-social-icon:hover svg {
  background: #1a4d8f;
  box-shadow: 0 2px 8px rgba(26,77,143,0.13);
  transform: scale(1.12);
}

/* Meet the Team section */
.team-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.team-placeholder {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.15rem;
}

/* Testimonials carousel */
.testimonials-carousel {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 24px auto;
  min-height: 120px;
}
.testimonial-slide {
  display: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px 32px 32px;
  text-align: center;
  color: #222;
  font-size: 1.15rem;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.testimonial-slide span {
  display: block;
  margin-top: 18px;
  color: #1a4d8f;
  font-weight: 600;
  font-size: 1rem;
}
.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.testimonials-controls button {
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-controls button:hover {
  background: #163a6b;
  transform: scale(1.12);
}

/* About video section */
/* About video section - reverted to light/transparent theme */
.about-video-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-video-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.about-video-wrap {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-video-element {
  background: #000 !important;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.about-video-caption {
  color: #888;
  font-size: 1.08rem;
  margin-top: 12px;
  text-align: center;
}

/* Sticky back-to-top button */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26,77,143,0.13);
  transition: background 0.2s, transform 0.2s;
}
#backToTopBtn:hover {
  background: #163a6b;
  transform: scale(1.12);
}

@media (max-width: 1100px) {
  .testimonials-carousel, .about-video-wrap, .team-placeholder {
    padding: 32px 10px;
  }
}
@media (max-width: 700px) {
  .testimonials-carousel, .about-video-wrap, .team-placeholder {
    padding: 18px 2px;
    font-size: 1rem;
  }
}
/* Subtle background for About page */
.subtle-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #f3f4f8 100%);
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #fff 0%, #eaeaea 50%, #fff 100%);
  margin: 0 0 48px 0;
  border: none;
}

/* Accent color and heading font */
h2, .expanded-cores h2, .founders-elegant h2, .contact-rectangle h2, .testimonials-section h2 {
  color: #1a4d8f;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Animate section entrance */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.animate-section.visible {
  opacity: 1;
  transform: none;
}

/* Founder social icons */
.founder-socials {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.founder-social-icon img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f3f3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, background 0.2s;
}
.founder-social-icon img:hover {
  background: #1a4d8f;
  box-shadow: 0 2px 8px rgba(26,77,143,0.13);
}

/* Contact CTA button */
.contact-cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.contact-cta-btn {
  background: #1a4d8f;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 38px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(26,77,143,0.09);
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-cta-btn:hover {
  background: #163a6b;
  box-shadow: 0 4px 24px rgba(26,77,143,0.16);
}

/* Testimonials section */
.testimonials-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.testimonials-placeholder {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.15rem;
}

/* Responsive improvements for all new features */
@media (max-width: 1100px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr 1fr;
    padding: 32px 12px;
    gap: 24px;
  }
  .testimonials-placeholder {
    padding: 32px 10px;
  }
}
@media (max-width: 900px) {
  .expanded-cores-grid {
    grid-template-columns: 1fr;
  }
  .founders-elegant-grid {
    grid-template-columns: 1fr;
  }
  .founder-elegant-block {
    min-height: 260px;
  }
  .founder-elegant-img-wrap {
    height: 180px;
  }
}
@media (max-width: 700px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr;
    padding: 20px 4px;
    gap: 18px;
  }
  .testimonials-placeholder {
    padding: 18px 2px;
    font-size: 1rem;
  }
}
/* Contact Rectangle Section */
.contact-rectangle {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-rectangle h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.contact-rectangle-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  align-items: flex-start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.contact-info-block h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.contact-info-block p, .contact-info-block a {
  font-size: 1.02rem;
  color: #222;
  margin-bottom: 0;
  text-decoration: none;
}
.contact-socials a {
  color: #1a1a1a;
  text-decoration: underline;
  margin: 0 2px;
  font-weight: 500;
}
.contact-socials a:hover {
  color: #0077b5;
}
@media (max-width: 1100px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr 1fr;
    padding: 32px 12px;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr;
    padding: 20px 4px;
    gap: 18px;
  }
}
/* Elegant Founders Section */
.founders-elegant {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founders-elegant h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.founders-elegant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  max-width: 900px;
  width: 100%;
  justify-content: center;
}
.founder-elegant-block {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 380px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.founder-elegant-block:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.founder-elegant-img-wrap {
  width: 100%;
  height: 260px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.founder-elegant-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 0;
}
.founder-elegant-info {
  width: 100%;
  padding: 28px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-elegant-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a0a0a;
  text-align: center;
}
.founder-elegant-info p {
  font-size: 1.02rem;
  color: #222;
  text-align: center;
}
@media (max-width: 900px) {
  .founders-elegant-grid {
    grid-template-columns: 1fr;
  }
  .founder-elegant-block {
    min-height: 260px;
  }
  .founder-elegant-img-wrap {
    height: 180px;
  }
}
/* Expanded Core Divisions Section */
.expanded-cores {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expanded-cores h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.expanded-cores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}
.expanded-core-block {
  background: #fff;
  color: #111;
  border-radius: 28px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.09);
  padding: 48px 38px 38px 38px;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.expanded-core-block:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.expanded-core-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a0a0a;
}
.expanded-core-block p {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .expanded-cores-grid {
    grid-template-columns: 1fr;
  }
  .expanded-core-block {
    min-height: 220px;
    padding: 32px 16px 24px 16px;
  }
}
/* Core Divisions 2-column grid */
.core-divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 32px;
  margin-bottom: 0;
}
.core-divisions-grid .objective-block {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 22px 20px 22px;
  margin: 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .core-divisions-grid {
    grid-template-columns: 1fr;
  }
}
/* Premium Two-Column Section Layout */
.premium-two-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
}
.premium-two-col-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.premium-two-col-text {
  background: #fff;
  color: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 40px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 520px;
}
.premium-two-col-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: left;
}
.premium-two-col-text p, .premium-two-col-text li {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #222;
  line-height: 1.6;
}
.premium-two-col-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 480px;
}
.premium-two-col-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  object-fit: cover;
}
/* Who We Are Section Premium Design */
.who-we-are-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
}
.who-we-are-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.who-we-are-text {
  background: #fff;
  color: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 40px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 520px;
}
.who-we-are-text h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: 2px;
  text-align: left;
}
.who-we-are-text p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.6;
}
.who-we-are-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 480px;
}
.who-we-are-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  object-fit: cover;
}
.about-page .site-footer p, .site-footer p {
  color: #fff !important;
}
/* About Page Premium Theme */
body.about-page {
  background: #fff !important;
  color: #111 !important;
}

.about-page .navbar {
  background: #111 !important;
  color: #fff !important;
}
.about-page .nav-links a {
  color: #fff !important;
}
.about-page .logo img {
  filter: none;
}
.about-page .about-hero-banner,
.about-page .about-hero-banner h1,
.about-page .about-hero-banner .about-hero-text {
  color: #fff !important;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6,
.about-page p,
.about-page li,
.about-page .subtitle,
.about-page .founder p {
  color: #111 !important;
}
.about-page .about-hero-banner h1,
.about-page .about-hero-banner .about-hero-text {
  color: #fff !important;
}
.about-page .objective-block,
.about-page .ancillary,
.about-page .founders,
.about-page .contact {
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 32px;
  padding: 32px 24px;
}
.about-page .founder h3 {
  color: #222;
}
/* About Page Hero Banner */
.about-hero-banner {
  width: 100vw;
  min-height: 40vh;
  background: linear-gradient(120deg, rgba(17,17,17,0.7) 60%, rgba(34,34,34,0.7) 100%), url('images/podcast.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  z-index: 1;
}
.about-hero-inner {
  width: 100%;
  max-width: 1100px;
  padding: 60px 20px;
  text-align: center;
  z-index: 2;
}
.about-hero-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Band Media Section - Flexbox for Video and Carousel */
.band-media-flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.band-media-video,
.band-media-carousel {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.band-media-carousel {
  max-width: 420px;
}

@media (max-width: 900px) {
  .band-media-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .band-media-video,
  .band-media-carousel {
    max-width: 100%;
    min-width: 0;
  }
}

/* Reset & basic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #000;  /* you can use a dark gradient if preferred */
  line-height: 1.4;
}

/* Navbar */
.navbar {
  display: flex;
  padding: 20px 60px;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
  overflow: visible;
}
.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center; /* center align nav links */
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f05454;
}

/* Ensure navbar items are horizontally centered and link text is centered */
.nav-links {
  justify-content: center;
  align-items: center;
}
.nav-links li a {
  text-align: center;
}

/* Keep mobile nav centered when opened */
@media (max-width: 900px) {
  .nav-links {
    align-items: center;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 80px; /* to account for fixed navbar */
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #111;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 1;
  filter: brightness(0.6) contrast(1.1) saturate(1.2);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 800px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero .subtitle {
  font-size: 22px;
  color: #ccc;
  margin-bottom: 40px;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.btn {
  padding: 14px 32px;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}
.btn.live {
  background-color: transparent;
  color: #fff;
}
.btn.live:hover {
  background-color: #fff;
  color: #000;
}
.btn.app {
  background-color: transparent;
  color: #fff;
}
.btn.app:hover {
  background-color: #fff;
  color: #000;
}

/* Stats Section */
.stats-section {
  background-color: #000;
  padding: 80px 20px;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 18px;
  color: #aaa;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  padding: 30px 20px;
  background: linear-gradient(90deg, #222 0%, #444 50%, #111 100%);
  text-align: center;
  font-size: 14px;
  color: #eee;
}

/* --- Mobile Responsiveness Improvements --- */
/* Only keep one hamburger and nav-links definition under @media (max-width: 900px) */
@media (max-width: 900px) {
  .navbar {
    position: relative;
    flex-direction: row;
    padding: 12px 10px;
  }
  .logo {
    height: 38px;
  }
  .logo img {
    height: 60px;
    width: 60px;
  }
  .hamburger {
    display: flex;
    z-index: 200;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 16px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0 24px;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: #000;
  }
  .nav-links li a:last-child {
    border-bottom: none;
  }
  .nav-links .logout-section {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
  }
  .nav-links .logout-section a {
    color: #000;
    font-weight: bold;
    display: block;
    padding: 8px 0;
  }
}

/* Register success message */
#registerSuccess {
  color: #27ae60;
  text-align: center;
  margin-top: 8px;
}
/* Login and Admin Page Styles */
.login-page, .admin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}
.login-content, .admin-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.login-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 36px 28px;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.login-form h1 {
  font-size: 1.5rem;
  color: #1a4d8f;
  margin-bottom: 12px;
  text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 1rem;
  color: #222;
}
.form-group input {
  padding: 8px 10px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
}
.btn {
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn:hover {
  background: #163a6b;
}
.form-error {
  color: #c0392b;
  font-size: 1rem;
  margin-top: 8px;
  text-align: center;
}
.admin-content h1 {
  font-size: 2rem;
  color: #1a4d8f;
  margin-bottom: 18px;
  text-align: center;
}
.admin-content #adminData {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 28px 18px;
  margin-bottom: 18px;
  min-width: 260px;
  text-align: center;
}
/* Under Construction Page Styling - Simple White */
.under-construction-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.under-construction-content {
  flex: 1 0 auto;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  border-radius: 0;
  margin: 48px auto 32px auto;
  max-width: 600px;
  box-shadow: none;
  padding: 24px 8px;
}
.under-construction-content h1 {
  font-size: 1.7rem;
  color: #1a4d8f;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.under-construction-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
/* Micro-interactions and hover effects */
.founder-elegant-block {
  transition: box-shadow 0.2s, transform 0.2s;
}
.founder-elegant-block:hover {
  box-shadow: 0 12px 48px rgba(26,77,143,0.18);
  transform: translateY(-6px) scale(1.025);
}
.expanded-core-block {
  transition: box-shadow 0.2s, transform 0.2s;
}
.expanded-core-block:hover {
  box-shadow: 0 12px 48px rgba(26,77,143,0.13);
  transform: translateY(-4px) scale(1.015);
}
.contact-cta-btn {
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.contact-cta-btn:hover {
  transform: scale(1.04);
}
.founder-social-icon svg {
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  border-radius: 50%;
}
.founder-social-icon:hover svg {
  background: #1a4d8f;
  box-shadow: 0 2px 8px rgba(26,77,143,0.13);
  transform: scale(1.12);
}

/* Meet the Team section */
.team-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.team-placeholder {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.15rem;
}

/* Testimonials carousel */
.testimonials-carousel {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 24px auto;
  min-height: 120px;
}
.testimonial-slide {
  display: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px 32px 32px;
  text-align: center;
  color: #222;
  font-size: 1.15rem;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.testimonial-slide span {
  display: block;
  margin-top: 18px;
  color: #1a4d8f;
  font-weight: 600;
  font-size: 1rem;
}
.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.testimonials-controls button {
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-controls button:hover {
  background: #163a6b;
  transform: scale(1.12);
}

/* About video section */
/* About video section - reverted to light/transparent theme */
.about-video-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-video-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.about-video-wrap {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-video-element {
  background: #000 !important;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.about-video-caption {
  color: #888;
  font-size: 1.08rem;
  margin-top: 12px;
  text-align: center;
}

/* Sticky back-to-top button */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26,77,143,0.13);
  transition: background 0.2s, transform 0.2s;
}
#backToTopBtn:hover {
  background: #163a6b;
  transform: scale(1.12);
}

@media (max-width: 1100px) {
  .testimonials-carousel, .about-video-wrap, .team-placeholder {
    padding: 32px 10px;
  }
}
@media (max-width: 700px) {
  .testimonials-carousel, .about-video-wrap, .team-placeholder {
    padding: 18px 2px;
    font-size: 1rem;
  }
}
/* Subtle background for About page */
.subtle-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #f3f4f8 100%);
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #fff 0%, #eaeaea 50%, #fff 100%);
  margin: 0 0 48px 0;
  border: none;
}

/* Accent color and heading font */
h2, .expanded-cores h2, .founders-elegant h2, .contact-rectangle h2, .testimonials-section h2 {
  color: #1a4d8f;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Animate section entrance */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.animate-section.visible {
  opacity: 1;
  transform: none;
}

/* Founder social icons */
.founder-socials {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.founder-social-icon img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f3f3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, background 0.2s;
}
.founder-social-icon img:hover {
  background: #1a4d8f;
  box-shadow: 0 2px 8px rgba(26,77,143,0.13);
}

/* Contact CTA button */
.contact-cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.contact-cta-btn {
  background: #1a4d8f;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 38px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(26,77,143,0.09);
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-cta-btn:hover {
  background: #163a6b;
  box-shadow: 0 4px 24px rgba(26,77,143,0.16);
}

/* Testimonials section */
.testimonials-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.testimonials-placeholder {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.15rem;
}

/* Responsive improvements for all new features */
@media (max-width: 1100px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr 1fr;
    padding: 32px 12px;
    gap: 24px;
  }
  .testimonials-placeholder {
    padding: 32px 10px;
  }
}
@media (max-width: 900px) {
  .expanded-cores-grid {
    grid-template-columns: 1fr;
  }
  .founders-elegant-grid {
    grid-template-columns: 1fr;
  }
  .founder-elegant-block {
    min-height: 260px;
  }
  .founder-elegant-img-wrap {
    height: 180px;
  }
}
@media (max-width: 700px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr;
    padding: 20px 4px;
    gap: 18px;
  }
  .testimonials-placeholder {
    padding: 18px 2px;
    font-size: 1rem;
  }
}
/* Contact Rectangle Section */
.contact-rectangle {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-rectangle h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.contact-rectangle-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  align-items: flex-start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.contact-info-block h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.contact-info-block p, .contact-info-block a {
  font-size: 1.02rem;
  color: #222;
  margin-bottom: 0;
  text-decoration: none;
}
.contact-socials a {
  color: #1a1a1a;
  text-decoration: underline;
  margin: 0 2px;
  font-weight: 500;
}
.contact-socials a:hover {
  color: #0077b5;
}
@media (max-width: 1100px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr 1fr;
    padding: 32px 12px;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr;
    padding: 20px 4px;
    gap: 18px;
  }
}
/* Elegant Founders Section */
.founders-elegant {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founders-elegant h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.founders-elegant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  max-width: 900px;
  width: 100%;
  justify-content: center;
}
.founder-elegant-block {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 380px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.founder-elegant-block:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.founder-elegant-img-wrap {
  width: 100%;
  height: 260px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.founder-elegant-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 0;
}
.founder-elegant-info {
  width: 100%;
  padding: 28px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-elegant-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a0a0a;
  text-align: center;
}
.founder-elegant-info p {
  font-size: 1.02rem;
  color: #222;
  text-align: center;
}
@media (max-width: 900px) {
  .founders-elegant-grid {
    grid-template-columns: 1fr;
  }
  .founder-elegant-block {
    min-height: 260px;
  }
  .founder-elegant-img-wrap {
    height: 180px;
  }
}
/* Expanded Core Divisions Section */
.expanded-cores {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expanded-cores h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.expanded-cores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}
.expanded-core-block {
  background: #fff;
  color: #111;
  border-radius: 28px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.09);
  padding: 48px 38px 38px 38px;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.expanded-core-block:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.expanded-core-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a0a0a;
}
.expanded-core-block p {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .expanded-cores-grid {
    grid-template-columns: 1fr;
  }
  .expanded-core-block {
    min-height: 220px;
    padding: 32px 16px 24px 16px;
  }
}
/* Core Divisions 2-column grid */
.core-divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 32px;
  margin-bottom: 0;
}
.core-divisions-grid .objective-block {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 22px 20px 22px;
  margin: 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .core-divisions-grid {
    grid-template-columns: 1fr;
  }
}
/* Premium Two-Column Section Layout */
.premium-two-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
}
.premium-two-col-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.premium-two-col-text {
  background: #fff;
  color: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 40px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 520px;
}
.premium-two-col-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: left;
}
.premium-two-col-text p, .premium-two-col-text li {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #222;
  line-height: 1.6;
}
.premium-two-col-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 480px;
}
.premium-two-col-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  object-fit: cover;
}
/* Who We Are Section Premium Design */
.who-we-are-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
}
.who-we-are-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.who-we-are-text {
  background: #fff;
  color: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 40px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 520px;
}
.who-we-are-text h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: 2px;
  text-align: left;
}
.who-we-are-text p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.6;
}
.who-we-are-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 480px;
}
.who-we-are-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  object-fit: cover;
}
.about-page .site-footer p, .site-footer p {
  color: #fff !important;
}
/* About Page Premium Theme */
body.about-page {
  background: #fff !important;
  color: #111 !important;
}

.about-page .navbar {
  background: #111 !important;
  color: #fff !important;
}
.about-page .nav-links a {
  color: #fff !important;
}
.about-page .logo img {
  filter: none;
}
.about-page .about-hero-banner,
.about-page .about-hero-banner h1,
.about-page .about-hero-banner .about-hero-text {
  color: #fff !important;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6,
.about-page p,
.about-page li,
.about-page .subtitle,
.about-page .founder p {
  color: #111 !important;
}
.about-page .about-hero-banner h1,
.about-page .about-hero-banner .about-hero-text {
  color: #fff !important;
}
.about-page .objective-block,
.about-page .ancillary,
.about-page .founders,
.about-page .contact {
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 32px;
  padding: 32px 24px;
}
.about-page .founder h3 {
  color: #222;
}
/* About Page Hero Banner */
.about-hero-banner {
  width: 100vw;
  min-height: 40vh;
  background: linear-gradient(120deg, rgba(17,17,17,0.7) 60%, rgba(34,34,34,0.7) 100%), url('images/podcast.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  z-index: 1;
}
.about-hero-inner {
  width: 100%;
  max-width: 1100px;
  padding: 60px 20px;
  text-align: center;
  z-index: 2;
}
.about-hero-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Band Media Section - Flexbox for Video and Carousel */
.band-media-flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.band-media-video,
.band-media-carousel {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.band-media-carousel {
  max-width: 420px;
}

@media (max-width: 900px) {
  .band-media-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .band-media-video,
  .band-media-carousel {
    max-width: 100%;
    min-width: 0;
  }
}

/* Reset & basic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #000;  /* you can use a dark gradient if preferred */
  line-height: 1.4;
}

/* Navbar */
.navbar {
  display: flex;
  padding: 20px 60px;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
  overflow: visible;
}
.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center; /* center align nav links */
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f05454;
}

/* Ensure navbar items are horizontally centered and link text is centered */
.nav-links {
  justify-content: center;
  align-items: center;
}
.nav-links li a {
  text-align: center;
}

/* Keep mobile nav centered when opened */
@media (max-width: 900px) {
  .nav-links {
    align-items: center;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 80px; /* to account for fixed navbar */
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #111;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 1;
  filter: brightness(0.6) contrast(1.1) saturate(1.2);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 800px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero .subtitle {
  font-size: 22px;
  color: #ccc;
  margin-bottom: 40px;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.btn {
  padding: 14px 32px;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}
.btn.live {
  background-color: transparent;
  color: #fff;
}
.btn.live:hover {
  background-color: #fff;
  color: #000;
}
.btn.app {
  background-color: transparent;
  color: #fff;
}
.btn.app:hover {
  background-color: #fff;
  color: #000;
}

/* Stats Section */
.stats-section {
  background-color: #000;
  padding: 80px 20px;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 18px;
  color: #aaa;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  padding: 30px 20px;
  background: linear-gradient(90deg, #222 0%, #444 50%, #111 100%);
  text-align: center;
  font-size: 14px;
  color: #eee;
}

/* --- Mobile Responsiveness Improvements --- */
/* Only keep one hamburger and nav-links definition under @media (max-width: 900px) */
@media (max-width: 900px) {
  .navbar {
    position: relative;
    flex-direction: row;
    padding: 12px 10px;
  }
  .logo {
    height: 38px;
  }
  .logo img {

    height: 60px;
    width: 60px;
  }
  .hamburger {
    display: flex;
    z-index: 200;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 16px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0 24px;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: #000;
  }
  .nav-links li a:last-child {
    border-bottom: none;
  }
  .nav-links .logout-section {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
  }
  .nav-links .logout-section a {
    color: #000;
    font-weight: bold;
    display: block;
    padding: 8px 0;
  }
}

/* Register success message */
#registerSuccess {
  color: #27ae60;
  text-align: center;
  margin-top: 8px;
}
/* Login and Admin Page Styles */
.login-page, .admin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}
.login-content, .admin-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.login-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 36px 28px;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.login-form h1 {
  font-size: 1.5rem;
  color: #1a4d8f;
  margin-bottom: 12px;
  text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 1rem;
  color: #222;
}
.form-group input {
  padding: 8px 10px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
}
.btn {
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn:hover {
  background: #163a6b;
}
.form-error {
  color: #c0392b;
  font-size: 1rem;
  margin-top: 8px;
  text-align: center;
}
.admin-content h1 {
  font-size: 2rem;
  color: #1a4d8f;
  margin-bottom: 18px;
  text-align: center;
}
.admin-content #adminData {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 28px 18px;
  margin-bottom: 18px;
  min-width: 260px;
  text-align: center;
}
/* Under Construction Page Styling - Simple White */
.under-construction-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.under-construction-content {
  flex: 1 0 auto;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  border-radius: 0;
  margin: 48px auto 32px auto;
  max-width: 600px;
  box-shadow: none;
  padding: 24px 8px;
}
.under-construction-content h1 {
  font-size: 1.7rem;
  color: #1a4d8f;
  margin-bottom: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.under-construction-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
/* Micro-interactions and hover effects */
.founder-elegant-block {
  transition: box-shadow 0.2s, transform 0.2s;
}
.founder-elegant-block:hover {
  box-shadow: 0 12px 48px rgba(26,77,143,0.18);
  transform: translateY(-6px) scale(1.025);
}
.expanded-core-block {
  transition: box-shadow 0.2s, transform 0.2s;
}
.expanded-core-block:hover {
  box-shadow: 0 12px 48px rgba(26,77,143,0.13);
  transform: translateY(-4px) scale(1.015);
}
.contact-cta-btn {
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.contact-cta-btn:hover {
  transform: scale(1.04);
}
.founder-social-icon svg {
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  border-radius: 50%;
}
.founder-social-icon:hover svg {
  background: #1a4d8f;
  box-shadow: 0 2px 8px rgba(26,77,143,0.13);
  transform: scale(1.12);
}

/* Meet the Team section */
.team-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.team-placeholder {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.15rem;
}

/* Testimonials carousel */
.testimonials-carousel {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 24px auto;
  min-height: 120px;
}
.testimonial-slide {
  display: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px 32px 32px;
  text-align: center;
  color: #222;
  font-size: 1.15rem;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.testimonial-slide span {
  display: block;
  margin-top: 18px;
  color: #1a4d8f;
  font-weight: 600;
  font-size: 1rem;
}
.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.testimonials-controls button {
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-controls button:hover {
  background: #163a6b;
  transform: scale(1.12);
}

/* About video section */
/* About video section - reverted to light/transparent theme */
.about-video-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-video-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.about-video-wrap {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-video-element {
  background: #000 !important;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.about-video-caption {
  color: #888;
  font-size: 1.08rem;
  margin-top: 12px;
  text-align: center;
}

/* Sticky back-to-top button */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  background: #1a4d8f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26,77,143,0.13);
  transition: background 0.2s, transform 0.2s;
}
#backToTopBtn:hover {
  background: #163a6b;
  transform: scale(1.12);
}

@media (max-width: 1100px) {
  .testimonials-carousel, .about-video-wrap, .team-placeholder {
    padding: 32px 10px;
  }
}
@media (max-width: 700px) {
  .testimonials-carousel, .about-video-wrap, .team-placeholder {
    padding: 18px 2px;
    font-size: 1rem;
  }
}
/* Subtle background for About page */
.subtle-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #f3f4f8 100%);
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #fff 0%, #eaeaea 50%, #fff 100%);
  margin: 0 0 48px 0;
  border: none;
}

/* Accent color and heading font */
h2, .expanded-cores h2, .founders-elegant h2, .contact-rectangle h2, .testimonials-section h2 {
  color: #1a4d8f;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Animate section entrance */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.animate-section.visible {
  opacity: 1;
  transform: none;
}

/* Founder social icons */
.founder-socials {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.founder-social-icon img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f3f3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, background 0.2s;
}
.founder-social-icon img:hover {
  background: #1a4d8f;
  box-shadow: 0 2px 8px rgba(26,77,143,0.13);
}

/* Contact CTA button */
.contact-cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.contact-cta-btn {
  background: #1a4d8f;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 38px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(26,77,143,0.09);
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-cta-btn:hover {
  background: #163a6b;
  box-shadow: 0 4px 24px rgba(26,77,143,0.16);
}

/* Testimonials section */
.testimonials-section {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a4d8f;
  letter-spacing: 1.5px;
  text-align: center;
}
.testimonials-placeholder {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #888;
  font-size: 1.15rem;
}

/* Responsive improvements for all new features */
@media (max-width: 1100px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr 1fr;
    padding: 32px 12px;
    gap: 24px;
  }
  .testimonials-placeholder {
    padding: 32px 10px;
  }
}
@media (max-width: 900px) {
  .expanded-cores-grid {
    grid-template-columns: 1fr;
  }
  .founders-elegant-grid {
    grid-template-columns: 1fr;
  }
  .founder-elegant-block {
    min-height: 260px;
  }
  .founder-elegant-img-wrap {
    height: 180px;
  }
}
@media (max-width: 700px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr;
    padding: 20px 4px;
    gap: 18px;
  }
  .testimonials-placeholder {
    padding: 18px 2px;
    font-size: 1rem;
  }
}
/* Contact Rectangle Section */
.contact-rectangle {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-rectangle h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.contact-rectangle-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 32px;
  align-items: flex-start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.contact-info-block h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.contact-info-block p, .contact-info-block a {
  font-size: 1.02rem;
  color: #222;
  margin-bottom: 0;
  text-decoration: none;
}
.contact-socials a {
  color: #1a1a1a;
  text-decoration: underline;
  margin: 0 2px;
  font-weight: 500;
}
.contact-socials a:hover {
  color: #0077b5;
}
@media (max-width: 1100px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr 1fr;
    padding: 32px 12px;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .contact-rectangle-content {
    grid-template-columns: 1fr;
    padding: 20px 4px;
    gap: 18px;
  }
}
/* Elegant Founders Section */
.founders-elegant {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founders-elegant h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.founders-elegant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  max-width: 900px;
  width: 100%;
  justify-content: center;
}
.founder-elegant-block {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 380px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.founder-elegant-block:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.founder-elegant-img-wrap {
  width: 100%;
  height: 260px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.founder-elegant-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 0;
}
.founder-elegant-info {
  width: 100%;
  padding: 28px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-elegant-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a0a0a;
  text-align: center;
}
.founder-elegant-info p {
  font-size: 1.02rem;
  color: #222;
  text-align: center;
}
@media (max-width: 900px) {
  .founders-elegant-grid {
    grid-template-columns: 1fr;
  }
  .founder-elegant-block {
    min-height: 260px;
  }
  .founder-elegant-img-wrap {
    height: 180px;
  }
}
/* Expanded Core Divisions Section */
.expanded-cores {
  width: 100%;
  background: transparent;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.expanded-cores h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: center;
}
.expanded-cores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}
.expanded-core-block {
  background: #fff;
  color: #111;
  border-radius: 28px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.09);
  padding: 48px 38px 38px 38px;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.expanded-core-block:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.expanded-core-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a0a0a;
}
.expanded-core-block p {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .expanded-cores-grid {
    grid-template-columns: 1fr;
  }
  .expanded-core-block {
    min-height: 220px;
    padding: 32px 16px 24px 16px;
  }
}
/* Core Divisions 2-column grid */
.core-divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 32px;
  margin-bottom: 0;
}
.core-divisions-grid .objective-block {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 22px 20px 22px;
  margin: 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .core-divisions-grid {
    grid-template-columns: 1fr;
  }
}
/* Premium Two-Column Section Layout */
.premium-two-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
}
.premium-two-col-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.premium-two-col-text {
  background: #fff;
  color: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 40px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 520px;
}
.premium-two-col-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: 1.5px;
  text-align: left;
}
.premium-two-col-text p, .premium-two-col-text li {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #222;
  line-height: 1.6;
}
.premium-two-col-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 480px;
}
.premium-two-col-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  object-fit: cover;
}
/* Who We Are Section Premium Design */
.who-we-are-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 48px;
}
.who-we-are-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.who-we-are-text {
  background: #fff;
  color: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 48px 40px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  max-width: 520px;
}
.who-we-are-text h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: 2px;
  text-align: left;
}
.who-we-are-text p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.6;
}
.who-we-are-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 480px;
}
.who-we-are-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  object-fit: cover;
}
.about-page .site-footer p, .site-footer p {
  color: #fff !important;
}
/* About Page Premium Theme */
body.about-page {
  background: #fff !important;
  color: #111 !important;
}

.about-page .navbar {
  background: #111 !important;
  color: #fff !important;
}
.about-page .nav-links a {
  color: #fff !important;
}
.about-page .logo img {
  filter: none;
}
.about-page .about-hero-banner,
.about-page .about-hero-banner h1,
.about-page .about-hero-banner .about-hero-text {
  color: #fff !important;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6,
.about-page p,
.about-page li,
.about-page .subtitle,
.about-page .founder p {
  color: #111 !important;
}
.about-page .about-hero-banner h1,
.about-page .about-hero-banner .about-hero-text {
  color: #fff !important;
}
.about-page .objective-block,
.about-page .ancillary,
.about-page .founders,
.about-page .contact {
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 32px;
  padding: 32px 24px;
}
.about-page .founder h3 {
  color: #222;
}
/* About Page Hero Banner */
.about-hero-banner {
  width: 100vw;
  min-height: 40vh;
  background: linear-gradient(120deg, rgba(17,17,17,0.7) 60%, rgba(34,34,34,0.7) 100%), url('images/podcast.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  z-index: 1;
}
.about-hero-inner {
  width: 100%;
  max-width: 1100px;
  padding: 60px 20px;
  text-align: center;
  z-index: 2;
}
.about-hero-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Band Media Section - Flexbox for Video and Carousel */
.band-media-flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.band-media-video,
.band-media-carousel {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.band-media-carousel {
  max-width: 420px;
}

@media (max-width: 900px) {
  .band-media-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .band-media-video,
  .band-media-carousel {
    max-width: 100%;
    min-width: 0;
  }
}

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-text {
  position: relative;
  z-index: 2;
}
.studio-hero {
  background: url('images/studio-hero.jpg') center/cover no-repeat;
}
.sound-hero {
  background: url('images/sound-hero.jpg') center/cover no-repeat;
}

.dark-section {
  background: #111;
  color: #fff;
  padding: 100px 60px;
}
.light-section {
  background: #f8f8f8;
  color: #111;
  padding: 100px 60px;
}
h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

.service-grid, .equipment-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 80%;
  margin: 0 auto;
}
.service-card, .gear {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #f05454;
}
.booking-form {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}
.booking-form input, .booking-form textarea, .booking-form select {
  padding: 12px;
  border: none;
  border-radius: 6px;
}
.booking-form .btn {
  align-self: center;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
