* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans"
}

a {

text-decoration: none;
    color: inherit;

}

/* Common-Padding */

.cm-pd {
  padding: 80px 20px;
}

.cm-bg {
  background: #F4F6F8;
}

.txt-lft {
  text-align: left;
}

.mt {
  margin-top: 20px;
}

.md {
  margin-bottom: 40px;
}

.cm-drk-bg {
  position: relative;
  background: #090915;
  overflow: hidden;
}

.container {
  max-width: 1680px;
  margin: auto;
  text-align: center;
}

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 20px;
  letter-spacing: 0;
  height: 56px;
}

.btn-gradient-border {
  border: 1px solid transparent;
  background: linear-gradient(260deg, #023737 -50%, #00807F 100%) padding-box, linear-gradient(180deg, #ffffff -10%, #01555500 30%) border-box;
}

/* Hover effect */
.btn-gradient-border:hover {
  opacity: 0.9;
}

/* arrow icon */
.arrow-icon {
  width: 10px;
  height: 10px;
}

/* Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 1px solid #0909151A;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2.8px;
  line-height: 22px;
}

.section-badge i {
  width: 9px;
  height: 9px;
  background: #FFC300;
  border-radius: 50%;
}

.section-badge-dark {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 1px solid #FFFFFF1A;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2.8px;
  background: rgba(255, 255, 255, 0.08);
  line-height: 22px;
}


.section-badge-dark i {
  width: 8px;
  height: 8px;
  background: #ffcc00;
  border-radius: 50%;
}

.section-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  color: #090915;
  letter-spacing: -1.5px;
}

/* white Title */
.section-title-white {
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.5px;
}

@media (max-width: 768px) {
  .cm-pd {
    padding: 60px 20px;
  }

  .section-title,
  .section-title-white {
    font-size: 28px;
    line-height: 34px;
  }

  .section-badge,
  .section-badge-dark {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2.8px;
    padding: 8px 20px;
    margin-bottom: 15px;
  }

.txt-lft {
    text-align: left !important;
}
}

/* -------------------------
   HEADER OVERLAY
-------------------------- */
.main-header {
      width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(18px);
}

.nav-capsule,
.services-menu,
.industry-mega {
  z-index: 9999;
}

.header-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cnt-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .cnt-mobile-only {
    display: inline-flex;
    margin-top: 20px;
  }
}

/* -------------------------
   LOGO AREA
-------------------------- */
.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 180px;
}

.logo-text h2 {
  font-size: 26px;
  color: #fff;
  margin: 0;
}

.logo-text span {
  font-size: 14px;
  color: #DDD;
  letter-spacing: 1px;
}

/* -------------------------
   NAVIGATION MENU
-------------------------- */

.nav-capsule {
  padding: 20px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
}

.nav-menu .nav-menu-main {
  padding: 20px;
}

.nav-menu a:hover {
  color: #f6c200;
}

/* =====================
   SERVICES DROPDOWN
===================== */
.services-menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: 360px;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 16px;
  list-style: none;
  display: none;
}

.services-dropdown:hover .services-menu {
  display: block;
}

.services-menu a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 12px;
}

.services-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.services-menu img {
  width: 24px;
  filter: brightness(0) invert(1);
}

/* =====================
   INDUSTRY MEGA MENU
===================== */
.industry-mega {
  position: absolute;
  top: 40px;
  left: -50%;
  transform: translateX(-50%);
  width: 680px;
  background: #2a2a2a;
  padding: 30px 40px;
  border-radius: 18px;
  display: none;
}

.industry-dropdown:hover .industry-mega {
  display: block;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 50px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
}

.industry-item img {
  width: 26px;
  filter: brightness(0) invert(1);
}

.industry-item:hover,
.industry-item.active {
  color: #f6c200;
}

/* =========================
   DROPDOWN HOVER FIX
========================= */

.services-menu::before,
.industry-mega::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.mobile-only {
  display: none;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {

  .header-container {
    width: 100%;
    padding: 0 20px;
  }

  /* HIDE mobile CTA */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  /* HAMBURGER */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle img {
    width: 38px;
    height: 38px;
  }

  /* NAV CAPSULE */
  .nav-capsule {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    border-radius: 18px;
    padding: 20px;
    display: none;
  }

  .nav-capsule.active {
    display: block;
        background: rgb(0 0 0 / 85%);
        backdrop-filter: blur(18px);
        border-radius: 0;
      border:none;
  }

  /* MENU STACK */
  .nav-menu {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* DROPDOWNS MOBILE */
  .services-menu,
  .industry-mega {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 12px;
    display: none;
  }

  .dropdown.active .services-menu,
  .dropdown.active .industry-mega {
    display: block;
  }

  /* INDUSTRY LIST MOBILE */
  .industry-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

/* -------------------------
  Banner
-------------------------- */

.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: #050b0b;
  overflow: hidden;
}

/* PATTERN IMAGE LAYER */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/asset/images/banner-bg.png") center/cover no-repeat;
  opacity: 0.75;
  z-index: 1;
}

/* DARK CORNER VIGNETTE */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 100%,
      rgba(0, 0, 0, 0.85) 150%);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: auto;
  padding: 180px 20px 100px;
  text-align: center;
}


/* =====================
   WELCOME BADGE
===================== */
.welcome-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
}

/* BADGE BOX */
.badge-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 10%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* LEFT DECOR */
.badge-box::before {
  content: "";
  position: absolute;
  left: -90px;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(190deg,
      rgba(246, 194, 0, 0.9),
      rgba(246, 194, 0, 0));
}

.badge-box::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(170deg,
      rgba(246, 194, 0, 0.9),
      rgba(246, 194, 0, 0));
}

/* DOTS */
.welcome-badge::before,
.welcome-badge::after {
  content: "";
  position: absolute;
  top: 47%;
  width: 5px;
  height: 5px;
  background: #f6c200;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(246, 194, 0, 0.9);
}

.welcome-badge::before {
  left: 25%;
}

.welcome-badge::after {
  right: 25%;
}

/* TEXT */
.badge-box span {
  font-size: 16px;
  letter-spacing: 2.8px;
  color: #ffffff;
  white-space: nowrap;
  line-height: 14px;
  font-weight: 600;
}

/* AVATARS */
.badge-box .avatars {
  display: flex;
  gap: 8px;
}

.badge-box .avatars img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 0.4px solid #FFFFFF;
  margin-left: -12px;
}


/* =====================
   HERO TEXT
===================== */
.hero-title {
  font-size: 90px;
  font-weight: 500;
  line-height: 100px;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -2.1px;
}

.hero-subtext {
  max-width: 733px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
  letter-spacing: 0;
  font-weight: 400;
}

/* =====================
   TAGS
===================== */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 50px;
}

.hero-tags .tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid #E0E1E6;
  background: rgba(255, 255, 255, 0.03);
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 26px;
  font-weight: 400;
}

.tag span {
  width: 8px;
  height: 8px;
  background: #ffdc00;
  border-radius: 50%;
}


@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 140px 20px 60px;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-tags .tag {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    line-height: 17.37px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.45px;
  }

  .hero-subtext {
    font-size: 18px;
    line-height: 28px;
  }

  .badge-box {
    padding: 10px 20px;
  }

  .badge-box .avatars {
    display: none;
  }

  .badge-box span {
    font-size: 14px;
    line-height: 9.96px;
    letter-spacing: 0.6px;
  }

  .welcome-badge::before,
  .welcome-badge::after,
  .badge-box::after,
  .badge-box::before {
    display: none;
  }

}

/* =====================
   Trusted Partners
===================== */

.trusted-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

.trusted-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.trusted-title {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 40px;
  line-height: 100%;
  letter-spacing: 0;
}

.trusted-title span {
  color: #008080;
}

