* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  font-family: Montserrat;
  /* font-family: "Poppins"; */

  line-height: 1.6;
  /* background-color: #f8f9fa; */
  overflow-x: hidden;
}

/* Final Header */

#contactus-form-container-popup {
  padding: 0 12px;
}

/* #modal-dialog-popup {
  background-image: url("https://www.teamcomputers.com/images/business-central-new/contact-form-one.jpeg");
  background-size: cover;
  background-position: center;
} */
.modal-content {
  background-color: transparent;
  border: none;
  border-radius: 5px;
}
.modal-content::before {
  content: "";
  border-radius: 15px;
  position: absolute; /* Absolute positioning to cover the entire container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* border-image-source: linear-gradient(
    293.41deg,
    rgba(255, 255, 255, 0.8) 16.62%,
    rgba(190, 235, 241, 0.32) 31.35%,
    rgba(98, 206, 222, 0.16) 56.21%,
    rgba(0, 175, 202, 0.8) 82.8%
  ); */
  opacity: 0.8; /* Adjust opacity value as needed */

  background: #0b5660cc;
  /* background: #106b77cc; */

  z-index: -1; /* Ensures the overlay goes behind the content */
}
.modal-content::after {
  content: "";
  position: absolute;
  border-radius: 18px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.teamcomputers.com/images/business-central-new/contact-form-one.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; /* Ensures the image goes behind the overlay */
}
#popup-button {
  background-color: #01abc5;
  border-color: #01abc5;

  color: #fff;
  font-weight: medium;
  cursor: pointer;
  font-size: 1.1em;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  /* border: 1px solid #ccc; */
  font-size: 1em;
}

.contact-btn {
  /* background: linear-gradient(45deg, #00abc5, #dfcf18);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer; */
  height: 45px;
  padding-left: 26px;
  padding-right: 26px;
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 500;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.3sease-in-out;
  border: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  background: linear-gradient(45deg, #00abc5, #dfcf18) !important;
  color: #fff !important;
  white-space: nowrap;
}
.nova-logo img {
  height: 30px;
}
.navbar-nav {
  margin-left: 30px;
  margin-right: 50px;
  gap: 20px;
}

.navbar-nav .nav-item {
  /* padding-bottom: 10px;
  padding-top: 10px; */
  /* padding-bottom: 23px;
  padding-top: 23px; */
  color: #414141;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
}
/* .navbar-nav .nav-item:hover {
  color: #00abc5;
  border-bottom: 3px solid #00abc5;
} */
.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.8px;
  color: #00abc5;
  background-color: #00abc5;
  /* transition: width 0.3s ease-in-out; */
}

.navbar-nav .nav-item:hover::after {
  width: 100%;
}
.nav-item .nav-link:hover {
  color: #00abc5;
}

/* .navbar-nav .nav-item::after {
  content: "";
  display: block;
  width: 0;
  color: #00abc5;
  height: 9px;
  background: #00abc5;
  transition: width 0.3s;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-nav .nav-item:hover::after {
  width: 100%;
} */

/* Make nav-item take full header height */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%; /* Ensures full height */
}

/* Ensure the dropdown appears on hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* Dropdown menu */
.dropdown-menu {
  width: 230px;
  overflow-wrap: break-word;
  white-space: normal;
  border-radius: 0;
  border: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  /* transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; */
}
.dropdown-menu li a {
  font-size: 15px;

  overflow-wrap: break-word;
  white-space: normal;
}

.dropdown-item:hover {
  /* background-color: #00abc5; */
  color: #00abc5;
}

/* Ensure the main dropdown appears on hover */
.dropdown:hover > .dropdown-menu {
  display: block;
  top: 86px;
  opacity: 1;
  visibility: visible;
}

/* Hide the sub-dropdown initially */
.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.2rem; /* Adjust spacing */
  opacity: 0;
  visibility: hidden;
  /* transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; */
}

/* Show the sub-dropdown when hovering over its parent */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Ensure the sub-dropdown aligns properly */
.dropdown-submenu {
  position: relative;
}

