html,
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  /* background-color: rgba(0, 0, 0, 0.1); */
  color: #ffffff;
  width: 100%;
  height: 100%;
  line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  position: relative;
}

a,
p {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
}

.disabled,
[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

img.lazy {
  filter: blur(20px);
  transition: filter 0.5s, opacity 0.5s;
  opacity: 0;
}

img.loaded,
img.lazy-loaded {
  filter: blur(0);
  opacity: 1;
}

.form-validate {
  position: relative;
}

.form-validate label.error {
  position: relative;
  display: inline-block;
  bottom: 0;
  left: 0;
  right: auto;
  background: #26cbb7;
  font-size: 12px;
  color: #fff;
  padding: 0 10px;
  margin-top: 5px;
  margin-left: 15px;
  width: auto;
  z-index: 1;
}

.form-validate label.error:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 5px;
  border: 5px solid transparent;
  border-bottom: 5px solid #b19eff;
}

.modal .form-validate label.error {
  top: auto;
  left: auto;
}

.form-validate .input-label {
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

.form-validate .input-label.req:after {
  content: "*";
  position: absolute;
  margin-left: 5px;
  color: #ff0000;
}

.form-validate .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.form-validate .form-control {
  padding: 8px 6px;
  max-width: 100%;
  font-size: 14px;
  outline: none;
  color: #ffffff;
  background-color: transparent;
  border-bottom: 1px solid #e0e3eb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.form-validate .form-control::placeholder {
  color: #f0f0f0;
}

.form-select {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #e0e3eb;
  border-radius: 2px;
  padding: 10px 15px;
  -webkit-appearance: base-select;
  -moz-appearance: base-select;
  -ms-appearance: base-select;
  -o-appearance: base-select;
  appearance: base-select;
}

.form-validate .form-control:focus,
.form-select:focus {
  background: transparent;
  outline: 0;
  box-shadow: none;
  border-color: #26cbb7;
}

.form-validate textarea.form-control {
  height: auto;
}

.upload-container {
  border-radius: 3px;
  max-width: 100%;
  margin: auto;
}

.upload-label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.upload-label span {
  color: red;
}

.upload-box {
  position: relative;
  width: 100%;
  border: 1px solid #e0e3eb;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}

.upload-box:hover {
  border-color: #7c3aed;
}

.upload-box.dragover {
  background-color: #ede9fe;
  border-color: #7c3aed;
}

.upload-box i {
  color: #020202;
  background: #ffffff;
  padding: 10px;
  font-size: 24px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 10px;
  clear: both;
}

.upload-box a {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  color: #383838;
  margin-top: 10px;
  text-decoration: none;
}

.upload-box a:hover,
.upload-box a:focus {
  background-color: transparent;
  color: #ffffff;
}

.upload-box small {
  display: block;
  margin-top: 8px;
  color: #666;
}

#fileUpload {
  display: none;
}

.file-info {
  margin-top: 15px;
  font-size: 14px;
  color: green;
}

.error {
  color: red;
}

.scrollbar {
  position: relative;
  display: block;
  max-height: 600px;
  overflow: auto;
}

/* width */
.scrollbar::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

svg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Menu Bar CSS */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
}

.header.active,
.header.menu-open {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  position: relative;
  background-color: #fff;
  padding: 10px;
  border-radius: 50px;
  color: #000;
}

.navbar-toggler .toggle-bars {
  width: 30px;
  height: 30px;
}

.navbar-toggler .toggle-bars div {
  width: 22px;
  height: 3px;
  border-radius: 50px;
  background: #000;
  margin: 5px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}

.header.menu-open .navbar-toggler .toggle-bars .one {
  transform: rotate(45deg) translate(6px, 6px);
}

.header.menu-open .navbar-toggler .toggle-bars .two {
  opacity: 0;
}

.header.menu-open .navbar-toggler .toggle-bars .three {
  transform: rotate(-45deg) translate(5px, -6px);
}

