.numbers_list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.numbers_list-item img {
  width: 100%;
  max-width: 64px;
  margin-bottom: 15px;
}

.process_text.text {
  color: #162739;
}

.feedback_header.color-f {
  color: #fff;
}

.feedback_header.color-f .text {
  color: #fff;
}

.feedback_slider.color-f .main {
  color: #fff;
}

.feedback_slider.color-f .media_info .name {
  color: #fff;
}

.feedback_slider.color-f .media_info .company {
  color: #dadada;
}

.padding-t-80.contact {
  padding-top: 80px;
}

/* contact us section css */

.contact .container {
  align-items: flex-start !important;
}

:root {
  --bg: #0f2741; /* dark navy background */
  --card: #ffffff; /* white card */
  --text: #0f1e2e; /* dark text */
  --muted: #6b7a90; /* muted text */
  --primary: #1b4a76; /* primary button */
  --primary-ink: #ffffff;
  --chip: #eaf1f7; /* chip background */
  --chip-active-bg: #113a5c; /* active chip bg (similar to screenshot) */
  --chip-active-text: #ffffff;
  --border: #e5e9f0;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(5, 22, 41, 0.25);
}

.card {
  background: var(--card);
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 18px;
}

.chip {
  appearance: none;
  border: 1px solid transparent;
  background: var(--chip);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  user-select: none;
}
.chip:hover {
  transform: translateY(-1px);
}
.chip.selected {
  background: var(--chip-active-bg);
  color: var(--chip-active-text);
  border-color: var(--chip-active-bg);
}

