/* ===== BC PAGE - UNIFORM STYLING ===== */
/* Using Personal Loan Page Design System */

/* Variables */
:root {
  --primary-dark: #0d214f;
  --primary-blue: #0067da;
  --light-blue: #29b9ed;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.bc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.bc-hero {
  position: relative;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 70px 0 60px;
  overflow: hidden;
}

.bc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/personal_Loan/Personal .png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.bc-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.bc-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.bc-bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.bc-hero-content {
  position: relative;
  z-index: 2;
  /* max-width, width, margin handled by .container */
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bc-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bc-hero-left h1 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.bc-hero-left p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.bc-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bc-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FACT SHEET STAT BOXES (RIGHT SIDE) ===== */
.sbl-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.sbl-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sbl-stats-single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.sbl-stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  animation: fadeInRight 0.8s ease-out;
}

.sbl-stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sbl-stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sbl-stat-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-up:nth-child(1) {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-slide-up:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-slide-up:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-slide-up:nth-child(4) {
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BC ABOUT SECTION ===== */
.bc-about {
  padding: 80px 0;
  background: var(--white);
}

.bc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bc-about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.15);
}

.bc-tag {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.bc-about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-about-content p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.bc-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bc-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.bc-highlight-item:hover {
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 103, 218, 0.1);
  transform: translateX(5px);
}

.bc-highlight-item i {
  color: var(--primary-blue);
  font-size: 20px;
}

.bc-highlight-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== BENEFITS SECTION ===== */
.bc-benefits {
  padding: 80px 0;
  background: var(--bg-light);
}

.bc-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.bc-section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-section-header p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
}

.bc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.bc-benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.bc-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bc-benefit-card:hover::before {
  transform: scaleX(1);
}

.bc-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: var(--primary-blue);
}

.bc-benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--white);
  transition: all 0.3s ease;
}

.bc-benefit-card:hover .bc-benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.bc-benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-benefit-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.bc-services {
  padding: 80px 0;
  background: var(--white);
}

.bc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bc-service-item {
  background: var(--bg-light);
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.bc-service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
  background: var(--white);
}

.bc-service-item i {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.bc-service-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-service-item p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== REQUIREMENTS SECTION ===== */
.bc-requirements {
  padding: 80px 0;
  background: var(--bg-light);
}

.bc-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bc-req-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-req-content>p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.bc-req-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bc-req-item {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.bc-req-item:hover {
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
  transform: translateY(-5px);
}

.bc-req-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-req-icon i {
  color: var(--white);
  font-size: 24px;
}

.bc-req-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-req-text p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.bc-req-image {
  position: relative;
}

.bc-req-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.15);
}

.bc-req-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.bc-req-badge h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.bc-req-badge p {
  font-size: 14px;
  color: var(--text-gray);
  margin: 0;
}

/* ===== PROCESS SECTION ===== */
.bc-process {
  padding: 80px 0;
  background: var(--white);
}

.bc-process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}

.bc-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.bc-step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 103, 218, 0.05);
  z-index: 0;
}

.bc-step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.bc-step:hover .bc-step-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1) rotate(360deg);
}

.bc-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-step p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.bc-step-arrow {
  font-size: 24px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.bc-cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.bc-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="600" cy="100" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="700" cy="400" r="200" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center;
  background-size: cover;
}

.bc-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.bc-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.bc-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.bc-btn-primary,
.bc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', Arial, sans-serif;
}

.bc-btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bc-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.bc-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.bc-btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== OUR PARTNERS SECTION ===== */
.bc-partners {
  padding: 80px 0;
  background: var(--bg-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .bc-hero {
    padding: 150px 0 60px;
  }

  .bc-hero-left {
    text-align: left;
    margin-bottom: 40px;
    /* padding: 0 15px; */
  }

  .bc-badge {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .bc-hero-content,
  .bc-about-grid,
  .bc-req-grid {
    grid-template-columns: 1fr;
  }

  .bc-about-content {
    order: 1;
  }

  .bc-overview-header {
    text-align: center;
  }

  .bc-about-image {
    order: 2;
  }

  .bc-hero-left h1 {
    font-size: 36px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  .bc-process-steps {
    flex-direction: column;
  }

  .bc-step-arrow {
    transform: rotate(90deg);
  }

  .bc-req-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bc-hero {
    padding: 140px 0 60px;
  }

  .bc-hero-left h1 {
    font-size: 28px;
  }

  .bc-section-header h2,
  .bc-about-content h2,
  .bc-req-content h2 {
    font-size: 32px;
  }

  .bc-benefits-grid,
  .bc-services-grid {
    grid-template-columns: 1fr;
  }

  .bc-cta-content h2 {
    font-size: 32px;
  }

  .bc-cta-buttons {
    flex-direction: column;
     align-items: center;
  }

  .bc-btn-primary,
  .bc-btn-secondary {
    width: 80%;
    justify-content: center;
    padding: 10px 15px;
  }

  .bc-about-image img {

    height: 400px;
  }
}