/* Logos Row */
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trusted-logos img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* Hover (optional premium feel) */
.trusted-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .trusted-section {
    padding: 60px 20px;
  }

  .trusted-logos {
            justify-content: left;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 40px;
  }

  .trusted-logos img {
        min-width: 70px;  
  }
}


/* =====================
   About Section
===================== */

/* Description */
.about-desc {
  max-width: 900px;
  margin: 20px auto 70px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}

/* stats */
.stats-box {
  display: flex;
  background: #fff;
  border-radius: 25px;
  padding: 40px 20px;
}

.stat-item {
  flex: 1;
  text-align: left;
  padding: 20px 40px;
}

.stat-item:nth-child(n+2) {
  border-left: 1px solid #e5e5e5;
}

.stat-item img {
  width: 60px;
  margin-bottom: 25px;
}

.stat-item h3 {
  font-size: 60px;
  font-weight: 500;
  margin: 15px 0;
  letter-spacing: 0;
  line-height: 60px;
}

.stat-item p {
  font-size: 18px;
  color: #505058;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;

}

@media (max-width: 768px) {
  .stats-box {
    flex-wrap: wrap;
    padding: 0;
    gap: 20px;
    background: #F4F6F8;
  }

  .stat-item {
    padding: 20px 15px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
  }

  .stat-item:nth-child(n+2) {
    border-left: none;
    border-top: 1px solid #e5e5e5;
  }

  .stat-item h3 {
    font-size: 26px;
    line-height: 28px;
  }

  .stat-item p {
    font-size: 16px;
    line-height: 20px;
  }

  .about-desc {
    margin: 20px auto 40px;
  }

}

/* =====================
   service Section
===================== */

.service-section {
  background: #fff;
}

.services-flex {
  display: flex;
  gap: 25px;
  padding-top: 20px;
}

.service-card {
  flex: 1;
  background: #F4F6F8;
  border-radius: 28px;
  padding: 40px 30px;
  display: flex;
  gap: 10px;
  text-align: left;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
  margin-top: 40px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  bottom: -1px;
  background: #007f7a;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  color: #fff;
}

.course-icon {
  width: 60px;
  margin-bottom: 25px;
  fill: #008080;	
}

.service-card:hover .course-icon {
  fill: rgb(255, 255, 255);
}

.card-arrow-icon {
  width: 12px;
  height: 12px;
  fill: #000000;
}

.service-card:hover .card-arrow-icon {
  fill: rgb(255, 255, 255);
}

.service-card h3 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.line {
  height: 1px;
  background: #E0E1E6;
  margin-bottom: 10px;
}

.service-card:hover .line {
  background: rgba(255, 255, 255, 0.3);
}

.service-card p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 25px;
  font-weight: 400;
}

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: auto;
}

.service-card .tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ddd;
  color: #000;
  font-weight: 400;
  font-size: 18px;
}

.service-card .tags span img {
  width: 20px;
  height: 20px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  margin-top: 25px;
}


@media (max-width: 992px) {
  .services-flex {
    flex-direction: column;
  }
}

/* =====================
   Feature service Section
===================== */

.feature-service-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
}

.feature-service-tabs .tab-btn {
  padding: 25px 80px;
  border-radius: 5px;
  border: none;
  background: #fff;
  font-size: 28px;
  font-weight: 500;
  cursor: pointer;
  line-height: 34px;
  letter-spacing: 0;
}

.feature-service-tabs .tab-btn-active {
  background: linear-gradient(260deg, #023737 -50%, #00807F 100%) padding-box, linear-gradient(180deg, #ffffff -10%, #01555500 30%) border-box;
  color: #ffffff;
}

.feature-service-tabs .tab-btn:hover {
  background: linear-gradient(260deg, #023737 -50%, #00807F 100%) padding-box, linear-gradient(180deg, #ffffff -10%, #01555500 30%) border-box;
  color: #ffffff;
}

.feature-service-cards-main {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.feature-service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  flex: 1;
}

.feature-service-card img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  margin-bottom: 40px;
}

.feature-service-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 32px;
  color: #000000;
  letter-spacing: 0;
}

.feature-service-card p {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-service-cards-main {
    flex-direction: column;
  }

  .feature-service-tabs {
    align-items: center;
        overflow-x: auto;
        justify-content: left;
        gap: 10px;
  }

  .feature-service-tabs .tab-btn {
    padding: 16px 20px;
        font-size: 16px;
        flex: 0 0 auto;
        line-height: 16px;
        letter-spacing: 0;
  }
}

/* =====================
   Process Section
===================== */

.blur-shape-center {
  position: absolute;
  width: 320px;
  height: 320px;
  filter: blur(150px);
  opacity: 0.6;
  border-radius: 50%;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #008080;
}

.blur-shape-right {
  position: absolute;
  width: 220px;
  height: 220px;
  filter: blur(145px);
  opacity: 0.6;
  border-radius: 50%;
  top: 35px;
  right: 0px;
  background: #FFC300;
}

.blur-shape-bottom {
  position: absolute;
  width: 180px;
  height: 180px;
  filter: blur(100px);
  opacity: 0.6;
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  background: #008080;
}

/* Container */
.process-container {
  position: relative;
  z-index: 2;
}

/* Cards */
.process-cards {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-top: 40px;
}

.process-card {
  min-width: 320px;
  background: rgba(255, 255, 255, 10%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  backdrop-filter: blur(12px);
  color: #fff;
  position: relative;
}

/* dots container */
.process-cards.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

/* default dot (normal) */
.process-cards.owl-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: block;
}

/* ACTIVE dot wrapper */
.process-cards.owl-carousel .owl-dot.active {
  width: 18px;
  height: 18px;
}

/* ACTIVE outer circle */
.process-cards.owl-carousel .owl-dot.active span {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #ffffff;
  position: relative;
}

/* ACTIVE inner dot */
.process-cards.owl-carousel .owl-dot.active span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-cards::-webkit-scrollbar {
  display: none;
}

.process-card .step {
  font-size: 70px;
  font-weight: 500;
  color: #FFFFFF;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 84px;
    opacity: 46%;
  letter-spacing: 0;
}

.process-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 60px 0 80px;
  line-height: 32px;
  letter-spacing: 0;
  color: #FFFFFF;
}

.process-card hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.process-card p {
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width:768px) {
  .process-cards {
    flex-wrap: wrap;
    overflow-x: visible;
    flex-direction: row;
    gap: 20px;
  }

  .process-card {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .process-card .step {
    font-size: 32px;
    line-height: 40.15px;
  }

  .process-card h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 40px 0 20px;
  }

  .process-card p {
    font-size: 18px;
    line-height: 24px;
  }
}

/* =========================
   WHY CHOOSE US
========================= */

.why-cards {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  align-items: stretch;
}

.why-card {
  border-radius: 22px;
  padding: 26px;
  text-align: left;
}

.light-card {
  background: #ffffff;
}

.dark-card {
  position: relative;
  background: linear-gradient(145deg, #0b1220, #111827);
  color: #fff;
  overflow: hidden;
}

.left-card {
  flex: 1;
}

.why-img {
  width: 100%;
  border-radius: 30px;
  margin-bottom: 20px;
}

.light-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0;
  line-height: 32px;
  letter-spacing: 0;
}

.light-card p {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
  letter-spacing: 0;
}

.center-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  padding: 40px;
}

.bottom-content {
  z-index: 1;
}

.bottom-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0;
}

.bottom-content p {
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 400;
}

.bottom-content img {
  width: 60px;
  margin-top: 10px;
}

/* avatars */
.avatars {
  display: flex;
  z-index: 1;
  margin-left: 10px;
}

.avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: -10px;
}

