@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}
/* .d-mobile{
  display: none!important;
} */
.contactus-left h2 {
  color: #eee;
}

/* Lazy loading styles */
img.lazyload {
  opacity: 0;
  transition: opacity 0.3s;
}
img.lazyloaded {
  opacity: 1;
} /* Add a blur effect to low-quality placeholder */
img.lazyloading {
  filter: blur(5px);
} /* Loader Container */
.logo-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
} /* Logo Animation */
.logo {
  width: 150px;
  height: 60px;
  position: relative;
} /* Skywalk text styling */
.logo-text {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -40px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #333;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1.5s forwards;
} /* Walk animation (the moving part) */
.walk {
  position: absolute;
  width: 100%;
  height: 10px;
  background: #0066cc;
  bottom: 0;
  transform-origin: left center;
  animation: walkAnimation 2s ease-in-out infinite;
} /* Global text styling */
.global {
  position: absolute;
  width: 100%;
  text-align: center;
  top: -30px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #0066cc;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1s forwards;
} /* Cloud animation */
.cloud {
  position: absolute;
  width: 40px;
  height: 20px;
  background: #0066cc;
  border-radius: 20px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: cloudFloat 3s ease-in-out infinite,
    fadeIn 0.5s ease-in-out 0.5s forwards;
}
.cloud:before,
.cloud:after {
  content: "";
  position: absolute;
  background: #0066cc;
  border-radius: 50%;
}
.cloud:before {
  width: 15px;
  height: 15px;
  top: -8px;
  left: 5px;
}
.cloud:after {
  width: 20px;
  height: 20px;
  top: -10px;
  right: 5px;
} /* Animations */
@keyframes walkAnimation {
  0%,
  100% {
    transform: scaleX(0.1);
  }
  50% {
    transform: scaleX(1);
  }
}
@keyframes cloudFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
} /* Hide loader when loaded */
body.loaded .logo-loader {
  opacity: 0;
  pointer-events: none;
}
body {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  border-radius: 0px;
}
:root {
  --orange: #f86f2a;
  --blue: #2a6ebb;
  --light-blue: #e6f2ff;
}
.blue{
  background-color: #2a6ebb;
}
.orange{
  background-color: #f86f2a;
}
.orange-color{
  color: #f86f2a!important;
}
.insights-section.color {
  background: #f7f7f7;
}
.Community {
  padding-left: 5%;
}
.carrer-main .bottom-part {
}
.carrer-main h6 {
  font-weight: 600;
}
.carrer-main {
  background: #f7f7f7;
}
.carrer-main .item {
  background: #ffffff;
  border-radius: 10px;
  padding-bottom: 25px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 1px 6px;
  margin-bottom: 20px;
}
.carrer-main .insights-text {
  font-size: 13.5px;
}
.carrer-main h5 {
  background: #f3effb;
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.col-auto.count {
  color: #334d6e;
}
.col-auto.count select {
  display: inline-block;
  width: auto;
}
.col-auto.count label {
  padding-right: 6px;
}
.carrer-main .bottom-part .blog-but a {
  border-radius: 30px;
  padding: 9px 15px 10px 20px;
  display: inline-block;
  width: 89%;
  background: #e8e6ec;
  color: #324e6e;
  font-weight: normal;
}

.secondrow {
  background-color: #f7f7f7;
}
.carrer-main .bottom-part .blog-but a:hover {
  background: #324e6e;
  color: #ffffff;
  font-weight: normal;
}

.inner-banner.indusry {
  background: url("images/industry.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.inner-banner.career {
  background: url("images/career-back.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.inner-banner.bloginfo {
  background: url("images/bloginfo.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.sent-but1 .submit-btn {
  background: #334d6e url(images/hand.png) no-repeat 38px 14px;
  background-color: rgb(51, 77, 110);
  border-radius: 30px;
  padding: 11px 52px 15px 69px;
  font-size: 18px;
  font-weight: normal;
  position: relative;
}
.sent-but1::before {
  border-bottom: 2px solid #334d6e;
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  left: auto;
  right: 0;
  top: 29px;
  z-index: 0;
}
.job-des p {
  color: #556f90;
}
.insights-value-item.align-items-end .value-text-wrapper {
  border: 0;
}
.team-card .social-icons-n div:nth-child(1),
.team-card .social-icons-n div:nth-child(2) {
  display: none !important;
}
.carrer-ap .value-text-wrapper {
  padding-right: 20px;
  border-right: 1px dashed #324e6e;
}
.job-des table {
  color: #556f90;
}
.job-des table td:nth-child(2) {
  width: 4%;
}
.job-des table th {
  font-weight: normal;
  width: 25%;
}
.center-form {
  width: 60%;
  margin: 0 auto;
}
.col-12.text-center .form-label input {
  padding-left: 10px;
}
.inner-block.carrers h2 {
  margin: 0;
  padding: 0;
}
.container .blog-but a {
  background-color: #21536c;
  margin-top: 20px;
  padding: 6px 15px 8px;
}
.sent-but .submit-btn {
  background: #334d6e url(images/icon.png) no-repeat 50px 11px;
  border-radius: 30px;
  padding: 15px 64px 15px 95px;
  font-size: 18px;
  font-weight: normal;
  position: relative;
}
.col-12.text-center.mt-4.sent-but::before {
  border-bottom: 2px solid #334d6e;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  top: 29px;
  z-index: 0;
}
.blog-but .material-symbols-outlined {
  rotate: -45deg;
  position: relative;
  top: 6px;
}
.services.all-blog {
  padding: 20px 0;
}
.container .blog-but a i {
  padding-right: 4px;
  font-size: 20px;
  position: relative;
  top: 3px;
}
.services.all-blog .col-md-4 .item {
  background: #ffffff;
}
.services.all-blog .entry-meta .far {
  font-size: 11px;
}
.services.all-blog .bottom-part .blog-but a {
  margin-top: 5px;
}
.services.all-blog .item img {
  height: 230px;
  width: 100%;
}
.insights-section.blog,
.services.all-blog {
  background: #f7f7f7;
}
.services.all-blog .col-md-4 .item h5 {
  color: #20536b;
  font-size: 19px;
  font-weight: 600;
}
.container .blog-but a:hover {
  color: #f5821f;
}
.dkuywW {
  display: none;
}
.insights-section.blog .cutm-line {
  border-top: 2px solid #20536b;
}
.insights-section.blog img {
  border-radius: 30px;
}
.blog-img img {
  border: 10px solid #e6e6e6;
}
.all-blog img {
  border-radius: 10px;
}
.entry-meta {
  margin: 10px 0 10px;
  color: #aaa;
  font-size: 12px;
}
.entry-meta a {
  padding-left: 5px;
  color: #324e6e;
  font-size: 13px;
}
.entry-meta a:hover {
  color: #2a6ebb;
  text-decoration: underline;
}
.entry-meta .far {
  line-height: 15px;
  border-right: 1px solid #10202f;
  padding-right: 5px;
  color: #10202f;
  font-size: 18px;
}
.services.all-blog .col-md-4 .item,
.services .bottom_row_sec {
  padding: 20px;
  margin-bottom: 20px;
}
.services.all-blog .entry-meta a {
  font-size: 11px;
}
.bottom-part .blog-but a {
  border-radius: 30px;
  padding: 2px 15px 9px 20px;
}
.dis-none {
  display: none;
}
.inner-banner.blog {
  background: url("images/blog.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.entry-meta .author {
  padding: 0 4px;
}
.service-button.outline-hover a {
  color: #fff;
}
.color-orange-span {
  color: var(--orange);
}

.color-blue-span {
  color: var(--blue);
}
.color-orange-span{
  color: var(--orange);
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

.gray-background {
  background: #f5f5f5b7;
}

.effect-card {
  display: flex;
  justify-content: start;
  align-items: center;
}

.navbar {
  background-color: #fff !important;
  padding: 15px 0;
  position: sticky !important;
  top: 0;
  z-index: 1020;
  transition: padding 0.6s ease-in-out;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.nav-link:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.nav-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-nav .nav-link {
  position: relative;
  color: white;
  transition: color 0.3s ease;
  padding: 8px 12px;
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 4px;
  background: var(--blue);
  border-radius: 4px;
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
  border-radius: 5px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00bfff;
}

.navbar.shrink {
  padding: 3px 0;
}

.navbar-nav .nav-link {
  color: #a0a0a0 !important;
  font-weight: 600;
  padding: 8px 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.navbar ul {
  gap: 8px;
}

.navbar li a {
  text-align: center;
  align-items: center;
}

.navbar-nav li a {
  color: #333333;
  padding: 15px 14px;
  font-weight: 600;
  position: relative;
  font-size: 14px;
}

.navbar-nav li a:hover::before {
  position: absolute;
  content: "";
  background: var(--primaryColor);
  height: 2px;
  width: 16px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}

.navbar-nav li a:focus {
  background: transparent !important;
}

.navbar-nav li.dropdown.open a {
  background: transparent;
}

.navbar-nav li .dropdown-menu li a {
  color: #1f194c;
}

.navbar-nav li a:hover {
  color: var(--blue) !important;
  font-weight: 600;
}

.navbar-nav li .active {
  color: var(--blue) !important;
  font-weight: 600;
}

.navbar-nav li .cus-btn {
  padding: 12px 10px;
  margin-left: 5px;
}

.navbar-toggler span {
  color: var(--blue) !important;
  z-index: 99999;
}

.navbar .service-button.outline-hover {
  background-color: var(--blue);
}

.dropdown-menu {
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #333 !important;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--primaryColor);
  color: #fff !important;
}
.dropdown-toggle::after{
  display: none!important;
}

.service-button {
  display: inline-block;
  width: fit-content;
  padding: 10px 30px;
  font-size: 1rem;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.service-button.outline-hover {
  background-color: var(--orange);
  /* Green */
}

.service-button.grow:hover {
  transform: scale(1.1);
}

.service-button.shadow:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* banner start*/
.banner_sec {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.banner-slider,
.swiper-slide,
.image-container {
  height: 100%;
}

.banner_sec .image-container {
  height: 100vh;
  /* Full viewport height */
  min-height: 600px;
  /* Optional minimum */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner_sec .image-container {
  width: 100%;
  height: fit-content;
  /* or use vh like 80vh */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.banner_sec .image-container img {
  width: 100%;
  height: 100%;
}

.banner_sec .image-container .content {
  display: flex;
  flex-direction: column;
  height: 100% !important;
  justify-content: center;
  align-items: center;
}

.banner_sec .image-container .content h1 {
  color: #fff;
  font-weight: 800;
  font-size: calc(16px + 4vmin);
  margin-bottom: 15px;
}

.banner_sec .image-container .content p {
  width: 76%;
  color: #fff;
  font-weight: 600;
  font-size: calc(8px + 1.4vmin);
  text-align: center!important;
}

.banner_sec .service-button {
  margin-top: 15px;
}

.banner_sec .menu-list ul {
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); */
  gap: 15px;
  margin: 0;
  padding: 0;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
}

.banner_sec .menu-list ul li {
  list-style: none;
  color: #fff;
  font-size: calc(8px + 1.2vmin);
  padding: 10px 0;
  width: fit-content;
}

.banner_sec .menu-list ul .active {
  border-bottom: 1px solid #ccc;
}

/* bannert end */

.title h4
 {
    color: var(--blue);
    font-weight: 600;
    font-size: calc(8px + 1vmin);
    text-align: center;
}

.why-chooes-us,
.schedule_meet,
.services {
  padding: 60px 0;
}

.exp_sec {
  padding-bottom: 60px;
}

.why-chooes-us .container {
  position: relative;
}

.why-chooes-us .heading h1
 {
    /* width: 95%; */
    font-size: calc(16px + 3vmin);
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.why-chooes-us p {
  font-size: calc(8px + 1.2vmin);
  font-weight: 400;
  color: #a1a1a1;
  line-height: calc(8px + 3.5vmin);
}

.why-chooes-us .img-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.why-chooes-us img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.btn-link-arrow {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-content: center;
  gap: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-chooes-us .btn-link-arrow {
  font-size: 20px;
}
.black-background{
  background-color: #1c1c1c;
}
.black-background .heading h1{
  color: #fff;
}

.floating-sec {
  position: absolute;
  width: calc(199px + 46vmin);
  right: 30%;
  background-color: var(--orange);
  bottom: -2%;
  padding: calc(8px + 1vmin) 0 calc(8px + 1vmin) calc(8px + 1vmin);
}

.floating-sec .row .content {
  color: #fff;
}

.floating-sec .row .content h4:nth-child(1) {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.floating-sec .row .content h4:nth-child(2) {
  color: #fff;
  font-size: calc(8px + 5vmin);
  font-weight: 800;
}

.floating-sec .row .content h4:nth-child(3) {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.three-cart {
  padding: 60px 0;
}

.three-cart .item .content h4 {
  color: #000;
  font-weight: 800;
  font-size: calc(8px + 1.8vmin);
}

.three-cart .item .content p {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.three-cart .img-container {
  width: 80px;
  height: 80px;
  background: var(--blue);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.three-cart .col-md-4:nth-child(2) .img-container {
  background: var(--orange);
}

.three-cart .img-container span,
.services .img-container span {
  font-size: 5vmin;
  color: #fff;
}

.three-cart .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  padding: 15px;
}

.three-cart .container .col-md-4:nth-child(2) .item {
  border-left: 1px solid #cecece42;
}

.three-cart .container .col-md-4:nth-child(2) .item {
  border-right: 1px solid #cecece42;
}

.schedule_meet img {
  width: 100%;
}

.schedule_meet .col-md-4 .content {
  background-color: var(--light-blue);
  padding: 60px;
  border-radius: 20px;
}

.schedule_meet .col-md-4 .item:nth-child(2) ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}

.schedule_meet .col-md-4 .item:nth-child(2) ul li:first-child {
  border-right: 1px solid #cccccc;
}

.schedule_meet .col-md-4 .item:nth-child(2) ul li h1 {
  font-weight: 800;
}

.schedule_meet .col-md-4 .item:nth-child(2) ul li p {
  font-size: 14px;
  font-weight: 700;
}

.schedule_meet .item h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 33px;
    text-align: justify;
}

.schedule_meet .col-md-8 {
  position: relative;
}

.schedule_meet .effect-card {
  position: absolute;
  right: 24px;
  bottom: 4%;
}

.services .title {
  text-align: center;
}

.services .heading {
  text-align: center;
  margin-bottom: 60px;
}

.services .heading h1 {
  font-weight: 800;
}

.services .content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.services p {
  font-size: calc(8px + 1.4vmin);
  font-weight: 400;
}

.slick-slide {
  margin: 5px;
}

.services p:last-child {
  font-size: calc(8px + 1vmin);
  font-weight: 400;
}

.services .content h1 {
  font-size: calc(11px + 3vmin);
  font-weight: 800;
}

.services .content .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 15%;
  background: var(--blue);
}

.services button .material-symbols-outlined {
  rotate: -45deg;
}

.services .col-md-4 .item,
.services .bottom_row_sec {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  padding: 30px;
  border-radius: 20px;
}

.services .col-md-7 img {
  width: 100%;
}

.services .col-md-7 .content,
.services .col-md-5 .content {
  flex-direction: column;
  align-items: start;
  margin-top: 20px;
  gap: 5px;
}

.services .col-md-5 .heading {
  text-align: start;
  margin-bottom: 0;
}

.services .col-md-7 .content h2,
.services .col-md-5 .content h2 {
  font-weight: 700;
  color: var(--blue);
  font-size: calc(8px + 1.8vmin);
}

.services .col-md-7 .content p,
.services .col-md-5 .content p {
  font-weight: 300;
  font-size: calc(8px + 1.5vmin);
}

.exp_sec .col-md-6 h1 {
  font-size: calc(14px + 5min) !important;
}

.exp_sec .title {
  text-align: center;
}

.exp_sec .heading {
  text-align: center;
  margin-bottom: 60px;
}

.exp_sec .heading h1 {
  font-weight: 800;
}

.exp_sec .content {
  display: flex;
  gap: 15px;
  align-items: center;
}

.exp_sec p {
  font-size: calc(8px + 2vmin);
  font-weight: 200;
}

.exp_sec p:last-child {
  font-size: calc(8px + 1vmin);
  font-weight: 200;
}

.exp_sec .content h1 {
  font-size: calc(11px + 4vmin);
  font-weight: 800;
  margin-bottom: 30px;
}

.exp_sec .content .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 15%;
  background: var(--blue);
}

.exp_sec button .material-symbols-outlined {
  rotate: -45deg;
}

.exp_sec .container {
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
    rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
    rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
    rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  padding: 30px;
  border-radius: 20px;
}

.exp_sec .col-md-6 img {
  width: 100%;
}

.exp_sec .col-md-6 .content,
.exp_sec .col-md-6 .content {
  flex-direction: column;
  align-items: start;
  margin-top: 20px;
  gap: 5px;
}

.exp_sec .col-md-6 .heading {
  text-align: start;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.exp_sec .col-md-6 .content h2,
.exp_sec .col-md-6 .content h2 {
  font-weight: 700;
  color: var(--blue);
  font-size: calc(8px + 1.8vmin);
}

.exp_sec .col-md-6 .content p,
.exp_sec .col-md-6 .content p {
  font-weight: 300;
  font-size: calc(8px + 1.5vmin);
}

.exp_sec .col-md-6 .content h2 {
  color: #000;
  font-size: calc(8px + 3.5vmin);
}

.exp_sec .card_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.exp_sec .card_container .item {
  background-color: #bbdbff34;
  padding: 15px;
  border-radius: 10px;
}

.exp_sec .card_container .item h2 {
  font-size: calc(8px + 2vmin);
}

.exp_sec .card_container .item p {
  font-size: calc(8px + 1vmin);
}

hr {
  background-color: #fff;
  padding: 0;
}

.hr-19 {
  border: none;
  height: 10px;
  background: linear-gradient(-135deg, #fff 5px, transparent 0) 0 5px,
    linear-gradient(135deg, #fff 5px, #8c8c8c 0) 0 5px;
  background-color: #fff;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 10px;
}

.template_design_footer {
  --primary-text: #ffffff;
  --secondary-text: #cccccc;
  --divider-color: #1b1f27;
}

.template_design_footer footer {
  background-color: #1c1c1c;
  color: var(--primary-text);
  font-family: "Arial", sans-serif;
  padding: 0px 0 20px;
}

.template_design_footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 15px; */
}

.template_design_footer .footer-logo {
  width: 65%;
}

.footer-container .img-container {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: -25px;
}

.template_design_footer .footer-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-text);
  letter-spacing: 0.5px;
}

.footer-other-link {
  margin-top: 113px;
}

.template_design_footer .footer-about {
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  max-width: 250px;
  margin-top: -5px;
}

.template_design_footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px !important;
}

.template_design_footer .footer-links li {
  margin-bottom: 19px;
  position: relative;
}

.template_design_footer .footer-links a {
  color: var(--primary-text);
  text-decoration: none !important;
  transition: color 0.3s;
  font-size: 1rem;
  font-weight: 400;
}

.template_design_footer .footer-links a:hover {
  color: var(--primary-text);
}

.template_design_footer .contact-number {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 45px 0 10px 0;
}

.template_design_footer .contact-email {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  margin-top: 17px;
}

.template_design_footer .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.template_design_footer .social-icons a {
  color: var(--secondary-text);
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: black;
  text-decoration: none;
}

.template_design_footer .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-text);
  font-size: 15px;
  line-height: 1.5;
}

.template_design_footer .footer-copyright {
  text-align: left;
}

.template_design_footer .footer-social {
  text-align: right;
}

.template_design_footer .cookie-text {
  margin-top: 10px;
  font-size: 11px;
}

.contact-number a,
.contact-email a {
  text-decoration: none;
  color: #ffffff;
}

#bottom_hr_linefooter {
  border: none;
  height: 1px;
  background: #ffffff1f;
  border-radius: 2px;
  opacity: 1;
  width: 100%;
  margin-top: 25px;
}

#button {
  display: inline-block;
  background-color: var(--orange);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

a {
  text-decoration: none;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: var(--blue);
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.mobile-message {
  display: none;
}

/* inner page styles */

.inner-banner {
  background: url("images/about-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.inner-banner.staff {
  background: url("images/staff.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.inner-banner.analytics {
  background: url("images/analytics-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.inner-banner.soft {
  background: url("images/software.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}
.inner-banner.testing {
  background: url("images/testing.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}

.inner-banner.insfra {
  background: url("images/infrastructure-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0;
  color: #fff;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.inner-banner .title h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #eee6d3;
}

.inner-banner .title hr {
  width: 380px;
  border: 1px solid #f5821f;
  opacity: 1;
  margin: 0 0 15px;
}

.inner-banner .title h3 {
  font-size: 35px;
  color: #f5821f;
  text-transform: uppercase;
  font-weight: bold;
}

.title {
  text-align: left;
}

.inner-block {
  padding: 80px 20px;
  background: #f7f7f7;
}

.inner-block h2 {
  color: #324e6e;
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 6%;
  font-family: "Montserrat", sans-serif;
}

.inner-block .fs {
  color: #324e6e;
  font-size: 18px;
  font-weight: 400;
}

.about-details p {
  font-size: 12px;
}

.about-details h5 {
  color: #f5821f;
  background: #fff9f9;
  width: 70%;
  padding: 10px;
  border-radius: 80px;
}

.box {
  display: flex;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  padding: 20px;
}

.box h3 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.box p {
  color: #555;
  font-size: 14px;
}
.insudtries-block img {
  border-radius: 30px;
  border: 10px solid #e6e6e6;
}
.insudtries-block h2 {
  font-family: "Montserrat", sans-serif;
  color: #f5821f;
}
.insudtries-block h4 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
.insudtries-block hr {
  height: 1px;
  width: 100%;
  background: #222736;
  opacity: 1;
  margin: 30px 0;
}
.insudtries-block .blocks {
  justify-content: space-between;
  margin-top: 3%;
  margin-bottom: 2%;
}
#display {
  border-left: none;
}
.insudtries-block .blocks div {
  border-left: 2px solid #222736;
  padding-left: 19px;
  border-radius: 1px;
}
.insudtries-block .blocks p {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.insudtries-block h6 {
  background: #f8e5d4;
  width: 170px;
  padding: 20px;
  border-radius: 55px;
  text-align: center;
}
p {
  color: #324e6e;
  font-size: 15px;
}
.strategy-section {
  padding: 60px 0;
  background-color: #fafafa;
  font-family: "Segoe UI", sans-serif;
}

.strategy-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.strategy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.strategy-image {
  flex: 1 1 45%;
}

.strategy-content {
  flex: 1 1 50%;
}

.strategy-content h3 {
  font-size: 22px;
  color: #ff6f00;
  background: #fff2e8;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.strategy-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.strategy-point {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.strategy-point .icon {
  position: absolute;
  left: 0;
  color: #ff6f00;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
}

.strategy-point strong {
  display: block;
  font-size: 16px;
  margin-bottom: 0px;
  color: #222;
}

.strategy-point p {
  margin: 0;
  font-size: 15px;
  color: #444;
}

.engagement-section {
  background: #2c2d35;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.engagement-section h2 {
  font-size: 28px;
  color: #f3b986;
  margin-bottom: 40px;
  font-weight: 400;
}

.engagement-section .highlight {
  color: #ff8c2d;
}

.engagement-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card-wrapper {
  position: relative;
  width: 280px;
  margin-right: 30px;
}

.icon-line {
  height: 80px;
  position: relative;
  margin-bottom: -30px;
}

.icon-line.orange {
  color: #ffc69d;
}

.icon-line.gray {
  color: #c3c3c3;
}

.icon-line.purple {
  color: #a3b0ff;
}

.icon-circle {
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.icon-circle img {
  width: 450px;
  height: 220px;
}

.card-box {
  background: #414249;
  padding: 25px 20px;
  border-radius: 20px;
  margin-top: 30px;
  min-height: 180px;
  z-index: 9;
  position: relative;
}

.card-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #dedbdb;
}

.card-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.footer-text {
  margin-top: 60px;
}

.footer-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #cebdbd;
  margin-bottom: 10px;
}

.footer-text p {
  font-size: 16px;
  color: #cebdbd;
}

.team-card {
  background: #e6e6e6;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.social-icons-n {
  position: absolute;
  left: 0;
  right: 0;
}

.social-icons-n a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: white;
  color: #333;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.social-icons-n a:hover {
  background-color: #e9ecef;
}

.team-section {
  padding: 20px 20px 120px;
  background: #fafafa;
}

.team-section h2 {
  color: #f5821f;
  text-align: center;
  padding: 0px 0 30px;
}

.team-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #f5821f;
}

.team-heading::before,
.team-heading::after {
  content: "";
  flex: 1;
  border-bottom: 2px dotted #999;
  margin: 0 15px;
  height: 1px;
}

.abt-block {
  text-align: center;
}

.abt-block p {
  width: 80%;
  margin: 0 auto;
}

.abt-block img {
  width: 80%;
  margin: 20px;
}

.service-card {
  background: linear-gradient(to bottom right, #fff, #f3f3f3);
  border: 1px solid #324e6e;
  border-radius: 20px;
  padding: 30px 20px 50px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  min-height: 200px;
  margin-bottom: 60px;
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #fff;
  border: 2px dashed #36577a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
}

.card-title {
  font-weight: 700;
  color: #253858;
  margin-bottom: 10px;
  margin-top: 40px;
}

.service-card p {
  color: #4f5d75;
  font-size: 15px;
  margin: 0;
}

.arrow-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.arrow-icon i {
  color: #2e3d59;
}

.pink-bg {
  background: linear-gradient(to bottom right, #fff, #fde9e6);
}

.green-bg {
  background: linear-gradient(to bottom right, #fff, #e6f2eb);
}

.blue-bg {
  background: linear-gradient(to bottom right, #fff, #e5f4f9);
}

.light-bg {
  background: linear-gradient(to bottom right, #fff, #f5f2eb);
}

.insights-section {
}

.insights-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.insights-section img.border-n {
  border: 10px solid #e6e6e6;
}

.insights-title-wrapper::before,
.insights-title-wrapper::after {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #1f3557;
  font-size: 28px;
  margin: 0;
  white-space: nowrap;
}

.wave-line {
  flex: 1;
  height: 20px;
  background-image: url("images/wave-img.png");
  background-repeat: repeat-x;
  background-position: center;
}

.insights-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #1f3557;
  font-size: 28px;
  margin: 0;
}

.insights-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #1f3557;
  margin-bottom: 10px;
}

.p-10 {
  padding: 70px 0;
}

.insights-subsubtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1f3557;
  margin: 20px 0 10px;
}

.insights-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.insights-badge {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  background-color: #fbe8dc;
  color: #333;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 10px 0 5px;
}

.insights-value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.value-icon {
  width: 100px;
  height: auto;
  padding-right: 20px;
  border-right: 2px dashed #324e6e;
}

.service-btns {
  padding: 50px 20px;
}

.service-btns a {
  background: #357abe;
  color: #fff;
  display: block;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

.service-btns a.bg-orange {
  background: #f5821f;
}

.value-text-wrapper {
  padding-left: 15px;
  flex: 1;
}

.insights-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  color: #1f3557;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.cutm-line {
  content: "";
  flex: 1;
  border-top: 2px dotted #a3a3a3;
}

.contact-form .form-group .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #e3342f;
  pointer-events: none;
}

.contactus-section {
  padding: 50px 0;
}

.contactus-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.contactus-container .contactus-right .info-block h4 {
  color: #333333;
}
.contactus-container .contactus-right .info-block p {
  color: #555;
}
.p-3.border.rounded.shadow-sm .fa-3x {
  font-size: 20px;
}
.contactus-left {
  flex: 1;
  background-color: #1f3557;
  color: #bfc2ff;
  padding: 40px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #888;
  margin-bottom: 40px;
}

.contact-info .info-block {
  margin-bottom: 40px;
  margin-top: 30px;
}

.contact-info .info-block h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-info .info-block p {
  margin: 0;
  line-height: 1.5;
  color: #f7f7f7;
  font-size: 14px;
}

.contactus-right {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.contactus-right h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 30px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px 40px 15px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  resize: none;
}

.contact-form .form-group .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #e3342f;
}

.submit-btn {
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  background-color: #334e6c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .navbar .effect-card {
    text-align: center;
  }
  .contactus-container {
    flex-direction: column;
  }

  .contactus-left,
  .contactus-right {
    padding: 30px 20px;
  }

  .contactus-right h2 {
    font-size: 24px;
  }

  .engagement-cards {
    flex-direction: column;
    align-items: center;
  }

  .card-wrapper {
    width: 90%;
  }

  .strategy-wrapper {
    flex-direction: column;
  }

  .strategy-image,
  .strategy-content {
    flex: 1 1 100%;
  }
}
@media only screen and (max-width: 767px) {
  .schedule_meet .col-md-4 .content {
    padding: 30px;
  }
  .inner-banner {
    padding: 25px 0 !important;
  }
  .inner-banner .title h2 {
    font-size: 20px;
  }
  .inner-banner .title h3 {
    font-size: 25px;
  }
  .inner-block {
    padding: 10px 0px;
  }
  .box {
    display: block;
    text-align: center;
  }
  .strategy-section .container.mt-5,
  .inner-banner .title hr {
    width: 100% !important;
  }
  .value-text-wrapper {
    padding-left: 0px;
  }
  .footer-copyright {
    margin-bottom: 0px !important;
  }
  .template_design_footer .footer-links {
    margin-top: 5px !important;
  }
  .template_design_footer .footer-links li {
    margin-bottom: 3px;
  }
  .template_design_footer .footer-col {
    margin-bottom: 10px;
  }
  .template_design_footer .footer-about {
    margin-bottom: 0px;
    max-width: 100%;
  }
  .contactus-section {
    padding: 10px 0px;
  }
  .effect-card {
    margin-bottom: 20px;
  }
  .contact-info .info-block {
    margin-bottom: 5px;
    margin-top: 20px;
  }
  .p-3.border.rounded.shadow-sm {
    margin: 0 10px;
  }
  .banner_sec .image-container {
    min-height: 100%;
    padding: 20px 0;
  }
  .banner_sec .image-container .content h1 {
    width: 76%;
    font-size: calc(12px + 3vmin);
  }
  .schedule_meet .col-md-4 .content {
    margin-top: 20px;
  }
  .row.mt-5.bottom_row_sec {
    padding: 5px;
  }
  .why-chooes-us,
  .schedule_meet,
  .services,
  .three-cart.gray-background {
    padding: 20px 0;
  }
  .contactus-container {
    max-width: 100%;
  }
  .dis-none {
    display: block;
  }
  .about-details h5 {
    width: 100%;
  }
  .inner-block h2 {
    font-size: 28px;
  }
  .inner-block.vision-details img {
    margin-bottom: 15px;
  }
  .center-form {
    width: 100%;
  }
  .col-12.text-center .form-label input {
    padding-top: 10px;
  }
  .blog-but {
    margin-bottom: 15px;
  }
  .career div,
  .carrer-main .bottom-part,
  .carrer-main .insights-text {
    text-align: center;
  }
  .insights-subtitle {
    font-size: 21px;
  }
  .swiper-slide .menu-list li {
    width: 25% !important;
    float: left;
  }
  .row.mb-5 {
    margin-bottom: 1rem !important;
  }
  .row.align-items-center.mb-5.p-10 {
    padding: 20px 0;
  }
  .service-btns {
    padding: 0;
  }
  .service-btns a {
    margin-bottom: 16px;
  }
  .row {
    --bs-gutter-x: 0;
  }
}
p{
  text-align: justify!important;
  color: #000!important;
}
.text-white {
  color: #fff !important;
}
h1,h4 {
  color: var(--blue)!important;
}
.display-flex{
  display: flex;
    flex-direction: column;
    justify-content: center;
}
#bottom_hr_linefooter {
  border: none;
  height: 1px;
  background: #ffffff1f;
  border-radius: 2px;
  opacity: 1;
  width: 100%;
  margin-top: 25px;
}

#button {
  display: inline-block;
  background-color: var(--orange);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
a{
  text-decoration: none;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: var(--blue);
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
