* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito Sans', sans-serif;
    max-width: 1264px;
    margin: 0 auto;
}


html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 23px;
  font-family: 'Nunito Sans', sans-serif;
}

h2 {
  font-size: 22px;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 10px;
  text-align: center;
  color: #333;
}

h3,
h4 {
  font-size: 21px;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 10px;
  color: #333;
  text-align: center;
}

p {
  font-size: 17px;
  line-height: 24px;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 10px;
}

a {
  font-size: 17px;
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
}

ul {
  margin: 20px;
}

li {
  font-size: 17px;
  line-height: 24px;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 10px;
}

nav {
  height: auto;
  width: 100%;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

nav>.nav-header {
  display: inline;
  width: 220px;
  height: auto;
}

nav>.nav-header img {
  width: 100%;
  height: auto;
}

nav>.nav-header>.nav-title {
  display: inline-block;
  font-size: 22px;
  color: #684df4;
  padding: 10px 10px 10px 10px;
}

nav>.nav-btn {
  display: none;
}

nav>.nav-links {
  font-size: 18px;
  font-weight: 600;
}

nav>.nav-links>a {
  display: inline-block;
  padding: 10px 10px;
  text-decoration: none;
  color: #333;
}

nav>.nav-links>a:hover {
  color: #0c07ff;
}

nav>.nav-links>button {
  border: 2px solid #0c07ff;
  width: 122px;
  height: auto;
  padding: 10px;
  color: #0c07ff;
  background: #fff;
  border-radius: 5px;
  font-weight: 600;
  margin: 0 0 0 20px;
}

nav>#nav-check {
  display: none;
}

section {
  width: 100%;
  height: auto;
  padding: 30px 50px;
  background-color: #fff;
}

.banner-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-content {
  width: 50%;
  height: auto;
  padding: 20px;
}

.banner-content h1 {
  text-align: left;
}

.banner-content h2 {
  text-align: left;
}

.banner-content h3 {
  text-align: left;
}

