
/*=====================================
HERO
======================================*/

.hero {
  position: relative;
  min-height: 100vh;

  background: #071326 url("/app_themes/images/slider-bg.png") center/cover
    no-repeat;

  overflow: hidden;

  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(5, 14, 35, 0.8),
    rgba(4, 16, 40, 0.5)
  );
}

/*=====================================
CONTAINER
======================================*/

.container1 {
  position: relative;

  z-index: 2;

  width: 1120px;

  max-width: 92%;

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  padding-top: 25px;
  padding-top: 105px;
}

.left-content {
  width: 610px;

  padding-top: 10px;
}

.right-content {
  flex: 1;

  position: relative;
}

/*=====================================
NEED
======================================*/

.need-title {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 0px;
}

.need-title span {
  height: 2px;

  background: #13d9c9;

  display: block;
  
}

.need-title span:first-child {
  width: 30px;
}

.need-title span:last-child {
  flex: 1;
  background: linear-gradient(90deg, #13d9c9, transparent);
}

.need-title p {
  color: #12d9c9;

  font-size: 22px;

  font-weight: 500;
  margin-bottom: 0;
}

/*=====================================
BRAND
======================================*/

.brand {
  font-family: "Gotham-Black", "Bebas Neue", sans-serif !important;

  font-size: 72px;

  line-height: 0.82;

  letter-spacing: 2px;

  color: #fff;

  text-transform: uppercase;
  margin-bottom: -5px;
  margin-top: 0;
}

/*=====================================
SOLUTION
======================================*/

.solution {
      margin-top: 0px;
    font-family: "Gotham-Black", "Bebas Neue", sans-serif !important;
    font-size: 79px;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}

.solution .word-anim {
  background: linear-gradient(180deg, #17b7a6, #17b7a6);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

/*=====================================
HIRE US
======================================*/

.hire {
  margin-top: 18px;

  font-size: 28px;

  line-height: 1;

  font-weight: 700;
  margin-bottom: 0;
}

/*=====================================
SERVICE
======================================*/

.service {
  margin-top: -6px;

  font-size: 40px;

  line-height: 1;

  font-weight: 700;

  color: #fff;
}

.service .highlight-text {
  background: linear-gradient(180deg, #17b7a6, #17b7a6);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
  
}
.service .highlight-text{
  font-size: 40px;
}
/*=====================================
KARACHI
======================================*/

.karachi {
  position: relative;

  width: 100%;

  margin: 18px 0 14px;

  text-align: center;

  /* The requested gradient behind IN KARACHI */
  background: linear-gradient(
    90deg,
    rgba(216, 17, 89, 0) 0%,
    rgba(216, 17, 89, 0.4) 30%,
    rgba(216, 17, 89, 0.6) 50%,
    rgba(216, 17, 89, 0.4) 70%,
    rgba(216, 17, 89, 0) 100%
  );
  padding: 5px 0;
}

.karachi::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 50%;

  height: 1px;

  transform: translateY(-50%);

  /* A solid line that fades out on the sides and leaves a gap in the middle for text */
  background: linear-gradient(
    90deg,
    rgba(216, 17, 89, 0) 0%,
    rgba(216, 17, 89, 1) 35%,
    transparent 36%,
    transparent 64%,
    rgba(216, 17, 89, 1) 65%,
    rgba(216, 17, 89, 0) 100%
  );
  z-index: 1;
  display:none;
}

.karachi span {
  position: relative;

  display: inline-block;

  padding: 0 26px;

  background: transparent;

  font-size: 20px;

  color: #fff;

  letter-spacing: 1px;

  z-index: 2;

  animation: slideTopBottom 1s ease-in-out infinite alternate;
}

/*=====================================
DESCRIPTION
======================================*/

.desc {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.desc span {
  color: #ff3d8e;

  font-weight: 500;
}

/*=====================================
STATS
======================================*/

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
    margin-bottom: 15px;
}

.item {
  position: relative;

  text-align: center;

  padding: 0 20px;
}

.item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 12px;

  width: 1px;
  height: 55px;

  background: rgba(255, 255, 255, 0.15);
}

.item i {
  font-size: 28px;

  color: #ffffff;

  margin-bottom: 8px;

  transition: 0.35s;
}

.item:hover i {
  color: #1de0d5;
  transform: translateY(-6px);
}

.item h4 {
  font-size: 16px;

  font-weight: 600;

  margin-bottom: 0px;

  color: #dffcff;
}

.item p {
  font-size: 12px;

  color: #d7dce6;

  line-height: 1.4;
}

/*=====================================
BUTTON AREA
======================================*/

.buttons {
  display: flex;

  align-items: center;

  gap: 30px;

  margin-top: 15px;
}

/*=====================================
COMMON BUTTON
======================================*/

.btn-primary,
.btn-outline {
  width: 220px;
  height: 60px;

  border-radius: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  font-size: 18px;

  font-weight: 500;

  transition: 0.35s;
}

/*=====================================
GET STARTED
======================================*/

.btn-primary {
  color: #fff;

  background: linear-gradient(90deg, #17b7a6, #17b7a6);
}

.btn-primary:hover {
  transform: translateY(-6px);

  box-shadow: 0 25px 50px rgba(0, 255, 210, 0.3);
  text-decoration: none !important;
}

/*=====================================
VIEW PORTFOLIO
======================================*/

.btn-outline {
  color: #fff;

  border: 2px solid #13d9c9;

  background: transparent;
}

.btn-outline:hover {
  background: #13d9c9;

  color: #061324;
  text-decoration: none !important;
}

/*=====================================
BUTTON ICON
======================================*/

.buttons i {
  font-size: 26px;
}

/*=====================================
BOTTOM SPACE
======================================*/

.left-content {
  padding-bottom: 80px;
}

/*========================================
BACKGROUND DECORATION
========================================*/

/* .hero::before {

            content: "";

            position: absolute;

            width: 320px;
            height: 320px;

            top: -160px;
            right: -160px;

            background: linear-gradient(135deg, #1434ff, #0d1f80);

            transform: rotate(45deg);

            opacity: .35;

        }

        .hero::after {

            content: "";

            position: absolute;

            width: 420px;
            height: 420px;

            bottom: -260px;
            left: -220px;

            border: 1px solid rgba(0, 255, 255, .08);

            transform: rotate(45deg);

        } */

/*========================================
DOTS
========================================*/

.need-title::before {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  left: -35px;
  top: -10px;

  opacity: 0.18;

  background-image: radial-gradient(#7d4dff 2px, transparent 2px);

  background-size: 16px 16px;
}

/*========================================
RIGHT SIDE
========================================*/

.right-content {
  display: flex;

  justify-content: center;

  align-items: center;

  align-self: center;
}

.right-content img {
  width: 760px;

  max-width: none;

  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));

  animation: float 5s ease-in-out infinite;
}

/*========================================
FLOAT
========================================*/

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*========================================
TEXT ANIMATION
========================================*/

.word-anim {
  display: inline-block;
  opacity: 0;
  animation: slideUpFade 0.6s ease-out forwards;
  color: #fff !important;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideTopBottom {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*========================================
TEXT SELECTION
========================================*/

::selection {
  background: #11d9cb;

  color: #fff;
}

/*========================================
SCROLLBAR
========================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #071326;
}

::-webkit-scrollbar-thumb {
  background: #11d9cb;

  border-radius: 20px;
}

/*========================================
RESPONSIVE
========================================*/

@media (max-width: 1200px) {
  .container1 {
    flex-direction: column;

    align-items: center;

    text-align: center;
    padding-top: 20px;
  }

  .left-content {
    width: 100%;
    padding-bottom: 0px;
  }

  .right-content {
    margin-top: 60px;

    min-height: auto;

    justify-content: center;
  }

  .brand {
    font-size: 70px;
  }

  .solution {
    font-size: 60px;
  }

  .service {
    font-size: 42px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
  }

  .item::after {
    display: none;
  }

  .buttons {
    justify-content: center;

    flex-wrap: wrap;
  }
  .need-title span:first-child {
    width: 43%;
  }
  .need-title p{
    width: 14%;
  }
  .need-title span:last-child{
    width: 43%;
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 0;
  }
  .container1{
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
  }
  .container1 {
    padding-top: 0px;
  }
  .need-title {
    justify-content: center;
  }

  .brand {
    font-size: 50px;
  }

  .solution {
    font-size: 50px;
    margin-top: 10px;
  }

  .hire {
    font-size: 24px;
  }

  .service {
    font-size: 28px;
  }

  .karachi span {
    font-size: 22px;
  }

  .desc {
    font-size: 18px;

    line-height: 1.7;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .btn-primary,
  .btn-outline {
        width: 100%;
        max-width: 200px;
        height: 50px;
        font-size: 19px;
  }
  .buttons i {
    font-size: 18px;
  }

  .right-content img {
    width: 100%;

    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 50px;
  }

  .solution {
    font-size: 50px;
  }

  .service {
    font-size: 28px;
  }

  .need-title p {
    font-size: 22px;
  }

  .karachi span {
    font-size: 18px;

    padding: 0 16px;
  }
  /* Stats on Mobile */
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 0;
  }
  .item {
    padding: 0 5px;
  }
  .item:nth-child(2n)::after {
    display: none;
  }
  .item i {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .item h4 {
    font-size: 14px;
    font-weight: 400;
  }
  .buttons{
    gap: 10px;
  }
}

/*========================================
TRUSTED SECTION
========================================*/

.trusted-section {
  padding: 30px 0 0 0;
  position: relative;
  overflow: hidden;
  color: #1a153a;
}

/* Dots pattern on sides */
.trusted-section::before,
.trusted-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 250px;
  top: 20px;
  opacity: 0.2;
  background-image: radial-gradient(#7d4dff 2px, transparent 2px);
  background-size: 16px 16px;
}

.trusted-section::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.trusted-section::after {
  right: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.trusted-container {
  width: 1280px;
  max-width: 92%;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.trusted-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.trusted-subtitle span {
  height: 2px;
  width: 30px;
  background: #13d9c9;
  display: block;
}

.trusted-subtitle p {
  color: #13d9c9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.trusted-heading {
  font-size: 42px;
    font-weight: 700;
  color: #513474;
    margin-bottom: 0px;
    /* padding-bottom: 22px; */
    font-family: Gotham-Black;
    padding-bottom: 10px;
}

.trusted-desc {
  font-size: 16px;
  color: #513474;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}
.trusted-heading-w{
font-size: 42px;
    font-weight: 700;
  color: #fff;
    margin-bottom: 0px;
    /* padding-bottom: 22px; */
    font-family: Gotham-Black;
    padding-bottom: 10px;

}
.trusted-desc-w{
color: #fff;
font-size: 16px;
max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.slider-container::before,
.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-container::before {
  left: 0;
  background: linear-gradient(
    to right,
    #fbfbfe 0%,
    rgba(251, 251, 254, 0) 100%
  );
}

.slider-container::after {
  right: 0;
  background: linear-gradient(to left, #fbfbfe 0%, rgba(251, 251, 254, 0) 100%);
}

.trusted-logos-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.trusted-logos-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.logo-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  transition: transform 0.3s;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.logo-card img {
  max-height: 75px;
  max-width: 100%;
  object-fit: contain;
}

.bottom-border {
  position: relative;
    height: 2px;
    background: linear-gradient(90deg, transparent, #13d9c9, #ff3d8e, transparent);
    margin-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.bottom-border-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fbfbfe;
  padding: 0 0px;
  color: #13d9c9;
  font-size: 24px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

/*========================================
INDUSTRIES SECTION
========================================*/
.industries-section {
  background-color: #513474;
  padding: 60px 0;
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.industry-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.industry-card .icon {
  font-size: 32px;
  margin-right: 20px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry-card .content1 h4 {
  font-size: 15px;
  font-weight: 700;
  color: #191244;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}

.industry-card .content1 p {
  font-size: 12px;
  color: #6a6a8b;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trusted-heading {
    font-size: 32px;
  }
.service .highlight-text {
  font-size: 28px !important;
}
  .logo-card {
    min-width: 140px;
    height: 90px;
    padding: 15px;
  }

  .slider-container::before,
  .slider-container::after {
    width: 50px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  
  /* Center .need-title */
  .need-title span:first-child,
  .need-title span:last-child {
    flex: 1;
  }

  .need-title span:first-child {
    background: linear-gradient(270deg, #13d9c9, transparent);
  }

  .need-title span:last-child {
    background: linear-gradient(90deg, #13d9c9, transparent);
  }

  .left-content {
    padding-bottom: 0px;
  }

  .karachi::before {
    background: transparent;
  }
  
}