/* blur circles */
.blur {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.blur.blue {
  width: 220px;
  height: 220px;
  background: #008080;
  top: 50px;
  left: -80px;
  filter: blur(75px);
}

.blur.yellow {
  width: 200px;
  height: 200px;
  background: #facc15;
  top: -10px;
  right: -60px;
  filter: blur(110px);
}

.right-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* top right */
.small h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0;
}

.small p {
  font-size: 18px;
  line-height: 26px;
  color: #505058;
  font-weight: 400;
}

.small-icon img {
  width: 60px;
}

/* bottom right */
.dark-wave-card {
  position: relative;
  background: #000;
  border-radius: 22px;
  padding: 28px 32px;
  overflow: hidden;
  color: #fff;
}

/* wave background image */
.dark-wave-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/asset/images/Group\ 1000006134.png") center / cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}

/* content */
.wave-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* left side */
.wave-left h3 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 5px;
}

.wave-left span {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 500;
}

/* right side */
.wave-right p {
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  max-width: 260px;
}

@media (max-width: 768px) {
  .why-cards {
    flex-wrap: wrap;
        gap: 15px;
  }

  .left-card {
    padding: 10px;
  }

  .why-card h3,
  h4 {
    font-size: 20px;
    line-height: 26px;
  }

.why-card p{
    font-size: 16px;
    line-height: 24px;
  }

  .light-card p {
    line-height: 24px;
  }

  .why-card .avatars img {
    width: 25px;
    height: 25px;
  }

  .center-card {
    padding: 20px;
  }

  .bottom-content img {
    width: 37px;
    height: 40px;
    margin-top: 20px;
  }

  .dark-wave-card {
    padding: 20px;
  }

  .why-img {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .wave-content {
    gap: 20px;
  }

  .wave-left h3 {
    font-size: 30px;
    line-height: 35px;
  }

  .wave-left span {
    font-size: 16px;
    line-height: 22px;
  }
}

/* =========================
  Industry-section
========================= */

/* BLUR BACKGROUND */
.industry-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.6;
}

.industry-blur.center {
  width: 320px;
  height: 320px;
  background: #008080;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.industry-blur.left {
  width: 360px;
  height: 360px;
  background: #008080;
  bottom: 35%;
  left: 18%;
}

.industry-blur.right {
  width: 280px;
  height: 280px;
  background: #facc15;
  bottom: 0;
  right: -100px;
}

/* ICON TABS */
.industry-tabs {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  padding: 20px 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  justify-content: space-between;
}

/* anchor reset */
.industry-tab {
  min-width: 120px;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.industry-section-p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    max-width: 800px;
    margin: auto;
    padding: 20px 0 0;
    line-height: 26px;
}

.industry-tab p {
  font-size: 20px;
  color: #ffffff;
  line-height: 24px;
  font-weight: 500;
}

/* ICON */
.icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 46px;
  height: 46px;
  z-index: 2;
  position: relative;
}

/* yellow glow hover */
.icon-wrap::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  background: #facc15;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0;
  transition: 0.35s ease;
}

.industry-tab:hover .icon-wrap::before {
  opacity: 0.9;
}

/* CONTENT */
.industry-content {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.industry-text {
  flex: 1;
  text-align: left;
  color: #fff;
}

.industry-text h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0;
}

.industry-text p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 0;
}

.industry-text .tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 10%);
  width: fit-content;
  font-size: 18px;
  margin: 20px 0;
  line-height: 26px;
  letter-spacing: 0;
  font-weight: 400;
}

.industry-text .tag span {
  width: 8px;
  height: 8px;
  background: #facc15;
  border-radius: 50%;
}

/* IMAGE */
.industry-image {
  flex: 1;
}

.industry-image img {
  width: 100%;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .industry-content {
    flex-direction: column-reverse;
  }

  .industry-tabs {
    justify-content: flex-start;
    padding: 20px;
  }

  .industry-tab {
    min-width: 90px;
  }

  .industry-tab .icon-wrap {
    width: 30px;
    height: 30px;
    margin-bottom: 25px;
  }

  .industry-tab p {
    font-size: 16px;
    line-height: 16px;
  }

  .industry-text .tag {
    border: none;
    background: none;
    padding: 0;
  }

.icon-wrap img {
  width: 30px;
  height: 30px;
}

}

/* =====================
  case study Section
===================== */

/* HEADER */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}

.case-header .case-left {
  text-align: left;
}

/* GRID */
.case-grid {
  display: flex;
  gap: 25px;
  text-align: left;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* CARD */
.case-card {
  text-decoration: none;
  width: 32%;
  color: #0f172a;
}

/* IMAGE WRAP (IMPORTANT PART) */
.case-img {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.case-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.case-card:hover .case-img img {
  transform: scale(1.12);
}

/* TAG */
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 15px 20px 0;
  font-size: 18px;
  color: #505058;
  font-weight: 400;
}

.case-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #facc15;
  border-radius: 50%;
}

/* TITLE */
.case-card h3 {
  font-size: 24px;
  margin: 10px 20px 0;
  line-height: 32px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .case-card {
    width: 100%;
  }

  .case-tag {
    font-size: 18px;
    margin: 20px 0 0;
  }

  .case-card h3 {
    margin: 10px 0;
    font-size: 20px;
    line-height: 26px;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* =====================
  testimonial Section
===================== */

/* BLUR SPOTS */
.t-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: .55;
}

.t-blur.one {
  width: 320px;
  height: 320px;
  background: #0ea5e9;
  top: 35%;
  left: 10%;
}

.t-blur.two {
  width: 360px;
  height: 360px;
  background: #14b8a6;
  top: -10%;
  left: 35%;
}

.t-blur.three {
  width: 320px;
  height: 320px;
  background: #facc15;
  bottom: 10%;
  right: 20%;
}

.t-blur.four {
  width: 280px;
  height: 280px;
  background: #22c55e;
  top: -15%;
  right: 0%;
}

/* WRAP */
.testimonial-wrap {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* LEFT */
.testimonial-left {
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-align: left;
  flex-direction: column;
  flex: 0 0 35%;
}

.testimonial-left h2 {
  font-size: 50px;
  line-height: 60px;
  margin: 0px 0 60px;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.testimonial-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-stats .avatars {
  display: flex;
}

.testimonial-stats .avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #020617;
  margin-left: -12px;
}

.testimonial-stats .avatars img:first-child {
  margin-left: 0;
}

.testimonial-stats p {
  font-size: 15px;
  line-height: 1.4;
}

/* RIGHT */
.testimonial-cards {
  flex: 1.2;
  display: flex;
  gap: 30px;
}

/* CARD */
.testimonial-card {
  flex: 1;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03));
  backdrop-filter: blur(20px);
  color: #fff;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.alt {
  background: linear-gradient(160deg,
      rgba(255, 255, 255, .12),
      rgba(255, 255, 255, .04));
}

.quote {
  font-size: 64px;
  opacity: .6;
  display: block;
  margin-bottom: 10px;
}

.quote-img {
  width: 50px;
  height: 36px;
  opacity: .6;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #FFFFFF;
}

/* FOOTER */
.card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.card-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.card-footer h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.card-footer span {
  font-size: 14px;
  opacity: .8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-cards {
    flex-direction: column;

  }

  .testimonial-card {
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  .testimonial-card .quote-img {
    width: 26px;
    height: 19px;
  }

  .testimonial-card p {
    line-height: 24px;
  }

  .testimonial-left {
    text-align: center;
  }

  .testimonial-stats {
    display: none;
  }

  .testimonial-left h2 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}

/* =====================
  Blog Section
===================== */

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
}

.blog-cards {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  width: 32%;
}

.blog-img {
  overflow: hidden;
  border-radius: 20px;
  margin: 15px;
}

.blog-img img {
  width: 100%;
  border-radius: 20px;
  transition: transform .5s ease;
}

.blog-card .blog-img:hover img {
  transform: scale(1.08);
}

