/* ===== RESET SCOPE ===== */
body {
    font-family: 'Inter', sans-serif;
    color: #111;
}

/* ===== BUTTONS ===== */
.br-btn-primary {
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    border: none;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
}

.br-btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* ================= HEADER ================= */
.br-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 22px 0;
}

.br-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.br-logo img {
    height: 28px;
}

.br-btn-demo {
    background: linear-gradient(90deg, #ff5bcf, #ff82dd) !important;
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= HERO ================= */
.br-hero {
    position: relative;
/*     min-height: 100vh; */
    background: url('https://wordpress-1572668-6171014.cloudwaysapps.com/wp-content/uploads/2026/02/pexels-rdne-8068716-1-scaled.webp') center / cover no-repeat;
    color: #fff;
    display: flex;
/*     align-items: center; */
	align-items: end;
}

.br-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 15, 43, 0.9), rgba(11, 15, 43, 0.85)),
        repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 60px),
        repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 60px);
}

.br-hero-container {
    position: relative;
    z-index: 2;
}

.br-hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.br-hero-content p {
    font-size: 18px;
    line-height: 1.6;
}

.br-hero-book {
    max-width: 300px;
}

@media (max-width: 991px) {
	.br-hero-book {
		max-width: 100% !important;
	}
	.br-hero-content {
		transform: none !important;
		margin: 150px 0 !important;
	}
}

@media(min-width:992px){
    .br-hero-book{
        margin-right: -30px; /* adjust as needed */
    }
}

.br-hero-content{
/* 	transform: translateY(-20%); */
    margin: 240px 0;
}

