/* ==================================================================================
   PERSONAL LOAN FOR EDUCATION - STYLESHEET
   Modern, clean design with brand consistency
   Colors: #0d214f (navy), #0067da (blue), #2563eb (bright blue), #29b9ed (light blue)
   Font: Poppins
================================================================================== */

/* ==================== GLOBAL STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ple-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== SECTION HEADERS ==================== */
.ple-section-header {
  margin-bottom: 60px;
  text-align: center;
}

.ple-section-header.center {
  text-align: center;
}

.ple-tag {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.ple-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.ple-section-header p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

/* ==================== HERO SECTION ==================== */
.ple-hero {
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.ple-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.ple-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ple-hero-content {
  color: #fff;
}

.ple-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.ple-hero-badge i {
  font-size: 1.2rem;
}

.ple-hero-content h1 {
  font-size: 3rem;
  font-weight: 700; 
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.ple-hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  text-align: justify;
}

/* Hero stats */
.ple-hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.ple-stat {
  text-align: center;
}

.ple-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #29b9ed;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.ple-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Poppins', sans-serif;
}

/* Hero action buttons */
.ple-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ple-btn-primary,
.ple-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.ple-btn-primary {
  background: #fff;
  color: #0d214f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ple-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.ple-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.ple-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hero image */
.ple-hero-image {
  position: relative;
}

.ple-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ple-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Floating card on image */
.ple-floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.ple-floating-card i {
  font-size: 2rem;
  color: #10b981;
}

.ple-floating-card strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif;
}

.ple-floating-card span {
  font-size: 0.85rem;
  color: #64748b;
  font-family: 'Poppins', sans-serif;
}

/* ==================== BENEFITS SECTION ==================== */
.ple-benefits {
  padding: 100px 0;
  background: #f8faff;
}

.ple-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ple-benefit-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent bar */
.ple-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0067da, #29b9ed);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ple-benefit-card:hover::before {
  transform: scaleX(1);
}

.ple-benefit-card:hover {
  transform: translateY(-10px);
  border-color: #0067da;
  box-shadow: 0 20px 50px rgba(0, 103, 218, 0.15);
}

.ple-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0067da, #29b9ed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #fff;
}

.ple-benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.ple-benefit-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

/* ==================== LOAN COVERAGE SECTION ==================== */
.ple-coverage {
  padding: 100px 0;
  background: #fff;
}

.ple-coverage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ple-coverage-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.ple-coverage-left p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 35px;
  font-family: 'Poppins', sans-serif;
}

.ple-coverage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ple-coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8faff;
  border-radius: 12px;
  border-left: 4px solid #0067da;
  transition: all 0.3s ease;
}

.ple-coverage-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
}

.ple-coverage-item i {
  font-size: 1.5rem;
  color: #0067da;
  flex-shrink: 0;
}

.ple-coverage-item strong {
  display: block;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.ple-coverage-item span {
  font-size: 0.95rem;
  color: #64748b;
  font-family: 'Poppins', sans-serif;
}

.ple-coverage-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 33, 79, 0.15);
}

.ple-coverage-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* ==================== ELIGIBILITY SECTION ==================== */
.ple-eligibility {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ple-eligibility-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.ple-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #e2e8f0;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.ple-tab:hover {
  border-color: #0067da;
  color: #0067da;
}

.ple-tab.active {
  background: linear-gradient(135deg, #0067da, #29b9ed);
  border-color: #0067da;
  color: #fff;
}

.ple-tab i {
  font-size: 1.2rem;
}

.ple-tab-content {
  display: none;
}

.ple-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ple-eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ple-eligibility-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ple-eligibility-card:hover {
  border-color: #0067da;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
}

.ple-eligibility-card i {
  font-size: 2.5rem;
  color: #0067da;
  margin-bottom: 15px;
}

.ple-eligibility-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.ple-eligibility-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* ==================== CLEAN EMI CALCULATOR ==================== */

.emi-clean {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.emi-clean-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.emi-clean-header {
  text-align: center;
  margin-bottom: 40px;
}

.emi-clean-tag {
  background: #e4edff;
  padding: 5px 14px;
  border-radius: 20px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
}

.emi-clean-header h2 {
  margin: 14px 0 8px;
  font-size: 34px;
  font-weight: 700;
  color: #0d214f;
}

.emi-clean-header p {
  color: #475569;
  font-size: 16px;
}

/* MAIN WRAPPER */
.emi-clean-wrapper {
  background: #f8faff;
  border-radius: 22px;
  padding: 50px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 50px rgba(13, 33, 79, 0.1);
}

/* ==================== INPUT STYLES ==================== */

.emi-clean-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.emi-clean-input label {
  font-size: 14px;
  font-weight: 600;
  color: #0d214f;
  margin-bottom: 8px;
}

.emi-clean-input input[type="number"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cfd8ea;
  border-radius: 12px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
  color: #0d214f;
  margin-bottom: 12px;
  transition: 0.2s ease;
}

.emi-clean-input input[type="number"]:focus {
  border-color: #2563eb;
  outline: none;
}

/* Slider */
.emi-clean-input input[type="range"] {
  width: 100%;
  height: 6px;
  background: #dbe7ff;
  border-radius: 5px;
}

.emi-clean-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0px 3px 8px rgba(37, 99, 235, 0.4);
  cursor: pointer;
}

.emi-clean-range-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

/* ==================== RESULT CARDS ==================== */

.emi-clean-results {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.emi-clean-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e3eaf8;
  text-align: center;
  box-shadow: 0 8px 22px rgba(13, 33, 79, 0.06);
  transition: 0.3s;
}

.emi-clean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 33, 79, 0.12);
}