.blog-content {
  padding: 10px 25px 30px;
}

.blog-date {
  font-size: 18px;
  color: #505058;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-date img {
  width: 30px;
}

.blog-content h3 {
  font-size: 24px;
  margin: 20px 0;
  font-weight: 500;
  line-height: 32px;
}

.blog-content p {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .blog-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-cards {
    gap: 15px;
  }

  .blog-card {
    width: 100%;
  }

  .blog-content {
    padding: 10px;
  }

  .blog-date {
    font-size: 14px;
    line-height: 16px;
  }

  .blog-date img {
    width: 20px;
  }

  .blog-content h3 {
    font-size: 20px;
    margin: 10px 0;
    line-height: 26px;
  }

  .blog-img {
    margin: 10px;
  }

  .blog-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .learn-more {
    font-size: 16px;
    line-height: 14px;
  }

  .learn-more img {
    width: 9px;
    height: 9px;
  }
}

/* =====================
  CTA Section
===================== */

/* BLURS */
.cta-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.6;
}

.cta-blur.center {
  width: 360px;
  height: 360px;
  background: #008080;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.cta-blur.left {
  width: 280px;
  height: 280px;
  background: #facc15;
  bottom: -5%;
  left: -10%;
}

.cta-blur.right {
  width: 300px;
  height: 300px;
  background: #facc15;
  top: 0;
  right: -10%;
}


/* CONTACT BOX */
.cta-contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 25px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  max-width: 650px;
  margin: 40px auto 0;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-align: left;
}

.cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  width: 25px;
}

.cta-item h4 {
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 24px;
  font-weight: 500;
}

.cta-item p {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 27.2px;
  font-weight: 400;
}

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

/* RATING */
.cta-rating {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.cta-rating .stars {
  display: flex;
  gap: 10px;
}

.cta-rating .stars img {
  width: 16px;
}

@media (max-width: 768px) {

  .cta-contact-box {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        align-items: center;
  }

  .divider {
        height: 1px;
        width: 80%;
  }

  .cta-blur.right {
    width: 120px;
    height: 120px;
    background: #FFC300;
    top: 0;
    right: 0;
  }

  .cta-blur.left {
    display: none;
  }

  .cta-item {
        flex-direction: column;
        width: 100%;
        padding: 10px;
        align-items: center;
        text-align: center;
  }

  .cta-icon {
    width: 40px;
    height: 40px;
  }

  .cta-icon img {
    width: 20px;
  }

  .cta-item h4 {
            font-size: 18px;
        line-height: 26px;
  }

  .cta-item p {
            line-height: 24px;
        font-size: 16px;
  }

  .cta-blur {
    filter: blur(80px);
  }

  .cta-blur.center {
    width: 120px;
    height: 120px;
    background: #008080;
    top: 15px;
    left: 0px;
  }
}



/* =====================
  FAQ Section
===================== */
.faq-flex {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.faq-left p {
  color: #505058;
  line-height: 27.2px;
  margin: 28px 0 34px;
  font-size: 16px;
  max-width: 580px;
  font-weight: 400;
}

/* RIGHT */
.faq-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* HEADER */
.faq-head {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  position: relative;
}

.faq-head span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #090915;
}

/* ICON */
.faq-icon {
  width: 16px;
  height: 16px;
}

/* BODY */
.faq-body {
  padding: 26px 24px;
  display: none;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #475569;
}

/* ACTIVE STATE */
.faq-item.active {
  background: #007f7f;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 0px 0px 12px 12px;
}

/* ACTIVE TITLE */
.faq-item.active .faq-head span {
  color: #ffffff;
}

/* WHITE DIVIDER LINE (IMAGE ME WALI) */
.faq-item.active .faq-head::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0;
  height: 0.1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ACTIVE BODY */
.faq-item.active .faq-body {
  display: block;
  color: #e6fafa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-flex {
    flex-direction: column;
    gap: 50px;
  }

  .faq-right {
    flex: 1;
  }

  .faq-left {
    flex: 1;
    text-align: center;
  }
}

/* =====================
  Footer Section
===================== */

.site-footer {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* ===== BLUR EFFECTS ===== */
.footer-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.6;
  pointer-events: none;
}

.blur-left {
  width: 420px;
  height: 420px;
  background: #b08f2e;
  bottom: -160px;
  left: -180px;
}

.blur-right {
  width: 460px;
  height: 460px;
  background: #0a6f6a;
  top: -180px;
  right: -200px;
}

/* ===== TOP ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-top h2 {
  font-size: 80px;
  line-height: 80px;
  font-weight: 400;
  color: #FFFFFF;
}

.footer-arrow img {
  width: 60px;
}

/* ===== DIVIDER ===== */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 48px 0;
}

/* ===== MIDDLE ===== */
.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.footer-middle-left {
  display: flex;
  gap: 90px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 24px;
}

.footer-col p {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 27.2px;
}

/* VERTICAL LINE */
.footer-line {
  width: 1px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  max-width: 560px;
  width: 100%;
}

.newsletter-form {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form button {
  background: none;
  border: none;
  cursor: pointer;
}

.newsletter-form button img {
  width: 12px;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .footer-top {
    justify-content: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-middle-left {
    flex-direction: row;
    gap: 20px;
  }

.footer-middle-left .footer-col{
width:50%;
}

  .footer-line {
    display: none;
  }

  .footer-arrow {
    display: none;
  }

  .footer-col h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .footer-col p {
    font-size: 12px;
    line-height: 24px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .footer-bottom p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 25px;
  }

  .footer-divider {
    margin: 30px 0;
  }

  .footer-top h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .footer-arrow img {
    width: 30px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links li {
    width: 30%;
    text-align: left;
  }

  .footer-links a {
    font-size: 18px;
    line-height: 24px;
  }


}

/*----------------- about page css------------------ */

.other-page-hero {
  position: relative;
  min-height: 50vh;
  background-color: #050b0b;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 160px;
  /* header overlay space */
  padding-bottom: 120px;
}

/* BACKGROUND PATTERN */
.other-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/asset/images/banner-bg.png") center/cover no-repeat;
  opacity: 0.75;
  z-index: 1;
}

/* DARK CORNER VIGNETTE */
.other-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 38%,
      rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
}

/* CONTENT */
.other-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* TITLE */
.other-hero-inner h1 {
  font-size: 72px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* BREADCRUMBS */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs a:hover {
  color: #f6c200;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a.current {
  color: #ffffff;
  cursor: default;
}

/* MOBILE */
@media (max-width: 768px) {
  .other-page-hero {
    min-height: 45vh;
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .other-hero-inner h1 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.45px;
  }

  .breadcrumbs a {
    font-size: 18px;
    line-height: 28px;
  }
}

/* about who section  */

.about-who-section {
  padding: 0 20px 80px;
}

.about-flex {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGES */
.about-images {
  position: relative;
  flex: 1;
}

.about-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

/* TOP IMAGE */
.img-top {
  width: 72%;
  border-radius: 28px;
  overflow: hidden;
}

/* BOTTOM IMAGE (OVERLAP) */
.img-bottom {
  width: 78%;
  margin-top: -140px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
}

/* RIGHT CONTENT */
.about-content {
  flex: 1.2;
}

.about-desc {
  font-size: 18px;
  line-height: 26px;
  color: #505058;
  margin-bottom: 30px;
  font-weight: 400;
}

/* POINTS */
.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-points li {
  font-size: 18px;
  line-height: 26px;
  color: #505058;
  margin-bottom: 14px;
}

.about-points strong {
  color: #090915;
  font-weight: 500;
  font-size: 22px;
  line-height: 25px;

}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    gap: 60px;
  }

  .about-content {
    text-align: center;
  }

  .about-desc {
    text-align: left;
  }

  .about-points {
    text-align: left;
  }

  .img-bottom {
    margin-top: -60px;
  }

  .about-who-section {
    padding: 0px 20px 60px;
  }
}

/* apporoach Section  */

.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-intro {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #505058;
  margin: 20px 0;
}

.approach-item {
  display: flex;
  gap: 18px;
  margin: 40px 0 10px;
  align-items: center;
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.approach-item h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 6px;
}

.approach-item p {
  font-size: 14px;
  color: #505058;
  line-height: 1.6;
}

.approach-left hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 26px;
  border-radius: 10px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* RIGHT */
.approach-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.approach-cards {
  display: flex;
  gap: 25px;
}

/* PROGRESS CARD */
.progress-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 22px;
  text-align: center;
  flex: 1;
}

