/* Box Section Styling */
.box {
  background: #fff;
  margin: 20px 0;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.box h1, .box h2 {
  margin-bottom: 15px;
}
.box p {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* बटन स्टाइलिंग */
.btn, .btn-2 {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.btn.red {
  background: #e74c3c;
  color: #fff;
}
.btn.green {
  background: #27ae60;
  color: #fff;
}
.btn.darkblue {
  background: #2c3e50;
  color: #fff;
}
.btn-2.red {
  background: #e74c3c;
  color: #fff;
  margin-bottom: 20px;
}

/* Services Section */
.services {
  margin: 20px 0;
  text-align: center;
}
.services .btn {
  margin: 5px;
}

/* Online VAT Calculator Section */
.vat-calculator {
  margin: 20px 0;
}
.vat-calculator .input-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.vat-calculator label {
  margin-bottom: 5px;
  font-weight: bold;
}
.vat-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}
.vat-calculator button {
  margin-top: 10px;
}

/* VAT Results Styling */
.vat-results {
  margin: 20px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.result-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.result-card h2 {
  margin-bottom: 15px;
}
.time-units {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.unit {
  margin: 10px 15px;
  text-align: center;
}
.unit span {
  font-size: 2rem;
  font-weight: bold;
  color: #27ae60;
}
.unit small {
  display: block;
  font-size: 0.9rem;
  color: #555;
}

/* Overview Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
table thead tr {
  background: #0060ae;
  color: #fff;
}
table th, table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
