/* Base Variables and Setup */
:root {
  --primary-color: #002444;
  --secondary-color: #FE5B3E;
  --blue-bg-light: #F6FBFF;
  --blue-bg-pale: #D5EDFF;
  --blue-soft-bg: #E2F3FF;
  --dark-blue-bg: #004D82;
  --dark-blue-table: #015C9A;
  --bluish-green-border: #98F5FF;
  --bluish-green-bg: #F2FFF6;
  --green-card-border: #4FFF83;
  --green-icon-bg: #00CC3C;
  --gray-dark: #1b1b1b;
  --blue-line: #D1E3FF;
  --table-text: #181A1B;
  --alice-blue: #F0F8FF;
  --blue-bright: #ACDBFF;
  --blue-very-pale: #F9FCFF;
  --white: #fff;
  --font-family-primary: "Montserrat", sans-serif;
  --font-size-base: 16px;
  --font-size-mobile-base: 12px;
  --font-size-heading: 2.4rem;
  --font-size-subheading: 1.8rem;
  --font-size-paragraph: 1rem;
}

@font-face {
  font-family: 'Anthony Gilford';
  src: url('../fonts/anthony-gilford-font-1750737568-0/webfontkit-20250626-033317/anthony-gilford-bf6798a990c6a8d-webfont.woff') format('woff'),
    url('../fonts/anthony-gilford-font-1750737568-0/webfontkit-20250626-033317/anthony-gilford-bf6798a990c6a8d-webfont.woff2') format('woff2'),
    url('../fonts/anthony-gilford-font-1750737568-0/Anthony-Gilford-BF6798a990c6a8d.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  font-family: system-ui, sans-serif;

}


/*** COMMON CSS ****/
section {
  padding: 60px 0px;

}

h1 {
  font-size: 3.3rem;
  line-height: 4.1rem;
  color: var(--white) !important;
}

h2 {
  color: var(--primary-color);
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: var(--white);
}

h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
}

h5 {
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 26px !important;
  color: var(--gray-dark) !important;
}

h6 {
  font-size: 20px;
}

p {
  line-height: 26px;
  font-size: 16px;
  color: var(--gray-dark);
}

.primary-btn {
  color: var(--white) !important;
  font-size: 16px !important;
  padding: 10px 20px;
  font-weight: 600 !important;
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.primary-btn:hover {
  color: #fff !important;
}

/**** LOGO ****/
.logo {
  width: 20% !important;
}

/**** HERO ****/
.hero-wrapper-section {
  padding: 40px 0px;
}

.hero-logo-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0px 0px 0px;
  z-index: 10;
}

