    .inner-location {
      padding: 100px 0px;
    }

    .contact-card {
      box-shadow: 2px 4px 10px rgb(211, 211, 211);
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      margin-top: 40px;
    }

    .contact_form_main {
      padding: 20px 20px 60px;
      box-shadow: 2px 2px 10px gainsboro;
    }

    .contact-card p {
      text-align: center !important;
      color: #d70b0b !important;
    }

    .right-location {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .location-left-inner {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    @media screen and (max-width:575px) {
      .inner-location {
        padding: 30px;
      }

    }


    .inner-location {
      padding: 100px 0;
    }

    .contact-card {
      box-shadow: 2px 4px 10px rgb(211, 211, 211);
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      margin-top: 40px;
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-card i {
      font-size: 28px;
      /* color: #d70b0b; */
      margin-bottom: 15px;
    }

    .contact-card h5 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }

    .contact-card p {
      text-align: center !important;
      color: #d70b0b !important;
      font-size: 16px;
    }

    .contact-card a {
      color: #d70b0b;
      text-decoration: none;
      font-weight: 500;
    }

    .contact-card a:hover {
      text-decoration: underline;
      color: #a90b0b;
    }

    .right-location {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .location-left-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .location-left-inner .row {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }





    @media (max-width: 991px) {
      .inner-location {
        padding: 10px 0;
      }
    }

    @media (max-width: 768px) {
      .contact-card {
        width: 100%;
      }

      .right-location iframe {
        width: 100%;
        height: 300px;
      }
    }

    @media (max-width: 576px) {
      .contact-card i {
        font-size: 30px;
      }

      .contact-card h5 {
        font-size: 16px;
      }

      .contact-card p {
        font-size: 14px;
      }
    }

    .loader {
      border: 8px solid #f3f3f3;
      /* Light grey */
      border-top: 8px solid #3498db;
      /* Blue */
      border-radius: 50%;
      width: 50px;
      height: 50px;
      animation: spin 2s linear infinite;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }