/* --- extracted style block 1 from Property_experts/home-loan.php --- */
    :root {
      --primary: #c62828;
      --primary-dark: #8e0000;
      --primary-light: #ff5f52;
      --secondary: #1565c0;
      --muted: #f1f4f6;
      --card-bg: #eef0f3;
      --dark-text: #333;
      --light-text: #666;
      --white: #fff;
      --shadow: 0 4px 12px rgba(0,0,0,0.08);
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
      background:#fff;
      color: var(--dark-text);max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    /* Header Styles */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid #eee;
      padding: 12px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .brand {
      font-family: 'Montserrat';
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 2px;
      font-size: 1.4rem;
    }
    
    .nav-icon {
      font-size: 1.2rem;
      color: #444;
      position: relative;
    }
    
    .nav-icon:hover {
      border: none;
    }
    
    .nav-badge {
      position: absolute;
      top: 0px;
      right: 1px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
      color: white;
      padding: 40px 20px;
      text-align: center;
      margin-bottom: 30px;
    }
    
    .page-title {
      font-weight: 800;
      margin-bottom: 10px;
      font-size: 2.2rem;
    }
    
    .page-subtitle {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Loan Calculator */
    .calculator-section {
      background: white;
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 30px;
      margin: 30px 20px;
    }
    
    .calculator-title {
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 25px;
      font-size: 1.5rem;
      text-align: center;
    }
    
    .calculator-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    
    .calculator-inputs {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .input-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .input-group label {
      font-weight: 600;
      color: var(--dark-text);
    }
    
    .input-group input {
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .input-group input:focus {
      outline: none;
      border-color: var(--secondary);
      box-shadow: 0 0 0 2px rgba(21, 101, 192, 0.1);
    }
    
    .range-input {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .range-input input[type="range"] {
      flex: 1;
    }
    
    .range-value {
      min-width: 60px;
      text-align: right;
      font-weight: 600;
    }
    
    .calculator-results {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 25px;
    }
    
    .result-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #e9ecef;
    }
    
    .result-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    
    .result-item .label {
      color: var(--light-text);
    }
    
    .result-item .value {
      font-weight: 700;
      color: var(--secondary);
      font-size: 1.1rem;
    }
    
    .emi-amount {
      font-size: 1.8rem !important;
      color: var(--primary) !important;
    }
    
    /* Content Sections */
    .content-section {
      padding: 30px 20px;
    }
    
    .section-title {
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 20px;
      font-size: 1.5rem;
      border-bottom: 2px solid var(--secondary);
      padding-bottom: 10px;
      display: inline-block;
    }
    
    .info-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: var(--shadow);
      margin-bottom: 25px;
      transition: var(--transition);
      border-left: 4px solid var(--secondary);
    }
    
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .info-card h4 {
      color: var(--secondary);
      margin-bottom: 15px;
      font-weight: 700;
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
    }
    
    .feature-list li {
      padding: 8px 0;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: flex-start;
    }
    
    .feature-list li:last-child {
      border-bottom: none;
    }
    
    .feature-list i {
      color: var(--secondary);
      margin-right: 10px;
      margin-top: 5px;
    }
    
    /* Process Steps */
    .process-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 30px 0;
    }
    
    .process-step {
      flex: 1;
      min-width: 250px;
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
    }
    
    .process-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      background: var(--secondary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.2rem;
      margin: 0 auto 15px;
    }
    
    /* Bank Partners */
    .bank-partners {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin: 30px 0;
    }
    
    .bank-logo {
      width: 120px;
      height: 80px;
      background: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow);
      padding: 15px;
      transition: var(--transition);
    }
    
    .bank-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    
    .bank-logo img {
      max-width: 100%;
      max-height: 100%;
      filter: grayscale(100%);
      transition: var(--transition);
    }
    
    .bank-logo:hover img {
      filter: grayscale(0%);
    }
    
    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary) 0%, #0d47a1 100%);
      color: white;
      padding: 40px 20px;
      border-radius: 12px;
      text-align: center;
      margin: 40px 0;
    }
    
    .cta-title {
      font-weight: 800;
      margin-bottom: 15px;
      font-size: 1.8rem;
    }
    
    .cta-description {
      font-size: 1.1rem;
      margin-bottom: 25px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .btn-cta {
      background: white;
      color: var(--secondary);
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-cta:hover {
      background: #f5f5f5;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* FAQ Section */
    .faq-item {
      background: white;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    
    .faq-question {
      padding: 20px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
    }
    
    .faq-question:hover {
      background: #f9f9f9;
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 20px 20px;
      max-height: 500px;
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    /* Footer */
    .site-footer {
      background: #2c3e50;
      color: white;
      padding: 40px 20px 20px;
      margin-top: 40px;
    }
    
    .footer-title {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: #ecf0f1;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--white);
      padding-left: 5px;
    }
    
    .footer-contact {
      color: #bdc3c7;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .footer-social a {
      color: white;
      background: rgba(255,255,255,0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .footer-social a:hover {
      background: var(--secondary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      margin-top: 30px;
      text-align: center;
      color: #95a5a6;
      font-size: 0.9rem;
    }
    
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .calculator-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .process-step {
        min-width: 100%;
      }
      
      .page-header {
        padding: 30px 15px;
      }
      
      .page-title {
        font-size: 1.8rem;
      }
      
      .content-section {
        padding: 20px 15px;
      }
      
      .calculator-section {
        margin: 20px 15px;
        padding: 20px;
      }
    }
    
    @media (max-width: 576px) {
      body {
        box-shadow: none;
      }
      
      .bank-logo {
        width: 100px;
        height: 70px;
      }
    }
  