/* Prevent flickering when moving between dropdown items */
.dropdown-menu,
.dropdown-submenu .dropdown-menu {
  pointer-events: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown-submenu:hover > .dropdown-menu {
  pointer-events: auto;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
  color: #000 !important;
}

@media (min-width: 1024px) {
  .main-container {
    /* margin: 0 7.5rem; */
    margin: 0 0.5rem;
    width: 1250px;
    margin: 0 auto;
  }
  .nav-item {
    white-space: nowrap;
  }
  .navbar-nav .nav-item {
    padding-bottom: 21px;
    padding-top: 23px;
  }
  /* .navbar .navbar-collapse .navbar-nav > li > a {
    padding-top: 25px;
   
    padding-bottom: 25px;
  } */
  .navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* .navbar-inverse .navbar-nav > li > a:focus,
  .navbar-inverse .navbar-nav > li > a:hover {
    color: #00abc5;
    background-color: transparent;
    border-bottom: 3px solid #00abc5;
  } */
}

/* mobile responsive */

/* Mobile dropdown behavior */

/* Mobile dropdown behavior */
@media (max-width: 992px) {
  .navbar-nav {
    display: block !important; /* Override flex */
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    display: none; /* Hide by default */
    position: static !important; /* Ensure it aligns properly */
    width: 100%;
    background: white;
    border: none;
    box-shadow: none;
  }

  .dropdown-menu.show {
    display: block !important; /* Show dropdown when toggled */
  }

  .dropdown-item {
    padding: 10px 15px;
    display: block; /* Ensures items stack */
    width: 100%;
  }

  /* Ensure nested dropdowns are aligned properly */
  .dropdown-submenu .dropdown-menu {
    display: none;
    position: static !important;
    width: 100%;
    margin-left: 0; /* Remove margin */
    padding-left: 15px; /* Indent for sub-menu */
  }

  .dropdown-submenu.show .dropdown-menu {
    display: block !important;
  }

  /* Add some spacing between dropdown items */
  .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    text-align: left;
  }
}

/* .btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
} */
#footer-container {
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
}

.footer {
  background-color: #65747b;
  color: #fff;
  font-size: 11px;
  position: relative;
}

.hd ul:first-child,
.foot-con > ul:first-child {
  margin-bottom: 20px;
  min-height: 170px;
}
a {
  background-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none; /* Removes bullet points */
  padding-left: 0; /* Removes default left padding */
}

footer .top {
  padding: 30px 0 25px;
  letter-spacing: 0.7px;
}

.footer .bottom {
  border-top: 1px solid rgba(188, 198, 208, 0.12);
  padding: 20px 0 10px;
}

.inblo-li li {
  display: inline-block;
  list-style: none;
  font-weight: 200;
  vertical-align: middle;
}
.soc-icon-box a i {
  margin: 0 auto;
  font-size: 16px;
}

