html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.fund-analysis {
  padding: 60px 80px;
  background: #fff;
  display: flex;
  justify-content: center;
}

.fund-analysis .content {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  align-items: flex-start;
}

.left {
  flex: 1;
}

.left .icon {
  background: #03433a;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 22px;
}

.left h2 {
  font-size: 24px;
  color: #03433a;
  margin-bottom: 10px;
}

.left p {
  color: #555;
  line-height: 1.6;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  margin-bottom: 15px;
  color: #444;
}

.features li i {
  color: #009d4f;
  margin-right: 8px;
}

.btn {
  background: #03433a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #009d4f;
}

/* Right Card */
.right .card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 350px;
}

.right h3 {
  margin-bottom: 20px;
  color: #111;
}

.highlight {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.highlight .bar {
  width: 3px;
  height: 40px;
  background: #009d4f;
  margin-right: 15px;
  border-radius: 2px;
}

.highlight h4 {
  margin: 0;
  font-size: 16px;
  color: #03433a;
}

.highlight p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

@media (max-width: 900px) {
  .fund-analysis .content {
    flex-direction: column;
  }

  .right .card {
    width: 100%;
  }
}


.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fund-analysis {
  border-radius: 1rem;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
}


.heading {
  display: flex;
  align-items: center;
  gap: 12px;
  /* space between icon and text */
  margin-bottom: 15px;
}

.heading .icon {
  background: #03433a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 20px;
}

.heading h2 {
  font-size: 24px;
  color: #03433a;
  margin: 0;
}


/* claculator starts */

.calculator-section {
  text-align: center;
  padding: 0px;
  margin-top: 3%;
}

.calculator-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.calculator-card {
  background: #f6efe3;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  width: 300px;
  text-align: left;
  transition: all 0.3s ease;
}

.calculator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.calculator-card .icon {
  background: #009d4f;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.calculator-card h3 {
  font-size: 20px;
  color: #0d1a33;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.calculator-card p {
  color: #444;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.calculator-card .tags {
  color: #1a3c34;
  font-size: 14px;
  font-weight: 500;
}

.calculator-section .center-btn {
  display: flex;
  justify-content: center;
}

.calculator-section .btn {
  background: #009d4f;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.calculator-section .btn:hover {
  background: #e39300;
}

/* Responsive */
@media (max-width: 900px) {
  .calculator-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1000px) {
  .footer2 span {
    padding-left: 10%;
  }
}

/* calculator ends */

/* Utility Classes */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

@media (min-width: 960px) {

  /* Fix footer column widths */
  .copyright .col-md-3,
  .copyright .col-md-6,
  .copyright .col-sm-3,
  .copyright .col-sm-6 {
    flex: 1;
    /* Force columns to grow */
    max-width: 100%;
    /* Ensure they don't overflow */
  }

  /* Ensure the specific columns have correct flex basis if needed, standard bootstrap should handle this but custom css might override */
  .copyright .row {
    display: flex !important;
    justify-content: space-between;
  }

}






@media (max-width: 860px) {
  .header-inner .row {
    sdisplay: flex;
    width: 100%;
  }

  .header-inner .row a {
    width: 90%;
  }

  .mobile-nav-trigger-outter {
    width: 10%;
    margin-top: 5%;
  }

  .logo img {
    width: 60%;
    max-width: 100%;
    display: block;
    margin-left: 20%;
  }

  p.bannerbottomcnt {
    font-size: 16px;
    padding: 0;
  }

  .hidden-xs {
    display: none;
  }

  .visible-xs {
    display: block;
  }

  .company-overview-section .overview-count-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-overview-section .count-wrapper .count-title {
    font-size: 13px;
  }

  .company-overview-section .number-title,
  .company-overview-section .number-title-plus {
    font-size: 18px;
    line-height: 5rem;
  }

  .company-overview-section .overview-count-list {
    padding-bottom: 10px;
  }

  .anchor {
    margin-top: -30px;
    padding-bottom: 30px;
    display: block;
    position: relative;
    z-index: -1;
  }

  .feature-section .feature-card-bg {
    padding: 10px;
  }

  .feature-section h2 {
    font-size: 21px;
  }

  .feature-section .btn-primary {
    display: none;
  }

  .offerss .column {
    width: 32%;
    float: left;
    box-sizing: border-box;
  }

  .service-block h3 {
    font-size: 16px;
  }

  .service-block p {
    font-size: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .fund-analysis {
    padding-left: 20px;
    padding-right: 20px;
  }

  .right .card {
    width: 82%;
  }

  .footer-cta .gform_footer,
  .footer-form .gform_footer {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    top: 0% !important;
    margin: 0% !important;
  }

  .gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
    width: 100%;
    margin-bottom: 10px;
  }

  .gform_wrapper.gravity-theme .gform_fields {

    display: block;
    /* margin-bottom: 20px; */
    width: 100%;
  }

  .footer-cta .gform_wrapper .gform_body,
  .footer-form .gform_wrapper .gform_body {
    padding: 0 !important;
  }

  #gform_submit_button_1,
  .gform_wrapper .gform_button,
  .footer-cta .gform_footer .button,
  .footer-form .gform_footer .button {
    margin-top: 10% !important;
  }

  .copyright .row {
    display: block !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 13px;
  }

  .copyright .text-right {
    text-align: left !important;
  }

  .copyright .row .footer2 {
    text-align: left !important;
  }
}