/********** Common CSS **********/
:root {
  --primary: #13afe3;
  --secondary: #0a1624;
  --light: #f8f8f9;
  --dark: #001d23;
  --white: #ffffff;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 80px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar-brand img {
  width: 100px;
  height: 65px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--dark);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar-toggle {
  background-color: rgba(20, 43, 70, 1);
  border-radius: 30px;
  padding: 9px 20px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  transition: all 1s;
}

.navbar-toggle:hover {
  background-color: var(--primary);
  color: var(--white);
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: rgba(0, 29, 35, .8); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  /* #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: linear-gradient(rgba(0, 29, 35, 0.8), rgba(0, 29, 35, 0.8)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Footer ***/
.footer {
  background-color: black;
  padding: 70px 50px;
  /* border-radius: 12px 12px 0px 0px; */
}

.footer .footer-title {
  color: var(--primary);
  margin-bottom: 20px;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 20px;
  color: var(--white);
  transition: 0.3s;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  box-shadow: none;
}

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
}

.footer .btn.btn-square:hover {
  color: var(--primary);
  border-color: var(--white);
}

.footer .subscribe-info {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}

.footer .subscribe-form .form-control {
  background-color: rgba(20, 43, 70, 1);
  border-color: rgba(20, 43, 70, 1);
  margin-bottom: 7px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
}

.footer .subscribe-form .btn {
  background-color: rgba(10, 22, 36, 1);
  border-color: rgba(10, 22, 36, 1);
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: var(--white);
  border-radius: 100px;
  padding: 7px 20px;
  top: 2px;
}

.footer .subscribe-form .btn:focus,
.footer .subscribe-form .btn:hover {
  background-color: rgba(10, 22, 36, 1);
  border-color: rgba(10, 22, 36, 1);
  color: var(--white);
  box-shadow: none;
}

.footer .subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer .subscribe-form .form-control:focus {
  box-shadow: none;
}

.footer .position-relative {
  margin-left: 0 !important;
  width: 300px;
}

/* Custom classes for col-lg-3 and col-lg-8-5 */
@media (min-width: 992px) {
  .col-lg-3-5 {
    flex: 0 0 29.167%;
    max-width: 29.167%;
  }

  .col-lg-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .col-lg-3 {
    flex: 0 0 20.833%;
    max-width: 20.833%;
  }

  .col-lg-8-5 {
    flex: 0 0 70.833%;
    max-width: 70.833%;
  }
}

@media (max-width: 991.98px) {
  .col-lg-3-5,
  .col-lg-3,
  .col-lg-1-5,
  .col-lg-8-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .mt-md-5 {
    margin-top: 1rem !important;
  }
}

/* New styles for location text */
.footer .location-heading {
  color: var(--primary);
}

.footer .location-text {
  color: var(--white);
}

.footer .news {
  width: 300px;
}

.footer .location {
  font-size: 14px;
}

