@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  color: #fff;
  overflow-x: hidden;
  background-image: url("../img/main-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
}

a, a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
}

p {
  margin-bottom: 0;
}

section {
  padding: 50px 0px;
}

button {
  outline: none;
  background-color: transparent;
  border: none;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 120px;
}

/* HERO IMAGE */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  mix-blend-mode: soft-light;
}

/* HEADER */
.custom-header {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  left: 0;
  right: 0;
  padding: 0 20px;
}

.header-inner {
  padding: 16px 25px;
  transition: 0.4s;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7.5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* LOGO */
.logo {
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* NAVIGATION */
nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MENU */
.main-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.main-menu li {
  position: relative;
  white-space: nowrap;
}

.main-menu a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::after {
  display: none;
}

.custom-header.scrolled {
  top: 0;
}

.custom-header.scrolled .header-inner {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  max-width: 100%;
}

/* DROPDOWN */
.dropdown-menu-custom {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  display: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  z-index: 1000;
  /*overflow: hidden;*/
}
/* Sub dropdown (RIGHT SIDE) */
.has-sub-dropdown {
    position: relative;
}

.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    list-style: none;
    background-color: #fff;
    padding: 0;
    margin: 0;
    min-width: 220px;
    border-radius: 8px;
    overflow: hidden;
}


.dropdown-menu-custom li a {
  display: block;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  transition: background 0.2s ease;
  border-radius: 8px 8px 0 0;
}

.dropdown-menu-custom li:last-child a {
  border-bottom: none;
}

.dropdown-menu-custom li a:hover {
  background: #f5f5f5;
}

/* BUTTON */
.btn-theme {
  border-radius: 1000px;
  background: var(--Primary, #0027f0);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  color: var(--color-white-solid, #fff);
  text-align: center;
  font-family: var(--font-family-Font-1, "DM Sans");
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 39, 240, 0.4);
  color: #fff;
  text-decoration: none;
}

.btn-theme img {
  width: 16px;
  height: 16px;
}

/* RIGHT HEADER */
.right-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* DESKTOP HOVER */
@media (min-width:769px) {
  .has-dropdown:hover .dropdown-menu-custom {
    display: block;
  }

}

/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* TABLET (768px - 1024px) */
@media (max-width:1024px) {
  .header-inner {
    gap: 20px;
  }

  /*.logo {
    width: 100px;
  }*/
  .main-menu {
    gap: 25px;
  }

  .main-menu a {
    font-size: 15px;
  }

  .btn-theme {
    padding: 8px 20px;
    font-size: 14px;
  }

}

/* MOBILE (max-width: 768px) */
@media (max-width:768px) {
  .custom-header {
    top: 12px;
    padding: 0 12px;
  }

  .header-inner {
    padding: 12px 16px;
    gap: 12px;
    border-radius: 12px;
  }

  .logo {
    width: 150px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    z-index: 998;
    flex-direction: column;
    align-items: stretch;
  }

  nav.active {
    display: flex;
  }

  .main-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: rgb(5 8 26);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    gap: 12px;
    display: none;
  }

  .main-menu.active {
    display: flex;
  }

  .main-menu li {
    width: 100%;
  }

  .main-menu a {
    text-align: left;
    width: 100%;
    font-size: 15px;
  }

  .has-dropdown {
    width: 100%;
  }

  .has-dropdown.open .dropdown-menu-custom {
    display: block;
    position: static;
    box-shadow: none;
    width: 100%;
    background: rgb(6 8 25);
    margin-top: 10px;
    border-radius: 8px;
            height: 280px;
        overflow-y: auto;
  }

  .has-dropdown.open .dropdown-menu-custom li a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 12px;
    font-size: 13px;
  }

  .has-dropdown.open .dropdown-menu-custom li:last-child a {
    border-bottom: none;
    border-radius: 8px;
  }

  .right-header {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
  }

  .right-header.active {
    display: flex;
  }

  .btn-theme {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    justify-content: center;
  }
  .sub-dropdown{
    position: static;
    background-color: transparent;
    display: block !important;
  }
  .has-dropdown.open .dropdown-menu-custom li a:focus{
    background-color: transparent;
  }

}

