@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px !important;
    }
}
.services-section{
  margin-top: 7%;
  padding: 60px 0;
  background-color: #ffffff;
  min-height: 100vh;
}

.calculator-categories {
  padding-top: 30px;
}

.calc-category-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f5e9;
}

.calc-category-heading a {
  color: #7F96E5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.calc-category-heading a:hover {
  color: #365292;
}

.calc-link-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.calc-link-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  line-height: 1.4;
}

.calc-link-list li:last-child {
  border-bottom: none;
}

.calc-link-list li a {
  color: #37474f;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.calc-link-list li a:hover {
  color: #7F96E5;
  padding-left: 6px;
}

.calc-view-all {
  display: inline-block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #7991E4;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.calc-view-all:hover {
  color: #1b5e20;
  text-decoration: underline;
}

.btn-all-calculators {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #388e3c;
  color: #fff;
  padding: 14px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-all-calculators:hover {
  background-color: #2e7d32;
  color: #fff;
  transform: translateY(-1px);
}

.btn-arrow {
  background-color: #2e7d32;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}



.sitemap-section {
  padding: 150px 0 60px;
}

.sitemap-main-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.sitemap-sub {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 10px;
}

.sitemap-category {
  margin-bottom: 40px;
  border: 1px solid #e4e9f0;
  border-radius: 8px;
  overflow: hidden;
}

.sitemap-cat-heading {
  font-size: 18px;
  font-weight: 700;
  background-color: #f0f7f0;
  border-left: 4px solid #2e7d32;
  margin: 0;
  padding: 14px 20px;
}

.sitemap-cat-heading a {
  color: #2e7d32;
  text-decoration: none;
}

.sitemap-cat-heading a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

.sitemap-table {
  width: 100%;
  border-collapse: collapse;
}

.sitemap-table tr:nth-child(even) {
  background-color: #fafafa;
}

.sitemap-table tr td:hover {
  background-color: #f0f7f0;
}

.sitemap-table td {
  width: 33.33%;
  padding: 10px 20px;
  border-bottom: 1px solid #eef1f5;
  font-size: 14px;
  vertical-align: middle;
}

.sitemap-table td:not(:last-child) {
  border-right: 1px solid #eef1f5;
}

.sitemap-table td a {
  color: #37474f;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.15s ease;
  display: block;
}

.sitemap-table td a:hover {
  color: #2e7d32;
  padding-left: 5px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top:5%;
}
.search-icon {
    position: absolute;
    left: 20px;
    color: #888;
    font-size: 18px;
    z-index: 5;
}
.search-input {
    padding: 15px 50px 15px 55px !important;
    border-radius: 50px !important;
    border: 2px solid #e1e1e1 !important;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 60px !important;
    background: #fff !important;
}
.search-input:focus {
    border-color: #007bff !important;
    box-shadow: 0 8px 25px rgba(0,123,255,0.08) !important;
    outline: none;
}
.search-clear {
    position: absolute;
    right: 20px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
    z-index: 5;
}
.search-clear:hover {
    color: #ff4d4d;
}
.search-status {
    font-size: 15px;
}
.search-status span {
    color: #007bff;
}
.no-results-box {
    margin-top: 30px;
}

/* Animation for smooth appearance */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Highlight effect for matched boxes */
.service-box.matched {
    border-color: #007bff;
    transform: scale(1.02);
}
.services-section .col-lg-3 {
    padding: 5px;
}
.service-box {
  padding: 10px 0px;
  margin-top:5px;
}
h3.service-heading {
  font-size: 18px;
  background-color:transparent;
  margin-top: 0px;
}
p.service-para { 
  display:none;
}
.btn {
  margin:5px;
}
label, .form-label, .field-label {
  margin-top:15px !important;
  margin-bottom:5px !important;
}
select {
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}
h6.text-primary-custom {
   font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #365292;
}
h6.text-primary-custom .fa {
    font-size: 24px;
    margin-right: 10px;
}
.tool-content-wrap p {
    font-size: 16px;
}
.bg-success {
  background-color: #7f96e5 !important;
}
.text-success {
  color: #7f96e5 !important;
}
.border-success {
  border-color: #7f96e5 !important;
}


@media (max-width: 767px) {
  .sitemap-table,
  .sitemap-table tbody,
  .sitemap-table tr,
  .sitemap-table td {
    display: block;
    width: 100%;
  }

  .sitemap-table td {
    border-right: none;
  }
}