/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Updated on : Sep 22, 2025, 10:07:46 AM
    Author     : Muhammad Shayan Ahmed
*/

   /* body {
      margin: 0;
      padding: 0;
      font-family: "Roboto", sans-serif;
    }*/

    /* Banner */
    .banner img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    /* Intro Section */
    .intro {
      background: #f9f9f9;
      text-align: center;
      padding: 3rem 0;
    }
    .intro h3 {
      font-weight: bold;
      margin-bottom: 1rem;
      color: #0b3c86;
    }
    .intro p {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
      font-size: 1.4rem;
    }

    /* Tax Calculator Section */
    .tax-calculator {
      background-color: #0b3c86;
      color: #fff;
      width: 100%;
      padding: 3rem 0;
      min-height: 400px; /* Standard height for the section */
    }
    .tax-calculator input {
      max-width: 400px;
      margin: 0 auto;
      border: 2px solid #fff;
      border-radius: 10px 10px;
    }
    .tax-calculator .result-box {
      color: #fff;
    }

    /* Buttons - Standard Size */
    .tax-btn {
      font-size: 15px;
      text-align: center;
      min-width: 120px;
      max-width: 220px;
      color: #ffc107 !important; /* Orange text */
      padding: 10px 22px;
      border-radius: 22px;
      border: 2px solid #686db0;
      background-color: #323d99 !important; /* Blue background */
      transition: all 0.3s ease;
      display: inline-block;
      font-weight: 600;
    }
    .tax-btn:hover,
    .tax-btn:focus:hover {
      background-color: #ffc107 !important; /* Yellow */
      border-color: #ffc107 !important;
      color: #222 !important; /* Dark text for contrast */
    }
    .tax-btn-lg {
      font-size: 16px;
      padding: 12px 28px;
      min-width: 140px;
      max-width: 240px;
      color: #ffffff !important;
      background-color: #323d99 !important;
    }
    .tax-btn-light, .tax-btn.tax-btn-light {
      color: #ffffff !important;
      background-color: #323d99 !important;
      border-color: #686db0 !important;
    }
    .tax-btn-outline-primary, .tax-btn.tax-btn-outline-primary {
      color: #ffffff !important;
      border-color: #323d99 !important;
      background-color: #323d99 !important;
    }
    .tax-btn-success, .tax-btn.tax-btn-success {
      color: #ffffff !important;
      background-color: #323d99 !important;
      border-color: #686db0 !important;
    }
    .tax-btn:focus, .tax-btn:active {
      outline: none !important;
      box-shadow: 0 0 0 0.2rem rgba(50,61,153,0.15) !important;
    }

    /* Input Fields */
    input[type="text"] {
      border: 3px solid #ccc;
      box-sizing: border-box;
      -webkit-transition: 0.5s;
      transition: 0.5s;
      outline: none;
    }
    input[type="text"]:focus {
      border-color: #0b3c86;
    }

    /* Tax Rebate Table */
    .rebate-table {
      padding: 30px 0;
      text-align: center;
    }
    .rebate-table h3 {
      font-size: 24px;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .rebate-table img {
      max-width: 900px;
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Steps Section */
    .steps h5 {
      font-weight: bold;
      color: #000000;
    }
    .steps .card-step {
      padding: 1.5rem;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-radius: 0.5rem;
      height: 100%;
      min-height: 200px; /* Standard height for consistent appearance */
      margin-bottom: 1rem;
      border-left: 4px solid #0b3c86;
    }
    /* HOW CAN I DO THIS? heading dark blue */
    .steps h3.fw-bold.text-center.mb-4.text-primary {
      color: #0b3c86 !important;
    }

    /* Steps List Layout - WITHOUT step-content div */
    .steps-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }
    .steps-list li {
      margin-bottom: 1.5rem;
      position: relative;
      display: flex;
      align-items: flex-start;
      padding: 1rem;
      background: transparent;
      border: none;
      box-shadow: none;
    }
    .steps-list .step-number {
      display: none;
    }
    .steps-list h5,
    .steps-list p {
      color: #111 !important;
    }

    /* FAQs Section - Fixed Grey Shade with Blue Theme */
    .accordion {
      background: #0b3c86;
      border-radius: 10px;
      overflow: hidden;
    }
    .accordion-item {
	  background-color: #ffffff;
      border: none;
      margin-bottom: 0;
    }
    .accordion-button {
      background-color:  #0b3c86;
      color: #ffffff; /* Light blue */
      font-weight: 700;
      font-size: 16px;
      padding: 20px;
      border: none;
      border-radius: 0;
      text-align: left;
    }
    .accordion-button:not(.collapsed) {
      background-color: #0b3c86;
      color: white;
      box-shadow: none;
    }
    .accordion-button:focus {
      box-shadow: 0 0 0 0.2rem rgba(11, 60, 134, 0.25);
      border: none;
    }
    .accordion-body {
      background-color: white;
      padding: 20px;
      border-top: 1px solid #dee2e6;
    }

    /* Disclaimer */
    .tax-disclaimer {
      padding: 1.5rem;
      background: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: .5rem;
      font-size: 0.9rem;
    }
    
    .tax-disclaimer h5 {
      font-weight: bold;
      color: #dc3545;
	  margin-bottom: 1rem;
    }
     
   .tax-disclaimer  p 
   {
	   color: #000000 !important;
	   margin-bottom: 1rem;
	   display:block !important;
	   width:100% !important;
	   
   }