.progress-arc {
  position: relative;
}

.progress-arc svg {
  width: 100%;
}

.progress-arc span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: 600;
}

.progress-card p {
  font-size: 18px;
  color: #505058;
  margin-top: 10px;
  line-height: 26px;
  font-weight: 500;
}

/* TEAM CARD */
.team-card {
  position: relative;
  background: linear-gradient(145deg, #0b1220, #111827);
  color: #fff;
  overflow: hidden;
  padding: 30px;
  border-radius: 22px;
  flex: 1;
}

.team-card .avatars {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.team-card .avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0px solid #fff;
  margin-right: -10px;
}

.team-card .plus {
  width: 50px;
  height: 50px;
  background: #facc15;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-left: -15px;
}

.team-card .plus img {
  width: 20px;
  height: 20px;
  border: none;
}

.team-card p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  z-index: 1;
}

.team-card-divider {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 30px 0 20px;
}

/* IMAGE */
.approach-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-cards {
    flex-direction: row;
    gap: 10px;
  }

  .progress-card {
    padding: 15px;
  }

  .team-card {
    padding: 15px;
  }

  .team-card .avatars img {
    width: 30px;
    height: 30px;
  }

  .team-card .plus {
    width: 30px;
    height: 30px;
  }

  .team-card .plus img {
    width: 15px;
    height: 15px;
  }

  .progress-arc span {
    font-size: 18px;
    line-height: 17.6px;
    font-weight: 400;
  }

  .progress-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .blur.yellow {
    display: none;
  }

  .team-card p {
    font-size: 16px;
    line-height: 22px;
  }

  .approach-left {
    text-align: center;
  }
}

/* our team section  */

.our-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}


.our-team-card {
  position: relative;
  width: calc(25% - 21px);
  /* Desktop: 4 in row */
  border-radius: 28px;
  overflow: hidden;
}

.our-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 16px;
  min-width: 265px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #090915;
  line-height: 24px;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 16px;
  color: #505058;
  font-weight: 400;
  line-height: 27.2px;
}


@media (max-width: 576px) {
  .our-team-grid {
    gap: 18px;
  }

  .our-team-card {
    width: calc(50% - 9px);
    border-radius: 15px;
    /* 2 upar + 2 niche */
  }

  .team-info {
    min-width: auto;
    width: 85%;
    padding: 10px;
    border-radius: 10px;
  }

  .team-info h4 {
    font-size: 18px;
    line-height: 20px;
  }

  .team-info p {
    font-size: 14px;
    line-height: 18px
  }
}

/* case study page css */

.case-study-filter {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

/* COMMON ITEM */
.case-study-filter .filter-item {
  flex: 1;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* INPUT */
.case-study-filter .filter-item input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  color: #111827;
  background: transparent;
  cursor: pointer;
  padding: 15px;
}

/* READONLY (DROPDOWN STYLE) */
.case-study-filter .filter-item.dropdown input {
  cursor: pointer;
}

/* PLACEHOLDER */
.case-study-filter input::placeholder {
  color: #9ca3af;
}

/* ICON */
.case-study-filter .filter-icon {
  width: 18px;
  flex-shrink: 0;
  margin-left: 12px;
}



@media (max-width: 768px) {
  .case-study-filter {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
  }

  .case-study-filter .filter-item {
    width: 100%;
  }
}

/* blog page css */

.blog-search {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  overflow: hidden;
}

/* INPUT */
.blog-search input {
  flex: 1;
  height: 74px;
  padding: 0 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #111827;
}

.blog-search input::placeholder {
  color: #9ca3af;
}

/* BUTTON */
.blog-search button {
  height: 74px;
  padding: 0 35px;
  border: none;
  background: #0f766e;
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  border-radius: 15px;
  cursor: pointer;
}

.blog-search button:hover {
  background: #115e59;
}


@media (max-width: 576px) {
  .blog-search {
    max-width: 100%;
  }
}

/* career page css */

.career-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 50px 0;
}

.career-filter .filter-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.career-filter input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  background: transparent;
}

.career-filter .filter-icon {
  width: 18px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.career-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.career-card a {
  justify-content: center;
}

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

.card-header h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  text-align: left;
}