.emi-clean-card label {
  font-size: 14px;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
}

.emi-clean-card h4,
.emi-clean-card h3 {
  color: #0d214f;
  font-weight: 700;
}

.emi-clean-card.highlight {
  grid-column: span 2;
  background: #eaf1ff;
  border-color: #2563eb;
}

.emi-clean-card.highlight h3 {
  color: #2563eb;
  font-size: 32px;
}

/* MOBILE */
@media(max-width: 900px) {
  .emi-clean-wrapper {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .emi-clean-results {
    grid-template-columns: 1fr;
  }
}


/* ==================== APPLICATION PROCESS SECTION ==================== */
.ple-process {
  padding: 100px 0;
  background: #f8faff;
}

.ple-process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

.ple-process-step {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
}

.ple-process-step:hover {
  border-color: #0067da;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 103, 218, 0.15);
}

.ple-process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0067da, #29b9ed);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 103, 218, 0.3);
  font-family: 'Poppins', sans-serif;
}

.ple-process-icon {
  width: 80px;
  height: 80px;
  background: #f8faff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 25px;
  font-size: 2rem;
  color: #0067da;
}

.ple-process-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.ple-process-step p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

/* ==================== FAQ SECTION ==================== */
.ple-faq {
  padding: 100px 0;
  background: #fff;
}

.ple-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}

.ple-faq-item {
  background: #f8faff;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ple-faq-item.active {
  border-color: #0067da;
  box-shadow: 0 10px 30px rgba(0, 103, 218, 0.1);
  background-color: white !important;
}

.ple-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.ple-faq-question:hover {
  color: #0067da;
}

.ple-faq-question i {
  font-size: 1.2rem;
  color: #0067da;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.ple-faq-item.active .ple-faq-question i {
  transform: rotate(180deg);
}

.ple-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ple-faq-answer p {
  padding: 0 30px 25px;
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

/* ==================== CTA SECTION ==================== */
.ple-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  position: relative;
  overflow: hidden;
}

.ple-cta::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.ple-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.ple-cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.ple-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.ple-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ple-btn-primary.large,
.ple-btn-outline.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.ple-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.ple-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablets and below (992px) */
@media (max-width: 992px) {
  .ple-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ple-hero-content h1 {
    font-size: 2.5rem;
  }

  .ple-coverage-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ple-calculator-wrapper {
    padding: 40px 30px;
  }

  .ple-result-card.main {
    grid-column: span 1;
  }
}

/* Mobile devices (768px) */
@media (max-width: 768px) {
  .ple-section-header h2 {
    font-size: 2rem;
  }

  .ple-hero-content h1 {
    font-size: 2rem;
  }

  .ple-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .ple-hero-actions {
    flex-direction: column;
  }

  .ple-btn-primary,
  .ple-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .ple-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ple-calculator-inputs {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ple-calculator-results {
    grid-template-columns: 1fr;
  }

  .ple-process-timeline {
    grid-template-columns: 1fr;
  }

  .ple-eligibility-tabs {
    flex-direction: column;
  }

  .ple-tab {
    width: 100%;
    justify-content: center;
  }

  .ple-cta-content h2 {
    font-size: 2rem;
  }

  .ple-cta-buttons {
    flex-direction: column;
  }

  .ple-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
  .ple-hero {
    padding: 80px 0 60px;
  }

  .ple-hero-content h1 {
    font-size: 1.75rem;
  }

  .ple-section-header h2 {
    font-size: 1.75rem;
  }

  .ple-calculator-wrapper {
    padding: 30px 20px;
  }

  .ple-faq-question {
    font-size: 1rem;
    padding: 20px;
  }

  .ple-faq-answer p {
    padding: 0 20px 20px;
  }
}