.ic_phone {
  background: url(https://www.teamcomputers.com/images/business-central-new/icon-splash.png)
    no-repeat;
  background-position: -8px -80px;
  padding-left: 30px !important;
}
.ic_mail {
  background: url("https://www.teamcomputers.com/images/business-central-new/icon-splash.png")
    no-repeat;
  background-position: -4px -108px;
  padding-left: 30px !important;
}
.soc-icon-box a {
  padding: 0;
  text-align: center;
  display: flex !important;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
}
.inblo-li li {
  display: inline-block;
  list-style: none;
  font-weight: 200;
  vertical-align: middle;
}
.soc-icon-box a i {
  margin: 0 auto;
  font-size: 16px;
}

/* Final Header */

/* Banner */

.main-banner {
  /* padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  display: flex;
  background: url("https://www.teamcomputers.com/images/finance-management/main-banner.png");
  background-position: center;
  padding: 80px 0;
  height: auto;
  min-height: 250px;
  background-size: cover; */
  /* padding: 100px 0; */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  color: #fff;
  background: url(https://www.teamcomputers.com/images/consulting/main-banner.png);
  background-position: center;
  padding: 0 92px;
  height: 410px;
  min-height: 510px;
  background-size: cover;
  /* background: linear-gradient(180deg, #006675 0%, #443801 100%); */
}
/* Ensure the image scales properly on all screen sizes */
@media (max-width: 1200px) {
  .main-banner {
    background-size: cover;
  }
  .third-sub-container {
    gap: 50px;
  }
  .quote-btn {
    margin-top: 75px;
  }
}

@media (max-width: 768px) {
  .main-banner {
    background-size: cover;
  }
}

/* Handling 100% - 150% zoom level for laptop and larger screens */
@media (min-width: 1024px) {
  .main-banner {
    background-size: cover;
  }
  /* .third-sub-container {
    gap: 50px;
  } */
  .quote-btn {
    margin-top: 75px;
  }
  /* .quote-btn {
    margin-top: 75px;
  } */
}
/* .main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #006675;
  z-index: 1;
  mix-blend-mode: multiply;
} */
.main-banner * {
  position: relative;
  z-index: 2; /* Keep child elements above the overlay */
}

section.main-banner.consulting-services-main-banner .container.main_hero_sec {
  padding: 20px;
  display: flex;
}

.first-box .second-box {
  flex: 1;
}
.first-box {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  flex-direction: column;
  text-align: justify;
  position: relative;
}

.text h1 {
  color: #fff;
  font-weight: 800;
  font-size: 2.4em;
  margin: 0px 0px 0.4em;
  text-align: left;
}

.text p {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.btn-container {
  position: absolute;
  /* margin: 0 auto;
  margin: 0px 0px 0.4em; */
  /* padding: 75px; */
  margin-top: 10rem;
  left: 0;
}
.quote-btn {
  padding: 9px 30px;
  margin-top: 65px;
  font-size: 14px;
  /* background: #006675; */
  background: transparent;
  color: #fff;
  border-image: linear-gradient(135deg, #02ae9b, #03be82, #c5ce1e) 1;
  transition: ease-in 3ms;
}
#know-more-btn {
  margin-top: 0;
}

.quote-btn:hover {
  background-color: #fff;
  outline: 0;
  border: 0;
  color: #000;
}

.first-img {
  width: 480px;
  height: 470px;
  object-fit: cover;
  border: 1px solid #fff; /* Black border */
  border-radius: 35px; /* Rounded corners */
  padding: 0px; /* Space between image and border */
}
.second-img {
  width: 350px;
  height: 200px;
  object-fit: cover;
  position: absolute;
  /* top: -248px; */
  top: -240px;
  right: -125px;
  /* border: 8px solid #ffffffb2;  */
  border-radius: 10px; /* Rounded corners */
  padding: 0px; /* Space between image and border */
}
.third-img {
  width: 340px;
  height: 200px;
  object-fit: cover;
  position: absolute;
  right: -562px;
  top: -130px;
  border: 8px solid #ffffffb2;
  border-radius: 10px;
  padding: 0px;
}

.main-image {
  position: relative;
}
.mockup-container {
  position: absolute;
}

.footer {
  background-color: #65747b;
  color: #fff;
  font-size: 11px;
  position: relative;
}

.hd ul:first-child,
.foot-con > ul:first-child {
  margin-bottom: 20px;
  min-height: 170px;
}
ul {
  list-style-type: none; /* Removes bullet points */
  padding-left: 0; /* Removes default left padding */
}

footer .top {
  padding: 30px 0 25px;
  letter-spacing: 0.7px;
}

.footer .bottom {
  border-top: 1px solid rgba(188, 198, 208, 0.12);
  padding: 20px 0 10px;
}

.inblo-li li {
  display: inline-block;
  list-style: none;
  font-weight: 200;
  vertical-align: middle;
}
.soc-icon-box a i {
  margin: 0 auto;
  font-size: 16px;
}

.ic_phone {
  background: url(https://www.teamcomputers.com/images/business-central-new/icon-splash.png)
    no-repeat;
  background-position: -8px -80px;
  padding-left: 30px !important;
}
.ic_mail {
  background: url("https://www.teamcomputers.com/images/business-central-new/icon-splash.png")
    no-repeat;
  background-position: -4px -108px;
  padding-left: 30px !important;
}
.soc-icon-box a {
  padding: 0;
  text-align: center;
  display: flex !important;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
}
.inblo-li li {
  display: inline-block;
  list-style: none;
  font-weight: 200;
  vertical-align: middle;
}
.soc-icon-box a i {
  margin: 0 auto;
  font-size: 16px;
}

.contact-form {
  position: relative; /* Required to position the pseudo-element */
  margin-top: 35px;
  padding: 60px 20px;
  text-align: center;
}

.contact-form::before {
  content: "";
  position: absolute; /* Absolute positioning to cover the entire container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   z-index: -1; /* Ensures the overlay goes behind the content */
}

.contact-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.teamcomputers.com/images/business-central-new/contact-form-one.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; /* Ensures the image goes behind the overlay */
}

.contact-form h2 {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0px;
  /* margin-bottom: 30px; */
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea,
.contact-form form button {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  /* border: 1px solid #ccc; */
  font-size: 1em;
}

.contact-form form button {
  /* background-color: #94d2bd; */
  background-color: #01abc5;
  border-color: #01abc5;

  color: #fff;
  font-weight: medium;
  cursor: pointer;
  font-size: 1.1em;
}

/** contact form **/
.contactus-form-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-title-description {
  color: white;
}

.bg-tranparent {
  /* background-color: rgba(0, 0, 0, 0.6); */
  /* background: linear-gradient(
    284.3deg,
    rgba(255, 255, 255, 0.4) -9.8%,
    rgba(255, 255, 255, 0.1) 94.83%
  ); */
  /* background: #43737F; */
  background-color: rgba(
    67,
    115,
    127,
    0.6
  ); /* Adjust the alpha value (0.0 to 1.0) */
  border: 1px solid;
  border-radius: 15px;

  border-image-source: linear-gradient(
    293.41deg,
    rgba(255, 255, 255, 0.8) 16.62%,
    rgba(190, 235, 241, 0.32) 31.35%,
    rgba(98, 206, 222, 0.16) 56.21%,
    rgba(0, 175, 202, 0.8) 82.8%
  );

  width: 650px;
  padding: 20px 0;
}
.contact-form form input,
.contact-form form select,
.contact-form form textarea,
.contact-form form button {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  /* border: 1px solid #ccc; */
  font-size: 1em;
}
.custom-input {
  height: 40px;
  padding: 0.375rem 0.75rem;
}
.mb-3 {
  margin-bottom: 12px !important;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-team-title-continer,
.grow-team-title-continer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

/* media query for responsiveness */

/* Tablet View */
@media (max-width: 1024px) {
  .quote-btn {
    margin-top: 75px;
  }
  section.main-banner {
    flex-direction: row;
    position: relative;
  }

  .container {
    flex-direction: row;
  }

  .first-box {
    text-align: justify;
  }

  .first-box h1 {
    text-align: left;
    font-size: 1.8rem;
  }
  .first-img {
    width: 430px;
  }
  .second-img {
    top: -155px;
    right: -160px;
  }

  .first-box p {
    font-size: 1rem;
  }

  .image-section {
    padding-top: 20px;
  }

  .mockup-container {
    position: absolute;
    z-index: 2;
    flex-direction: column;
    align-items: center;
  }

  .contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
  }
  .third-sub-container {
    gap: 50px !important;
  }
}

/* responsive mobile devices */
/* General Mobile Devices */
@media (min-width: 320px) and (max-width: 767px) {
  .main-banner {
    padding: 20px 10px;
  }

  .container {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; */

    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: flex-start;
    width: 100%; /* Or any specific width */

    margin: 80px auto; /* Center the container */
    padding: 20px;
  }

  .first-box {
    width: 100%;
  }

  .first-box .text h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  .first-box .text p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }

  .btn-container {
    margin-top: 15px;
  }
  .first-img {
    width: 330px;
  }
  .second-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    position: absolute;
    /* top: -248px; */
    top: -76px;
    right: -178px;
    border: 8px solid #ffffffb2;
    border-radius: 10px;
    padding: 0px;
  }
  .third-img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    position: absolute;
    right: -338px !important;
    top: -117px;
    border: 8px solid #ffffffb2;
    border-radius: 10px;
    padding: 0px;
  }

  .quote-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 156px;
  }

  .image-section {
    width: 100%;
    margin-top: 20px;
  }

  .main-image img {
    max-width: 100%;
    height: auto;
    margin-top: 51px;
  }

  .mockup-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }

  .mockup-container img {
    /* width: 45%; */
    height: auto;
    object-fit: contain;
  }

  .contact {
    display: flex;
    flex-direction: column;
  }
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Space between the two containers */
  padding: 20px;
}