.btn-primary.back-to-top {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary.back-to-top:hover,
.btn-primary.back-to-top:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.banner-infotext {
  max-width: 60%;
  margin: auto;
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 400;
  line-height: 26px;
}

.full-banner {
  height: 100vh;
}

.short-banner {
  height: 75vh;
}

.short-banner-career {
  height: 85vh;
}

.toggle-icon {
  max-width: 20px;
}

/*Home Page */
.home-layout {
  background-color: rgba(10, 22, 36, 1);
}

.client-logo {
  height: 40px;
  width: 100px !important;
  margin: 0 10px !important;
  object-fit: contain;
}

/* .container {
  position: relative;
  width: 100%;
  height: 100vh; 
  background-color: #f0f0f0;
} */

.centered {
  margin: auto;
  width: 120px;
  height: 50px;
}

.getstarted-btn {
  font-size: 16px;
  line-height: 24px;
  min-width: 115px;
  min-height: 35px;
  padding: 8px 25px;
  display: inline-block;
  align-content: center;
}

.masterful-sec {
  background-color: rgba(242, 242, 242, 1);
  border-radius: 12px 12px 0px 0px;
  height: 100vh;
}

.masterful-sec .sec-heading {
  font-family: "Druk Cyr", sans-serif;
  font-weight: bold;
  font-size: 56px;
  line-height: 64px;
  color: rgba(10, 22, 36, 1);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.masterful-sec .sec-heading sub {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 24px;
}

.masterful-sec .sec-heading sub.sub-text {
  vertical-align: 5px;
}

.masterful-sec .sec-heading.sd-text-heading {
  height: 35px;
  position: relative;
}

.masterful-sec .sec-heading .sd-text {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  top: -15px;
}

.whatwedo-sec .top-heading-small,
.whatwedo-sec .sec-heading-small {
  color: var(--white);
  margin-bottom: 7px;
}

.whatwedo-sec .sec-heading-small {
  max-width: 60%;
}

.whatwedo-sec .card {
  height: 100%;
  border: 0;
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 15px;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  opacity: 0.95;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.1s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.whatwedo-sec .card:hover {
  -webkit-transform: scale3d(0.95, 0.95, 1);
  transform: scale3d(0.95, 0.95, 1);
}

.whatwedo-sec .card .card-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.whatwedo-sec .card .card-content {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 24px;
  color: var(--secondary);
  margin-bottom: 0;
  max-width: 70%;
}

.whatwedo-sec .card2 .card-content,
.whatwedo-sec .card4 .card-content {
  margin-left: auto;
}

.whatwedo-sec .card .card-footer {
  background-color: #f2f2f2;
  border: 0;
  padding: 0px 20px;
}

.whatwedo-sec .card .card-count {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 32px;
  color: var(--secondary);
  margin-bottom: 0;
}

.whatwedo-sec .card-col {
  margin-bottom: 20px;
  padding: 0px 10px;
}

.whatwedo-sec .card-container {
  justify-content: end;
  max-width: 100%;
  margin: 40px 0px 0px auto;
}

.whatwedo-sec .card .bulb-img {
  position: absolute;
}

.whatwedo-sec .card1 .bulb-img {
  right: -5px;
  bottom: 0px;
}

.whatwedo-sec .card2 .bulb-img {
  left: 0;
  bottom: 0px;
}

.whatwedo-sec .card3 .bulb-img {
  right: 0;
  top: 0px;
}

.whatwedo-sec .card4 .bulb-img {
  left: 0;
  top: 0px;
}

.whatwedo-sec .card3,
.whatwedo-sec .card3 .card-footer {
  background-color: #afd6e8;
}

.whatwedo-sec .card3 .card-heading {
  font-size: 36px;
  line-height: 44px;
  max-width: 70%;
  margin-bottom: 0;
}

.customer-sec {
  padding: 0px 0px 72px;
  margin-top: 0;
}

.customer-sec .customer-container {
  padding: 0px 72px 25px;
}

.customer-sec .card {
  width: 260px;
  min-height: 360px;
  border: 0;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.2);
}

.customer-sec .card .client-logo {
  margin-bottom: 20px;
  max-height: 30px;
  width: auto;
}

.customer-sec .card .quotes {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
}

.customer-sec .testimonial-slider {
  padding-left: 72px;
}

.customer-sec .card.bg-darkblue {
  background-color: #0a1624;
}

.blog-sec,
.projects-sec,
.career-sec {
  padding: 72px;
}

.blog-list {
  margin-top: 50px;
}

.blog-list .card {
  box-shadow: 1px 1px 10px 0px #0000001f;
  border: 0;
  border-radius: 12px;
  height: 100%;
}

.blog-list .blog-col {
  margin-bottom: 15px;
}

.blog-list .card .card-img {
  border-radius: 12px 12px 0px 0px;
  height: 200px;
  object-fit: cover;
}

.blog-list .card .category-name,
.blog-list .card .posted-date {
  color: #3c3c3c;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.blog-list .card .category-name span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.blog-list .card .category-name .icon,
.blog-list .card .posted-date .icon {
  margin-right: 7px;
}

.blog-list .card .short-content {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 20px;
  color: #142b46;
  margin-bottom: 0;
  margin-top: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.projects-sec .line {
  justify-content: center;
}

.projects-sec .sec-heading-small .word:nth-child(3) {
  color: var(--primary);
}

.projects-sec .few-words .word:not(:first-child) {
  color: var(--primary);
}

.see-more-layout.projects-sec .few-words .word {
  color: #fff;
}

.projects-sec .stack-cards {
  margin-top: 15px;
}

.projects-sec .stack-cards li:nth-child(1) .grid {
  background-color: #142b46;
}

.projects-sec .stack-cards li:nth-child(2) .grid {
  background-color: #13afe3;
}

.projects-sec .stack-cards li:nth-child(3) .grid {
  background-color: #0a1624;
}

.projects-sec .stack-cards li:nth-child(4) .grid {
  background-color: #476aca;
}

.projects-sec .stack-cards-name {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.projects-sec .stack-cards-title {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.projects-sec .stack-cards-content {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  margin-bottom: 15px;
}

.projects-sec .stack-cards-btn {
  background-color: #1e3f65;
  border-color: #1e3f65;
  padding: 8px 15px;
  border-radius: 27px;
  color: #fff;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
}

.projects-sec .stack-cards-btn:hover,
.projects-sec .stack-cards-btn:focus {
  border-color: #1e3f65;
  box-shadow: none;
}

.career-sec .card {
  background-color: var(--primary);
  border: 0;
  border-radius: 12px;
  max-width: 90%;
  margin-left: auto;
  padding: 30px;
  z-index: 9;
}

.career-sec .small-heading {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: var(--secondary);
  margin-bottom: 0;
}

.career-sec .card-heading {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 68px;
  margin-top: 120px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.career-sec .getstarted-btn {
  width: 120px;
  height: 35px;
}

.career-sec .view-more-btn {
  width: 105px;
}

.career-sec .view-more-btn:hover {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.career-sec .career-bg {
  max-height: 350px;
}

.career-sec .layer1,
.career-sec .layer2 {
  position: absolute;
  border-radius: 12px;
  width: 90%;
  padding: 30px;
  height: 100%;
}

.career-sec .layer1 {
  background-color: #afd6e8;
  right: 50px;
  top: 30px;
  z-index: 8;
}

.career-sec .layer2 {
  background-color: #e2eff4;
  right: 100px;
  top: 60px;
  z-index: 7;
}

.career-sec .career-container {
  margin-bottom: 100px;
}

.career-sec-other-pages {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.question-section .line {
  justify-content: center;
}

.question-section .sub-head .word {
  color: var(--primary);
}

.question-section .sec-heading {
  font-family: "Druk Cyr", sans-serif;
  font-weight: bold;
  font-size: 64px;
  line-height: 70px;
  color: var(--secondary);
  margin: 0;
  letter-spacing: 3px;
}

.question-section .mailto {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: var(--secondary);
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.question-section .mailto:hover {
  color: var(--primary);
}

.question-section .hvr-text {
  cursor: pointer;
}

.question-section .hvr-text:hover .icon {
  transform: rotate(30deg);
  transition: 0.4s ease-in-out;
}

/*Contact Forms */
.dialogs-wrapper {
  z-index: 100;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.dialogs-overlay {
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 47, 51, 0);
  transition: background-color 0.3s;
  position: absolute;
}

.dialogs-overlay.js--active {
  background-color: rgba(44, 47, 51, 0.9);
}

.dialog {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transition: transform 1s, bottom 1s;
  position: absolute;
  bottom: -105%;
  left: 0;
  overflow: auto;
  transform: translate(0, 200px);
}

.dialog .card {
  background-color: #fff;
  padding: 3rem;
  border-radius: 20px 20px 0px 0px;
  max-height: 95vh;
  overflow-y: auto;
  min-height: 500px;
}

.dialog.js--active {
  bottom: 0%;
  transform: translate(0);
}

.dialog.contacts__section.js--active {
  z-index: 2;
}

.dialogs-overlay.js--hidden,
.dialogs-wrapper.js--hidden {
  bottom: -105%;
  top: auto;
  transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.dialogs-wrapper.contactPopupModal {
  overflow-y: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog.contacts__section {
  position: relative;
  max-height: 100dvh;
  overflow-y: auto;
  width: 100%;
  z-index: 2;
}

.dialog.contacts__section .card {
  max-height: 100dvh;
  overflow-y: auto;
}

/*About Us */
.purpose-sec {
  margin-top: 0;
}

.quotes-sec .quotes-text {
  color: #fff;
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 66px;
  margin-bottom: 0;
}

.quotes-sec {
  padding: 100px 70px;
}

.ourvalue-sec .custom-grid {
  gap: 25px;
}

.ourvalue-sec .custom-grid .first-col,
.ourvalue-sec .custom-grid .last-col {
  width: 30%;
}

.ourvalue-sec .custom-grid .mid-col {
  width: 40%;
}

.about-slider-sec {
  padding: 72px 0px;
}

.about-slider-sec .top-heading-small,
.about-slider-sec .sec-heading-small {
  color: #fff;
}

.about-slider-sec .line {
  justify-content: center;
}

.about-slider-sec .sec-heading-small {
  max-width: 65%;
  margin: auto;
}

.owl-active-slider .owl-item .item {
  transform: translate3d(0, 0, 0);
  margin: 50px 0;
}

.owl-active-slider .owl-item .item img,
.owl-active-slider .owl-item .testimonial-card {
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}

.owl-active-slider .owl-item.center .item img,
.owl-active-slider .owl-item.center .testimonial-card {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.key-metrics-sec .card-sec {
  margin-top: 40px;
}

.key-metrics-sec .card-col {
  margin-bottom: 15px;
}

.peoples-card .countdown-card {
  background-color: #f2f2f2;
  padding: 0;
}

.peoples-card .countdown-card .card-footer {
  padding: 0px 20px;
}

.peoples-card .countdown-card .card-footer .username {
  margin-bottom: 2px;
  color: #0a1624;
  font-size: 18px;
}

.peoples-card .countdown-card .card-footer .role {
  color: #0a1624;
  font-size: 16px;
}

.peoples-card .countdown-card .card-img {
  width: 100%;
  height: 275px;
  border-radius: 12px 12px 0px 0px;
}

.peoples-card .countdown-card .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  vertical-align: top;
  margin-top: -5px;
}

.countdown-card {
  border: 0;
  border-radius: 12px;
  background-color: #fff;
  min-height: 350px;
  padding: 20px;
}

.countdown-card .card-header,
.countdown-card .card-footer {
  background-color: transparent;
  border: 0;
}

.countdown-card .card-heading {
  color: #0a1624;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
}

.countdown-card .card-img {
  width: 125px;
  height: 125px;
}

.countdown-card .card-img img {
  object-fit: contain;
  height: 100%;
}

.countdown-card .count-value {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #0a1624;
  margin-bottom: 0;
}

.countdown-card .count {
  position: relative;
}

.countdown-card .count:after {
  content: "+";
  display: inline-block;
}

.feature-card-sec .card-container {
  max-width: 750px;
}

.feature-card-sec .card-col {
  margin-bottom: 20px;
}

.feature-card-sec .card {
  border: 0;
  border-radius: 12px;
  padding: 40px 20px;
  min-height: 200px;
  height: 100%;
}

.feature-card-sec .card-heading {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #0a1624;
  margin-bottom: 30px;
}

.feature-card-sec .card-light-blue {
  background-color: var(--primary);
}

.about-layout .career-sec {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-layout .blog-list {
  margin-top: 40px;
}

.blog-layout .blog-list .blog-col {
  margin-bottom: 35px;
}

.blog-details .carousel-item {
  background-color: #090612;
  height: 100vh;
}

.blog-details .event-icon {
  width: auto !important;
  height: auto;
  display: inline !important;
  filter: brightness(0) saturate(100%) invert(63%) sepia(13%) saturate(7132%)
    hue-rotate(157deg) brightness(93%) contrast(92%);
}

.blog-details .event-list {
  list-style-type: none;
}

.blog-details .event-list li {
  display: inline-block;
  font-size: 14px;
}

.blog-details .event-list li:not(:last-child) {
  margin-right: 30px;
}

.blog-details .blog-post {
  height: calc(100vh - 300px);
  object-fit: contain;
  margin-top: 20px;
}

.blog-details .scroll-down p {
  max-width: 150px;
  margin: auto;
  font-size: 14px;
}

.blog-details .homebanner-slider h1 {
  font-size: 32px;
  line-height: 38px;
}

.blog-details .container-inner {
  max-width: 75%;
  margin: auto;
}

.blog-details .blog-sec-content p {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 28px;
  color: #000;
}

.blog-details .blog-sec-content li {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 28px;
  color: #000;
}

.blog-details .blog-sec-content table {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 28px;
  color: #000;
}

.blog-details .blog-sec-content h4 {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #0a1624;
}

.testimonial-list {
  margin-bottom: 15px;
}

.testimonial-list .user-info {
  margin-bottom: 10px;
}

.testimonial-list .user-img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 100px;
}

.testimonial-list .username {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #0a1624;
}

.testimonial-list .sub-text {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: #3c3c3c;
}

.testimonial-list .content {
  color: #0a1624;
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 32px;
  margin-bottom: 5px;
}

.success-stories-layout .short-banner {
  height: 85vh;
}

.success-stories-layout .homeclient-slider {
  margin-top: 90px;
}

.owl-active-slider .owl-item.center .testimonial-card img {
  transform: none !important;
  box-shadow: none;
}

.homebanner-slider .line {
  justify-content: center;
}

.homebanner-slider .line .words {
  max-width: 400px;
}

.about-layout .homebanner-slider .word:nth-child(5),
.blog-layout .homebanner-slider .word:nth-child(5) {
  color: var(--primary);
}

.success-stories-layout .homebanner-slider .word:nth-child(5) {
  color: var(--primary);
}

.see-more-layout .homebanner-slider .word:nth-child(5) {
  color: var(--white);
}

.success-stories-details .carousel-caption {
  padding: 0px 85px;
  justify-content: flex-start;
  top: 50px;
}

.success-stories-details .event-list li:not(:last-child) {
  margin-right: 100px;
}

.success-stories-details .sec-heading-small {
  font-size: 30px;
}

.success-stories-details .client-intro .client-info-img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
}

.success-stories-details .challenge-col {
  margin: 100px 0px;
}

.success-stories-details .challenge-col .col-heading {
  color: #0a1624;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.success-stories-details .challenge-col .sec-heading {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: #0a1624;
  margin-bottom: 30px;
}

.success-stories-details .sec-list {
  padding-left: 20px;
}

.success-stories-details .sec-list li {
  color: #000;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}

.success-stories-details .client-card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.success-stories-details .solution-sec .sec-list {
  max-width: 750px;
  margin: 40px auto;
}

.success-stories-details .benefit-sec .sec-heading-small {
  margin: 30px 0px;
}

.success-stories-details .card-with-icon .icon-box {
  background-color: #0a1624;
  border-radius: 100px;
}

.success-stories-details .testimonial-list .username {
  margin-top: 10px;
  font-weight: bold;
}

.success-stories-details .testimonial-list .content {
  max-width: 600px;
  margin: 10px auto 20px;
}

.success-stories-details .testimonial-list .quotes-icon {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7465%)
    hue-rotate(338deg) brightness(106%) contrast(109%);
  max-height: 20px;
  margin-bottom: 15px;
}

.careers-layout .ourvalue-sec .container-inner {
  max-width: 90%;
  margin: auto;
}

.careers-layout .ourvalue-sec .line {
  justify-content: center;
}

.careers-layout .ourvalue-sec .sec-heading-small {
  font-size: 30px;
  margin-bottom: 40px;
}

.careers-layout .ourvalue-sec {
  margin-top: 0;
}

.careers-layout .ongoing-event .card {
  height: 235px;
  border: 0;
}

.careers-layout .ongoing-event .event-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.careers-layout .link-btn {
  min-width: 105px;
}

.careers-layout .ongoing-event .event-slider {
  margin: 50px 0px;
}

.careers-layout .question-section .sec-heading-small {
  font-size: 30px;
}

.careers-layout .position-list li {
  background-color: #0e1d2e;
  border-color: #0e1d2e;
  padding: 10px 24px;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.careers-layout .position-list li .job-title {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.careers-layout .position-list li .job-info {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 26px;
  display: inline-block;
  margin-right: 20px;
}

.careers-layout .position-list li .job-info .icon {
  max-height: 20px;
}

.careers-layout .position-list li .job-info .arrow-icon {
  max-height: 22px;
  cursor: pointer;
}

.see-more-layout .embrace-sec .top-heading-small {
  font-size: 22px;
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0px;
  color: #0a1624;
}

.see-more-layout .embrace-sec .top-heading-small .words {
  text-transform: none;
}

.see-more-layout .embrace-sec .sec-heading-small .word:not(:last-child),
.see-more-layout .embrace-sec .sec-heading-small .hyphen {
  color: #13afe3;
}

.see-more-layout .benefits-sec .benefit-icon {
  max-height: 85px;
  margin-bottom: 15px;
}

.see-more-layout .benefits-sec .top-heading-small {
  font-size: 20px;
  font-family: "Druk Cyr", sans-serif;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0px;
  color: #0a1624;
}

.see-more-layout .perks-sec .top-heading-small {
  font-size: 16px;
}

.see-more-layout .benefits-sec .top-heading-small .words,
.see-more-layout .perks-sec .top-heading-small .words {
  text-transform: none;
}

.see-more-layout .benefits-sec .sec-heading-small .word:first-child,
.see-more-layout .perks-sec .sec-heading-small .word:first-child {
  color: #13afe3;
}

.see-more-layout .benefits-sec .sec-heading-small {
  font-size: 50px;
  line-height: 58px;
  margin-bottom: 15px;
}

.see-more-layout .benefits-sec .info-content {
  max-width: 80%;
  margin: 0px auto 20px;
  color: #0a1624;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 24px;
}

.see-more-layout .short-banner {
  height: 85vh;
}

.see-more-layout .homebanner-slider .line .words {
  max-width: 800px;
}

.see-more-layout .perks-sec .card-section {
  /* max-width: 90%; */
  margin: auto;
}

.see-more-layout .perks-sec .card-section .card {
  min-height: 250px;
}

.see-more-layout .perks-sec .card-section .card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.see-more-layout .perks-sec .card-section .card .card-heading {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}

.see-more-layout .perks-sec .card-section .card .card-content {
  font-size: 12px;
  margin-bottom: 0;
}

.overlay-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.overlay-section.footer {
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer .footer-col {
  margin-bottom: 30px;
  color: white;
}

.footer .footer-col-left {
  width: 20dvw;
}

.footer .footer-list {
  list-style: none;
  padding-left: 2px;
}

.footer .footer-list li {
  margin-bottom: 4px;
}

.footer .footer-note {
  color: white;
  width: 80%;
  line-height: 1.6 !important;
}

.footer .footer-col-right {
  padding-left: 50px !important;
}

.footer .social-links a:nth-child(1) {
  padding-left: 0;
}

.careersPopup .icon {
  filter: brightness(0) saturate(100%) invert(62%) sepia(22%) saturate(6490%)
    hue-rotate(158deg) brightness(96%) contrast(87%);
}

.careersPopup .category-name {
  color: #0a1624;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.careersPopup .job-description li,
.careersPopup p {
  color: #0a1624;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.careersPopup .apply-heading {
  color: #0a1624;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 20px 0px;
}

.careersPopup .primary-link {
  color: #476aca;
  text-decoration: none;
  font-size: 14 px;
  font-family: "Poppins", sans-serif;
}

/* styles for event popup starts */
.event-text-styles {
  font-size: 17px !important;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.005em;
  text-align: left;
}

/* style for event popup in mobile view */
@media (max-width: 768px) {
  .event-popup-page {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .event-left-side {
    width: 100%;
    order: 2;
  }

  .event-right-side {
    width: 100%;
    order: 1;
  }
}

/* styles for event pop-up in desktop view */
@media (min-width: 768px) {
  .event-popup-page {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .event-left-side {
    width: 39.6%;
  }

  .event-right-side {
    width: 55.6%;
  }
}

.event-popup-img {
  border-radius: 26.15px;
}

.event-header {
  display: flex;
  justify-content: space-between;
}

.event-description-points {
  padding: 24px;
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 12px;
}

.event-apply-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 12px;
}

/* styles for event popup ends */

/* .card-col .card {
  cursor: pointer;
} */

.blog-sec .col-5 {
  flex-basis: calc(44.1% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(47% - 0.01px - var(--grid-gap, 1em));
}

.countdown-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.countdown-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-with-icon {
  transition: box-shadow 0.3s ease-in-out;
}

.card-with-icon:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.customer-sec .testimonial-slider {
  transition: 5.5s linear !important;
}

/* T-EAM Page */

.team-product-hero-container {
  margin-top: 10.5rem;
}

.team-product-hero-container .display-large {
  line-height: 0.85;
}

.team-product-hero-container .ms-slider {
  line-height: 1.3;
  text-transform: uppercase;
}
.display-large.digital-services-hero-text {
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1;
}

.team-product-hero-text {
  font-size: 82px;
}

.team-product-hero-container .display-large + .hero-subtext {
  margin: 0 auto 4rem;
  font-family: "Poppins", sans-serif;
}

.team-product-hero-container ~ #client-logos {
  background-color: #0a1624 !important;
  padding: 10px 0 0 !important;
}

.team-product-second-sec {
  min-height: 100dvh;
  background-color: #e2eff4;
  padding: 100px 0 0px 50px;
}

.team-product-second-sec .sec-heading-small {
  font-size: 62px;
  font-weight: 500;
  letter-spacing: 2px;
}

.team-product-second-sec .second-sec-content {
  font-size: 24px;
  color: black;
  font-family: "Poppins", sans-serif;
  margin-top: 4rem;
}

.team-product-third-sec {
  padding: 6.25rem;
  color: #000;
  border-radius: 8px 8px 0 0;
}

.team-product-third-sec-container {
  justify-content: space-between;
  gap: 20px;
}
.team-product-third-sec-container .heading-text {
  width: 57dvw;
  margin: 0 auto 2rem;
  font-family: "Poppins", sans-serif;
}

.team-product-third-sec-container .card {
  border: none;
  width: 48%;
  min-height: 283px;
}

.team-product-third-sec-container .card .card-title {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}
.team-product-third-sec-container .card .card-body {
  font-family: "Poppins", sans-serif;
  line-height: 2rem;
}

.team-product-third-sec-container .dashboard-img {
  width: 100%;
  padding: 0;
}

.team-product-fourth-sec {
  padding: 6.25rem;
  color: #000;
  border-radius: 8px 8px 0 0;
  background-color: #e2eff4;
}

.team-product-fourth-sec .section-heading {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 20px;
}

.team-product-fourth-sec-container {
  justify-content: space-between;
  gap: 20px;
}
.team-product-fourth-sec-container .heading-text {
  width: 57dvw;
  margin: 0 auto 2rem;
  font-family: "Poppins", sans-serif;
}

.team-product-fourth-sec-container .card {
  border: none;
  width: 47%;
  padding: 1.5rem;
  padding-left: 0;
}

.team-product-fourth-sec-container .card .card-title {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-product-fourth-sec-container .card .card-body {
  font-family: "Poppins", sans-serif;
  line-height: 2rem;
  height: 100%;
}
.team-product-fourth-sec-container .card .card-body .row {
  height: 100%;
  justify-content: space-around;
}

.team-product-fourth-sec-container .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.team-product-offline-sec {
  background: linear-gradient(#0a1420, #1c3149);
}
.team-product-offline-sec .section-heading {
  font-size: 3rem;
}

.team-product-offline-sec .section-subheading {
  color: white;
  width: 50vw;
  margin: 2rem auto 0;
  font-family: "Poppins", sans-serif;
}

.team-product-hero-sec .icons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  right: 30px;
  top: 35dvh;
}

.team-product-hero-sec .icons img {
  width: 45px;
  background-color: #d9d9d9;
  border-radius: 100%;
  padding: 8px;
}

.team-product-question-sec .question-sub-text {
  font-family: "Poppins", sans-serif;
  margin: 1rem auto 2rem;
  color: black;
}
.team-product-question-sec .joinus-text {
  margin: 3rem auto 0;
  text-transform: none;
}

.team-product-why-team-sec h3 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.team-product-why-team-sec .card .card-body h5 {
  font-family: "Poppins", sans-serif !important;
}
/* T-EAM Page */

/* Responsive Style */
@media (max-width: 991px) {
  .display-large,
  .masterful-sec .sec-heading {
    font-size: 32px;
    line-height: 38px;
  }

  .masterful-sec {
    height: 250px;
    min-height: 250px;
  }

  .folder-bg-blue,
  .folder-bg-white,
  .folder-bg-grey {
    padding: 40px 20px;
    margin-top: 0;
  }

  .whatwedo-sec .sec-heading-small {
    max-width: 100%;
  }

  .sec-heading-small {
    font-size: 26px;
    line-height: 32px;
  }

  .whatwedo-sec .card-container {
    max-width: 100%;
  }

  .whatwedo-sec .card .bulb-img {
    display: none;
  }

  .whatwedo-sec .card .card-content {
    max-width: 100%;
  }

  .whatwedo-sec .card3 .card-heading {
    max-width: 100%;
    font-size: 26px;
    line-height: 32px;
  }

  .customer-sec .customer-container {
    padding: 40px 20px;
  }

  .customer-sec .testimonial-slider {
    padding-left: 0;
  }

  .scroll-down {
    display: none;
  }

  .overlay-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .overlay-section.footer {
    padding: 40px 20px;
  }

  .footer .btn.btn-link {
    font-size: 12px;
  }

  .footer .footer-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .question-section .sec-heading,
  .career-sec .card-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .career-sec .card-heading {
    margin-top: 15px;
  }

  .career-sec .career-bg {
    margin-top: 30px;
  }

  .career-sec .layer1 {
    right: 17px;
  }

  .career-sec .layer2 {
    right: 40px;
  }

  .blog-list .card .category-name {
    margin-bottom: 7px;
  }

  .projects-sec .stack-cards {
    padding-left: 0px;
  }

  .projects-sec .container {
    width: 100%;
  }

  .quotes-sec .quotes-text {
    font-size: 32px;
    line-height: 42px;
  }

  .ourvalue-sec .custom-grid .card-col {
    width: 100%;
  }

  .custom-tabs .nav-tabs .nav-link {
    margin-bottom: 10px;
  }

  #header-carousel .carousel-item .event-icon {
    position: relative;
  }

  .blog-details .container-inner {
    max-width: 100%;
  }

  .blog-details #header-carousel .carousel-item .display-large {
    margin-top: 20px;
  }

  #header-carousel .carousel-item .blog-post {
    position: relative;
    height: 150px;
    object-fit: contain;
  }

  .hvr-text img {
    max-height: 20px;
  }

  .projects-sec .stack-cards-content,
  .projects-sec .img-col {
    display: none;
  }

  .projects-sec .stack-cards-title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .projects-sec .stack-cards-name {
    margin-bottom: 5px;
  }

  .projects-sec.overlay-section {
    padding-bottom: 200px;
  }

  .projects-sec .content-col {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .contact-info-content {
    margin-top: 25px;
  }

  .dialog .card {
    padding: 20px;
    overflow-y: auto;
    max-height: 95vh;
  }

  .form-info {
    max-width: 100%;
  }

  #main-navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .three-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    height: 20px;
    /* Add this */
    background-color: rgba(0, 0, 0, 0.1);
    /* Temporary, for debugging */
  }

  .three-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  .three-dots .dot:hover {
    opacity: 1;
  }

  .masterful-sec .sec-heading:nth-of-type(1) {
    margin-bottom: 40px !important;
  }

  .masterful-sec .sd-text-heading {
    margin-bottom: 40px !important;
  }

  .masterful-sec .sec-heading:nth-of-type(3) {
    margin-top: 40px !important;
  }

  .projects-sec .stack-cards {
    padding-left: 0px;
  }

  .projects-sec .container {
    width: 100%;
  }

  .stack-cards__item {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .stack-cards__item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .stack-cards__item {
      transform: none !important;
    }
  }
}

.panel-hero-text .h1 {
  line-height: 50px !important;
  width: 200px;
}

.user-image {
  width: 250px;
  height: 250px;
  border-radius: 8px;
}

.grp-img {
  max-height: 70vh;
  max-width: 30vw;
  width: auto;
  height: auto;
  object-fit: contain;
}

#pimg {
  border-radius: 8px !important;
}
/* .product-eam .product-eam-card .username {
  font-size: 16px !important;
}

.product-eam .product-eam-card .card-img img {
    width: 80px;
    height: auto;
    display: flex;
    margin: auto;
}

.product-eam .product-eam-card {
  cursor: pointer;
  width: 200px;
  height: 200px;
  cursor: pointer;
  width: 200px;
  height: 200px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-eam .product-eam-card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: box-shadow 0.3s ease-in-out;
}

.product-eam .product-eam-card .card-footer {
    text-align: center;
}

.product-eam .product-eam-card .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
} */
/* .card-img img {
  height: 150px !important;
} */
/* .container-eam {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-template-rows: auto auto;
 justify-items: center;
 gap: 20px;
}

.container-eam .card-eam:nth-child(4) {
 grid-column: 1 / 2;
 grid-row: 2;
 margin-left: 50%;
}

.container-eam .card-eam:nth-child(5) {
 grid-column: 2 / 3;
 grid-row: 2;
 margin-right: 50%;
} */

.container-eam {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 40px;
}

.container-eam .row {
 display: flex;
 justify-content: center;
 gap: 40px;
}

.container-app > :nth-child(5) {
  grid-column: 2;
}

.container-app > :nth-child(6) {
  grid-column: 3;
}

.container-app {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  place-items: center;
  gap: 20px;
}

.card-eam {
  background: #f2f2f2;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(216, 216, 216, 0.1);
  padding: 10px;
  height: fit-content;
  width: 250px;
  font-size: 14px;
}
.card-eam:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}
.card-eam img {
  margin-bottom: 10px;
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
}
.card-eam h3 {
  margin: 10px 0;
  font-size: 1em;
  text-align: center;
}

.blog-sec .blog-section {
  display: flex;
  flex-wrap: nowrap;
}

/* styles for event slider cards starts*/
.owl-active-slider .owl-item .event-card {
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
}

.owl-active-slider .owl-item.center .event-card {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.owl-active-slider .owl-item .item .event-card .event-img {
  object-fit: initial;
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
}

.event-slider-container .slider-event-date {
  color: #000;
  font-size: 12px;
  margin-bottom: 8px;
}

.event-slider-container .card {
  height: 235px;
}

.event-slider-container .blue {
  background-color: #13afe3;
}

.event-slider-container .nato {
  background-color: #142b46;
}

.event-slider-container .han {
  background-color: #476aca;
}

.event-slider-container .card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 436px;
  gap: 10px;
}

.event-slider-container .event-card-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.event-slider-container .card img {
  width: 170px !important;
  height: 200px !important;
  border-radius: 10px;
  object-fit: cover;
}

/* styles for event slider cards ends*/

.sub-text {
  height: 60px;
  text-align: right;
}

.sub-text li {
  font-size: 16px;
  line-height: 2;
  display: inline-block;
  color: black;
  font-weight: 200;
}

.techstack-slider-container {
  /* display: flex; */
  width: 47rem;
}

/* New changes */

.blog-list .card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-list .card .col-md-8,
.blog-list .card .col-md-4 {
  display: flex;
  align-items: center;
}

.blog-list .card .col-md-8 {
  justify-content: flex-start;
}

.blog-list .card .col-md-4 {
  justify-content: flex-end;
}

.blog-list .card .posted-date {
  white-space: nowrap; /* prevent wrapping */
}

.people-slider-sec {
  padding: 72px 0px;
}

.people-slider-sec .top-heading-small,
.people-slider-sec .sec-heading-small {
  color: #fff;
}

.people-slider-sec .line {
  justify-content: center;
}

.people-slider-sec .sec-heading-small {
  max-width: 65%;
  margin: auto;
}

.testimonial-card {
  width: 300px !important;
}

.footer-overlay-section {
  padding: 50px;
}

/* Modal scroll fix - ensure modal content can scroll when body is locked */
body.modal-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

body.modal-open .dialogs-wrapper.contactPopupModal {
  overflow-y: auto !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 1050 !important;
}

body.modal-open .dialog.contacts__section {
  overflow-y: auto !important;
  max-height: 100vh !important;
}

.service-section {
  font-family: "Poppins", sans-serif;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 0.75rem;
}

.section-para {
  /* font-family: "Druk Cyr", sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  /* line-height: 36px; */
  color: black;
}
