/* [project]/app/styles/about-us.css [app-client] (css) */
.we-proud {
  color: #fbfbfb;
  font-size: 19px;
  font-weight: 400;
  line-height: 140%;
}

.fifty-text {
  color: #fbfbfb;
  font-family: Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 140%;
  position: relative;
}

.fifty-text:after {
  content: "";
  z-index: 1;
  background-color: #0e4444;
  width: 100%;
  height: 33%;
  position: absolute;
  bottom: 10px;
  left: 0;
}

.get-to-know-title {
  color: #393939;
  font-weight: 400;
  line-height: 140%;
}

.get-to-know-section {
  background-image: url("/assets/images/Group.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (width <= 1200px) {
  .we-proud {
    font-size: 17px;
  }

  .fifty-text {
    font-size: 65px;
  }
}

@media (width <= 991px) {
  .we-proud {
    font-size: 12px;
  }

  .fifty-text {
    font-size: 50px;
  }

  .fifty-text:after {
    height: 29%;
    bottom: 5px;
  }
}

@media (width <= 767px) {
  .we-proud {
    font-size: 9px;
  }

  .fifty-text {
    font-size: 35px;
  }

  .fifty-text:after {
    height: 23%;
  }
}

@media (width <= 575px) {
  .we-proud {
    font-size: 7.5px;
  }

  .fifty-text {
    font-size: 30px;
  }

  .fifty-text:after {
    height: 30%;
    bottom: 5px;
  }
}

@media (width <= 450px) {
  .we-proud {
    font-size: 6px;
  }

  .fifty-text {
    font-size: 25px;
  }

  .fifty-text:after {
    height: 30%;
    bottom: 5px;
  }
}

@media (width <= 400px) {
  .we-proud {
    font-size: 5px;
  }

  .fifty-text {
    font-size: 20px;
  }

  .fifty-text:after {
    height: 23%;
    bottom: 5px;
  }
}

.our-strategic-sections {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.strategic-main-title {
  color: #3c3c3c;
  font-weight: 700;
  line-height: 1.4;
}

.strategic-main-title-highlight {
  color: #77c0c0;
}

.strategic-text-content {
  margin-bottom: 2rem;
}

.strategic-text {
  color: #393939;
  line-height: 1.4;
  font-weight: 400 !important;
}

.strategic-bottom-content {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.strategic-circular-img-container {
  margin-block-end: -2rem;
  margin-inline-start: -4rem;
}

.green-text {
  color: #0e4444 !important;
}

.gray-text {
  color: #6f6f6f !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

@media (width <= 1200px) {
  .strategic-circular-img-container {
    margin-inline-start: -1rem;
  }

  .strategic-handshake-img {
    height: 230px;
  }
}

@media (width <= 991px) {
  .strategic-content-row {
    text-align: center;
  }

  .strategic-left-col {
    justify-content: center;
    display: flex;
  }

  .strategic-bottom-content {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .strategic-circular-img-container {
    margin-block-end: 0;
    margin-inline-start: 0;
  }

  .strategic-main-img {
    height: 500px;
  }
}

@media (width <= 767px) {
  .strategic-content-row {
    margin-top: 3rem;
  }

  .strategic-bottom-content {
    flex-direction: column;
  }

  .strategic-main-img {
    height: 400px;
  }

  .strategic-main-title {
    margin-bottom: 0 !important;
  }
}

@media screen and (width <= 575px) {
  .strategic-main-img {
    height: 300px;
  }
}

.about-services .about-image-container img {
  object-fit: cover;
}

.about-services .about-title {
  color: #4d4d4d;
  font-weight: 700;
}

.about-services .nerdware-text {
  color: #77c0c0;
}

.about-services .about-description {
  color: #393939;
  font-weight: 400;
  line-height: 1.4;
}

.about-services .btn-view-all-services {
  color: #f5f5f5;
  background-color: #0e4444;
  border: 1px solid #0e4444;
  font-weight: 400;
}

.about-services .service-card {
  background-color: var(--semi-light-gray-clr);
  border-radius: 15px;
  min-height: 332px;
  position: relative;
  overflow: hidden;
}

.about-services .service-card-inner {
  background: inherit;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
  padding: 24px;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1) .2s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(54%);
}

.about-services .service-card:hover .service-card-inner {
  transition-delay: 0s;
  transform: translateY(0);
}

.about-services .service-card-divider {
  z-index: 2;
  border: none;
  border-bottom: 2px solid #0e4444;
  width: 100%;
  margin: 0;
  transition: opacity .3s;
}

.about-services .service-card:hover .service-card-divider {
  display: none;
}

.about-services .service-card-description {
  opacity: 0;
  height: 0;
  transition: opacity .5s .8s, height .5s .8s;
  overflow: hidden;
}

.about-services .service-card:hover .service-card-description {
  opacity: 1;
  height: auto;
  margin-top: 8px;
  transition: opacity .5s .2s, height .5s .2s;
}

@media (width <= 991px) {
  .about-services .service-card:hover .service-card-inner {
    transform: translateY(0);
  }

  .about-services .row > div {
    min-height: auto;
  }

  .about-services .about-content {
    padding: 3rem 1rem !important;
  }

  .newH {
    height: 500px;
  }
}

@media (width <= 767px) {
  .newH {
    height: 400px;
  }
}

@media (width <= 575px) {
  .newH {
    height: 350px;
  }

  .about-services .service-card {
    min-height: 230px;
  }

  .about-services .service-card-inner {
    transform: translateY(35%);
  }
}


/* [project]/app/styles/contact-us.css [app-client] (css) */
.contact-data-heading {
  color: #3c3c3c;
  text-transform: capitalize;
  font-weight: 700;
}

.contact-data-p {
  color: #6f6f6f;
  text-transform: capitalize;
  font-weight: 400;
}

.contact-info-item {
  color: #acacac;
  text-transform: capitalize;
  font-weight: 400;
  display: flex;
}

.contact-info-item svg {
  flex-shrink: 0;
}

.contact-info-item p {
  margin-bottom: .25rem;
}

.contact-divider {
  border-color: #acacac;
  margin: 2rem 0;
}

.follow-us-heading {
  color: #0e4444;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.social-icon {
  cursor: pointer;
  background-color: #77c0c0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: background-color .3s;
  display: flex;
}

.social-icon:hover {
  background-color: #0e4444;
}

.social-icon svg {
  fill: #fff;
}

.contact-form-heading {
  color: #3c3c3c;
  text-transform: capitalize;
  font-weight: 700;
}

.contact-form-subheading {
  color: #6f6f6f;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
}

.form-label {
  color: #0e4444;
  text-transform: capitalize;
  font-weight: 400;
}

.required-star {
  color: red;
}

.form-control {
  text-transform: capitalize;
  background-color: #e9e2d833;
  border: 1px solid #e9e2d833;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-weight: 400;
  color: #0e4444 !important;
}

.form-control:focus {
  background-color: #f5f5f5;
  border-color: #0e4444;
  box-shadow: 0 0 0 .25rem #0e444440;
}

textarea.form-control {
  resize: none;
  min-height: 150px;
}

.btn-submit {
  color: #f5f5f5;
  text-transform: capitalize;
  background-color: #0e4444;
  font-weight: 400;
  transition: background-color .3s;
}

.btn-submit:hover {
  color: #fff;
  background: var(--active-clr);
  border-color: var(--active-clr);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #40e0d04d;
}

.btn-submit:active {
  color: #0e4444 !important;
  border-color: #0e4444 !important;
}

.social-icon-link {
  text-decoration: none;
  transition: transform .3s;
}

.social-icon-link:hover {
  transform: translateY(-2px);
}

.social-icon-link:hover .social-icon {
  background-color: #0e4444;
}

.social-icon img {
  object-fit: cover;
  border-radius: 4px;
}

.toast-notification {
  z-index: 9999;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  min-width: 350px;
  animation: .3s ease-out slideInRight;
  position: fixed;
  top: 20px;
  right: 20px;
  box-shadow: 0 8px 32px #0000001f;
}

.toast-success {
  color: #fff;
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-error {
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-content {
  align-items: flex-start;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.toast-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 24px;
}

.toast-text h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.toast-text p {
  opacity: .9;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.toast-close {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 4px;
  font-size: 18px;
  transition: background-color .2s;
  position: absolute;
  top: 12px;
  right: 12px;
}

.toast-close:hover {
  background-color: #ffffff1a;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (width <= 480px) {
  .toast-notification {
    min-width: unset;
    left: 10px;
    right: 10px;
  }
}


/*# sourceMappingURL=app_styles_87444d36._.css.map*/