.contact .left-container,
.contactus-form-container {
  flex: 1; /* Equal width for both containers */
  padding: 20px;
  border-radius: 10px;

  color: #fff;
}

.contact .left-container h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}

.contact .left-container ul {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;

  line-height: 38px;
  color: #fff;
  list-style-type: disc;
  text-align: left;
  padding-left: 20px; /* Indentation for the bullet points */
}

.contactus-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.card-container {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.card {
  /* width: 500px;
  height: 485px; */
  width: 510px;
  height: 550px;
  padding: 20px;

  border-radius: 22px;
  opacity: 0px;
  background: #f1f1f1;
}

.heading {
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.91px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

/* css */
.second-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0 75x;
  margin-top: 30px;
  gap: 50px;
  align-items: center;
  /* display: grid; */
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 20px;
}
.image-container-one img {
  width: 380px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 7px;
  border-radius: 20px;
}
.text-container-one h2 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 35px;

  padding: 14px;
}

.text-container-one p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  padding: 7px 14px;
  line-height: 140%;
  letter-spacing: 0%;
}
.solutions {
  width: 400px;
  height: 460px;
  display: flex;
  background: #f4f9fe;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-container-one span {
  font-family: Montserrat;
  font-weight: 600;

  line-height: 123%;
  letter-spacing: 0%;

  font-size: 16px;
  padding: 14px;
}
.explore-container {
  padding: 10px;
}