/* ================= BUTTON ================= */
.br-btn-primary {
    display: inline-block;
    margin-top: 24px;
    background: linear-gradient(90deg, #ff5bcf, #ff82dd);
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= BOOK IMAGE ================= */
.br-hero-book {
/*     max-width: 100%; */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .br-hero {
        padding-top: 50px;
    }

    .br-hero-content h1 {
        font-size: 28px;
    }

    .br-hero-book {
        margin-top: 40px;
        transform: none;
    }
}

/* ===== SECTIONS ===== */
.br-section {
    padding: 70px 0;
}

.br-light {
    background: #f7f9fc;
}

.br-subtext {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* ===== CARDS ===== */
.br-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    transition: all 0.3s ease-in;
}

.br-card:hover{
	background: #F4CCED
}

/* ===== LEADERS ===== */
.br-leader img {
    width: 100%;
    border-radius: 14px;
}

.br-leader h5 {
    margin-top: 15px;
}

/* ===== CTA ===== */
.br-cta {
    background: linear-gradient(120deg, #2c2f66, #1b1f3b);
    padding: 70px 0;
    color: #fff;
}

/* ===== FOOTER ===== */
.br-footer {
    background: #0f1324;
    color: #aaa;
    padding: 30px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .br-hero h1 {
        font-size: 32px;
    }
}

/* ================= LOGO SLIDER ================= */
.br-logos {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.br-logo-slider {
  overflow: hidden;
  cursor: grab;
}

.br-logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.br-logo-slide {
  flex: 0 0 auto;
  width: 220px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.br-logo-slide img {
  max-height: 42px;
  user-select: none;
  pointer-events: none;
}

/* .br-logo-track.dragging {
  animation-play-state: paused;
  cursor: grabbing;
} */

@keyframes br-logo-scroll {
  from {
    --auto-x: 0px;
  }
  to {
    --auto-x: -50%;
  }
}

.br-logo-slide {
  flex: 0 0 auto;
  width: 220px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.br-logo-slide img {
  max-height: 42px;
  max-width: 100%;
  transition: all 0.3s ease;
}

.br-logo-slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ================= ANIMATION ================= */
@keyframes br-logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .br-logo-slide {
    width: 180px;
    padding: 0 24px;
  }
  .br-logo-slide img {
    max-height: 36px;
  }
}

@media (max-width: 575px) {
  .br-logo-slide {
    width: 140px;
    padding: 0 16px;
  }
  .br-logo-slide img {
    max-height: 30px;
  }
}


/* ================= WHY THIS MATTERS ================= */
.br-title {
  font-size: 42px;
  color: #2f3447;
}

.br-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #6b6f85;
}

.br-subtitle {
  font-size: 26px;
  color: #2f3447;
}

.br-desc-small {
  font-size: 20px;
  color: #6b6f85;
}

.br-card {
  background: #dcdee0;
  border-radius: 18px;
  font-size: 18px;
  color: #4a4f65;
}

.br-footer {
  max-width: 900px;
  font-size: 18px;
  color: #6b6f85;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .br-title {
    font-size: 34px;
  }
  .br-desc {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .br-title {
    font-size: 28px;
  }
  .br-desc,
  .br-desc-small,
  .br-footer {
    font-size: 16px;
  }
}


/* ================= WHAT YOU’LL LEARN ================= */

.br-learn-title {
  font-size: 42px;
  color: #2f3447;
}

.br-learn-subtitle {
  font-size: 26px;
  color: #2f3447;
}

.br-learn-card {
  background: #dcdee0;
  border-radius: 22px;
  font-size: 20px;
  color: #4a4f65;
	transition: all 0.3s ease-in;
	
}

.br-learn-card:hover{
	background: #F4CCED;
}

.br-learn-footer {
  max-width: 900px;
  font-size: 18px;
  color: #6b6f85;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .br-learn-title {
    font-size: 34px;
  }
  .br-learn-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .br-learn-title {
    font-size: 28px;
  }
  .br-learn-card {
    font-size: 16px;
  }
  .br-learn-footer {
    font-size: 16px;
  }
}

.br-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* desktop = 2 cards per row */
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .br-grid {
    grid-template-columns: 1fr; /* mobile = 1 card per row */
  }
}

.br-grid > .col-lg-6,
.br-grid > .col-md-6,
.br-grid > .col-12 {
  width: 100%; /* bootstrap cols neutralize */
}

.br-learn-card {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: #dcdee0;
  border-radius: 12px;
}

.br-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* bootstrap column neutralize */
.br-grid > [class*="col-"] {
  width: 100%;
}

/* agar total items ODD ho → last card full width */
.br-grid > :nth-child(odd):last-child {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .br-grid {
    grid-template-columns: 1fr;
  }

  .br-grid > :nth-child(odd):last-child {
    grid-column: span 1;
  }
}

.br-learn-card {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
}

/* ================= Why Bright ================= */
.br-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* Bootstrap cols neutralize */
.br-why-grid > [class*="col-"] {
  width: 100%;
}

.br-why-card {
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  background: #dcdee0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #4a4f65;
	transition: all 0.3s ease-in;
}

.br-why-card:hover{
	background: #F4CCED;
}


/* ================= Trusted by global ================= */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  transition: transform 0.6s ease;
}

.logo-slide {
  flex: 0 0 100%; /* 🔥 ek time pe sirf 1 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slide img {
  max-height: 48px;
  width: auto;
  opacity: 0.9;
}

/* 🖥 Desktop = grid */
@media (min-width: 992px) {
  .logo-slider {
    overflow: visible;
  }

  .logo-track {
    flex-wrap: wrap;
    transform: none !important;
    justify-content: center;
    gap: 6rem;
  }

  .logo-slide {
    flex: 0 0 auto;
  }
}

.logo-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.logo-slide img {
  max-height: 48px;
  width: auto;
}

/* dots */
/* .carousel-indicators {
  margin-top: 20px;
  position: relative;
} */

/* .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
} */

/* .carousel-indicators .active {
  background: #000;
} */

/* desktop grid */
.logo-grid {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.logo-item img {
  max-height: 48px;
  width: auto;
  opacity: 0.9;
}




/* Leadership Section CSS */

.leadership-section{
    padding:80px 0;
    text-align:center;
}

.leadership-section h2{
    font-size:48px;
    font-weight:700;
    color:#2d3445;
}

.leadership-section p{
    font-size:20px;
    color:#6c757d;
    margin-bottom:50px;
}

.leader-card{
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.leader-card img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.card-info{
    padding:25px;
    text-align:left;
}

.card-info h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:5px;
}

.card-info span{
    font-size:18px;
    color:#6c757d;
}

/* different bottom colors */
.bg-1, .bg-4{ background:#d8b1cf; }
.bg-2{ background:#e6d99a; }
.bg-3{ background:#e2c4b8; }

/* Hide carousel on desktop */
@media(min-width:992px){
    .mobile-carousel{
        display:none !important;
    }
}

/* Hide desktop grid on mobile */
@media(max-width:991px){
    .desktop-grid{
        display:none;
    }
	.leader-card{
		border-radius: 30px;
	}
}

/* Carousel dots style */
.carousel-indicators [data-bs-target]{
    width:12px;
    height:12px;
    border-radius:50%;
    background-color:#2d3445;
}

.carousel-indicators .active{
    background-color:#d8b1cf;
}

.carousel-indicators{
	bottom: -65px !important;
}

.border-r-left .leader-card{
	border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px;
}

.border-r-right .leader-card{
	border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}


/* =====================
   CTA SECTION
===================== */
.cta-section {
  background: #ffffff;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  color: #2e344d;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #ead76a;
  color: #2e344d;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #dfca55;
  color: #2e344d;
}

/* LINK */
.cta-link {
  font-size: 16px;
  color: #6b7280;
}

.cta-link a {
  color: #ec6fc8;
  font-weight: 500;
  text-decoration: underline;
}

/* IMAGE CARD */
.cta-image-wrap {
  border-radius: 32px;
  overflow: hidden;
}

.cta-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 991px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-image-wrap {
    border-radius: 24px;
  }
}

.cta-form-wrap {
  background: #2f3551;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.wpforms-field.wpforms-field-textarea{
	width: 100%;
}

.wpforms-submit-container>.magnat-submit-btn{
	background: linear-gradient(90deg, #ff5bcf, #ff82dd) !important;
	border-radius: 14px !important;
	margin-top: 10px !important;
}

.wpforms-field.wpforms-field-email, .wpforms-field.wpforms-field-phone{
	width: 100%;
	padding-top: 0px !important;
}