.hero-wrapper {
  background-color: var(--darkest-blue) !important;
  background-image: url(../img/mast-head-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100vh !important;
}



/* Form */
.form-label {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.885rem;
}

.highlight-text {
  color: var(--secondary-color);
  font: inherit;
  font-weight: inherit;
}

.custom-hubspot-form form {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.custom-hubspot-form form {
  background-color: #ffffff !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
  color: #000 !important;
}

.custom-hubspot-form .hs-form-field>label {
  font-weight: 500 !important;
  font-size: 0.885rem !important;
  color: var(--primary-color) !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.custom-hubspot-form .hs-form-field>label span {
  font-size: 0.885rem !important;
}

.custom-hubspot-form input[type="text"],
.custom-hubspot-form input[type="email"],
.custom-hubspot-form input[type="tel"],
.custom-hubspot-form textarea,
.custom-hubspot-form select {
  width: 100% !important;
  padding: .375rem .75rem !important;
  font-size: 15px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  margin-bottom: 10px !important;
  line-height: 1.5 !important;
  color: #000 !important;
  background-color: #fff !important;
}

.custom-hubspot-form input[type="submit"],
.custom-hubspot-form .hs-button {
  background-color: #FE5B3E !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
  font-size: 16px !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease;
}

.custom-hubspot-form .hs-button:hover {
  background-color: #FE5B3E !important;
}

.custom-hubspot-form .submitted-message,
.custom-hubspot-form .hs-form__thank-you {
  background-color: #e7f6ed !important;
  color: #205e4e !important;
  padding: 20px !important;
  border-radius: 10px !important;
  text-align: center !important;
  font-weight: 600 !important;
}

.custom-hubspot-form ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.custom-hubspot-form .hs-form-required {
  color: #ff2700;
}

.modal-content>p:empty {
  display: none;
}

.btn-close {
  z-index: 999999;
}

.hs-error-msgs label {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.custom-hubspot-form ul {
  margin-bottom: 1px;
}

.custom-hubspot-form.form-model .hs-form-field {
  margin-bottom: 0px;
}

.custom-hubspot-form.form-model .hs-form-field>label {
  margin-bottom: 2px !important;
  display: block;
}

.custom-hubspot-form .hs-error-msg {
  display: none !important;
}

/* choose us section style */
.card-icon {
  background: linear-gradient(180deg, #068CE8 0%, #00629F 100%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.card-icon img {
  width: 24px;
  height: 24px;
}

.what-we-do {
  background-color: var(--blue-soft-bg);
}

.what-we-do .custom-card {
  background: var(--dark-blue-bg) !important;
}

.what-we-do .primary-btn {
  font-size: 20px !important
}

.custom-border-bottom {
  border-bottom: 1px solid #025d9c;
  /* Change the color and width as needed */
}


.divider-line {
  padding-top: 16px;
  padding-bottom: 16px;
}

.responsive-img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

/**** review ****/
.custom-card {
  height: 100% !important;
  padding: 20px !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--blue-bg-light) !important;
  border: 1px solid var(--blue-bg-pale) !important;
  border-radius: 5px;
}

.profile-photo-img {
  width: 60px;
  height: 60px;
}

/* Team Build */
.team-build .custom-card-small {
  border: 1px solid var(--bluish-green-border);
  border-radius: 70px;
  padding: 8px 16px;
}

.custom-card-bg-img {
  background-image: url(../img/build-team-bg.png);
  padding: 30px;
}

.team-build p {
  line-height: 16px;
  color: var(--gray-dark) !important;
}

.team-build h2 {
  line-height: 30px;
}

.message-icon {
  width: 24px;
  height: 24px;
}

/* succeed */
.succeed-section {
  background-color: var(--bluish-green-bg);
}

.card-icon-rectangle {
  width: 40px;
  height: 40px;
  background-color: var(--green-icon-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}


.custom-card-medium {
  border-radius: 10px !important;
  border: 1px solid var(--green-card-border) !important;
  background: var(--white) !important;
  padding: 20px !important;
  display: flex;
  justify-content: space-between;
}

/* table */
.table-responsive {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.table-bordered {
  border-color: var(--blue-line);
}

thead th {
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

tbody td {
  vertical-align: middle;
}

th:first-child,
td:first-child {
  font-weight: 600;
}

th,
td {
  font-size: 16px !important;
}

th p {
  color: var(--gray-dark);
}

table tbody tr td {
  color: var(--gray-dark) !important;
}

.table-rectangle-bg {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--blue-line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  border: none;
}

.comparison-table thead th {
  background-color: var(--dark-blue-bg);
  color: var(--white);
  font-weight: 600;
  font-size: 18px !important;
}

.comparison-table tbody td:first-child {
  background-color: var(--dark-blue-table);
  color: var(--white) !important;
  font-weight: bold;
}

.comparison-table tbody tr:nth-child(even) td:first-child {
  background-color: var(--dark-blue-bg);
}

.comparison-table tbody td:not(:first-child) {
  background-color: var(--white);
  color: #000;
}

table.comparison-table tbody tr.row-difference td {
  background-color: var(--alice-blue);
  color: #000;
}

table.comparison-table tbody tr.row-difference td:first-child {
  background-color: var(--dark-blue-bg);
  color: var(--white);
  font-weight: bold;
}

a.btn:focus {
  border: none;
}

.linkedin-logo {
  width: 24px;
  height: 24px;
}

.ceo-text {
  font-size: 22px;
}

.table-header {
  color: var(--table-text) !important;
  font-weight: bold !important;
  border: 1px solid var(--blue-line);
}

.table-header.offshore {
  background-color: var(--blue-bright);
  border-color: var(--blue-bright);
}

.table-header.freelancers {
  border-color: var(--blue-bg-pale);
  background-color: var(--blue-bg-pale);
}

.table-header.hiring-locally {
  border-color: var(--blue-bright);

  background-color: var(--blue-bright);
}

.table-section span {
  font: inherit;
  font-weight: inherit;
}

.hero-wrapper .line-break {
  font: inherit;
  font-weight: inherit;
  display: block;
  color: white;
}

.ceo-name-text {
  font-family: "Anthony Gilford", Arial, sans-serif;
  font-size: 40px;
  color: var(--dark-blue-bg);
  line-height: 60px;
}

.mob-table-subtext div {
  margin-bottom: 8px;
}

/* copyright */
.copyright-text {
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--dark-blue-bg);
}

/* clutch */
.clutch-widget {
  display: block;
  margin: 0 auto;
  max-width: 970px;
}

.clutch-widget-wrapper {
  background-color: #f1f1f1;
}

.stat-card {
  background-color: #e2f3ff;
}

.counter {
  color: #004D82;
  font-size: 30px;
  font-weight: bold;
}

.typing-text {
  color: #004D82;
  font-size: 30px;
  font-weight: bold;
}

.stats-head-text {
  font-size: 25px;
  font-weight: 700;
  line-height: 45px;
  color: #004D82;

}

.technologies-used .technologies-used-section {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #dbdbdb;
  padding: 40px 30px 40px;
}

.technologies-used .section-header h3 {
  color: #c5273c;
  font-size: 30px;
  font-weight: 600;
}

.technologies-used ul li {
  background: #fff4f4;
  padding: 10px;
  flex-flow: column;
  display: flex;
  ;
  justify-content: center;
  align-items: center;
  border: 11px solid #fff;
  border-radius: 20px;
}

.technologies-used ul li img {
  width: 130px !important;
}

.tech-list .technologies-used-section {
  padding: 40px;
}

.tech-list .technologies-used-section .last-section {
  padding-top: 30px;
}

.tech-list .technologies-used-section h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.orange-head-text {
  color: #fe5b3e;
}

.italic-head {
  font-size: 22px;
}

.orange-bg-light {
  background-color: #fcf2f1;
}

.object-cover {
  object-fit: cover;
}

.rounded-end {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.responsive-rounded {
  border-radius: 0;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.software-integration-benefits {
  width: 100%;
  background: url(../img/software-integration-benefits-bg.jpg) no-repeat center fixed;
  background-size: cover;
  color: white;
  position: relative;
  z-index: 1;
}

.software-integration-benefits.gradient-overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(31, 103, 161, .9) 45%, rgba(14, 75, 122, .9) 100%);
  z-index: -1;
  /* ensures overlay stays behind content */
}

.qa-testing-accordion.gradient-overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(47, 153, 218, .6) 45%, rgba(14, 75, 122, .5) 100%);
  border-radius: 10px;
  z-index: -1;
}

.gradient-card {
  border-radius: 10px;
}

.gradient-card {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  color: #000000;
  height: 100%;
}

.gradient-card p {
  margin-bottom: 0px;
}

.hs-form fieldset.form-columns-2 {
  display: flex;
  gap: 8px;
}

.custom-stats-card {
  background: linear-gradient(to bottom right, #F2FCFF, #ECF7FF);
  border-radius: 10px;
  border: 1px solid #E0F4FA;
  padding: 25px;
  text-align: left;
  position: relative;
  height: 100%;
}
.custom-card-small p {
  white-space: normal !important;
}

@media (min-width: 992px) {
  .responsive-rounded {
    border-radius: 0;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }
}

/**** MEDIA QUERIES ****/
@media (min-width: 768px) {
  .mobile-table {
    display: none;
  }

  .line-break {
    display: block;
  }

  .tech-list .technologies-used-section {
    padding: 40px;
  }

  .tech-list .technologies-used-section .last-section {
    padding-top: 30px;
  }

  .tech-list .technologies-used-section h3 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .custom-hubspot-form .hs-form-field>label span {
    font-size: 14px !important;
  }

  .responsive-img {
    max-height: 200px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 14px;
    padding: 10px;
  }

  .comparison-table {
    display: none;
  }

  .mobile-table {
    display: block;
  }

  .mob-table-subtext {
    border: 1px solid var(--blue-line);
    border-radius: 0px 0px 10px 10px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: var(--blue-very-pale);
  }

  .mob-table-title {
    text-align: start;
    font-weight: 600;
    background-color: var(--dark-blue-bg);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 10px 10px 0px 0px;
  }

  .mob-table-subtext div {
    font-size: 16px;
  }

  .mob-table-subtext div strong {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
  }

  .mob-table-subtext>div {
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #e9f1fd;
  }

  .mob-table-subtext>div:last-child {
    padding: 0px;
    border-bottom: none;
    margin: 0px;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .form-section {
    margin-top: 20px !important;
    margin-bottom: 40px;
  }

  h3 {
    font-size: 2rem !important;
    line-height: 1.4 !important;
  }

  h1 {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
  }

  h2 {
    font-size: 2.1rem !important;
    line-height: 2.7rem;
    margin-bottom: 28px !important;
  }

  .mob-table-title {
    font-size: 18px;
  }

  .team-build p {
    font-size: 16px;
    line-height: 22px;
  }

  .what-we-do {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .what-we-do h2 {
    margin-bottom: 20px !important;
  }

  .ceo-name-text {
    font-family: "Anthony Gilford", Arial, sans-serif;
    font-size: 40px;
    color: var(--dark-blue-bg);
    line-height: 60px;
  }

  .copyright-text {
    font-size: 12px;
  }

  .form-control {
    margin-bottom: 15px;
    padding: 8px;
  }

  .form-section p {
    font-size: 18px;
    line-height: 22px;
  }

  .primary-btn {
    font-size: 16px !important;
  }

  .hero-wrapper {
    height: 100% !important;
  }

  .team-build .custom-card-small {
    border-radius: 10px;
  }

  .primary-btn {
    padding: 10px 10px;
  }

  .technologies-used ul li {
    margin-bottom: 0px !important;
  }

  .technologies-used ul li img {
    width: 80px !important;
  }



}


@media (min-width: 0px) and (max-width: 380px) {
  * {
    font-size: var(--font-size-mobile-base);
  }

  .container {
    padding: 0 1.6rem;
  }

  .logo {
    width: 60% !important;
  }

  .card-icon {
    width: 50px;
  }

  h2 {
    font-weight: bold;
    font-size: 1.2rem;
  }

  h4 {
    font-weight: bold !important;
    font-size: 1.8rem !important;
  }

  .card-heading {
    font-size: 20px !important;
  }
}

@media (min-width: 320px) and (max-width:767px) {
  * {
    font-size: var(--font-size-mobile-base);
  }

  .container {
    padding: 0 1.6rem;
  }

  .logo {
    width: 60% !important;
  }

  p {
    font-weight: 500 !important;
    font-size: 16px;
    line-height: 26px;
  }

  .form-label {
    font-size: 14px;
  }

  h5 {
    font-size: 18px !important;
  }

  h4 {
    margin-bottom: 10px;
    font-size: 24px !important;
  }

  .form-section p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .primary-btn {
    font-weight: 600;
    font-size: 16px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .card-icon img {
    width: 25px;
    height: 25px;
  }

  .custom-card {
    height: auto;
    padding: 15px;
    border-radius: 10px;
    gap: 8px;
    align-items: flex-start;
    text-align: start;
  }

  h2 {
    font-weight: bold;
    font-size: 1.4rem;
  }

}

@media (min-width: 768px) and (max-width: 821px) {
  * {
    font-size: var(--font-size-mobile-base);
  }

  .container {
    padding: 0 1.6rem;
  }

  .logo {
    width: 50% !important;
  }

  h2 {
    font-weight: bold;
    font-size: 1.4rem;
  }

  .technologies-used ul li {
    margin-bottom: 40px !important;
  }

  .technologies-used ul li img {
    width: 130px !important;
  }

}

@media (max-width: 991.98px) {
  .hero-wrapper {
    min-height: auto;
    padding: 80px 0;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  h3 {
    font-size: 1.3333rem;
    line-height: 1.5;
  }

  h1 {
    font-size: 2.6667rem;
    line-height: 1.3;
  }


}

@media screen and (max-width: 1180px) and (orientation: landscape) {
  h3 {
    font-size: 1.3333rem;
    line-height: 1.5;
  }

  h1 {
    font-size: 2.6667rem;
    line-height: 1.3;
  }

  .primary-btn {
    font-size: 0.8rem;
  }

  .logo {
    width: 20% !important;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 16px;
  }

  .card-heading {
    font-size: 20px !important;
  }

  .team-btn-section {
    margin-top: 20px;
  }

}

@media (min-width: 1920px) {
  h1 {
    font-size: 4rem !important;
    line-height: 4.5rem !important;
  }

  h3 {
    font-size: 1.8rem !important;
    line-height: 2.75rem !important;
  }

  h4 {
    font-size: 2rem !important;
  }

  h6 {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }

  .form-label {
    font-weight: 500 !important;
    font-size: 18px !important;
  }

  .hero-wrapper {
    height: 100vh !important;
  }

  .primary-btn {
    font-size: 16px;
  }

  .hero-logo-container {
    padding: 40px 0px 0px 0px;
  }

  .logo {
    width: auto !important;
  }

  p {
    font-size: 16px;
  }

  .comparison-table {
    font-size: 18px;
  }

  .form-section p {
    font-size: 20px;
  }

  .table-section th {
    font-size: 18px !important;
  }

  .table-section td {
    font-size: 16px !important;
  }
}

/**** SUCCESS MESSAGE ***/

.submitted-message.hs-main-font-element {
  margin-top: 0rem;
  padding: 2rem;
}

.submitted-message.hs-main-font-element span strong,
.submitted-message.hs-main-font-element p strong {
  font-size: 2rem !important;
}

.submitted-message.hs-main-font-element span p,
.submitted-message.hs-main-font-element span a,
.hs-main-font-element p,
.hs-main-font-element p a,
.submitted-message.hs-main-font-element p span,
.submitted-message.hs-main-font-element span {
  font-size: 1.48rem !important;
  line-height: 2rem !important;
}

.submitted-message.hs-main-font-element span a {
  color: #007BFF;
}

/*.submitted-message.hs-main-font-element span strong > br
{
display:none;
}*/

.form-header {
  transition: opacity 1s ease;
}


/* Responsive scaling on smaller devices */
@media (max-width: 576px) {
  .submitted-message.hs-main-font-element span strong {
    font-size: 1.3rem;
    padding: 1.2rem;
  }
}