.explore {
  padding: 10px;
  border-width: 1px, 1px, 1px, 1px;
  font-weight: 500;

  border-style: solid;

  border-color: #009db5;
  border-radius: 10px;

  color: #009db5;
  background-color: transparent;
}
.explore i {
  transform: rotate(45deg);
}
#solution-one {
  background-color: transparent;
}

/* Benefits section */

.benefit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 32px;
}
.benefit-container-main {
  background: #f4f9fe;
  margin-top: 3rem;
}

.benefit-grid-heading h1 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 40px;
  line-height: 49.21px;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 0%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 25px;
}
#benefit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}
#benefit-icon {
  width: 70px;
  height: 70px;
  background-color: #fff;
}
#benefit-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #009db5;
  margin-top: -50px;
}
#feature-card-blue {
  background-color: #009db5;
  border: none;
  color: #fff;
}
.feature-card {
  /* background: #fff;
  border-radius: 10px; */
  /* padding: 1.5rem; */
  /* padding: 0 1rem; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  text-align: left;
  padding: 0;
  border: 1px solid #0000001a;
  padding: 20px;
  border-radius: 30px;

  /* transition: transform 0.2s ease; */
}
#feature-card-white {
  background-color: #fff;
  border: none;
}

/* .feature-card:hover {
  transform: translateY(-5px);
} */

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  /* color: #0078d4; */
  background: #f4f9fe;
}
.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-description {
  /* font-size: 0.9rem;
  color: #555;
  line-height: 1.4; */
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  letter-spacing: 0%;
}
.second-section-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* padding: 40px 230px; */
  margin: 0 75px;
  padding: 14px 0;
}
#second-text p {
  /* margin-top: -6px;
  font-weight: 400; */

  font-family: Montserrat;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-top: -6px;
}

/* BeNEFITS SECTION OVER */

/* Offereing section */
.third-sub-container .text-container {
  display: flex;
  flex-direction: column;
}
.points .offering-heading {
  display: flex;
  /* justify-content: space-between; */
  gap: 20px;
  align-items: center;
  margin-bottom: 4px;
}
.points .offering-heading img {
  width: 23px;
  height: 22px;
}
.third-sub-container .text-container .points p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-left: 44px;
}
.offering-heading span {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 19px;
  line-height: 123%;
  letter-spacing: 0%;
  white-space: nowrap;
}
/* offereing section ends */

.accordion {
  width: 100%;
  max-width: 600px;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 5px;
  border-radius: 5px;
  border: none;
  overflow: hidden;
}
.accordion-header {
  /* background-color: #eee; */
  color: black;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 22px;
}
/* .accordion-item.active .accordion-header {
  background-color: #005b74;
  color: white;
} */

.accordion-item.active .accordion-header .icon {
  content: "-";
}
/* .accordion-header:hover {
  background-color: #ddd;
} */
.accordion-content {
  display: none;
  padding: 10px;
  /* background: #f8f8f8; */
  color: #333;
}

.accordion-content p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}
.accordion-item.active .accordion-content {
  display: block;
}
.accordion-header .accordion-header-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f9fe;
  border-radius: 10px;
}
.accordion-header-icon {
  font-size: 32px;
  color: #009db5;

  transition: transform 0.3s;
}
.accordion-item.active .accordion-header-icon {
  transform: rotate(180deg);
}

/* Styling for the list */
.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion-content ul li {
  padding: 5px 0;
  display: flex;
  align-items: start;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 28.08px;
  letter-spacing: 0%;
}

.accordion-content ul li::before {
  content: "▶";
  color: #0073aa;
  margin-right: 8px;
  font-size: 12px;
}

.accordion-item.active .accordion-content ul li::before {
  color: #005a88;
}

.sub-li {
  margin-left: 30px;
}

.third-container {
  margin: 0 auto;
  padding: 0 75px;
  margin-top: 30px;
}

.third-container .text-container {
  width: 100%;
  max-width: 600px;
}
.third-container #txt-container {
  width: 100%;
  max-width: 800px;
}

.third-container .text-container ul li {
  padding: 5px 0;
  display: flex;
  align-items: start;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 28.08px;
  letter-spacing: 0%;
}