.job-tag {
  background: #FFC300;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}

/* INFO LIST */
.job-info {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.job-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.job-info img {
  width: 22px;
}

/* DESCRIPTION */
.job-desc {
  font-size: 18px;
  line-height: 24px;
  color: #5C5C5C;
  margin-bottom: 30px;
  text-align: left;
}


@media (max-width: 768px) {
  .career-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .career-filter {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.career-cta-image {
  position: absolute;
  right: 50px;
  bottom: 0;
}

.career-cta-image img {
  max-width: 580px;
  width: 100%;
  display: block;
}

@media (max-width: 768px) {

  .career-cta-image {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 40px;
  }

  .career-cta-image img {
    max-width: 320px;
  }

}

/* contact Us page Css  */

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT FORM */
.contact-form-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #0909151A;
}

.contact-desc {
  color: #505058;
  max-width: 620px;
  margin: 20px 0 40px;
  font-size: 14px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 160px;
  resize: none;
  margin-bottom: 28px;
}


.btn-submit img {
  width: 16px;
}

/* RIGHT SIDE */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: space-between;
}

/* BLUR CARD */
.contact-info-card {
  padding: 40px;
  border-radius: 28px;
  color: #ffffff;
}

.contact-blur-shape-center {
  position: absolute;
  width: 320px;
  height: 320px;
  filter: blur(125px);
  opacity: 0.6;
  border-radius: 50%;
  top: 0px;
  left: 10%;
  transform: translateX(-50%);
  background: #008080;
  z-index: -1;
}

.contact-blur-shape-right {
  position: absolute;
  width: 220px;
  height: 220px;
  filter: blur(120px);
  opacity: 0.6;
  border-radius: 50%;
  top: -15%;
  right: -20%;
  z-index: -1;
  background: #FFC300;
}

.contact-info-card h3 {
      font-size: 40px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 50px;
}

.contact-info-card p {
    margin: 20px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}

.info-divider {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-list li {
  display: flex;
  gap: 14px;
  font-weight: 300;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
}

.contact-info-list li a {
   color: #ffffff;
    text-decoration: none;
}

.contact-info-list img {
  width: 25px;
    height: 25px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 280px;
  border-radius: 24px;
  border: none;
}


@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
     padding: 0;
        border: none;
  }

  .contact-info-card {
    padding: 20px;
        border-radius: 15px;
  }

  .info-divider {
    margin: 30px 0;
  }

  .contact-info-list {
            flex-wrap: wrap;
        gap: 20px 15px;
        flex-direction: row;
        padding: 15px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
  }

.contact-info-card h3 {
      font-size: 28px;
    font-weight: 500;
    line-height: 34px;
}

.contact-info-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.contact-info-list li {
            display: flex;
        gap: 10px;
        font-weight: 500;
        line-height: 26px;
        font-size: 18px;
        letter-spacing: 1px;
        flex-direction: column;
        align-items: start;
}

.contact-info-list li a {
   color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-info-list img {
    width: 40px;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

  .contact-info-list-1 {
    width: 45%;
    flex-direction: column;
  }

  .contact-info-list-2 {
    width: 45%;
    flex-direction: column;
  }

  .contact-info-list-3 {
    flex-direction: column;
  }
}


/* website development css  */

.WD-why-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-around;
}

.WD-why-image img {
  max-width: 520px;
  width: 100%;
}

/* RIGHT CONTENT */
.WD-why-content {
  max-width: 800px;
}

.WD-desc {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
  margin: 25px 0;
  font-weight: 400;
}

.WD-points {
  list-style: none;
  padding: 0;
}

.WD-points li {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 15px;
}

.WD-points strong {
  color: #090915;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .WD-why-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .WD-why-image img {
    max-width: 420px;
  }
}

/* WD service Section  */

.WD-services-section {
  text-align: center;
}

.WD-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

/* CARD */
.WD-service-card {
  flex: 1;
  background: #F4F6F8;
  border-radius: 24px;
  padding: 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.WD-service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  bottom: -1px;
  background: #007f7a;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}

.WD-service-card:hover::before {
  transform: translateY(0);
}

.WD-service-card>* {
  position: relative;
  z-index: 1;
}

.WD-service-card:hover {
  color: #ffffff;
}

.WD-icon {
  width: 60px;
  margin-bottom: 25px;
fill: #008080;
}

.WD-service-card:hover .WD-icon {
  fill: rgb(255, 255, 255);
}

.WD-service-card:hover .card-arrow-icon {
  fill: rgb(255, 255, 255);
}

.WD-service-card h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

.WD-service-card p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.wd-divider {
  display: block;
  width: 100%;
  background-color: #e9e9e9;
  height: 1px;
  margin: 35px 0 15px;
}

/* TAGS */
.WD-tags {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.WD-tags li {
  display: inline-block;
  background: #ffffff;
  border-radius: 40px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  margin: 5px 0;
}

/* LINK */
.WD-link {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .WD-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .WD-services-grid {
    grid-template-columns: 1fr;
  }

.WD-service-card{
        padding: 20px;
  }

  .WD-service-card h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .WD-service-card p {
    font-size: 18px;
    line-height: 24px;
  }

  .WD-tags li {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
}

/* wd usp section css  */

.WD-usp-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}

/* MAIN WRAPPER */
.WD-usp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 35px;
  align-items: center;
}

/* LEFT IMAGE */
.WD-usp-left img {
  width: 100%;
  display: block;
}

/* RIGHT CONTENT */
.WD-usp-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.WD-usp-item {
  display: flex;
  gap: 15px;
  text-align: left;
  flex-direction: column;
}

.WD-usp-item-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.WD-usp-item img {
  width: 60px;
}

.WD-usp-item h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.WD-usp-item p {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .WD-usp-wrapper {
    grid-template-columns: 1fr;
  }

  .WD-usp-item-top {
    flex-direction: row;
    align-items: center;
  }

  .WD-usp-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 20px;
  }

  .WD-usp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .WD-usp-item h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .WD-usp-item p {
    font-size: 18px;
    line-height: 24px;
  }

  .WD-usp-item img {
    width: 40px;
  }
}

/* wd Start Project section  */

.WD-hero-section {
  padding: 20px 20px 60px;
}

.WD-hero-box {
  background: #008080;
  border-radius: 36px;
  padding: 40px 50px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.WD-hero-content h1 {
  font-size: 46px;
  font-weight: 500;
  line-height: 56px;
  color: #ffffff;
  margin-bottom: 15px;
}

.WD-hero-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 28px;
  font-weight: 400;
}

.WD-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  height: 56px;
  text-decoration: none;
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #ffffff;
}

/* RIGHT IMAGE WRAPPER */
.WD-hero-images {
  position: relative;
  height: 300px;
}

/* Laptop */
.hero-laptop {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 320px;
  max-width: 100%;
  z-index: 2;
}

/* Message Boxes */
.hero-msg {
  position: absolute;
  z-index: 3;
}

.hero-msg-1 {
  right: 12%;
  width: 50px;
  bottom: 40%;
}

.hero-msg-2 {
  top: 40px;
  right: 15px;
  width: 80px;
}

.hero-msg-3 {
  bottom: 80px;
  left: 32%;
  width: 70px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .WD-hero-section {
    padding: 40px 20px;
    background: #f8fafc;
  }

  .WD-hero-box {
    grid-template-columns: 1fr;
    padding: 25px 25px 0;
    border-radius: 15px;
  }

  .WD-hero-images {
    height: auto;
    margin-top: 40px;
  }

  .hero-laptop {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    display: block;
  }

  .WD-hero-content {
    text-align: center;
  }

  .WD-hero-content h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .WD-hero-content p {
    line-height: 24px;
  }


}

/* tech Section css  */

.tech-tabs {
  display: inline-flex;
  background: #ffffff;
  border-radius: 30px;
  margin: 40px 0;
}

.tech-tab {
  padding: 25px 50px;
  border: none;
  background: transparent;
  font-size: 28px;
  font-weight: 500;
  line-height: 45px;
  border-radius: 15px;
  cursor: pointer;
  color: #0f172a;
}

.tech-tab.active {
  background: #008080;
  color: #ffffff;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

/* ITEM */
.tech-item {
  width: 90px;
  /* consistent size */
  text-align: center;
}

.tech-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tech-item p {
  font-size: 20px;
  color: #000000;
  line-height: 28px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .tech-title {
    font-size: 28px;
  }

  .tech-grid {
    gap: 20px;
        justify-content: start;
  }

  .tech-item {
    width: 70px;
  }

  .tech-tab {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 10px;
  }

  .tech-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

  }

  .tech-item img {
    width: 35px;
    height: 35px;
  }

  .tech-item p {
    font-size: 14px;
    line-height: 18px;
  }
}


/* Duplicated hero section  */

.dp-hero-msg-1 {
  right: 28%;
  width: 220px;
  top: 12px;
  z-index: revert-layer;
}

.dp-hero-msg-2 {
  left: 32%;
  width: 50px;
  bottom: 20%;
}

.dp-hero-msg-3 {
  left: 20%;
  width: 65px;
  bottom: 38%;
}

@media (max-width: 768px) {
  .dp-hero-msg-1 {
    right: 15%;
    top: 0px;
  }
}

/* Mobile app development css  */

/* POINTS GRID */
.WD-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-top: 25px;
  border-top: 1px solid grey;
  padding-top: 20px;
}

.WD-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.WD-point img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.WD-point span {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #090915;

}

/* RESPONSIVE */
@media (max-width: 576px) {

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

  .WD-point {
    font-size: 12px;
  }
}

/* mobile feature section  */

.mobile-features-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top: 60px;
  position: relative;
}

/* COLUMNS */
.features-col {
  max-width: 460px;
  position: relative;
}

/* FEATURE ITEM */
.feature-item {
  margin-bottom: 40px;
  position: relative;
}

/* ICON */
.feature-item img {
  width: 60px;
  margin-bottom: 15px;
}

/* TEXT */
.feature-item h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 18px;
  color: #505058;
  font-weight: 400;
  line-height: 26px;
}

/* ========================= */
/* DEPTH EFFECT – LEFT SIDE  */
/* ========================= */
.features-col.left .feature-item:first-child {
  transform: translateX(80px);
  z-index: 1;
  opacity: 0.95;

}

.features-col.left .feature-item:last-child {
  transform: translateX(40px);
  z-index: 2;
}

/* ========================= */
/* DEPTH EFFECT – RIGHT SIDE */
/* ========================= */
.features-col.right .feature-item:first-child {
  transform: translateX(-80px);
  z-index: 1;
  opacity: 0.95;

}