.banner-content button {
  width: 150px;
  height: auto;
  padding: 15px;
  border: none;
  background: #0c07ff;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}

.form-container {
  margin-top: 20px;
  border: 2px solid #0c07ff;
  padding: 18px 6px;
}

.form-heading {
  width: 200px;
  height: auto;
  text-align: center;
  color: #fff;
  padding: 10px;
  background-color: #AE1919;
  border-radius: 30px;
  margin: 0 auto;
}

.form-container form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

form input {
  width: 48%;
  height: auto;
  padding: 15px;
  border: none;
  background: #0c07ff;
  border-radius: 30px;
  outline: none;
  color: #fff;
}

::placeholder {
  color: #fff;
}

form textarea {
  width: 48%;
  height: 45px;
  padding: 15px;
  border: none;
  background: #0c07ff;
  border-radius: 30px;
  outline: none;
  color: #fff;
}

form .button {
  width: 48%;
  height: auto;
  background: #AE1919;
  color: #fff;
  cursor: pointer;
}

.banner-img {
  width: 50%;
  height: auto;
}

.banner-img img {
  width: 100%;
  height: auto;
}

.service-box-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.service-box {
  width: 31%;
  height: auto;
  text-align: center;
  padding: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.service-box :hover {
  color: red;
}

.service-box i {
  font-size: 40px;
  color: #333;
}

.service-box p {
  color: #0c07ff;
}

.wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.wrapper .left-content {
  width: 48%;
  height: auto;
  padding: 10px;
}

.wrapper .left-content img {
  width: 100%;
  height: auto;
}

.wrapper .right-content {
  width: 48%;
  height: auto;
  padding: 10px;
}

.right-content h3 {
  text-align: left;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.table1 {
  width: 100%;
  margin-top: 30px;
}

.table1 td,
.table1 th {
  border: 1px solid rgb(228, 237, 255);
  text-align: left;
  padding: 8px;
}

.table1 tr:nth-child(even) {
  background-color: rgb(228, 237, 255);
}

.wrapper-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  background: #f6f6f6;
  padding: 40px;
  margin-top: 30px;
}

.wrapper-container .logo-box {
  width: 17%;
  height: auto;
  background: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  width: 100%;
  height: auto;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.about-box {
  text-align: center;
  padding: 10px;
}

.about-box:nth-child(1) i {
  display: block;
  font-size: 26px;
  padding: 10px;
  color: skyblue;
}

.about-box:nth-child(2) i {
  display: block;
  font-size: 26px;
  padding: 10px;
  color: #e95048;
}

.about-box:nth-child(3) i {
  display: block;
  font-size: 26px;
  padding: 10px;
  color: green;
}

.about-box:nth-child(4) i {
  display: block;
  font-size: 26px;
  padding: 10px;
  color: #dd7b27;
}

.about-box:nth-child(5) i {
  display: block;
  font-size: 26px;
  padding: 10px;
  color: #c9841d;
}

.about-box span {
  font-size: 17px;
  font-weight: 600;
}

.about-box p {
  font-size: 16px;
  color: #7C6A6A;
}

.map-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.map-box {
  width: 23%;
  height: auto;
  padding: 10px;
  background-color: #f6f6f6;
}

.map-box iframe {
  width: 100%;
  height: auto;
}

.map-box ul {
  margin: 0;
}

.map-box ul li {
  list-style: none;
}

.map-box ul li a {
  color: #333;
}

.contact_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.secont-form-container {
  width: 40%;
  height: auto;
  padding: 10px;
}

.secont-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.secont-form input {
  width: 100%;
  height: auto;
  background-color: #f6f6f6;
  border-radius: 5px;
  color: #333;
}

.secont-form textarea {
  width: 100%;
  height: 100px;
  background-color: #f6f6f6;
  border-radius: 5px;
  color: #333;
}

.secont-form input::placeholder {
  color: #333;
}

.secont-form textarea::placeholder {
  color: #333;
}

.secont-form button {
  width: 150px;
  height: auto;
  padding: 15px;
  border: none;
  background: #0c07ff;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}

.location {
  width: 40%;
  height: auto;
  padding: 10px;
}

.location iframe {
  width: 100%;
  height: 200px;
}

.location ul {
  margin: 0;
}

.location ul li {
  list-style: none;
}

.location ul li a {
  color: #333;
}

.highlight_container h3 {
  color: #0c07ff;
  border: 2px solid #0c07ff;
  width: 70%;
  padding: 10px;
  margin: auto;
  box-shadow: 0px 0px 20px rgb(0 166 254);
}

.highlight_container_row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.highlight_container_row .client_box {
  
  width: 24%;
  background: #0c07ff;
  padding: 10px;
}

.highlight_container_row .client_box:hover {
  transform: scale(0.9);
}

.client_box a {
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  text-decoration: none;
}
.faqs-container {
  width: 70%;
  height: auto;
  border: 1px solid black;
  border-radius: 0.5rem;

  @media (max-width: 768px) {
    width: 100%;
  }

  button {
    width: 100%;
    height: auto;
    padding: 0.7rem 1rem;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 300 !important;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    position: relative;
    background-color: #377ef9;
    color: white;
    font-weight: bold;
    transition: 0.5s;
  }

  button::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 0.2rem;
    background-color: white;
    top: 1.2rem;
    right: 1rem;
  }

  button::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 0.2rem;
    background-color: white;
    top: 1.2rem;
    right: 1rem;
    transform: rotate(90deg);
  }

  button:hover {
    background-color: white;
    color: #377ef9;
  }

  button:hover::after {
    background-color: #377ef9;
  }

  button:hover::before {
    background-color: #377ef9;
  }

  .addFaq::before {
    display: none;
  }

  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;

    p {
      padding: 1rem;
      font-size: 1rem;
      line-height: 1.4;
    }
  }
}
#faq {
width: 100%;
height: auto;
padding: 2rem 4% 4rem 4%;

.faq-heading {
width: 100%;
height: auto;
padding: 0 2rem 2rem 2rem;

@media (max-width: 468px) {
padding: 1rem 0;
}

h2 {
font-size: 2rem;
text-transform: capitalize;
line-height: 1.5;
}
}

.faqs-section-child {
width: 100%;
height: auto;
display: flex;
justify-content: center;
gap: 2rem;

@media (max-width: 768px) {
flex-wrap: wrap;
gap: 1rem;
}

@media (max-width: 468px) {
}

.faqs-section-content {
max-width: 560px;
width: 100%;
height: auto;
display: flex;
flex-direction: column;
gap: 1rem;

.faqs-container {
width: 100%;
height: auto;
border: 1px solid black;
border-radius: 0.5rem;

button {
  width: 100%;
  height: auto;
  padding: 0.9rem 1.5rem;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 1rem;
  border-radius: 0.5rem;
  position: relative;
  background-color: white;
  color: black;
}

button::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.2rem;
  background-color: black;
  top: 1.4rem;
  right: 1.5rem;
}

button::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.2rem;
  background-color: black;
  top: 1.4rem;
  right: 1.5rem;
  transform: rotate(90deg);
}

button:hover {
  color: #377ef9;
}

button:hover::after {
  background-color: #377ef9;
}

button:hover::before {
  background-color: #377ef9;
}

.addFaq::before {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;

  p {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
  }
}
}
}
}
}