.menu-bar .logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.menu-bar .logo img {
  height: 40px;
}
.menu-bar .nav-item {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.menu-bar .nav-item a {
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 16px;
  transition: background-color 0.3s;
}
.menu-bar .nav-item a:hover,
.menu-bar .nav-item a.active {
  border-bottom: 1px solid;
}

main {
  margin-top: 60px;
}

.b-bottom {
  position: relative;
  border-bottom: 1px solid #333333;
}

/* Banner CSS */

.banner-section {
  /* position: relative; */
  width: 100%;
  height: calc(100vh - 60px); /* Adjust height to account for header */
  /* background-image: url("assets/images/banner.jpg"); 
  background-size: cover;
  background-position: center;*/
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #333333;
}

/* .banner-section .banner-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
} */

.banner-section .banner-content h1,
.banner-section .banner-content h2 {
  /* font-family: "Monoton", sans-serif; */
  font-size: 105px;
  font-weight: 900;
  text-transform: uppercase;
}

.banner-section .banner-content h4 {
  font-size: 20px;
  font-weight: 400;
}

.btn-theme {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 11px 24px;
  border-radius: 50px;
}

.btn-theme:hover,
.btn-theme:active {
  border: 1px solid #ffffff;
}

.btn-theme-inverse {
  position: relative;
  color: #020202;
  font-size: 16px;
  font-weight: 500;
  background-color: #26cbb7;
  border: 1px solid #26cbb7;
  padding: 11px 24px;
  border-radius: 50px;
}

.btn-theme-inverse:hover,
.btn-theme-inverse:active {
  border: 1px solid #ffffff;
}

/* Services Section CSS */

.services-section {
  border-bottom: 1px solid #333333;
}

.services-section .service-content {
  position: relative;
  background: #18181c;
  border-radius: 20px;
  padding: 40px 20px;
}

.services-section .service-content .service-image {
  display: inline-block;
  background: #222228;
  border-radius: 30px;
  padding: 28px;
  margin-bottom: 15px;
}

.services-section .service-content h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.services-section .service-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

/* How we think CSS */

.think-section,
.digital-transformation {
  border-bottom: 1px solid #333333;
}

.think-section .think-content {
  position: relative;
  background: #18181c;
  border-radius: 20px;
  padding: 10px 20px;
  /* border: 1px solid #dbdfe480; */
  /* box-shadow: 0 0 6.5px #00000040; */
}

.think-section .think-content:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    -216deg,
    rgb(38 203 183 / 0%),
    rgb(38 203 183 / 50%),
    #26cbb7,
    #26cbb7
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
}

.think-section .think-content strong {
  position: relative;
  display: inline-block;
  font-size: 100px;
  font-weight: 800;
  background: linear-gradient(45deg, #26cbb7, #13655b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  height: 80px;
  padding-top: 30px;
  margin-left: -50px;
}

.think-section .think-content h4 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 600;
  max-width: 75%;
}

.think-section .think-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.letter {
  position: relative;
  width: 100%;
  height: 80px;
  margin-bottom: 30px;
  margin-left: -135px;
}

.think-section .first-row {
  max-width: 80%;
  margin: 0 auto;
}

/* Projects */

.project-content {
  position: relative;
  display: flex;
  width: 100%;
  background-color: #18181c;
  border-radius: 20px;
  padding: 40px 20px;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}

.project-content .project-image,
.banner .project-image {
  position: relative;
  display: inline-block;
  background-color: #222228;
  border-radius: 60px;
  width: 200px;
  height: 200px;
  line-height: 200px;
  margin: 0 auto;
  text-align: center;
}

.project-content .project-image img,
.banner .project-image img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.project-content h4 {
  font-size: 22px;
  font-weight: 700;
}

.project-detail h3 {
  font-size: 42px;
  font-weight: 700;
}

.project-detail p {
  font-size: 26px;
  font-weight: 400;
}

.project-content a {
  position: relative;
  display: block;
  color: transparent;
  -webkit-text-stroke: thin #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 500;
  transition: all linear 0.3s;
}

.project-content a:hover,
.project-content a:focus {
  -webkit-text-stroke-color: #26cbb7;
}

/* Customers */

.customers-section {
  border-bottom: 1px solid #333333;
}

.customers-section .bg-grey {
  position: relative;
  background-color: #18181c;
}

/* Footer CSS */

footer {
  position: relative;
  /* url("../images/footer-bg.svg") no-repeat center center */
  background: #18181c;
  background-size: cover;
  color: #ffffff;
  padding: 80px 0;
}

footer p.serving {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
}

footer .serving {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
}

footer .tagline {
  color: #ffffff99;
  font-size: 20px;
  font-weight: 400;
}

footer .tagline,
footer .page-links a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

footer .page-links li {
  border-right: 1px solid #ffffff;
  margin-right: 0 !important;
}

footer .page-links li:last-child {
  border-right: none;
  margin-right: 0 !important;
}

footer .page-links li a {
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
}

footer .page-links li:first-child a {
  padding-left: 0;
}

footer .page-links li:last-child a {
  padding-right: 0;
}

footer .social li a {
  background-color: #18181c;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff66;
  border-radius: 12px;
  padding: 16px;
  font-size: 20px;
}

footer .tagline {
  color: #ffffff99;
}

/* Banner Common */

.banner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #333333;
}

.banner h1 {
  font-size: 64px;
  font-weight: 700;
}

.banner p {
  font-size: 16px;
  font-weight: 400;
}

/* Approach CSS */

.approach h2,
.development-loop h2 {
  font-size: 42px;
  font-weight: 500;
}

.approach p,
.approach ul {
  font-size: 20px;
  font-weight: 400;
}

/* Careers CSS */

.careers .card {
  background: #18181c;
  color: #ffffff;
  border-radius: 20px;
}

.careers .card h2 {
  font-size: 28px;
  font-weight: 600;
}

.careers .card span {
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
}

.careers .card .icon {
  color: #26cbb7;
}

/* Modal CSS */

.modal-content {
  background: #0f0f0f;
  color: #fff;
  border-radius: 20px;
  padding: 40px 100px;
}

.modal-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}

.modal-footer {
  border: 0;
}