.field {
  /* margin: 14px 0; */
  height: auto !important;
  padding: 0px !important;
}
.label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.input,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus,
.textarea:focus {
  border-color: #b6c6d9;
  box-shadow: 0 0 0 4px rgba(27, 74, 118, 0.12);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.actions {
  margin-top: 16px;
}
.btn {
  width: 100%;
  padding: 14px 16px;
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(27, 74, 118, 0.35);
  transition: transform 0.05s ease, filter 0.2s ease;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(1px);
}

/* Helper: small helper text line */
.helper {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* about page css */
.quote_header .title.title-new {
  font-size: 28px !important;
  line-height: 1.3 !important;
}

.vision-mission .container {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.vision-mission-image {
  width: 50%;
}

.vision-mision {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
  padding-left: 50px;
}

.vm-box {
  flex: 1;
  background-color: #055286;
  color: white;
  padding: 20px;
  align-content: end;
  box-shadow: 0px 0px 2px 1px #055286;
}

.vm-box h3 {
  margin-bottom: 20px;
}

.vm-box p {
  text-align: justify;
}

.item-last {
  grid-column: 2 / 4;
}

.features_card.item-last .wrapper {
  padding: 0px;
  border: none;
}

/* projects inner-page css */

.project {
  display: inline-block;
  width: 100%;
}

.projects-gellary-grid {
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .card {
    margin-top: 20px;
    max-width: 100%;
  }

  .quote_header .title.title-new {
    font-size: 24px !important;
  }

  .vision-mision {
    padding-left: 20px;
  }
}

@media screen and (max-width: 991px) {
  .vision-mission .container {
    flex-wrap: wrap;
  }
  .vision-mission-image {
    width: 100%;
  }
  .vision-mission-image img {
    max-width: 450px;
  }
  .vision-mision {
    padding-left: 0px;
    width: 100%;
  }
  /* .features_content {
    grid-template-columns: repeat(3, 1fr) !important;
  } */
}
@media (max-width: 767px) {
  .grid-container {
    grid-template-columns: 1fr !important;
  }

  .item-last {
    grid-column: auto !important; /* normal flow me aa jayega */
  }
  
  
.footer {
  padding-bottom: 10px !important;
}
}

/* Layout tweak for larger screens */
@media (min-width: 720px) {
  .card {
    padding: 28px;
  }
}

/* footer css  */

.footer {
  padding-top: 80px;
  padding-bottom: 60px;
}

.footer_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.footer_main-block .brand,
.footer_main-block_title {
  margin-bottom: 20px;
}

.footer_main-block_form {
  margin-top: 20px;
}

.footer_main-block_form .btn,
.footer_main-block_form .field {
  width: 100%;
}

.footer_main-block_form .field:focus {
  border-color: #ffc631;
}

.footer_main-block_form .btn .icon {
  display: none;
}

.footer_main-block_form .btn:focus,
.footer_main-block_form .btn:hover {
  background: #ffd464;
}

.footer_main-block .group-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.footer_main-block .group-wrapper:first-of-type {
  margin-bottom: 15px;
}

.footer_main-block .group-wrapper .icon {
  color: #ffc631;
  font-size: 18px;
  margin-top: 5px;
}

.footer_main-block .group-wrapper .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 23px;
}

.footer_main-block .group-wrapper .group a,
.footer_main-block .group-wrapper .group span {
  display: inline-block;
}

.footer_main-block .group-wrapper .group a {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.footer_main-block .group-wrapper .group a:focus,
.footer_main-block .group-wrapper .group a:hover {
  opacity: 0.8;
}

.footer_main-block_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.footer_main-block_nav .list-item .link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  gap: 5px;
}

.footer_main-block_nav .list-item .link.current {
  color: #ffc631;
}

.footer_main-block_nav .list-item .link .icon {
  font-size: 10px;
  color: #ffc631;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer_main-block_nav .list-item .link:focus .icon,
.footer_main-block_nav .list-item .link:hover .icon {
  color: #055286;
}

.footer_secondary {
  border-top: 1px solid #a9a9a9;
  margin-top: 60px;
  padding-top: 60px;
}

.footer_secondary-copyright {
  text-align: center;
  margin: 0 0 40px;
}

.footer_secondary-copyright span {
  display: inline-block;
}

.footer_secondary .socials {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* .footer_secondary .socials_item-link {
  background: #ffc631;
  color: #001f3f;
} */

.footer_main-block .socials_item-link {
  background: #055286;
  color: #ffffff;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #fff;
}

html[dir="rtl"] .footer_main-block_nav .list-item .link .icon {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media screen and (min-width: 567.98px) {
  .footer_main-block_subtitle {
    max-width: 450px;
  }

  .footer_main-block_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer_main-block_form .field {
    margin-bottom: 0;
  }

  .footer_main-block_form .btn {
    width: auto;
  }

  .footer_main-block .group-wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .footer_main-block .group-wrapper:first-of-type {
    margin-bottom: 0;
    margin-right: 30px;
  }

  .footer_main-block_nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer_secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer_secondary-copyright {
    margin: 0;
    text-align: unset;
  }

  html[dir="rtl"] .footer_main-block .group-wrapper:first-of-type {
    margin-right: 0;
    margin-left: 30px;
  }
}

@media screen and (min-width: 767.98px) {
  .footer_main {
    padding-bottom: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 40px 80px;
  }

  .footer_main-block {
    width: calc(50% - 40px);
  }

  .footer_main-block:nth-of-type(3) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .footer_main-block .group-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer_main-block .group-wrapper:first-of-type {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer_main-block_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .footer_main-block_form {
    margin-top: 40px;
  }

  .footer_main-block_form .btn {
    width: 54px !important;
    padding: 0;
  }

  .footer_main-block_form .btn .text {
    display: none;
  }

  .footer_main-block_form .btn .icon {
    display: inline-block;
  }

  .footer_main-block_form .field {
    width: calc(100% - 54px);
  }

  .footer_secondary {
    margin: 0;
    padding-top: 60px;
  }

  .footer_secondary-copyright {
    max-width: 50% !important;
  }
}

@media screen and (min-width: 1023.98px) {
  .footer_main-block {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .footer_main-block:first-of-type {
    max-width: 280px;
  }

  .footer_main-block:nth-of-type(3) {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}

@media screen and (min-width: 1199.98px) {
  .footer_main {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer_main-block:last-of-type {
    max-width: 330px;
  }
}

/* contact page css */

.contact-form_field {
  padding: 17px 20px !important;
}