.content-box {
padding: 0 0 0 3rem;

@media (max-width: 768px) {
padding: 1rem;
}
}

.inter-linking {
  margin-top: 20px;
}

.inter-linking ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.inter-linking ul li {
  color: #0c07ff;
  border: 2px solid #0c07ff;
  text-align: center;
  width: 31%;
  padding: 10px;
  list-style: none;
  box-shadow: 0px 0px 20px rgb(0 166 254);
}
.inter-linking ul li a:hover {
  color:red;
}

footer {
  width: 100%;
  height: auto;
  padding: 30px 50px;
}

.footer_container_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_container_row .col_1 {
  width: 24%;
  height: auto;
}

.footer_container_row .col_1 .title {
  font-size: 24px;
  font-family: 'Nunito Sans', sans-serif;
  margin-bottom: 10px;
  color: #333;
}

.footer_container_row .col_1 p {
  color: #333;
  text-align: justify;
  margin: 10px 0 20px;
}

.footer_container_row .col_1 ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
}

.footer_container_row .col_1 ul li .fa-solid {
  font-size: 28px;
  padding: 0px 10px 0px 0px;
  color: #333;
}

.footer_container_row .col_1 ul li {
  list-style: none;
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
  color: #333;
  font-family: 'Nunito Sans', sans-serif;
}

.footer_container_row .col_1 ul li a {
  font-size: 16px;
  color: #333;
  border: none;
  padding: 10px 0;
}

.footer-icons {
  display: flex;
  gap: 10px;
}

.footer-icons a {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c07ff;
  /* transition: 0.3s ease-in; */
}

.footer-icons a i {
  color: #fff;
}

.inner_footer {
  background-color: #fff;
  padding: 10px;
}

.inner_footer p {
  color: #333;
  text-align: center;
  margin: 0;
}

 /*fixed contect button*/
 .fixed_icon {
  position: fixed;
  z-index: 1;
  right: -5px;
  top: 60%;
}

.fixed_icon_bg {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.fixed_icon_bg img {
  width: 70px;
  height: auto;
}

.fixed_icon_bg .fa {
  color: #fff;
  font-size: 25px;
  background-color: #0049bc;
  padding: 10px;
  border-radius: 5px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 30px;
}
.reviews-header .rating {
  font-size: 2.5rem;
  font-weight: bold;
}
.reviews-header .star {
  color: gold;
  font-size: 2.5rem;
  /* vertical-align: middle; */
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info {
  display: flex;
  flex-direction: column;
}

.stars {
  color: gold;
  font-size: 1.1rem;
  line-height: 1.2;
}

h4 {
  margin: 2px 0 0;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

.reviews-actions {
  text-align: center;
  margin: 20px 0;
}

.review-link {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background: #4caf50;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.review-link:hover {
  background: #43a047;
}

@media (min-width: 768px) {
  .reviews-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
  }
}