.third-container .text-container ul li::before {
  content: "▶";
  color: #005a88;
  margin-right: 8px;
  font-size: 12px;
}

/* .accordion-item.active .accordion-content ul li::before {
  color: #005a88;
} */
.third-container h1 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 40px;
  line-height: 49.21px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 25px;
}

.third-sub-container {
  display: flex;
  justify-content: space-around;
  /* gap: 50px; */
  align-items: start;
}
#third-sub-container {
  justify-content: space-between;
  /* gap: 50px; */
}

.third-sub-container .image-container img {
  /* width: 530px;
  height: 480px; */
  width: 540px;
  height: 450px;
}
#implementation .image-container img {
  /* width: 530px;
  height: 480px; */
  width: 700px;
  height: 450px;
}

.get-started {
  background: #00a2b5;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
  color: #fff;
}

.process {
  background: #f4f9fe;
  display: flex;
  margin: 0 auto;
  padding: 20px 75px;
  margin-top: 30px;
  gap: 30px;
  align-items: center;
  flex-direction: column;
}
.process h1 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 40px;
  line-height: 49.21px;
  letter-spacing: 0%;
  text-align: center;
}
.process-container {
  display: flex;
  gap: 95px;
}
.process-container .image-container img {
  width: 280px;
  height: 400px;
}
.process-container .text-container {
  width: 100%;
  max-width: 800px;
}
.process-container .text-container h2 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 40px;
  line-height: 49.21px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.process-container .text-container p span {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 22px;
  line-height: 27.07px;
  letter-spacing: 0%;
}
.scroll-image {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.small-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.small-card img {
  width: 45px;
}
.small-card:hover {
  transform: translateY(-5px);
}

/* .first-small-card {
  background-color: #49a2ba;
}
.small-card:active {
  background-color: #49a2ba;
} */
/* .small-card:active {
  background-color: #49a2ba;
  display: block;
  visibility: visible;
  opacity: 1;
} */
/* Make the active small card red */
.small-card.active {
  background-color: #49a2ba !important; /* Ensures background color stays */
  cursor: pointer;
  /* transition: background-color 0.3s ease-in-out; */
}

.details-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.box {
  display: flex;
  gap: 10px;
}
.icon-container {
  background: #f4f9fe;
  border-radius: 15px;
  width: 78px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-container img {
  width: 40px;
  height: 40px;
}

.box .text-container p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.5px;
  letter-spacing: 0%;
}

.third-sub-container .text-container p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 28.08px;
  letter-spacing: 0%;
}
p.span-text {
  text-align: center;
  margin-top: -20px;
}
.span-text span {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 24px;
  line-height: 33.6px;
  letter-spacing: 0%;
}

/* FAQ */

.faq-container {
  max-width: 1300px;
  margin: auto;
  text-align: left;
}
.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}
.faq-question {
  background: #f4f9fe;

  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family: Montserrat;
}
/* .faq-question:hover {
  background: #d0e0ff;
} */
.faq-answer {
  padding: 15px;
  display: none;
  font-weight: 400;
  background: #f4f9fe;
}
.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.open .icon {
  transform: rotate(180deg);
}



.main-banner.consulting-services-main-banner .btn-container{
    margin-top: 0px;
}

section.main-banner.consulting-services-main-banner .container {
    margin-top: 25px;
}

.query-form-sec-mk {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0px;
  }

  @media screen and (max-width: 1200px) {
    .query-form-sec-mk {
        flex-wrap: wrap;
        gap: 0;
    }
  }
  @media screen and (max-width: 776px) {
    #benefit {
      grid-template-columns: repeat(1, 1fr);
    }
    .features-grid {
      grid-template-columns: repeat(1, 1fr);
    }
    #implementation .image-container img {
      width: 100% !important;
      height: 100% !important;
    }
    .third-container {
      padding: 0 10px;
    }
    .third-sub-container {
      display: block;
    }
    }
  
  @media (min-width: 320px) and (max-width: 767px) {
  .content {
        display: block;
    }
  .scrolled .container {
      margin: 0px auto;
      padding: 10px;
  }
  header {
    padding: 10px;
  }
  header .container {
    margin: 0 auto;
    padding: 0;
  }
  header .header-main {
    width: 100%;
  }
  .first-image {
    width: 100%;
    height: 100%;
  }
  .hero-content .btn-container {
    margin-bottom: 20px;
  }
  #Strategic .content {
    margin-left: 0;
  }
  .hero-content {
    padding-top: 50px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  }
