* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
html,
body {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #222831;
  --secondary-color: #31363f;
  --base-color: #aa3235;
  --bg-color: #eeeeee;
}
a {
  text-decoration: none;
}
.medical-home {
  background: rgb(170, 50, 53);
  background: linear-gradient(
    180deg,
    rgba(170, 50, 53, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
/* Container for the entire layout */
.nv-layout-container {
  width: 100%;
  margin: 0px auto;
  min-height: 100vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 50px;
  flex-wrap: wrap;
  align-content: center;
}
.nv-left-section {
  width: 50%;
  text-align: center;
}
.nv-heading {
  font-size: 2rem;
  color: #aa3235; /* Preferred text color */
  margin-bottom: 10px;
  text-shadow: 0px 1px 1px #000;
}

/* Styling for the paragraph */
.nv-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* CTA button styling */
.nv-cta-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #aa3235;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.nv-cta-link:hover {
  background-color: #aa3235; /* Darker hover effect */
}

/* Right section containing the circular image */
.nv-right-section {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .nv-layout-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nv-left-section {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .nv-heading {
    font-size: 2rem;
  }

  .nv-paragraph {
    font-size: 1rem;
  }

  .nv-circle-image {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .nv-heading {
    font-size: 1.8rem;
  }

  .nv-paragraph {
    font-size: 0.95rem;
  }

  .nv-circle-image {
    width: 250px;
    height: 250px;
  }
}

/* ========================================two cards============ */
/*  */

/* =========================== */

.audit-subcontainer {
  width: 100%;
  /* height: 90vh; */
  /* background-color: aquamarine;  */
  display: flex;
  flex-direction: column;
}

.child1 {
  /* background-color: #eeeeee; */
  width: 100%;
  /* height: 20%; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
}

.audit-text1 {
  color: #aa3235;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.audit-text2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
}
.child2 {
  padding-top: 20px;
  display: flex;
  /* background: aqua; */
  width: 100%;
  border-radius: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.audit-allbutton {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 20px;
  white-space: nowrap;
  overflow: auto;
}

.audit-btn-series {
  border-radius: 100px;
  /* border: 1px solid #03d5b2 !important; */
  /* background: #03d5b2 !important; */
  box-shadow: 4px 32px 64px 0 rgba(57, 53, 53, 0.3);
  padding: 15px 16px;
  font-size: 20px;
  font-weight: 500;
  /* color: #eeeeee; */
  transition: all 0.5s ease;
  cursor: pointer;
}
.audit-btn-series:hover {
  background-color: #aa3235 !important;
}

.my-btn {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
}

/* Flip container for the circle */
.all-btn-btn {
  font-size: 16px;
  font-weight: 600;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  background: #ffffff4d;
  text-align: center;
  display: flex;
  box-shadow: 0px 2px 5px 0 #2f1717;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
  perspective: 1000px; /* Added for 3D flip */
}

.flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.all-btn-btn:hover .flipper {
  transform: rotateY(180deg); /* Flip on hover */
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.front {
  /* Front side styling */
  background-color: #ffffff4d;
  display: flex;
  flex-direction: column;
}
.front p {
  max-width: 90%;
  font-weight: lighter;
  text-shadow: 0 0 0 #ccc;
}

.back {
  /* Back side styling */
  background-color: #0000008f;
  color: white; /* Text color on the back */
  transform: rotateY(180deg); /* Initial back side position */
  padding: 40px;
  font-size: small;
  font-weight: lighter;
}

.audit-imagecontent {
  margin-bottom: 25px;
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.auditactualimage {
  /* width: 40%; */
  height: 100%;
  /* background-color: antiquewhite; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.textcontain {
  width: 80%;
  text-align: center;
  height: 100%;
  /* background-color: aquamarine; */
  display: flex;
  align-items: center;
  padding: 5% 10px 0;
  flex-direction: column;
  row-gap: 15px;
}
.textcontainbtn {
  padding: 15px 30px;
  color: #fff;
  background-color: #aa3235;
  border-radius: 50px;
}

.subchild_button {
  background-color: #aa3235;
  border-radius: 100px;
  box-shadow: 0px 0px 1px 0 rgba(29, 29, 31, 0.3);
  padding: 16px 12px;
  font-size: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease;
}
.subchild_button:hover {
  color: white;
}

/* <!-- hiredigitalmarketerpage --> */

.hiredigitalmarketer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  /* height: 90vh; */
  /* background-color: aqua; */
}

.hiresubcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
  /* background-color: antiquewhite; */
}

.hirepara {
  font-size: 2.5rem;
  font-weight: 700;
}

.hirebtn {
  border-radius: 100px;

  box-shadow: 4px 32px 64px 0 rgba(14, 15, 16, 0.3);
  padding: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.5s ease;
}

.hirebtn a {
  color: #161616;
  font-size: 25px;
}

.hirebtn:hover {
  background: #aa3235 !important;
}

/* ================================================== */
.cards-outsource {
  width: 100%;
  /* height: 100vh; */

  /* height: 60vw; */
}

.service-cards {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.card-wrap {
  max-width: 500px;
  min-width: 300px;
  margin: 35px;
  background: #fff;
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.card-wrap:hover {
  transform: scale(1.1);
}

.card-header {
  height: 200px;
  display: grid;
  place-items: center;
  border-radius: 100% 0 100% 0 / 0 50% 50% 100%;
  color: #fff;
  font-size: 72px;
}

.one {
  background-image: url("../Assets/allimages/medical-billing/nadezhda_ventures_medicalimaginingexperts\ \(1\).png");
  background-size: cover;
  background-position: center;
}

.two {
  background-image: url("../Assets/allimages/medical-billing/nadezhda_ventures_medicalibilling.png");
  background-size: cover;
  background-position: center;
}

.card-content {
  text-align: center;
  margin: 20px auto;
  width: 60%;
}

.card-title {
  font-size: 16px;
  text-transform: uppercase;
  margin: 10px 0;
}

.card-text {
  text-align: justify;
  font-size: 12px;
  margin-bottom: 20px;
}

.card-btn {
  padding: 5px 30px;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  border: none;
  background-color: #aa3235;
}

.card-btn.one {
  background: linear-gradient(to left, var(--gradient-1));
}
.card-btn.two {
  background: linear-gradient(to left, var(--gradient-2));
}
.card-btn.three {
  background: linear-gradient(to left, var(--gradient-3));
}
.card-btn.four {
  background: linear-gradient(to left, var(--gradient-4));
}
/* ================================= */
.hiring-image {
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center; /* Center the image vertically */
  width: 100%;
  overflow: hidden; /* Prevent overflow if the image is too large */
}

.hiring-image img {
  max-height: 100%; /* Ensure the image fits within the container */
  max-width: 100%; /* Allow the image to be responsive */
  object-fit: cover; /* Maintain aspect ratio while covering the container */
}
/* =====================================================================content==== */
.para {
  padding: 20px;
  background-color: #f9f9f9; /* Light background for contrast */
  border-radius: 8px; /* Rounded corners */
}

.outsourcing-container {
  max-width: 1300px; /* Limit the width */
  margin: 0 auto; /* Center the container */
}

.outsourcing-title {
  color: #aa3235;
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
  margin-top: 70px;
}

.outsourcing-content {
  font-size: 16px; /* Content size */
  line-height: 1.6; /* Better line spacing */
  color: #333; /* Darker text color for readability */
  margin-bottom: 15px; /* Spacing below paragraphs */
}

/* Style for lists */
.outsourcing-content ul {
  padding-left: 20px; /* Indent the list */
}

.outsourcing-content li {
  margin-bottom: 10px; /* Spacing between list items */
  position: relative; /* For custom bullet styling */
}

.outsourcing-content li::before {
  content: "✓"; /* Custom bullet */
  color: #aa3235; /* Bullet color */
  position: absolute; /* Positioning the bullet */
  left: -20px; /* Adjust as needed */
}

.outsourcing-content p {
  /* font-style:italic; */
  margin-top: 60px;
  font-size: 28px;
  color: #aa3235;
  font-weight: 900;
  font-family: "Cedarville Cursive", "cursive";
}

/* ===============================fifth page============ */

.contact_container {
  width: 100%;
  /* height: 86vh; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 25px;
  background: rgb(170, 50, 53);
  background: linear-gradient(
    0deg,
    rgba(170, 50, 53, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  /* border-radius: 100%; */
}

.contact_subchild {
  width: 100%;
  max-width: 600px;
  padding: 10% 0 0;
}

.contact_subchild1 h1 {
  font-size: 8rem;
  line-height: 0.9;
  color: #aa3235;
  text-shadow: 2px 1px 1px #000;
}
.contact_subchild1 h5 {
  font-size: 60px;
}

.contact_subchild1 h2 {
  font-size: 2.5em;
}
.callingno {
  line-height: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact_subchild1 h1 {
  font-size: 8rem;
  line-height: 0.9;
  color: #aa3235;
}

.callingno h3 {
  font-size: 30px;
  /* font-weight: 500; */
  color: #000000;
  text-shadow: 1px 1px 1px #ffffff79;
  font-family: "Cedarville Cursive", "cursive";
  font-weight: 400;
  font-style: normal;
}

.callingno h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

/* form content*/

.form-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: sans-serif;
  /* height: 100vh; */
  min-width: 500px;
}

#formHalfFields {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 10px;
}
#formSubmitImg {
  /* width: 100%; */
  height: 70%;
  position: absolute;
  /* top: 0; */
  object-fit: contain;
  display: none;
}

.inner-cont {
  background-color: #ffffff26;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px; /* Reduced padding */
  max-width: 485px; /* Reduced max-width */
  width: 100vh;
  /* height: 70vh; */
  position: relative;
}

.heading {
  color: #333;
  font-size: 20px; /* Reduced font size */
  margin-bottom: 10px;
}

.subheading {
  color: #666;
  font-size: 18px; /* Reduced font size */
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  /* line-height: 35px; */
}

.form-group {
  margin-bottom: 10px; /* Reduced margin */
  width: 100%;
}
#formHalfFields .form-group {
  width: 49% !important;
}

#formHalfFields .form-group:last-child {
  width: 100% !important;
}

.form-group label {
  display: block;
  font-size: 16px; /* Reduced font size */
  margin-bottom: 4px;
}

.required {
  color: red;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px; /* Reduced padding */
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px; /* Reduced font size */
}

.contact-form textarea {
  resize: vertical;
}

.form-btn {
  text-align: center;
}

.submit-button {
  background-color: #aa3235;
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 19px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 40%;
}

.submit-button:hover {
  color: black;
}

label {
  font-weight: 549;
}

#project-duration {
  height: 35px; /* Adjust this value to match the email input field height */
}

/* Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .contact_subchild {
    padding: 26% 1% 0;
  }

  .contact_subchild1 h1 {
    font-size: 5rem;
  }

  .contact_subchild1 h2 {
    font-size: 2rem;
  }

  .callingno h2 {
    font-size: 2.5rem;
  }

  .callingno h3 {
    font-size: 24px;
  }

  .inner-cont {
    width: 90vw;
    padding: 10px;
  }

  .heading {
    font-size: 24px;
  }

  .subheading {
    font-size: 16px;
  }

  .form-right {
    min-width: 100%;
    height: auto;
    padding: 20px;
  }

  #formHalfFields .form-group {
    width: 100% !important;
  }

  #formHalfFields .form-group:last-child {
    width: 100% !important;
  }

  .submit-button {
    width: 80%;
    padding: 12px;
    font-size: 16px;
  }
}

/* =================================== */

.pricehead {
  text-align: center;
  font-size: 2rem;
  padding: 50px 0;
  font-weight: 300;
}
.pricehead h1 {
  font-size: 40px;
  font-weight: 700;
}

/* General card styling */

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  align-content: center;
}
.pricing-wrapper {
  width: 30%; /* Adjust card width to fit 3 in a row */
  margin: 0px auto; /* Add margin for spacing between cards */
}

.pricing-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgb(57 22 22);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-top span {
  font-size: 18px;
  color: #aa3235;
  font-weight: 700;
}

.pricing-top h2 {
  font-size: 32px;
  /* color: #333; */
  margin: 10px 0;
}

.pricing-top sub {
  font-size: 16px;
  position: relative;
  bottom: -8px;
}

.pricing-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-content ul li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.pricing-content ul li img {
  width: 20px;
  height: 20px;
}

.primary-btn {
  text-align: center;
  background-color: #aa3235;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 25px;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
}

.primary-btn:hover {
  background-color: #aa3235;
}

.pricing-card:hover {
  background-color: #aa3235;
}
.pricing-card:hover * {
  color: #fff; /* Change all text to white */
}

.pricing-card:hover .primary-btn {
  background-color: #fff; /* Button background white */
  color: #000; /* Button text black */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .pricing-wrapper {
    width: 45%; /* Adjust width for smaller screens */
    margin: 2.5%; /* Adjust margin for proper spacing */
  }
}

@media (max-width: 768px) {
  .pricing-wrapper {
    width: 100%; /* Full width on mobile */
    margin: 0 0 20px 0; /* Margin adjustments for mobile */
  }

  .pricing-top h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1025px) {
  .my-btn {
    width: 90%;
    margin: 0px auto;
  }
  .card-wrap {
    width: 300px;
  }
}