/* HERO TEXT */
.hero-inner-content {
  padding: 100px 0px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content h1 {
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 85px;
  text-align: center;
}

.hero-content h1 span {
  color: var(--secondary, #17cbf2);
}

.hero-content p {
  color: #ffffff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

/* Primary Button */
.btn-theme-2 {
  border-radius: 1000px;
  background: #0027f0;
  padding: 13px 24px;
  color: #ffffff;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-theme-2:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 39, 240, 0.5);
}

/* Glass Button */
.btn-theme-glass {
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.51);
  background: rgba(199, 199, 199, 0.16);
  backdrop-filter: blur(11.4px);
  padding: 13px 24px;
  color: #ffffff;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.51);
}

.btn-theme-glass:hover {
  transform: translateY(-3px);
  background: rgba(199, 199, 199, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.technology-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.list-item:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.counter-section {
  background-image: url("../img/counter-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-heading {
  margin-bottom: 10px;
  color: #fff;
  font-family: Archivo;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-subtext {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.counter-box {
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  border-radius: 16px;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-box h3 {
  margin-bottom: 5px;
  font-size: 95px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: linear-gradient(94deg, #f087ff 30.31%, #6e1fce 82.77%, rgba(110, 31, 206, 0.1) 210.09%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-blue-bx h3 {
  background: linear-gradient(93deg, #1fcff1 35.99%, #234cb6 97.32%, rgba(35, 76, 182, 0.1) 189.09%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-green-bx h3 {
  background: linear-gradient(92deg, #19fb9b 11.36%, #199890 54.3%, #005f59 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-wt-bx h3 {
  background: linear-gradient(94deg, #fff 30.31%, #777 82.77%, rgba(0, 0, 0, 0.1) 210.09%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-box p {
  margin: 0;
  color: #c4c4c4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.services-box {
  position: relative;
  padding: 25px;
  border-radius: 32px;
  background: linear-gradient(126deg, rgba(14, 12, 21, 0.5) 0.56%, rgba(14, 12, 21, 0) 99.05%);
  backdrop-filter: blur(1px);
  z-index: 1;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.services-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(126deg, rgba(14, 12, 21, 0.7) 0.56%, rgba(14, 12, 21, 0.2) 99.05%);
}

.services-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: 32px;
  background: linear-gradient(88deg, rgba(9, 14, 219, 0.66) -15.78%, rgba(231, 61, 196, 0.66) 102.06%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.services-box h3 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 20px 0px 10px;
}

.services-box p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 151.523%;
  margin-bottom: 0px;
}

.services-box .services-box-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-work {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.featured-work h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.sub-text {
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.8;
}

.featured-work .slider-wrapper {
  position: relative;
  max-width: 1180px;
  margin: auto;
}

.featured-work .slide {
  display: none;
  opacity: 0;
  animation: slideOut 0.5s ease-in-out;
}

.featured-work .slide.active {
  display: block;
  opacity: 1;
  animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

}

@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }

}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }

}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.slide-inner {
  display: flex;
  align-items: self-start;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7.5px);
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 220px;
  opacity: 0.7;
  background: var(--astro_build__1425x629_default-Linear-Verdun-Green-Heliotrope, linear-gradient(89deg, #3245ff 0%, #b845ed 100%));
  box-shadow: 0 2px 1px 0 rgba(24, 24, 27, 0.01), 0 1px 1px 0 rgba(24, 24, 27, 0.05), 0 1px 1px 0 rgba(24, 24, 27, 0.09);
  z-index: -1;
}

/* .slide-image .featured-work-img {
max-width: 100%;
border-radius: 16px;
position: absolute;
left: -18%;
bottom: 0px;
} */
.slide-image .featured-work-img {
  max-width: 60%;
  border-radius: 16px;
  position: absolute;
  left: -12%;
  bottom: 0px;
}

.slide-content {
  flex: 1;
  text-align: left;
}

.slide-content h3 {
  margin-bottom: 15px;
  color: var(--color-white-solid, #fff);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  animation: fadeInUp 0.6s ease-out;
}

.slide-content p {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.slide-content h4 {
  margin: 20px 0 10px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.slide-content ul {
  list-style: none;
}

.slide-content ul li {
  margin-bottom: 13px;
  padding-left: 30px;
  position: relative;
  color: var(--color-white-solid, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.slide-content ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.slide-content ul li:nth-child(2) {
  animation-delay: 0.3s;
}

.slide-content ul li:nth-child(3) {
  animation-delay: 0.4s;
}

.slide-content ul li:nth-child(4) {
  animation-delay: 0.5s;
}

.slide-content ul li:hover {
  transform: translateX(8px);
  color: #17cbf2;
}

.slide-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  background-image: url("../img/chekmark-tik.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.slide-content ul li:hover::before {
  transform: scale(1.2) rotate(5deg);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 99;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #0027f0, #17cbf2);
  color: #fff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 39, 240, 0.4);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* 📱 Mobile */
@media (max-width:768px) {
  .slide-inner {
    flex-direction: column;
    padding: 20px;
  }

  .slide-image img {
    transform: rotate(0);
  }

  .slide-content {
    text-align: left;
  }

  .nav-btn {
    width: 32px;
    height: 32px;
  }

  .prev {
    left: 2%;
  }

  .next {
    right: 2%;
  }

  .slide-image {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

}

/* Innovative Services Section */
.innovative-services {
  background: var(--milestone-webflow-html-website-template-webflow-io-1440-x-761-default-1-black, #000);
}

.services-cards-container {
  display: flex;
  gap: 15px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-wrapper {
  flex: 0 0 140px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-wrapper.active-card {
  flex: 1 1 auto;
  min-width: 300px;
}

.service-card {
  position: relative;
  height: 400px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  background: #121212;
  overflow: hidden;
}

.service-card:hover:not(.active) .card-inner {
  border-color: rgba(0, 39, 240, 0.5);
  background: linear-gradient(135deg, rgba(0, 39, 240, 0.1) 0%, rgba(23, 203, 242, 0.05) 100%);
}

.default-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: defaultBoxEnter 0.6s ease-out;
}

.default-box span {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 15px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes defaultBoxEnter {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }

}

.card-rotated-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  white-space: pre;
}

.card-content {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
  width: 100%;
  padding: 0 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  animation: none;
}

.card-content h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 29.625px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.32px;
}

.card-content p {
  color: #ffffffb3;
  font-size: 16.313px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 171.648% */
}

/* Active Card Styles */
.service-card.active .default-box {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.service-card.active .card-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  animation: contentEnter 0.6s ease-out forwards;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes contentEnter {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

}

.service-card.active .card-inner {
  border-radius: 8px;
  border-top: 3px solid var(--Primary, #0027f0);
  background: var(--milestone-webflow-html-website-template-webflow-io-1440-x-761-default-1-cod-gray, #121212);
}

.card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.card-content span {
  display: block;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width:1024px) {
  .services-cards-container {
    gap: 12px;
  }

  .service-card-wrapper {
    flex: 0 0 120px;
  }

  .service-card {
    height: 380px;
  }

  .card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 13px;
  }

  .card-rotated-text {
    font-size: 18px;
  }

}

@media (max-width:768px) {
  .services-cards-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .service-card-wrapper {
    flex: 0 0 auto !important;
  }

 

  .card-inner {
    padding: 20px 15px;
  }

  .card-content {
    padding: 0 20px !important;
  }

  .card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .card-rotated-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .services-cards-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 10px;
  }

  .service-card-wrapper {
    flex: 0 0 auto !important;
  }

  .service-card {
    height: 200px;
  }

  .card-inner {
    padding: 15px 10px;
  }

  .card-content {
    padding: 0 15px !important;
  }

  .card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .card-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .card-rotated-text {
    writing-mode: vertical-rl;
    transform: rotate(-90deg);
    font-size: 20px;
    letter-spacing: 0px;
    white-space: normal;
    text-align: center;
  }

  .service-card .card-inner .card-content {
    visibility: visible;
    opacity: 1;
  }

  .card-rotated-text, .default-box span {
    display: none;
  }

}

.industries-list {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 9;
  flex-wrap: wrap;
}

.industries-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  background: transparent;
  border-right: 1px solid #ffffff1a;
  transition: all 0.3s ease;
}

.industries-list a {
  flex: 1;
  height: 100%;
}

.industries-item img {
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover / active image zoom */
.industries-item:hover img, .industries-item.active img {
  transform: scale(1.1);
}

/* info container */
.industries-info {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.industries-info h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.industries-item:hover h4, .industries-item.active h4 {
  transform: translateY(-40px);
}

.industries-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 24px;
  transform: translateY(100px);
  transition: transform 0.35s ease;
}

.industries-item:hover p, .industries-item.active p {
  transform: translate3d(0, -40px, 0);
}

/* inactive items image hide */
.industries-item:not(.active) img {
  opacity: 0;
}

.industries-item.active img {
  opacity: 0;
  transform: scale(1.1);
}

/* section background */
.industries-services {
  position: relative;
  background-size: cover;
  background-position: center;
  height: calc(100dvh - 100px);
  overflow: hidden;
  transition: background-image 0.5s ease-in-out;
}

/* overlay = background layer */
.industries-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 100%);
  z-index: 1;
}

/* content wrapper */
.industries-content {
  z-index: 5;
  position: absolute;
  left: 5%;
  top: 10%;
}

/* heading */
.industries-heading {
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 60px;
  font-weight: 700;
}

.cta-section {
  margin-bottom: 80px;
}

.home-cta-box {
  border-radius: 30px;
  background: linear-gradient(86deg, #0027f0 1.09%, #36d0ff 97.79%);
  backdrop-filter: blur(7.5px);
  padding: 45px;
  display: flex;
}

.home-cta-box h2 {
  color: #fff;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.home-cta-box p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin-bottom: 60px;
}

.btn-border {
  border-radius: 10px;
  border: 1px solid #fff;
  background: rgba(217, 217, 217, 0.1);
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 11px 25px;
}

/* ======= Technologies ================ */
.multi-section {
  padding: 80px 0;
  position: relative;
}

.multi-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-image: url("../img/bg-shape-round.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tech-wrapper {
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7.5px);
}

.tabs-tech-section {
  display: flex;
  align-items: center;
}

/* LEFT TABS */
.tech-tabs {
  flex-direction: column;
  gap: 14px;
}

.tech-tab {
  padding: 10px 22px;
  width: 140px;
  text-align: left;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px !important;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.tech-tab:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tech-tab.nav-link.active, .tech-tab.nav-link:hover {
  width: 190px;
  margin-right: -20px;
  border-radius: 100px;
  border: 1px solid #ffffff00;
  background: #243a75;
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.tech-tab.nav-link.active::after, .tech-tab.nav-link:hover::after {
  content: "";
  position: absolute;
  top: -68%;
  right: 0;
  transform: translateX(50%);
  width: 70px;
  height: 91px;
  background: #1d2e5a;
  -webkit-mask: linear-gradient(#000 0 0), radial-gradient(circle 34px at 0% 50%, transparent 99%, #000 100%);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#000 0 0), radial-gradient(circle 34px at 2% 50%, transparent 97%, #000 104%);
  mask-composite: exclude;
}

.tech-tab.nav-link.active::before, .tech-tab.nav-link:hover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 92%;
  height: 40px;
  background: #0027f0;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tech-tab.nav-link span {
  position: relative;
  z-index: 99;
}

/* RIGHT CARD */
.tech-content {
  padding: 30px 20px 80px;
  flex: 1;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  min-height: 360px;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.tech-icon img {
  height: 50px;
}

/* RESPONSIVE */
.tech-heading h2 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tech-heading p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 142.857% */
}

/* Blog page */
.blog-card {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7.5px);
  overflow: hidden;
}

.blog-content {
  padding: 20px;
}

.blog-img {
  width: 100%;
}

.blog-content h3 {
  color: #ffffff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.4px;
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.blog-content p {
  color: #7b88a8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 11px 0;
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.blog-content a {
  color: #17cbf2;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
}

.view-all a {
  border-radius: 8px;
  background: #17cbf2;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  padding: 13px 24px;
  text-decoration: none;
  display: inline-block;
}

.view-all a:hover {
  background: #12b7da;
}

/* LETS TALK ABOUT PROJECT SECTION */
.lets-talk-section {
  position: relative;
  border-radius: 40px 40px 0 0;
  background: #fff;
  padding: 70px 30px 30px;
}

.talk-heading {
  margin-bottom: 20px;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.8px;
}

.talk-description {
  margin-bottom: 40px;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.talk-process {
  margin-top: 30px;
}

.process-title {
  margin-bottom: 20px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 215%;
}

.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  object-fit: contain;
}

/* FORM STYLES */
.talk-form-wrapper {
  padding: 45px;
  position: relative;
  margin-bottom: -18%;
  border-radius: 25px;
  border: 1px solid #e3e3e3;
  background: #fff;
}

.form-title {
  margin-bottom: 30px;
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.talk-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  background-color: #f6f6f6;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  box-shadow: none;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #a0a0a0;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: "DM Sans", sans-serif;
}

.btn-submit {
  padding: 15px 48px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  border-radius: 10px;
  background: var(--Primary, #0027f0);
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-submit:hover {
  background: #0020c0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 39, 240, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.real-stories .slick-track {
  display: flex;
}

.real-stories .tech-heading .right-dicrip {
  display: none;
}

/* RESPONSIVE STYLES */
@media (max-width:768px) {
  .lets-talk-section {
    padding: 60px 0;
  }

  .talk-heading {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
  }

  .talk-description {
    font-size: 15px;
    margin-bottom: 30px;
    color: #666;
  }

  .talk-process {
    margin-top: 25px;
  }

  .process-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1a1a1a;
  }

  .process-list {
    gap: 12px;
  }

  .process-item {
    font-size: 14px;
    gap: 10px;
    color: #333;
  }

  .talk-form-wrapper {
    padding: 35px;
    margin-top: 30px;
    border-radius: 16px;
  }

  .form-title {
    font-size: 23px;
    margin-bottom: 25px;
    color: #1a1a1a;
  }

  .talk-form {
    gap: 18px;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .btn-submit {
    padding: 13px 40px;
    font-size: 15px;
    margin-top: 10px;
  }

}

@media (max-width:480px) {
  .lets-talk-section {
    padding: 50px 20px;
    background: #f5f5f5;
  }

  .talk-heading {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
  }

  .talk-description {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #666;
  }

  .talk-process {
    margin-top: 20px;
  }

  .process-title {
    font-size: 15px;
    margin-bottom: 12px;
    color: #1a1a1a;
  }

  .process-list {
    gap: 10px;
  }

  .process-item {
    font-size: 13px;
    gap: 8px;
    color: #333;
  }

  .check-icon {
    width: 20px;
    height: 20px;
  }

  .talk-form-wrapper {
    padding: 25px;
    margin-top: 0;
    border-radius: 14px;
    background: #fff;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
  }

  .talk-form {
    gap: 15px;
  }

  .form-label {
    font-size: 13px;
    color: #333;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 13px;
    padding: 11px 12px;
    background: #f9f9f9;
    border-color: #e8e8e8;
  }

  .form-textarea {
    min-height: 100px;
  }

  .btn-submit {
    padding: 12px 32px;
    font-size: 14px;
    margin-top: 8px;
    border-radius: 6px;
  }

}

/* FOOTER SECTION */
.footer-content {
  border-radius: 40px;
  background: #000;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 183px 100px 27px 100px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  gap: 15px;
}

.footer-logo img {
  max-width: 160px;
  height: auto;
  filter: brightness(1.1);
  margin-bottom: 16px;
}

.footer-description {
  margin: 0;
  color: #ebebeb;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link svg path {
  transition: all 0.3s ease;
}

.social-link:hover svg path {
  fill: #17cbf2;
}

.footer-heading {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: #ebebeb;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.footer-links a:hover {
  color: #17cbf2;
  transform: translateX(5px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #ebebeb;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.contact-icon {
  font-size: 16px;
  min-width: 20px;
  display: flex;
  align-items: center;
}

.contact-item a {
  color: #fff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  margin: 0;
  color: #ebebeb;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal-links li {
  display: inline-block;
}

.footer-legal-links a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: #ebebeb;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.footer-legal-links a:hover {
  color: #17cbf2;
}

/*service-css-start*/
.hero-section.service-bnnr {
  min-height: auto;
}

.maximize-content h3 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.maximize-content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.services-slide-wrapper {
  position: relative;
}

.services-slide-wrapper .slick-track {
  display: flex;
}

.services-slide {
  padding: 20px;
  position: relative;
  background: linear-gradient(126deg, rgba(14, 12, 21, 0.5) 0.56%, rgba(14, 12, 21, 0) 99.05%);
  backdrop-filter: blur(1px);
  z-index: 1;
  height: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(88deg, rgba(9, 14, 219, 0.66) -15.78%, rgba(231, 61, 196, 0.66) 102.06%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.services-slide img {
  height: 44px;
  width: 44px;
  margin-bottom: 25px;
}

.services-slide h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.services-slide p {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}

.services-slide-wrapper .slick-prev {
  left: auto;
  margin-right: 40px;
}

.services-slide-wrapper .slick-prev, .services-slide-wrapper .slick-next {
  right: 0;
  top: -30px;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50px;
  opacity: 1;
}

.services-slide-wrapper .slick-prev:hover, .services-slide-wrapper .slick-next:hover {
  background-color: #0027f0;
}

.services-slide-wrapper .slick-prev:hover::before, .services-slide-wrapper .slick-next:hover::before {
  filter: brightness(0) invert(1);
}

.services-slide-wrapper .slick-prev:before, .services-slide-wrapper .slick-next::before {
  opacity: 1;
  background-repeat: no-repeat;
  color: transparent;
  height: 12px;
  width: 12px;
  background-size: contain;
}

.services-slide-wrapper .slick-prev:before {
  background-image: url(../img/left-arrow.svg);
}

.services-slide-wrapper .slick-next::before {
  background-image: url(../img/right-arrow.svg);
}

.service-counter {
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(217 217 217 / 30%);
}

.service-counter .counter-box {
  text-align: center;
}

.secondary-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.technologies-lft p {
  font-size: 16px;
  line-height: 1.6;
}

.technologies-cards-main {
  padding-top: 1px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.technologies-cards-main small {
  color: #000;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
}

.technologies-cards {
  padding: 16px;
  border-radius: 15px;
  background: radial-gradient(120% 100% at 100% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #0a1f5c 0%, #081a4a 45%, #050f2e 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.dot-txt {
  position: relative;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding-left: 10px;
  display: none;
}

.dot-txt::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  height: 7px;
  width: 6px;
  border-radius: 25px;
  background-color: #17cbf2;
}

.choose-cards-main {
  padding-top: 1px;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.choose-cards {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #3eaead;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  height: 100%;
}

.choose-cards h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.choose-cards p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
}

.faq-item .accordion-button {
  border-radius: 10px;
  background-color: #fff !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 6px 0 rgba(0, 0, 0, 0.07);
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
}

.faq-item p {
  color: #0f172a;
}

/*service-css-end*/
.testimonal-slide .services-slide::before, .testimonal-slide .services-slide {
  border-radius: 32px;
  overflow: hidden;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 48px;
}

.client-info img {
  margin: 0px;
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.client-info h4 {
  color: #fff;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 120% */
  margin-bottom: 0px;
}

.client-info p {
  color: #fff;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}

.testimonal-slide .slick-slide {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonal-slide .slick-dots li button:before {
  display: none;
}

.testimonal-slide .slick-dots {
  bottom: -35px;
  display: none !important;
}

.testimonal-slide .slick-dots li button {
  height: 10px;
  width: 10px;
  background: #fff;
  border-radius: 50px;
  opacity: 0.8;
  transition: 0.3s;
}

.testimonal-slide .slick-dots li {
  width: auto;
  height: auto;
}

.testimonal-slide .slick-dots li.slick-active button {
  width: 25px;
  background: linear-gradient(88deg, rgba(9, 14, 219, 0.66) -15.78%, rgba(231, 61, 196, 0.66) 102.06%);
  opacity: 1;
}

.about-heading h2 {
  color: #fff;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.about-dicrip p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}

.about-card {
  border-radius: 50px;
  background: var(--Dark, #1c1a1a);
  padding: 30px 40px 0px;
  overflow: hidden;
}

.about-card h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 125% */
  text-transform: uppercase;
}

.card-info {
  display: flex;
  align-items: self-start;
}

.card-info span {
  background: linear-gradient(183deg, #0147ff 35.74%, rgba(1, 71, 255, 0) 82.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Syne;
  font-size: 300px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  margin-bottom: -14%;
}

.card-info p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.know-about {
  position: relative;
}

.know-about::after {
  content: "";
  position: absolute;
  opacity: 0.5;
  background: #000;
  mix-blend-mode: soft-light;
  inset: 0;
  z-index: -1;
}

.get-know-info h3 {
  color: #fff;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px;
  margin-bottom: 18px;
}

.get-know-info p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.about-info-card {
  border-radius: 50px;
  background: var(--color-white-solid, #fff);
  padding: 30px;
  height: 510px;
}

.about-info-card h4 {
  color: #000;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.our-mission {
  background-image: url(../img/our-mission.png);
  background-size: cover;
  background-position: center;
}

.our-vision {
  background-image: url(../img/our-vision.png);
  background-size: cover;
  background-position: center;
}

.about-info-card p {
  color: var(--color-black-solid, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 175% */
}

/*portfolio-page-css-start*/
.portfolio-cards {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7.5px);
  margin-bottom: 40px;
  position: relative;
}

.portfolio-cards-content {
  padding: 25px;
}

.portfolio-cards-content h5 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}

.portfolio-cards-content p {
  font-size: 15px;
  margin-bottom: 15px;
}

.portfolio-cards-content a img {
  width: 130px;
}

.portfolio-cards-img {
  padding-top: 40px;
}

.portfolio-cards-img img {
  max-width: 100%;
}

.maximize-img img {
  width: 100%;
}

/*portfolio-page-css-end*/

/*cms-css-start*/
.cms-bnnr, .blog-bnnr {
  height: 650px;
  min-height: auto;
  position: relative;
}

.cms-container, .blog-dtl-container {
  margin-top: -25%;
  position: relative;
}

.cms-cards, .blog-main {
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
  color: #333;
}

.cms-cards p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.cms-cards h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 15px 0;
}

.cms-cards h6 {
  font-size: 18px;
  font-weight: 600;
}

.cms-cards li {
  list-style-type: none;
  position: relative;
  padding-left: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cms-cards li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  height: 5px;
  width: 5px;
  background-color: #333;
  border-radius: 25px;
}

/*cms-css-end*/

/*blog-css-start*/
.blog-container {
  margin-top: -14%;
  position: relative;
}

.hero-section.blog-bnnr .hero-inner-content {
  padding: 0px 0px 35px;
}

.blog-main h2 {
  color: #333;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-page-cards {
  margin-bottom: 20px;
}

.blog-page-img {
  height: 255px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.blog-page-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
}

.blog-page-cards:hover .blog-page-img img {
  transform: scale(1.1);
}

.blog-author span {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  background-color: #ebebeb;
  font-size: 12px;
  color: #000;
}

.blog-author {
  font-size: 12px;
  font-weight: 500;
  color: #00000080;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.blog-page-content h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.pagination-btn {
  display: flex;
  height: 40px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
  border: 1px solid #828282;
  background-color: #fff;
  transition: 0.3s;
}

.pagination-btn:hover {
  background-color: #0027f0;
  border-color: #0027f0;
  color: #fff;
}

.pagination-btn:hover img {
  filter: brightness(0) invert(1);
}

.pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  display: none;
}

.custom-pagination {
  gap: 10px;
}

.custom-pagination .page-link {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0;
  border-radius: 10px !important;
  border: 1px solid #828282;
  color: #828282;
  font-size: 15px;
  font-weight: 500;
  box-shadow: none;
  transition: 0.3s;
}

.custom-pagination .page-item.active .page-link, .custom-pagination .page-link:hover {
  background-color: #0027f0;
  border-color: #0027f0;
  color: #fff;
}

.blog-dtl-img .blog-dtl-thumb {
  height: 530px;
  margin-bottom: 50px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.blog-dtl-lft h1 {
  font-size: 35px;
  font-weight: 700;
  color: #1b1b1f;
  margin-bottom: 15px;
}

.blog-dtl-lft h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1b1b1f;
  margin: 15px 0;
}

.blog-dtl-lft h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1b1b1f;
  margin: 15px 0;
}

.blog-dtl-lft p {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}

.social-share {
  background-image: url(../img/social-card-bg.png);
  padding: 20px;
  background-repeat: no-repeat;
  border-radius: 20px;
  background-size: cover;
  margin-bottom: 30px;
}

.social-share h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.social-share-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-article h5 {
  color: #1b1b1f;
  font-size: 20px;
  font-weight: 600;
}

.blog-article-list li {
  list-style-type: none;
}

.blog-article-list li a {
  display: inline-block;
  padding: 10px 0 10px 20px;
  color: #1b1b1f;
  font-size: 16px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: 0.3s;
}

.blog-article-list li a:hover, .blog-article-list li a.active {
  border-color: #0027f0;
  color: #0027f0;
}

.blog-rgt.sticky-top {
  z-index: 9;
  top: 100px;
}

/*blog-css-end*/

/*service-pages-css-start*/
.multi-section.service-page-multi::after {
  background-size: cover;
  background-position: center;
}

/*service-pages-css-end*/
.social-link-cnt ul li {
  list-style: none;
  margin-bottom: 15px;
}

.hero-section.contact-us-bnnr {
  min-height: auto !important;
  margin-top: 15%;
}

.contact-us-page h1 {
  color: #000;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}

.contact-us-page small {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.contact-form input, .contact-form .form-textarea {
  border-bottom: 1px solid #cacaca;
  background: transparent;
  display: flex;
  padding: 10px 10px 25px 10px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: #5a5a5a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.contact-right h5 {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}

.contact-right h3 {
  position: relative;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}

.contact-right h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 27px;
  height: 3px;
  background: #000;
}

.contact-right a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-right p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-top: 15px;
}

.portfolio-cards .row {
  margin-left: 0;
  margin-right: 0;
}

.slide-image .work-logo {
  width: 140px;
}

.top-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 99;
}

.top-btn .go-top {
  outline: none;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
  border: 0;
  background: linear-gradient(86deg, #0027f0 1.09%, #36d0ff 97.79%);
  color: #fff;
  -webkit-animation: mover 1s infinite  alternate;
  animation: mover 1s infinite  alternate;
  display: none;
}

.top-btn .go-top img {
  transform: rotate(315deg);
  filter: brightness(0) invert(1);
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }

}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }

}

.custom-cta-modal .modal-content {
  border-radius: 25px;
  border: 1px solid #E3E3E3;
}

.custom-cta-modal .modal-content .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 0;
  z-index: 9;
  box-shadow: none !important;
}

.custom-cta-modal .modal-body {
  padding: 15px;
}

.custom-cta-modal-img img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}

.custom-cta-modal-img {
  height: 650px;
}

.custom-cta-modal-img video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.custom-cta-form {
  padding: 0 20px;
}

.custom-cta-form h3 {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

.custom-cta-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-cta-form form label {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
}

.custom-cta-form form .form-control, .custom-cta-form form .form-select {
  height: 46px;
  border-radius: 0;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
  box-shadow: none;
  color: #000;
  font-weight: 500;
}

.custom-cta-form form textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: "DM Sans", sans-serif;
}

/*media-query-start*/
@media (max-width:1299.98px) {
  .card-content h3 {
    margin-bottom: 0;
    font-size: 20px;
  }

  .container, .container-lg, .container-md, .container-sm {
    max-width: 1080px;
  }

  .home-cta-box h2 {
    font-size: 40px;
  }

  .home-cta-box p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .blog-content h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .talk-heading {
    margin-bottom: 0;
    font-size: 32px;
  }

  .talk-form {
    gap: 10px;
  }

  .form-textarea {
    max-height: 90px;
  }

  .hero-content h1 {
    font-size: 50px;
    line-height: 65px;
  }

  .maximize-content h3 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 32px;
  }

  .services-slide h4 {
    font-size: 18px;
  }

  .counter-box h3 {
    font-size: 60px;
  }

  section {
    padding: 60px 0px;
  }

  .tech-heading h2 {
    font-size: 26px;
  }

  .secondary-title {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .faq-item .accordion-button {
    font-size: 18px;
  }

  .hero-section.service-bnnr {
    padding-top: 30px;
  }

  .hero-section.service-bnnr .hero-inner-content {
    padding-bottom: 0;
  }

  .client-info {
    margin-top: 20px;
  }

  .slide-content h3 {
    font-size: 28px;
  }

  .slide-content h3 br {
    display: none;
  }

  .default-box span {
    font-size: 32px;
    margin-bottom: 0;
  }

  .industries-heading {
    font-size: 52px;
  }

  .industries-content {
    left: 10%;
    top: 10%;
  }

  .card-info span {
    font-size: 200px;
    margin-bottom: -14%;
  }

  .card-info p {
    font-size: 16px;
    line-height: 1.4;
  }

  .about-card h4 {
    font-size: 20px;
  }

  .get-know-info h3 {
    font-size: 32px;
    line-height: 1.4;
  }

  .get-know-info p {
    font-size: 16px;
  }

  .portfolio-cards-content {
    padding: 0 14px 0px;
  }

  .portfolio-cards-content h5 {
    font-size: 24px;
  }

  .list-item img {
    width: 40px;
  }

  .list-item {
    gap: 10px;
    font-size: 14px;
  }

  .slide-image .featured-work-img {
    max-width: 60%;
    left: -8%;
    bottom: -30px;
  }

  .contact-us-page h1 {
    font-size: 32px;
    line-height: 1;
  }

  .contact-right a {
    font-size: 20px;
  }

}

@media (max-width:991.98px) {
  .home-cta-box img {
    display: none;
  }

  .home-cta-box .btn-border img {
    display: block;
  }

  .maximize-img {
    margin-bottom: 20px;
  }

  .maximize-content h3 {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .section-heading {
    font-size: 25px;
  }

  .section-subtext {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 52px;
  }

  .hero-content p {
    margin: 10px 0 !important;
    font-size: 14px;
    line-height: 24px;
  }

  .featured-work h2 {
    font-size: 25px;
  }

  section {
    padding: 30px 0px;
  }

  .secondary-title {
    font-size: 25px;
    margin-bottom: 10px !important;
  }

  .faq-item .accordion-button {
    padding: 10px;
  }

  .portfolio-cards {
    padding: 15px 15px 0 15px;
  }

  .portfolio-cards-content h5 {
    font-size: 20px;
  }

  .portfolio-cards-content {
    padding: 0 0px 0px;
    margin-top: 10px;
  }

  .testimonal-slide .slick-dots {
    display: block !important;
  }

  .blog-dtl-img .blog-dtl-thumb {
    height: 400px;
    margin-bottom: 20px;
  }

  .blog-dtl-lft h1 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .blog-dtl-lft h2 {
    font-size: 22px;
    margin: 8px 0;
  }

  .blog-dtl-lft h3 {
    font-size: 20px;
    margin: 8px 0;
  }

  .cms-bnnr, .blog-bnnr {
    height: 400px;
  }

  .cms-cards, .blog-main {
    padding: 15px;
  }

  .cms-container, .blog-dtl-container {
    margin-top: 0;
  }
  .btn-border{
    width: auto;
    padding: 8px 20px;
    font-size: 15px;
  }

}

@media (max-width:767.98px) {
  .hero-section.service-bnnr {
    padding-top: 90px;
  }

  .choose-cards {
    padding: 15px;
  }

  .choose-cards h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .faq-item .accordion-button {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }

  .portfolio-cards-img {
    padding-top: 0;
  }

  .tech-icon {
    font-size: 12px;
  }

  .technologies-cards {
    height: auto;
  }

  .technologies-cards-icon {
    height: 100px;
  }

  .technologies-cards-main {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  .technologies-cards-main small {
    font-size: 13px;
  }

  .tech-content {
    padding: 20px 10px 20px;
  }

  .tech-icon {
    gap: 5px;
  }

  .tech-icon img {
    height: 40px;
  }

  .tech-icons {
    gap: 10px;
  }

  .tech-tabs {
    gap: 8px;
  }

  .tech-wrapper {
    padding: 20px 15px;
  }

  .services-slide-wrapper {
    margin-bottom: 30px;
  }

  .blog-dtl-img .blog-dtl-thumb {
    height: 250px;
  }

}

/*media-query-end*/
@media (max-width:991px) {
  .tech-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .tech-tab, .tech-tab.nav-link.active {
    width: auto !important;
    margin-right: 0;
  }

  .tech-content {
    margin-left: 0;
    width: 100%;
    padding: 30px 20px 30px;
  }

  .tech-wrapper {
    padding: 30px 20px;
  }

  .tech-heading h2 {
    font-size: 28px !important;
  }

  .tabs-tech-section {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .tech-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-list a {
    flex: 0 0 100%;
    height: 100%;
  }

  .industries-heading {
    font-size: 40px;
  }

  .industries-content {
    left: 5%;
    top: 4%;
  }

  .industries-info {
    left: 30px;
  }

  .industries-services {
    background-position: center;
    height: auto;
  }

  .industries-item {
    border-right: 0;
    border-bottom: 1px solid #ffffff38;
  }

  .card-content {
    text-align: center;
  }

}

@media (max-width:767px) {
  .hero-content h1 {
    font-size: 32px;
    line-height: 1.4;
  }

  .hero-section {
    padding-bottom: 20px;
    height: auto;
    min-height: auto;
  }

  .hero-inner-content {
    padding: 0px 0px 35px;
  }

  .project-logo img {
    max-width: 70px;
    object-fit: contain;
  }

  .technology-list .list-item img {
    width: 42px;
  }

  .technology-list {
    gap: 10px;
    flex-wrap: wrap;
  }

  .list-item {
    gap: 10px;
    padding: 4px 20px;
    font-size: 14px;
    flex: 0 0 100%;
  }

  .section-heading {
    font-size: 28px !important;
  }

  .counter-box h3 {
    margin-bottom: 5px;
    font-size: 50px;
  }

  .counter-box {
    padding: 0px 0px;
  }

  /* section {
     padding: 60px 0px;
   }*/
  .counter-section {
    background-size: cover;
  }

  .featured-work {
    padding: 40px 20px;
  }

  .slide-image .featured-work-img {
    position: relative;
    left: 0;
    bottom: 0px;
  }

  .slide-content h3 {
    font-size: 20px;
  }

  .slide-content ul li {
    text-align: left;
  }

  .industries-list a {
    flex: 0 0 100%;
    height: 100%;
  }

  .industries-heading {
    font-size: 25px;
  }

  .industries-content {
    left: 5%;
    top: 4%;
  }

  .industries-info {
    left: 30px;
  }

  .industries-services {
    background-position: center;
    height: auto;
  }

  .industries-item {
    border-right: 0;
    border-bottom: 1px solid #ffffff38;
  }

  .industries-content {
    position: relative;
  }

  .home-cta-box h2 {
    font-size: 25px;
  }

  .home-cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-content {
    padding: 120px 20px 30px;
  }

  .blog-card {
    margin-bottom: 20px;
  }

  .tech-tab.nav-link.active::after, .tech-tab.nav-link:hover::after {
    display: none;
  }

  .tech-tab.nav-link.active::before, .tech-tab.nav-link:hover::before {
    top: 0;
    right: 0;
    width: 100%;
  }

  .home-cta-box {
    padding: 20px;
  }

  .client-info h4 {
    font-size: 18px;
  }

  .client-info {
    margin-top: 20px;
  }

  .services-slide-wrapper .slick-prev, .services-slide-wrapper .slick-next {
    right: 20px;
    top: auto;
    bottom: -60px;
  }

  .blog-content h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .slide-image::after {
    display: none;
  }

  .about-card {
    padding: 30px;
  }

  .about-heading h2 {
    font-size: 42px;
  }

  .about-dicrip p {
    font-size: 16px;
    line-height: 1.4;
  }

  .card-info span {
    font-size: 150px;
    line-height: normal;
    margin-bottom: 0;
    display: none;
  }

  .card-info {
    flex-wrap: wrap;
  }

  .card-info.mobile-card {
    flex-direction: column-reverse;
  }

  .about-card h4 {
    font-size: 20px;
    line-height: 1.4;
    text-align: left !important;
  }

  br {
    display: none;
  }

  /*
   .card-info.mobile-card {
     flex-direction: row;
   }*/
  .get-know-info h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 18px;
  }

  .get-know-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .about-info-card h4 {
    font-size: 24px;
  }

  .about-info-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .about-info-card {
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-us-page h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .social-link-cnt ul li {
    display: inline-block;
    margin-right: 10px;
  }

  .contact-right {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-legal-links {
    gap: 10px;
  }

  .footer-legal-links a, .copyright {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 12px 0 0;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-links {
    gap: 0;
  }

}

@media(max-width:575.98px) {
  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  .about-card h4 {
    font-size: 16px;
  }

  .about-card {
    border-radius: 20px;
    padding: 20px;
  }

  .about-heading h2 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 22px !important;
  }

  .blog-dtl-img .blog-dtl-thumb {
    height: 150px;
  }

  .blog-dtl-lft h1 {
    font-size: 20px;
  }

  .blog-dtl-lft h2 {
    font-size: 18px;
  }

  .blog-dtl-lft h3 {
    font-size: 16px;
  }

  .top-btn {
    right: 30px;
    bottom: 20px;
  }
  .contact-us-page h1 br{
    display: block;
  }

}