.features-col.right .feature-item:last-child {
  transform: translateX(-40px);
  z-index: 2;
}

/* CENTER IMAGE */
.features-center {
  position: relative;
  z-index: 3;
}

.features-center img {
  width: 100%;
  display: block;
}

/* ALIGNMENT */
.features-col.left {
  text-align: left;
}

.features-col.left .feature-item img {
  margin-left: auto;
}

.features-col.right {
  text-align: left;
}

@media (max-width: 768px) {
  .mobile-features-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .features-col {
    max-width: 100%;
    text-align: center;
    order: 2;
  }

  .feature-item {
    transform: none !important;
    opacity: 1;
    margin-bottom: 25px;
  }

  .features-col.left .feature-item img {
    margin: 0 auto 14px;
  }
}

/* MA hero Section  */

.MA-hero-images {
  position: relative;
  height: 300px;
}

.MA-hero {
  position: absolute;
  right: 10%;
  bottom: 0px;
  width: 500px;
  max-width: 100%;
  z-index: 2;
}

.MA-hero-1 {
  bottom: 0;
  left: 5%;
  width: 350px;
}

.MA-hero-2 {
  bottom: 0;
  width: 350px;
  right: -8%;
}

.MA-hero-3 {
  top: 0;
  right: 15%;
  width: 35px;
}

@media (max-width: 768px) {

  .MA-hero-images {
    position: relative;
    height: 220px;
  }

  .MA-hero {
        position: absolute;
        bottom: 0px;
        width: 300px;
        right: 5px;
        max-width: 100%;
        z-index: 2;
  }

  .MA-hero-1 {
    bottom: 0;
    left: -22%;
    width: 200px;
  }

  .MA-hero-2 {
    bottom: 0;
    width: 200px;
    right: -20%;
  }

  .MA-hero-3 {
    top: 0;
    right: 5%;
    width: 55px;
  }
}


/* software development css  */

.SD-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT */
.SD-content {
  max-width: 780px;
}

.SD-desc {
  font-size: 18px;
  line-height: 26px;
  color: #505058;
  margin: 25px 0;
}

/* OFFER BOX */
.SD-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 32px;
}

.SD-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 26px;
  color: #000000;
}

.SD-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.SD-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 18px;
  line-height: 26px;
  color: #505058;
  margin-bottom: 14px;
}

.SD-list img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}


/* RIGHT IMAGE */
.SD-image {
  max-width: 600px;
}

.SD-image img {
  width: 100%;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .SD-wrapper {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .SD-image {
    max-width: 420px;
  }
}

/* cta section  */

.SD-cta-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 80px;
  background: #008080;
  border-radius: 50px;
}

/* LEFT */
.SD-cta-content {
  max-width: 740px;
  color: #ffffff;
  text-align: left;
}

.SD-cta-content h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 600px;
}

.SD-cta-content p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 26px;
  opacity: 0.9;
}

.SD-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

/* RIGHT IMAGE */
.SD-cta-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.SD-cta-image img {
  max-width: 520px;
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .SD-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px 0;
    gap: 20px;
    border-radius: 15px;
  }

  .SD-cta-image {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 60px;
  }

  .SD-cta-content{
    text-align: center;
  }

  .SD-cta-image img {
    max-width: 320px;
  }

  .SD-cta-content h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .SD-cta-content p {
    font-size: 18px;
    line-height: 24px;
  }
}


/* Health care page css  */

.HQ-industry-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.HQ-industry-content {
  max-width: 820px;
}

.HQ-industry-content p {
  font-size: 18px;
  color: #505058;
  line-height: 26px;
  font-weight: 400;
  margin-top: 18px;
}

/* RIGHT IMAGE */
.HQ-industry-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  display: block;
}

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

@media (max-width: 992px) {
  .HQ-industry-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .HQ-industry-content {
    max-width: 100%;
  }

  .HQ-industry-image img {
    max-width: 420px;
  }
}

@media (max-width: 576px) {
  .HQ-industry-image img {
    max-width: 100%;
  }
}

/* HC wrapper css  */

.HC-challenges-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

/* COLUMNS */
.HC-col {
  max-width: 350px;
}

.HC-item {
  margin-bottom: 60px;
}

.HC-item.front {
  transform: translateX(0);
}

.HC-item.back {
  transform: translateX(-30px);
  opacity: 0.9;
}

.HC-col.right .HC-item.back {
  transform: translateX(30px);
}

.HC-item img {
  width: 34px;
  margin-bottom: 12px;
}

.HC-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.HC-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #505058;
}

.HC-image-wrap {
  position: relative;
  width: 355px;
  margin: 0 auto;
}

.HC-main-img {
  position: relative;
  z-index: 2;
  width: 100%;
}

.HC-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
}

/* RATING */
.HC-rating {
  background: #008080;
  color: #fff;
  width: 135px;
  height: 200px;
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -60px auto 20px;
  position: relative;
  z-index: 2;
}

.HC-rating h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.HC-rating span {
  font-size: 14px;
  line-height: 1.3;
}

/* BUTTON */
.HC-btn {
  display: inline-block;
  background: #008080;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .HC-challenges-wrapper {
    flex-direction: column;
  }

  .HC-col {
    max-width: 100%;
  }

  .HC-item.back,
  .HC-col.right .HC-item.back {
    transform: none;
  }
}

/* HQ cta section css  */

.HQ-cta-main-img {
  width: 100%;
  max-width: 400px;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.HQ-automotive-cta-main-img {
    width: 100%;
    max-width: 580px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.HQ-cta-main-img-1 {
  position: absolute;
  width: 80px;
  right: 35%;
  bottom: 5px;
}

.HQ-cta-main-img-2 {
  position: absolute;
  width: 65px;
  right: 28%;
  top: 24%;
}

.HQ-cta-main-img-3 {
  position: absolute;
  width: 50px;
  right: 5%;
  top: 30%;
}

@media (max-width:768px) {
  .HQ-cta-image {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 25px;
  }

  .HQ-cta-main-img {
    position: relative;
    right: 0;
  }

.HQ-automotive-cta-main-img {
position: relative;
    right: 0;
}


  .HQ-cta-main-img-1 {
    display: none;
  }

  .HQ-cta-main-img-2 {
    left: 0px;
  }

}

/* Blog detail css  */

.BLOG-detail-page {
  height: 120vh;
  overflow: hidden;
}

/* MAIN GRID */
.BLOG-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  height: 100%;
  gap: 30px;
}

/* LEFT TOC (NO SCROLL) */
/* TOC CARD */
.BLOG-toc {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 26px;
  max-height: 520px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.BLOG-toc-title {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

/* SCROLL AREA */
.BLOG-toc-scroll {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 16px;
  position: relative;
}

/* LIST */
.BLOG-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.BLOG-toc-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #0f172a;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ACTIVE ITEM */
.BLOG-toc-list li.active {
  color: #008080;
  font-weight: 600;
}

/* SCROLLBAR (RIGHT YELLOW BAR) */
.BLOG-toc-scroll::-webkit-scrollbar {
  width: 6px;
}

.BLOG-toc-scroll::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

.BLOG-toc-scroll::-webkit-scrollbar-thumb {
  background: #fbbf24;
  /* yellow bar */
  border-radius: 10px;
}

/* Firefox */
.BLOG-toc-scroll {
  scrollbar-color: #fbbf24 #e5e7eb;
  scrollbar-width: thin;
}


/* SCROLL AREA (CENTER + RIGHT) */
.BLOG-scroll-area {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
}


.BLOG-scroll-area::-webkit-scrollbar {
  display: none;
}

/* CENTER CONTENT */
.BLOG-content-img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 25px;
}

.BLOG-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #505058;
  margin-bottom: 18px;
}

/* RIGHT SIDEBAR */
.BLOG-sidebar {
  position: sticky;
  top: 0;
  align-self: flex-start;
}

.BLOG-form,
.BLOG-recent {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 30px;
  border: 1px solid #0909151A;
}

.BLOG-form input,
.BLOG-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.BLOG-form h4,
.BLOG-recent h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* RECENT POSTS */
.BLOG-recent-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.BLOG-recent-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.BLOG-recent-item p {
  font-size: 13px;
  margin-bottom: 4px;
}

.BLOG-recent-item span {
  font-size: 12px;
  color: #6b7280;
}

.CS-PD-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* SIDEBAR */
.CS-PD-sidebar {
  width: 400px;
  flex-shrink: 0;
}

.CS-PD-project-card {
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* HEADER */
.CS-PD-project-header {
  background: #008080;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 30px;
  padding: 14px 18px;
}

/* LIST */
.CS-PD-project-list {
  list-style: none;
  padding: 14px 18px;
  margin: 0;
}

.CS-PD-project-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f4f7;
}

.CS-PD-project-list li:last-child {
  border-bottom: none;
}

.CS-PD-project-list span {
  color: #053456;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.CS-PD-project-list strong {
  color: #6D6D6D;
  font-weight: 400;
text-align: end;
  font-size: 16px;
  line-height: 26px;
}


/* NEED HELP */

/* WRAPPER BG */
.CS-PD-help-wrapper {
  padding: 40px 0;
  position: relative;
}

/* CARD */
.CS-PD-help-card {
  position: relative;
  padding: 30px 24px;
  border-radius: 18px;
  background: #0D1731;
  color: #ffffff;
  overflow: hidden;
  z-index: 2;
}

/* BLUR SPOTS */
.CS-PD-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  z-index: 1;
}

