/* [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/services.css [app-client] (css) */
.web-at-nerd-section, .service-innovative-section {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.web-at-nerd-title {
  color: #4d4d4d;
  font-weight: 700;
  line-height: 1.4;
}

.nerdware-highlight {
  color: #77c0c0 !important;
}

.web-at-nerd-desc {
  color: #393939;
  font-weight: 400;
  line-height: 1.4;
}

.web-at-nerd-list {
  color: #393939;
  font-weight: 400;
}

.web-at-nerd-list .highlight {
  color: #77c0c0;
}

.web-at-nerd-images {
  flex-direction: column;
  flex: 300px;
  align-items: center;
  gap: 24px;
  max-width: 400px;
  display: flex;
}

.aboutcircle-img {
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  padding: 12px;
  display: flex;
  box-shadow: 0 2px 12px #4dc0c014;
}

.web-at-nerd-list li {
  list-style: none;
}

.serviceRoundIMG-Container {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 50%;
  top: 5%;
  right: 22%;
}

.serviceRoundIMG {
  width: 130px;
  height: 130px;
}

.imgHolder {
  width: 48%;
}

.hero-section-title {
  color: #fbfbfb;
  font-weight: 700;
}

.hero-section-desc {
  color: #fbfbfb;
  font-weight: 400;
}

.hero-section-container {
  min-height: 300px;
}

@media (width <= 1300px) {
  .removeBreak {
    display: none;
  }
}

@media (width <= 991px) {
  .web-at-nerd-images {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
  }

  .sqimage-img {
    width: 220px;
    height: 180px;
  }

  .aboutcircle-img {
    width: 80px;
    height: 80px;
    padding: 6px;
  }
}

.service-step-title {
  color: #0e4444;
  letter-spacing: 1px;
  font-weight: 400;
}

.service-step-desc {
  color: #6f6f6f;
  font-weight: 400;
  line-height: 1.4;
}

.service-step-hr {
  border-top: 2px solid #6f6f6f;
  width: 100%;
}

.open-accordion {
  color: #0e4444;
  background: none;
  border: none;
  outline: none;
  font-weight: 400;
}

.desc-accordion {
  color: #6f6f6f;
  font-weight: 400;
  line-height: 1.4;
}

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

.circleNumber {
  color: #393939;
  background-color: #d9d9d9;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-weight: 700;
  display: flex;
  font-family: Poppins, sans-serif !important;
}

.circleNumberContainer {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: fit-content;
  max-width: fit-content;
  max-height: fit-content;
  position: relative;
}

[dir="ltr"] .circleNumberContainer {
  border-bottom-right-radius: 20px;
}

[dir="rtl"] .circleNumberContainer {
  border-bottom-left-radius: 20px;
}

.servLink {
  color: #3c3c3c;
  width: fit-content;
  font-weight: 700;
  text-decoration: none;
}

.servDesc {
  color: #6f6f6f;
  font-weight: 400;
}

.servTitle {
  text-decoration: none !important;
}

.servTitle span {
  color: #0e4444;
  font-weight: 400;
}

.servCardBG {
  background-color: #d9d9d9;
  transition: all .5s;
}

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

.servCardBG:hover .servTitle span, .servCardBG:hover .servDesc {
  color: #fbfbfb !important;
}

.servCardBG:hover .servLink {
  color: #77c0c0 !important;
}

.servCardBG:hover .servIMG {
  filter: brightness(0) saturate() invert();
}


/* [project]/app/styles/career.css [app-client] (css) */
.career-text-desc {
  color: #393939;
  font-weight: 400;
  line-height: 1.4;
}

.career-text-title {
  color: #4d4d4d;
  font-weight: 700;
  line-height: 1.4;
}

.career-text-title-color {
  color: #77c0c0;
  font-weight: 700;
  line-height: 1.4;
}

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

.career-faded-number {
  color: #0a1818;
  opacity: .07;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-size: 12rem;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

[dir="ltr"] .career-faded-number {
  left: 2%;
}

[dir="rtl"] .career-faded-number {
  right: -2%;
}

.career-text-title {
  color: #4d4d4d;
  z-index: 2;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.career-text-desc {
  color: #393939;
  z-index: 2;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

.career-arrow-btn {
  color: #0e4444;
  cursor: pointer;
  z-index: 2;
  background-color: #6f6f6f40;
  border: 1px solid #6f6f6f40;
  border-radius: 50%;
  outline: none;
  width: 60px;
  height: 60px;
  transition: all .3s;
}

.career-faded-number:before {
  content: "";
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.career-arrow-btn:hover {
  color: #fbfbfb;
  background-color: #0e4444;
  border: 1px solid #0e4444;
  transition: all .3s;
  transform: rotate(305deg);
}

.career-arrow-btn:active {
  color: #0e4444;
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border: 1px solid #0e4444;
}

.career-arrow {
  color: #77c0c0;
  font-size: 2rem;
}

.career-job-title {
  color: #3c3c3c;
  font-weight: 400;
  line-height: 1.4;
}

.career-job-desc {
  color: #6f6f6f;
  font-weight: 400;
  line-height: 1.4;
}

.carear-details-wrapper {
  background-color: #f8f9fa;
  background-image: url("/assets/images/homeContact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.job-details-container {
  background: #fff;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 4px 20px #00000014;
}

.job-title {
  color: var(--header-clr);
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.job-details-section {
  margin-bottom: 30px;
}

.job-detail-item {
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}

.job-detail-key, .responsibility-key {
  white-space: nowrap;
  flex-shrink: 0;
}

.job-detail-value, .responsibility-value {
  flex: 1;
  line-height: 1.5;
}

.section-title {
  color: var(--header-clr);
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.section-content {
  color: var(--description-clr);
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 1.6;
}

.responsibilities-list, .requirements-list, .benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-key, .requirement-key, .benefit-key {
  color: var(--active-clr);
  flex-shrink: 0;
  font-size: 25px;
  font-weight: 700;
}

.requirement-value, .benefit-value {
  color: var(--description-clr);
  flex: 1;
  font-size: 19px;
  line-height: 1.5;
}

.bonus-skills-list {
  margin: 0;
  padding-left: 20px;
  list-style: outside;
}

.bonus-skills-list li {
  color: var(--description-clr);
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.5;
}

.job-apply-wrapper {
  background-image: url("/assets/images/homeContact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.apply-info-section {
  padding-right: 40px;
}

.apply-title {
  color: var(--header-clr);
  margin-bottom: 30px;
  line-height: 1.2;
}

.apply-description {
  color: var(--description-clr);
  line-height: 1.6;
}

.apply-form-container {
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
}

.form-label {
  color: var(--main-clr);
  margin-bottom: 8px;
}

.required-star {
  color: #dc3545;
  font-weight: bold;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all .3s;
  background-color: var(--feild-clr) !important;
}

.form-control:focus {
  border-color: var(--active-clr);
  background-color: #fff;
  box-shadow: 0 0 0 .2rem #77c0c040;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  color: #dc3545;
  margin-top: 4px;
  font-size: 14px;
}

.file-upload-area {
  text-align: center;
  cursor: pointer;
  background-color: #f8f9fa;
  border: 2px dashed #6c757d;
  border-radius: 12px;
  padding: 40px 20px;
  transition: all .3s;
  position: relative;
}

.file-upload-area:hover {
  border-color: var(--active-clr);
  background-color: #77c0c00d;
}

.file-upload-area.drag-active {
  border-color: var(--active-clr);
  background-color: #77c0c01a;
}

.file-upload-area.is-invalid {
  border-color: #dc3545;
}

.upload-content {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  display: flex;
}

.upload-icon {
  color: var(--active-clr);
  margin-bottom: 8px;
  font-size: 48px;
}

.upload-text {
  color: var(--header-clr);
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.upload-limit {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
}

.file-uploaded {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  display: flex;
}

.uploaded-file-info {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.file-name {
  color: var(--header-clr);
  font-size: 16px;
  font-weight: 500;
}

.file-size {
  color: #6c757d;
  font-size: 14px;
}

.remove-file-btn {
  color: #dc3545;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 20px;
  transition: all .3s;
  display: flex;
}

.remove-file-btn:hover {
  background-color: #dc35451a;
}

.btn-submit {
  background: var(--main-clr);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 16px #77c0c04d;
}

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

.btn-submit:disabled {
  opacity: .7;
  transform: none;
  box-shadow: 0 4px 16px #77c0c04d;
}

.alert {
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
}

.alert-success {
  color: #198754;
  background-color: #1987541a;
  border-left: 4px solid #198754;
}

.alert-danger {
  color: #dc3545;
  background-color: #dc35451a;
  border-left: 4px solid #dc3545;
}

@media (width <= 767.98px) {
  .career-faded-number {
    font-size: 5rem;
  }

  [dir="ltr"] .career-faded-number {
    left: 5%;
  }

  [dir="rtl"] .career-faded-number {
    right: 2%;
  }

  .career-arrow-btn {
    width: 45px;
    height: 45px;
  }

  .career-arrow {
    font-size: 1.5rem;
  }

  .job-details-container {
    margin: 0 15px;
    padding: 25px 20px;
  }

  .job-title {
    margin-bottom: 25px;
    font-size: 24px;
  }

  .job-detail-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .job-detail-key {
    min-width: auto;
    margin-bottom: 8px;
    margin-right: 0;
    font-size: 20px;
  }

  .section-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .section-content {
    font-size: 16px;
  }

  .responsibilities-list li, .requirements-list li, .benefits-list li {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .responsibility-key, .requirement-key, .benefit-key {
    min-width: auto;
    margin-bottom: 8px;
    margin-right: 0;
    font-size: 20px;
  }

  .requirement-value, .benefit-value, .bonus-skills-list li {
    font-size: 16px;
  }
}

@media (width <= 991.98px) {
  .job-details-container {
    padding: 30px 25px;
  }

  .job-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-content {
    font-size: 18px;
  }

  .responsibility-key, .requirement-key, .benefit-key {
    min-width: 160px;
    font-size: 22px;
  }

  .requirement-value, .benefit-value, .bonus-skills-list li {
    font-size: 18px;
  }

  .job-apply-wrapper {
    padding: 60px 0;
  }

  .apply-info-section {
    text-align: center;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .apply-form-container {
    padding: 30px 25px;
  }

  .apply-title {
    font-size: 36px;
  }

  .apply-description {
    font-size: 18px;
  }
}

@media (width <= 767.98px) {
  .job-apply-wrapper {
    padding: 40px 0;
  }

  .apply-form-container {
    margin: 0 15px;
    padding: 25px 20px;
  }

  .apply-title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .apply-description {
    font-size: 16px;
  }

  .form-control {
    padding: 10px 14px;
    font-size: 16px;
  }

  .file-upload-area {
    padding: 30px 15px;
  }

  .upload-icon {
    font-size: 36px;
  }

  .upload-text {
    font-size: 16px;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 18px;
  }
}

@media (width <= 575.98px) {
  .apply-form-container {
    padding: 20px 15px;
  }

  .apply-title {
    font-size: 24px;
  }

  .apply-description {
    font-size: 15px;
  }

  .file-upload-area {
    padding: 25px 10px;
  }

  .upload-icon {
    font-size: 32px;
  }

  .upload-text {
    font-size: 14px;
  }
}


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