.CS-PD-blur-1 {
    width: 150px;
    height: 150px;
    background: #00b3b3;
    top: 30%;
    left: -50px;
}

.CS-PD-blur-2 {
  width: 180px;
  height: 180px;
  background: #facc15;
  top: -10%;
  right: -60px;
}

/* CONTENT ABOVE BLUR */
.CS-PD-help-card {
  position: relative;
}

.CS-PD-help-icon{
    position: relative;
    z-index: 2;
}
/* ICON */
.CS-PD-help-icon img {
  width: 60px;
  margin-bottom: 20px;
}

/* TITLE */
.CS-PD-help-card h3 {
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* DESC */
.CS-PD-help-card p {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
    position: relative;
    z-index: 2;
}

/* DIVIDER */
.CS-PD-help-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 20px 0;
}

/* LIST */
.CS-PD-help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
    position: relative;
    z-index: 2;
}

.CS-PD-help-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 30px;
}

.CS-PD-help-list img {
  width: 25px;
}


/* RIGHT CONTENT */
.CS-PD-main {
  flex: 1;
  max-width: calc(100% - 360px);
}

.CS-PD-title {
  font-size: 35px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 48px;
    letter-spacing: 0.5px;
}

.CS-PD-main p{
    font-size: 16px;
}

.CS-PD-hero img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 20px;
}

.CS-PD-desc {
  font-size: 18px;
  color: #505058;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 16px;
}

.CS-PD-desc strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-right: 10px;
}



/* CSD updated */

.CSD-objectives-box {
  margin: 20px auto;
  background-color: #008080;
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-sizing: border-box;
}

.CSD-title {
  margin-bottom: 25px;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -1.5px;
}

.CSD-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.CSD-list {
  margin: 0;
  padding-left: 20px;
  flex: 1;
}

.CSD-list li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .CSD-objectives-box {
    padding: 25px 20px;
  }

  .CSD-content {
    flex-direction: column;
    gap: 0px;  
}

  .CSD-title {
    font-size: 26px;
  }

  .CSD-list li {
    font-size: 15px;
  }
}

.CSD-wrapper {
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  gap: 80px;
}

.CSD-card {
  flex: 1;
}

.CSD-icon {
  width: 60px;
  height: 60px;
  background: #008080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.CSD-icon img {
  width: 40px;
  object-fit: contain;
}

.CSD-heading {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 28px;
  color: #000000;
}

.CSD-item {
  margin-bottom: 22px;
}

.CSD-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 26px;
  color: #000000;
}

.CSD-item p {
  font-size: 18px;
  line-height: 26px;
  color: #6D6D6D;
  margin: 0;
}


/* Responsive */
@media (max-width: 992px) {
  .CSD-wrapper {
    flex-direction: column;
    gap: 50px;
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .CSD-heading {
    font-size: 20px;
  }

  .CSD-item h4 {
    font-size: 15px;
  }

  .CSD-item p {
    font-size: 14px;
  }
}


.CSD-feature-wrapper {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.CSD-feature-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-sizing: border-box;
}

.CSD-feature-icon {
  width: 60px;
  height: 60px;
  background: #008080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.CSD-feature-icon img {
  width: 40px;
  object-fit: contain;
}

.CSD-feature-card h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 28px;
  color: #000000;
}

.CSD-feature-card ul {
  padding-left: 18px;
  margin: 0;
}

.CSD-feature-card ul li {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #6D6D6D;
}

.CSD-small-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}


/* Responsive */
@media (max-width: 992px) {
  .CSD-feature-wrapper {
    grid-template-columns: 1fr;
  }

  .CSD-feature-card {
    padding: 30px 25px;
  }

  .CSD-feature-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .CSD-feature-card h3 {
    font-size: 20px;
  }

  .CSD-feature-card ul li {
    font-size: 14px;
  }
}


.CSD-business-impact {
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.CSD-impact-icon {
  width: 60px;
  height: 60px;
  background: #0f7f78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.CSD-impact-icon img {
  width: 40px;
  object-fit: contain;
}

.CSD-impact-content h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 28px;
  color: #000000;
}

.CSD-impact-content p {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #6D6D6D;
}


/* Responsive */
@media (max-width: 768px) {
  .CSD-business-impact {
    flex-direction: column;
    padding: 30px 25px;
    gap: 20px;
  }

  .CSD-impact-content h3 {
    font-size: 22px;
  }

  .CSD-impact-content p {
    font-size: 14px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
.CS-PD-help-card {
    padding: 20px;
    border-radius: 15px;
    background: #090915;
}
  .BLOG-container {
    grid-template-columns: 1fr;
  }

  .BLOG-scroll-area {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
  }

  .BLOG-detail-page {
    height: auto;
    overflow: visible;
  }

  .BLOG-toc {
    position: relative;
  }

.CS-PD-feature {
    gap: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.CS-PD-help-icon img {
    width: 55px;
    margin-bottom: 10px;
}
.CS-PD-help-card h3 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 0;
    font-weight: 500;
    margin-bottom: 10px;
}

.CS-PD-help-card p {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.CS-PD-help-list li {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 30px;
    gap: 15px;
}
.CS-PD-help-list img {
    width: 40px;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
}

}

@media (max-width: 768px) {

  .CS-PD-title {
    font-size: 26px;
    line-height: 32px;
  }
.CS-PD-desc strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-right: 10px;
}
.CS-PD-feature img {
    width: 40px;
}

.CS-PD-desc {
    font-size: 16px;
}

.CS-PD-help-wrapper {
    padding: 40px 0 0;
}
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .CS-PD-container {
    flex-direction: column-reverse;
  }

  .CS-PD-sidebar,
  .CS-PD-main {
    width: 100%;
    max-width: 100%;
  }

  .CS-PD-features {
    flex-direction: column;
  }
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tab-btn {
    cursor: pointer;
}

.tab-btn-active {
    background-color: #007c7c;
    color: #fff;
}

.industry-content {
    display: none;
    align-items: center;
    gap: 40px;
}

.industry-content.active {
    display: flex;
}

.industry-tab {
    cursor: pointer;
    text-decoration: none;
}
