/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #141414;
  --primary-hover: #000000;
  --active:#FF004D;
  --primary-light: #ffded4;
  --dark: #f6f6f9;
  --dark-2: #09140f;
  --dark-3: #d5d5d5;
  --bg: #f0f4f8;
  --bg-light: #f0f4f8;
  --bg-light-green: #ecfdf5;
  --bg-alt: #e2e8f0;
  --text: #000000;
  --text-light: #414345;
  --white: #ffffff;
  --sada: #ffffff;
  --overlay: linear-gradient(to right, rgb(0 0 0 / 73%), rgb(0 0 0 / 46%));
  --border: rgba(30, 41, 59, .1);
  --shadow: 0 4px 24px rgba(15, 23, 42, .08);
  --radius: 12px;
  --radius-full: 999px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 22%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader img {
  width: 140px;
  height: auto;
  animation: loaderPulse 2s ease-in-out infinite;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loading {
  overflow: hidden;
}

@keyframes loaderPulse {

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

  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--sada);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

section#inner-page-banner {
  background: linear-gradient(312deg, #ffffff, #ffffff);
  padding: 160px 0 70px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.inner-page-banner .section-title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.inner-page-banner .section-title span {
  font-weight: 400;
  color: var(--primary);
  margin-left: 0px;
}

.inner-page-banner h1 span.section-label {
  display: block;
}

.header-shape {
  position: absolute;
  border-radius: 50%;
}

.header-shape-top-right {
  width: 600px;
  height: 600px;
  top: 10px;
  right: 210px;
  background: linear-gradient(93deg, #eff4f7, #153224);
  -webkit-mask: radial-gradient(farthest-side, transparent 65%, black 66%);
  mask: radial-gradient(farthest-side, transparent 65%, black 66%);
  opacity: 0.02;
}

section#inner-page-banner h1 {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 2px;
}

section#inner-page-banner .section-title {
  max-width: 850px;
  margin: 20px auto 0;
  line-height: 1.3;
}

.hero-img-grid .img-left .editable-image-wrapper {
  height: 100%;
}

section#case-studies .inner-section-title {
  text-align: center;
}
.play-cursor{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    pointer-events:none;
	transform: translate(-50%, -50%);
    display:none;
    transition:transform .08s linear;
}

/* Modal */
.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-content{
    position:relative;
    width:80%;
    max-width:1100px;
}

.modal video{
    width:100%;
}

.close{
    position:absolute;
    top:-40px;
    right:0;
    color:#fff;
    font-size:35px;
    cursor:pointer;
}
/* ===== UTILITIES ===== */
.container {
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 100px 0
}

.section-header {
  margin-bottom: 50px;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.bg-light {
  background: var(--sada) !important;
}

.section-title {
  font-size: clamp(2.3rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.02em
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition)
}

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

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  color:var(--primary);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary)
}

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

.btn-dark {
  background: var(--primary);
  color: var(--white)
}

.btn-dark:hover {
  background: var(--primary-2)
}

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transition: var(--transition)
}

.btn:hover .arrow {
  transform: translateX(3px)
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: var(--sada);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sada);
  padding: 16px 15px;
  border-radius: 00;
  backdrop-filter: blur(12px);
  max-width: 1478px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white)
}

.nav-logo svg {
  width: 32px;
  height: 32px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative
}

.nav-links a:hover,
.nav-links a.active {
color: var(--active);
}


.dropdown {
  position: relative;
  display: flex;
  align-items: center
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -120px;
  background: var(--sada);
  padding: 25px 30px 35px;
  border-radius: var(--radius);
  min-width: 350px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: var(--shadow);
  margin-top: 21px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu a {
  white-space: nowrap;
  color: rgba(0, 0, 0, .7);
  font-size: 1.2rem;
  font-weight: 400;
  transition: var(--transition)
}

.dropdown-menu a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 4px 25px 7px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition)
}

.nav-cta:hover, .nav-cta.active {
  background: var(--active);
  transform: scale(1.04)
}
.nav-cta.active:hover {
  background:  var(--primary);
  transform: scale(1.04)
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px
}
.dropdown-menu.services-mega {
    min-width: 780px;
    left: -290px;
    max-width: 900px;
    background:#fff;
    flex-direction: row;
}
.services-mega-r{
       width: auto;
    flex: 1 1 auto;
	padding: 20px 0 20px 15px;
	    text-align: center;
}
.services-mega-l{
	width: 60%;
    flex: 0 0 60%;
    max-width: 60%;
	position: relative;
}
.dropdown-menu.services-mega a {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    font-size: 18px;
}

.dropdown-menu.services-mega .wage-menu {
    background: rgba(255,255,255,0.1);
    padding: 10px 0;
    width: auto;
    display: flex;
    gap: 15px;
}
.dropdown-menu.services-mega .wage-menu img {
    max-width: 55px;
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background-color: #fff7f7;
    height: 55px;
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}
.dropdown-menu.services-mega .wage-menu:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.dropdown-menu.services-mega a span.wage-menu {
    font-size: 17px;
    padding: 10px 0;
    white-space: normal;
    color: #05182b;
	flex-direction: column;
	    gap: 0;
	font-weight:700;
}
.dropdown-menu.services-mega a:hover span.wage-menu {
    color: #FF004D;
}
.dropdown-menu.services-mega a span.wage-menu p {
    font-size: 13px;
    color: #666;
	font-weight:400;
}
.services-mega-l:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 90%;
    background: #ccc;
}
.services-mega-r a.nav-cta {
    font-size: 16px;
    color: #fff;
	padding: 10px 25px 10px;
}

.dropdown-menu.more-menu>a {
    display: flex;
    gap: 7px;
}

.dropdown-menu.more-menu>a img {
    width: 55px;
    height: 55px;
    background-color: #fff7f7;
    border-radius: 12px;
	margin-top: 13px;
    padding: 10px;
	    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.dropdown-menu.more-menu>a p span {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 400;
}
.dropdown-menu.more-menu>a p{
    font-size: 17px;
    padding: 10px 0;
    white-space: normal;
    color: #05182b;
    flex-direction: column;
    gap: 0;
    font-weight: 700;
}
.dropdown-menu.more-menu>a:hover img {
    transform: scale(1.1);
}
.dropdown-menu.more-menu>a:hover p{
    color: var(--primary);
}
/* ===== HERO REDESIGN ===== */
.hero {
  padding-top: 180px;
  padding-bottom: 70px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 45%;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(#d1d5db 20%, transparent 20%);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 15%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#d1d5db 20%, transparent 20%);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.hero-tag-icon {
  display: flex;
  align-items: center;
}

.circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.circle-lime {
  background: #b6ff00;
}

.circle-dark {
  background: #153224;
  margin-left: -8px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  width: 12px;
  border-radius: 0 10px 10px 0;
}

.hero-tag span {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--primary);
}

.hero-title {
  font-size: 91px;
  font-weight: 800;
  line-height: 1.30;
  color: var(--primary);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 0;
}

.btn-dark-green {
  background: var(--primary);
  color: var(--sada);
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-dark-green:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: var(--sada);
}

.btn-text {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--primary-2);
  text-decoration: none;
  transform: translateY(-2px);
}

.hero-images {
  position: relative;
  padding: 20px 0 20px 20px;
}

.hero-img-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}

.hero-img-grid img:hover {
  filter: grayscale(0) !important;
  transform: none !important;
}

.hero-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-left {
  height: 420px;
  border-radius: 24px 80px 24px 24px;
  overflow: hidden;
  margin-top: 60px;
}

.img-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 500px;
}

.img-tr {
  flex: 1.3;
  border-radius: 40px 24px 24px 24px;
  overflow: hidden;
}

.img-mr {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.img-br {
  flex: 1.2;
  border-radius: 24px 24px 80px 24px;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  left: -50px;
  bottom: -10px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #f9f9f9;
  border-radius: 100px;
}

.hero-badge-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

.badge-text {
  position: absolute;
  width: 120px;
  height: 120px;
  animation: spin 12s linear infinite reverse;
  transform-origin: center;
}

.badge-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #adadad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.sparkle {
  position: absolute;
  z-index: 0;
  animation: pulse 3s infinite alternate;
}

.s1 {
  right: -30px;
  bottom: 40px;
  width: 80px;
  height: 80px;
}

.s2 {
  right: 20px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  animation-delay: 1s;
}

.hero-title span {
  position: relative
}

.hero-title span::after {
  content: "";
    width: calc(100% + 20px);
    height: 100%;
    position: absolute;
    left: -10px;
  top: 0;
  animation: fade-in-opacity 1s backwards;
  border: 2px dotted #ff004d;
  background-color: #ffdee8;
  border-radius: 20px;
  z-index: -1;
}

.hero-title span:last-child::after {
  animation-delay: .5s;
  border-color: #009f08;
  background-color: #d8f3e1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-vibrant .hero-tag {
  animation: fadeUpVibrant 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-vibrant .hero-title {
  animation: fadeUpVibrant 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
  opacity: 0;
  transform: translateY(30px);
}


.hero-vibrant .hero-subtitle {
  animation: fadeUpVibrant 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-vibrant .hero-actions {
  animation: fadeUpVibrant 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUpVibrant {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
#heroSection{
    position: relative;
    cursor: none;
}
#heroSection a,
#heroSection button{
    cursor:pointer;
}
#playCursor{
    position: fixed;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 0, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .25s ease;
    z-index: 99999;
	animation: shadow-pulse 1.5s infinite;
}

#playCursor.active{
    transform: translate(-50%, -50%) scale(1);
}
#playCursor::before,
#playCursor::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 112, 244, .5);
    animation: shadow-pulse 2s infinite;
}

.playCursor::after {
    animation-delay: 1s; 
}

@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 77, 0.5);
  }
  100% {
    box-shadow: 0 0 7px 25px rgba(0, 112, 244, 0);
  }
}



/*-- ===== STATS SHOWCASE SECTION ===== */
  .stats-showcase-section {
    display: flex;
    justify-content: center;
    align-items: center;
	    z-index: 1;
    position: relative;
margin-top: 50px;
  }

  .stats-showcase-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    justify-content: center;
  }

  /* ---- Photo Card ---- */
  .ssc-photo-card {
    flex: 0 0 320px;
    height: 400px;
    background: #5526a9;
    border-radius: 28px;
    padding: 28px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    position: relative;
  }
  .ssc-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ---- Green Card ---- */
  .ssc-green-card {
    flex: 0 0 320px;
    height: 300px;
    background: rgb(62 232 202);
    border-radius: 28px;
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(123,232,62,0.22);
    position: relative;
  }
  .ssc-avatar-group {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .ssc-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid rgb(62 232 202);
    object-fit: cover;
    margin-right: -14px;
    background: #ccc;
    overflow: hidden;
	font-family: cursive;
	font-weight: 100 !important;
  }
  .ssc-avatar:last-of-type {
    margin-right: 0;
  }
  .ssc-avatar-add {
	width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgb(209 92 22);
    border: 3px solid rgb(62 232 202);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-family: cursive;
    font-weight: 100;
    color: #fff;
    margin-left: 0px;
    cursor: default;
    line-height: 0px;
  }
  .ssc-green-bottom {}
  .ssc-green-label {
    font-size: 15px;
    color: #1a4a00;
    font-weight: 500;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
  }
  .ssc-green-stat {
    font-size: 46px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
  }

  /* ---- White Card ---- */
  .ssc-white-card {
    flex: 0 0 320px;
    height: 270px;
    background: #ffdddd;
    border-radius: 28px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    align-self: flex-end;
    margin-bottom: 0;
  }
  .ssc-heart-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ssc-heart-icon svg {
    width: 28px;
    height: 28px;
  }
  .ssc-white-stat {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    text-align: center;
  }
  .ssc-white-label {
    font-size: 14px;
    color: #888;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
  }

  /* ---- Pink / Magenta Card ---- */
  .ssc-pink-card {
    flex: 0 0 320px;
    height: 300px;
    background: #FF5CDB;
    border-radius: 28px;
    padding: 28px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(255,92,219,0.25);
    position: relative;
  }
  .ssc-quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .ssc-quote-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }
  .ssc-quote-author {
    font-size: 13px;
    color: #5a1a4a;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
  }
  .ssc-quote-author strong {
    color: #1a1a1a;
    font-weight: 700;
  }

  /* ---- Dark Card ---- */
  .ssc-dark-card {
    flex: 0 0 320px;
    height: 400px;
    background: #232323;
    border-radius: 28px;
    padding: 28px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  }
  .ssc-exp-number {
    font-size: 62px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
  }
  .ssc-exp-label {
    font-size: 16px;
    color: #c0c0c0;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 4px;
  }
  .ssc-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .ssc-tag {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    cursor: default;
  }
  .ssc-tag-yellow { background: #E8C43A; color: #1a1a1a; }
  .ssc-tag-white  { background: #ffffff; color: #1a1a1a; }
  .ssc-tag-green  { background: #7BE83E; color: #1a1a1a; }
  .ssc-tag-dark   { background: #2f2f2f; color: #fff; border: 1.5px solid #444; }

  /* Tags row alignment */
  .ssc-tags-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ssc-tag-row-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
  }

  /* ---- Hover animations ---- */
  .ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card {
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  }
  .ssc-photo-card:hover  { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
  .ssc-green-card:hover  { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(123,232,62,0.35); }
  .ssc-white-card:hover  { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
  .ssc-pink-card:hover   { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(255,92,219,0.4); }
  .ssc-dark-card:hover   { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.radius-lb{
    border-bottom-left-radius:0;
    padding: 1px 5px;
	border-color: transparent;
}
.radius-lb.cbr{
    background: rgba(0, 0, 0, 0.8);
}
.radius-lb.cbg{
    background: rgba(144,96,255,0.9);
}

  /* ---- Responsive ---- */
  @media (max-width: 1800px) {
.ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card{
  flex: 0 0 290px;	
}
  }
  @media (max-width: 1700px) {
.ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card{
  flex: 0 0 270px;	
}
  }
  @media (max-width: 1580px) {
.stats-showcase-wrapper {
    gap: 30px;
}
.ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card{
  flex: 0 0 240px;	
}
	  .ssc-tag {
    font-size: 13px;
}
  }
  @media (max-width: 1300px) {
.stats-showcase-wrapper {
    gap: 25px;
}
.ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card{
  flex: 0 0 230px;	
}
.ssc-exp-label {
    font-size: 14px;
}
.ssc-exp-number {
    font-size: 42px;
}
.ssc-tag {
    padding: 5px 15px;
    font-size: 12px;
}
.ssc-green-stat, .ssc-white-stat {
    font-size: 30px;
}

}
@media (max-width: 1280px) {
    .ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card {
        flex: 0 0 220px;
        height: fit-content;
        min-height: 300px;
    }
 .ssc-green-card, .ssc-pink-card {
        min-height: 230px;
    }
.ssc-white-card {
        min-height: 200px;
    }
.stats-showcase-wrapper {
    gap: 20px;
}
    .ssc-tag {
        padding: 2px 8px;
        font-size: 12px;
        max-width: 84px;
    }
}
@media (max-width: 1200px) {
	section#you-get {
    padding-bottom: 20px;
}
.you-get-content {
    padding: 40px;
}
	.stats-showcase-wrapper {
        flex-wrap: wrap;
    }
    .ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card {
		flex: 0 0 300px;
        min-height: 270px;
    }
 .ssc-pink-card, .ssc-dark-card {
		flex: 0 0 390px;
        min-height: 270px;
    }
    .ssc-tag {
        padding: 2px 5px;
        font-size: 12px;
        max-width: 100px;
    }
}
@media (max-width: 991px) {
    .stats-showcase-wrapper {
      flex-wrap: wrap;
      justify-content: center;
    }
    .ssc-photo-card, .ssc-green-card, .ssc-white-card, .ssc-pink-card, .ssc-dark-card {
		flex: 0 0 235px;
        min-height: 270px;
    }
 .ssc-pink-card, .ssc-dark-card {
		flex: 0 0 360px;
        min-height: 270px;
    }
section#about {
    padding: 0 0 70px;
}
.ssc-tag {
        max-width: 80px;
    }
section#about .about-header p.about-subtitle, section#about .about-header h2.about-title {
    text-align: center;
}
  }
  @media (max-width: 767px) {
.dropdown-menu.services-mega a span.wage-menu p, .dropdown-menu.services-mega .wage-menu img, .dropdown-menu.more-menu>a img, .dropdown-menu.more-menu>a p span {
    display: none;
}
.dropdown-menu.services-mega a span.wage-menu, .dropdown-menu.more-menu>a p {
    font-size: 16px;
    padding: 8px 0;
}
.dropdown-menu.more-menu>a p {
        line-height: 10px;
    }
.stats-showcase-wrapper {
        flex-wrap: nowrap;
        overflow-x: scroll;
	    justify-content: flex-start;
        padding: 0 15px 40px;
		gap: 12px;
    }
.ssc-photo-card, .ssc-green-card, .ssc-pink-card, .ssc-dark-card, .ssc-white-card {
        flex: 0 0 200px;
}
	      .ssc-tag {
        max-width: 70px;
    }
    .ssc-exp-number { font-size: 48px; }
    .ssc-green-stat { font-size: 38px; }
    .ssc-white-stat { font-size: 36px; }
    .ssc-exp-label {
        font-size: 13px;
    }
    .ssc-green-card, .ssc-pink-card {
        min-height: 230px;
    }
	.ssc-quote-text {
    font-size: 14px;
	}
  }

/*-----------------------------------*/
svg.dotsServices-logo circle,
svg.dotsServices-logo path{
    fill:#ffffff;
    fill-opacity:0;
    stroke:#FF004D;
    stroke-width:3;
    stroke-dasharray:1000;
    stroke-dashoffset:1000;

    animation: logoAnimation 5s linear infinite;
}

@keyframes logoAnimation{

    0%{
        stroke-dashoffset:1000;
        fill:#FF004D;
        fill-opacity:0;
        stroke-width:3;
    }

    45%{
        stroke-dashoffset:0;
        fill:#FF004D;
        fill-opacity:0;
        stroke-width:3;
    }

    75%{
        stroke-dashoffset:0;
        fill:#FF004D;
        fill-opacity:1;
        stroke-width:3;
    }

    100%{
        stroke-dashoffset:0;
        fill:#FF004D;
        fill-opacity:1;
        stroke-width:0;
    }

}


/* ===== ABOUT ===== */
.about {
  background: linear-gradient(0deg, #eaeaea 0%, #ffffff 100%);
  padding: 40px 0 150px;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
}

.about-header {
  text-align: center;
  margin-top: 60px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  color: #05182b;
  margin-top: 10px;
  max-width: 950px;
  margin-inline: auto;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.about-title span {
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.05em;
}

.about-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-cards-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.about-card {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255 240 244) 100%);
  border-radius: 20px;
  padding: 50px 30px;
  flex: 1;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 0;
  border-left: 2px solid #ff9a9a;
  border-right: 2px solid #67ffc2;
  border-top: 2px solid #f991ff;
  border-bottom: 2px solid #9accff;
}

.about-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #05182b;
  margin-bottom: 35px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  text-align: center;
  justify-content: center;
}

.about-number span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
  margin-left: 2px;
}

.about-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  font-weight: 500;
}

.about-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.about-marquee {
  display: flex;
  width: fit-content;
  animation: about-scroll 30s linear infinite;
}

.about-marquee:hover {
  animation-play-state: paused;
}

.about-marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.marquee-logo {
  font-size: 1.5rem;
  color: #05182b;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s;
	width:80px;
	height:80px;
}

.marquee-logo:hover {
  opacity: 1;
}

@keyframes about-scroll {
  0% {
    transform: translateX(0);
  }

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

a.bento-card.bento-wh.scroll-bounce.active-scroll .bento-content h3,
a.bento-card.bento-os.scroll-bounce.active-scroll .bento-content h3 {
  font-size: 18px
}

a.bento-card.bento-wh.scroll-bounce.active-scroll .bento-content p,
a.bento-card.bento-os.scroll-bounce.active-scroll .bento-content p {
  display: none
}

a.bento-card.bento-os.scroll-bounce.active-scroll span.link-btn.uppercase,
a.bento-card.bento-wh.scroll-bounce.active-scroll span.link-btn.uppercase {
  font-size: 12px;
  color: #515151;
}

/* ===== CLIENT VALUE & TRUST ===== */
.client-value {
  background: var(--bg-light) url(/images/partner.png);
  color: var(--primary);
  background-size: cover;
  background-position: center;
  position: relative;
}

.client-value:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(229, 235, 244, 0.25) -288.28%, rgb(2 9 16) 73.49%);
  z-index: 0
}

.client-value .container {
  z-index: 1;
  position: relative
}

.client-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.client-value-img {
  position: relative;
  border-radius: var(--radius);
  overflow: visible
}

.client-value-img img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.rotating-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: var(--bg-light);
  border-radius: 100px;
  padding: 10px;
}

.rotating-badge .badge-circle {
  animation: spin 10s linear infinite
}

.rotating-badge .badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.rotating-badge .badge-icon svg {
  stroke: var(--sada);
}

.client-value-content .client-value-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--sada);
}

.client-value-content .client-value-title span {
  font-weight: 400;
  color: var(--sada);
  margin-left: 0px;
}

.client-value-text {
  color: #c7c7c7;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.client-value-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 5px
}

.client-value-stats {
  border-left: 1px solid rgba(255, 255, 255, .15);
  padding-left: 0
}

.client-value-stats .stat-big {
  font-size: 2.4rem;
  font-weight: 800
}

.client-value-stats p {
  color: var(--text-light);
  font-size: .85rem;
  margin-top: 4px
}

/* ===== FAQ ===== */
.faq {
  background: var(--sada);
  padding: 100px 0;
}

.faq-header {
  margin-bottom: 60px;
  max-width: 100%;
}

.faq-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 35px;
  color: var(--primary);
  max-width: 750px;
}

.faq-title span {
  font-weight: 400;
  color: var(--primary);
  margin-left: 0px;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-accordion-container {
  display: flex;
  gap: 16px;
  min-height: 380px;
}

.faq-card {
  flex: 1;
  background: var(--sada);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-width: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.faq-card:hover {
  border-color: rgb(255 227 218);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.faq-card.active {
  flex: 3.5;
  background: rgba(255, 212, 212, 0.05);
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.08);
  padding: 32px;
}

.faq-card-icon {
  width: 56px;
  height: 56px;
  background: rgb(255 231 223);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 30px;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.faq-card.active .faq-card-icon {
  background: var(--primary);
  color: var(--sada);
  transform: scale(1.05);
}

.faq-card:hover .faq-card-icon {
  background: var(--primary);
  color: var(--sada);
  transform: scale(1.05);
}

.faq-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  transition: justify-content 0.5s ease;
}

.faq-card.active .faq-card-content {
  justify-content: flex-start;
}

.faq-card-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0;
  transition: all 0.5s ease;
  white-space: normal;
  margin-top: auto;

}

.faq-card:hover {
  box-shadow: 0 12px 30px rgba(21, 50, 36, 0.04);
}

.faq-card.active .faq-card-title {
  margin-bottom: 16px;
  margin-top: 0;
  color: var(--primary);
  width: auto;
  transform: unset;
  max-width: 350px;
}

.faq-card-body {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-card.active .faq-card-body {
  opacity: 1;
  max-height: 250px;
  transition-delay: 0.1s;
}



.faq-card-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Entrance Animations */
.faq-accordion-container.visible .faq-card {
  animation: faqCardEntrance 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.faq-card {
  opacity: 0;
  transform: translateY(40px);
}

.faq-card:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-card:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-card:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-card:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes faqCardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.ps-overview-body tr {
  display: flex;
  gap: 20px;
  position: relative;
}

.ps-overview-body tr td p {
  margin: 0;
  padding: 0;
}

.ps-overview-body tr img {
  border-radius: 12px;
}

.avatar-stack {
  display: flex;
  gap: 5px;
}

.avatar {
  width: 15px;
  height: 15px;
  border-radius: 10px;
  margin: 3px 0;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-alt)
}

.pricing .section-title {
  text-align: center;
  margin-bottom: 16px;
  font-style: italic;
  font-family: var(--font-serif)
}

.pricing-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

.pricing-table {
  background: var(--sada);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.pricing-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border)
}

.pricing-head-cell {
  padding: 28px 24px;
  text-align: center
}

.pricing-head-cell:first-child {
  text-align: left
}

.pricing-head-cell h3 {
  font-size: 1.1rem;
  font-weight: 700
}

.pricing-head-cell .price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 4px
}

.pricing-head-cell.recommended {
  position: relative
}

.pricing-head-cell.recommended::before {
  content: 'Recommended';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
  font-size: .75rem;
  font-weight: 600
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: var(--transition)
}

.pricing-row:hover {
  background: rgba(16, 185, 129, .03)
}

.pricing-row:last-child {
  border-bottom: none
}

.pricing-cell {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  font-size: .9rem
}

.pricing-cell:first-child {
  font-weight: 500;
  color: var(--text)
}

.pricing-cell:not(:first-child) {
  justify-content: center
}

.pricing-cell .check {
  color: var(--primary);
  font-size: 1.2rem
}

.pricing-cell .dash {
  color: var(--text-light);
  font-size: 1rem
}

.pricing-actions {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 20px 0;
  border-top: 1px solid var(--border)
}

.pricing-actions div {
  display: flex;
  justify-content: center;
  padding: 0 24px
}

.pricing-actions div:first-child {
  justify-content: flex-start
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg)
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center
}

.testimonials-left h2 {
  font-size: clamp(2rem, 4vw, 4.15rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px
}

.quote-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px
}

.quote-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--white)
}

.testimonial-card {
  position: relative
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover
}

.testimonial-author h4 {
  font-weight: 700;
  font-size: 1rem
}

.testimonial-author p {
  color: var(--text-light);
  font-size: .85rem
}

.stars {
  display: flex;
  gap: 4px
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: var(--primary)
}

.testimonial-text {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 28px
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 24px
}

.testimonial-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-light)
}

.testimonial-nav {
  display: flex;
  gap: 10px
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--white)
}

.testimonial-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white)
}

.testimonial-nav button svg {
  width: 16px;
  height: 16px;
  stroke: var(--sada)
}

.testimonial-nav button:hover svg {
  stroke: var(--white)
}

/* ===== BLOG REDESIGN ===== */
.blog {
  background: var(--sada);
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-header {
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--primary);
  max-width: 1000px;
}

.blog-title span {
  font-weight: 400;
  color: var(--primary);
}

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

.blog-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.blog-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 5px;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-body {
background: var(--dark);
  padding: 25px 25px 30px;
  border-radius: 15px;
border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.blog-meta-label {
	font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  display: inline-block;
  background: var(--sada);
  border: 1px solid var(--dark-3);
  padding: 2px 10px;
  border-radius: 100px;
	opacity: 0.4;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}
.blog-card-summary {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-footer {
  display: flex;
  align-items: center;
  gap: 32px;
}

.blog-nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.prev-btn {
  background: #e5e7eb;
  color: var(--text-light);
}

.prev-btn:hover {
  background: #d1d5db;
}

.next-btn {
  background: var(--primary);
  color: var(--sada);
}

.next-btn:hover {
  background: var(--primary-2);
}

.view-all-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
}

.view-all-link:hover {
  color: var(--primary);
}

section#inner-blog .blog-hero-row .blog-card.featured-blog {
  display: flex !important;
  flex-direction: row;
	max-width: 100%;
}

/* --- Inner Page Blog --- */
.inner-blog {
  padding-bottom: 100px;
  background: var(--sada);
	padding-top: 0;
margin-top: -50px;
}

/* Hero Row: Featured (left) + Categories Sidebar (right) */
.blog-hero-row {
    display: flex;
    align-items: start;
	margin-bottom: 50px;
}

.featured-blog {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-blog:hover {
  transform: translateY(-4px);
}

.featured-blog .blog-card-img {
  display: block;
  margin-bottom: 0;
  overflow: hidden;
border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.featured-blog .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-blog .blog-card-body {
padding: 35px;
  text-align: left;
  max-width: 50%;
  margin: 0 0 0 10px;
  background: var(--dark);
border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.featured-blog .blog-meta-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    background: var(--dark);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
}

.featured-blog .featured-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.featured-blog .featured-desc {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
	display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
	max-width: 96%;
}

/* --- Categories Sidebar --- */
.blog-cats-sidebar {
  position: sticky;
  top: 100px;
  z-index: 1;
	width: 100%;
}

.blog-cats-sidebar .sidebar-card {
background: var(--dark);
  border-radius: 18px;
  padding: 20px 30px 110px 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 47% 100%, 50% 75%, 0% 75%);
}

.blog-cats-sidebar .sidebar-card h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
text-align: left;
}

.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 3px;
}

.sidebar-cat-link:hover {
  background: var(--sada);
  color: #153224;
  padding-left: 16px;
}

.sidebar-cat-link.active {
  background: transparent;
  color: var(--primary);
}

.sidebar-cat-link.active:hover {
  background: transparent;
  color: var(--primary);
  padding-left: 12px;
}

.sidebar-cat-count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  min-width: 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.07);
  color: inherit;
  transition: all 0.2s ease;
  padding-left: 12px;
}

.sidebar-cat-link.active .sidebar-cat-count {
  background: var(--dark);
  color: var(--primary);
}

.sidebar-cat-link:hover .sidebar-cat-count {
  background: var(--primary);
  color: #fff;
}

.sidebar-cat-link.active:hover .sidebar-cat-count {
  background: rgba(255, 255, 255, 0.3);
  color: var(--primary);
}

.tech-tools.section .section-header {
  text-align: center;
  margin-bottom: 80px;
  display: block;
}

.tech-tools .section-title {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
section#inner-page-banner .container.blog-list{
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: baseline;
    margin-bottom: 40px;
    gap: 30px;
}
section#inner-page-banner .container.blog-list h1 {
    text-align: left;
}
section#inner-page-banner .container.blog-list .blog-list-l p {
    text-align: left;
    margin: 20px 0 0;
    line-height: 1.6;
    max-width: 850px;
}
/* Skeleton loader */
.cats-skeleton {
  padding: 4px 0;
}

.cat-skeleton-row {
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  margin-bottom: 6px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

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

.blog-card.scroll-bounce {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-blog.scroll-bounce {
  transform: translateY(80px) scale(0.95);
  transition-duration: 0.8s;
}

.blog-card.scroll-bounce.active-scroll,
.featured-blog.scroll-bounce.active-scroll {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1200px) {
  .hero-img-grid video {
    width: 500px;
    height: auto;
  }

  .hero-images {
    padding: 0;
  }

  .who-we-are-section {
    padding: 110px 0 50px;
  }

  .blog-hero-row {
    grid-template-columns: 1fr 270px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    font-size: 1rem;
  }

  section#hero {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .img-right .img-tr,
  .img-right .img-mr,
  .img-right .img-br {
    max-height: 120px;
  }

  .hero-img-grid .img-left,
  .hero-img-grid .img-left img {
    max-height: 300px;
  }

  .hero-img-grid .img-left {
    margin-top: 0;
  }

  .hero-badge {
    bottom: 50px;
  }

  .s1 {
    bottom: 140px;
  }

  .s2 {
    bottom: 100px;
  }

  .about-number {
    font-size: 2.2rem;
  }

  .about-card {
    padding: 20px;
    min-width: 150px;
  }

  .about-cards-wrapper {
    margin-bottom: 30px;
  }

  section#services {
    padding: 70px 20px;
  }

  section#services .tagline-boxes {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .products.section .bento-card {
    padding: 25px;
  }

  section#client-value .client-value-content .client-value-title br {
    display: none;
  }

  .client-value-bottom {
    margin-top: 5px;
  }

  .client-value-stats {
    padding-left: 0;
  }

  section#client-value .client-value-content .client-value-title,
  .faq-title,
  .blog-title,
  .services-title,
  .services-title span,
  .reviews-title,
  .reviews-title span,
  .case-studies .section-title {
    font-size: clamp(2.5rem, 4vw, 5rem);
  }

  section#case-studies .case-card {
    height: 370px;
  }

  section#case-studies {
    padding: 50px 0px;
  }

}

@media (max-width: 991px) {
  .blog-hero-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .sidebar-cat-link {
    gap: 5px;
  }

  section#inner-blog .blog-cats-sidebar .sidebar-card {
    overflow: hidden;
    background: transparent;
    padding: 0;
    box-shadow: unset;
    border: unset;
    border-radius: 0;
  }

  section#inner-blog #blog-categories-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 40px auto 20px;
    max-width: fit-content;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  section#inner-blog #blog-categories-list {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    margin: 0px auto 0;
    width: -webkit-fill-available;
  }

  section#inner-blog #blog-categories-list .sidebar-cat-link {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .blog-cats-sidebar {
    position: static;
    order: -1;
    width: 100%;
  }

  .blog-cats-sidebar .sidebar-card {
    display: grid;
    grid-template-columns: none;
    gap: 0 24px;
  }

  .blog-cats-sidebar .sidebar-card h4 {
    grid-column: 1 / -1;
  }
}

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

@media (max-width: 768px) {
  .featured-blog .blog-card-body {
    padding: 24px;
  }

  .featured-blog .featured-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .inner-blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-img-grid video {
    width: 420px;
    height: auto;
  }
}

@media (max-width: 400px) {
  .hero-img-grid video {
    width: 340px;
    height: auto;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-top-right {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -200px;
  background: linear-gradient(135deg, #491101, #000000);
  -webkit-mask: radial-gradient(farthest-side, transparent 65%, black 66%);
  mask: radial-gradient(farthest-side, transparent 65%, black 66%);
  opacity: 0.08;
}

.shape-bottom-left {
  width: 450px;
  height: 450px;
  bottom: -300px;
  left: -250px;
  background: linear-gradient(135deg, #491101, #000000);
  -webkit-mask: radial-gradient(farthest-side, transparent 65%, black 66%);
  mask: radial-gradient(farthest-side, transparent 65%, black 66%);
  opacity: 0.2;
}

.footer .container {
  position: relative;
  z-index: 10;
}

.footer-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sada);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--sada);
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-socials a[aria-label="Behance"] {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a,
.contact-col ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-col ul a:hover {
  color: var(--sada);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--sada);
}



.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0
}

.footer-bottom p {
  color: rgba(255, 255, 255, .4);
  font-size: .85rem
}

.footer-socials {
  display: flex;
  gap: 12px
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary)
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, .6)
}

.footer-socials a:hover svg {
  fill: var(--white)
}

.go-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 185, 129, .3);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 99
}

.go-up.visible {
  opacity: 1;
  pointer-events: auto
}

.go-up:hover {
  background: var(--primary-hover);
  transform: translateY(-3px)
}

/* ===== REVIEWS ===== */
.reviews {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.reviews-title-wrap {
  margin-bottom: 50px;
}

.reviews-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--primary);
  max-width: 1000px;
}


.reviews-title span {
  font-weight: 400;
  color: var(--primary);
}

.reviews-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews-slider-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-trust 40s linear infinite;
}

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

@keyframes scroll-trust {
  0% {
    transform: translateX(0);
  }

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

.reviews-card {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.staggered-down {
  margin-top: 30px;
}

.reviews-client {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
}

.reviews-client-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.client-role {
  font-size: 1.05rem;
  color: var(--primary);
  margin-top: 4px;
}

.rating-box {
  background: #e8edf2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviews-review {
  background: var(--sada);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #FACC15;
  font-size: 1.1rem;
}

.reviews-review p {
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ===== WEBSITE DEVELOPMENT PAGE ===== */
.bg-light {
  background-color: #f8fafc;
}

/* 1. Specialization */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.spec-card {
  background: var(--sada);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d1d1d1;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.spec-icon.primary {
  background: var(--dark);
  color: var(--primary);
}

.spec-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.spec-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.spec-footer {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--text-light);
}

/* 2. Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.exp-card {
  background: var(--sada);
  padding: 30px;
  border-radius: 16px;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.exp-card:hover,
.exp-card.active {
  background: var(--dark);
  transform: translateY(-5px);
}

.exp-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  padding-right: 20px;
}

.exp-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

.exp-card:hover p,
.exp-card.active p {
  color: rgba(0, 0, 0, 0.7);
}

.exp-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: var(--transition);
}

.exp-card:hover .exp-arrow,
.exp-card.active .exp-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* 3. You'll Get */
.you-get-wrapper {
  background: var(--primary);
  border-radius: 30px;
  display: flex;
  overflow: hidden;
}

.you-get-content {
  flex: 1;
  padding: 80px;
  color: var(--sada);
}

.you-get-title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: 40px;
  color: var(--sada);
}

.you-get-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.you-get-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.you-get-list li::before {
  content: '✓';
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--dark-3);
  color: var(--primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.you-get-image {
  flex: 1;
}

.you-get-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4. Pre Handover */
.handover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.handover-card {
  background: var(--sada);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.handover-card.handover-full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.handover-full .check-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.check-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background:var(--dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.handover-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.handover-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 5. Tech Tools */
.tech-tools {
  overflow: hidden;
}

.tech-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.tech-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Marquee Animation */
.devxta-clients-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
}

.devxta-clients-wrapper::before,
.devxta-clients-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.devxta-clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.devxta-clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.devxta-clients-track {
  display: flex;
  align-items: center;
  animation: scroll-marquee 30s linear infinite;
  width: max-content;
}

.devxta-clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

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

@media (max-width: 991px) {

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

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

  .handover-card.handover-full {
    grid-column: 1 / -1;
  }

  .you-get-wrapper {
    flex-direction: column;
  }

  .you-get-content {
    padding: 50px;
  }

  .you-get-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .you-get-list {
    grid-template-columns: 1fr;
  }

  .you-get-content {
    padding: 40px 20px;
  }

  .spec-card {
    padding: 30px;
  }

  .handover-card.handover-full {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ===== ANIMATIONS ===== */
.scroll-bounce {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-bounce.active-scroll {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.fade-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease
}

.fade-right.visible {
  opacity: 1;
}

/* ===========================================================
   RESPONSIVE — World-Class Breakpoints
   =========================================================== */
@media (max-width: 1500px) {

  section#ext-hero .ext-hero-container,
  section#web-hero .web-hero-container,
  section.mobile-app-hero .mobile-app-hero-container,
  section#game-hero .game-hero-container {
    padding: 0 30px;
  }

  section#services {
    padding: 100px 30px;
  }

  section.excellence-section,
  section.advantages-section.bg-white {
    padding: 70px 30px;
  }
	.services-card-num {
    font-size: 140px;
}
}

/* ===========================================================
   RESPONSIVE — World-Class Breakpoints
   Desktop(>1280) → Laptop(1024) → Tablet(768) → Mobile(480)
   =========================================================== */

/* ---------- LAPTOP ≤ 1280px ---------- */
@media (max-width: 1280px) {
.blog-card h3 {
    font-size: 1.1rem;
}
  section#blog .blog-title br {
    display: none;
  }

  .container {
    padding: 0 28px;
  }

  .hero-container {
    gap: 40px;
  }

  .hero-title {
     font-size: 95px;
  }

  .client-value-content .client-value-title,
  .faq-title,
  .blog-title,
  .services-title,
  .services-title span,
  .reviews-title,
  .reviews-title span,
  .case-studies .section-title,
  .about-title,
  .services-title {
    font-size: clamp(2.5rem, 4.4vw, 5rem);
    max-width: 900px;
  }

  .client-value-content .client-value-title br,
  .faq-title br,
  .blog-title br,
  .services-title br,
  .services-title br,
  .reviews-title br,
  .reviews-title br,
  .case-studies .section-title br {
    display: none;
  }

  .case-card {
    height: 420px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-content {
    padding: 28px 28px 0;
  }
}

@media (max-width: 1024px) {

  .client-value-content .client-value-title,
  .faq-title,
  .blog-title,
  .services-title,
  .services-title span,
  .reviews-title,
  .reviews-title span,
  .case-studies .section-title,
  .about-title,
  .services-title {
    font-size: clamp(2.5rem, 4vw, 5rem);
    max-width: 600px;
  }
.hero-title {
        font-size: 85px;
    }
  .about-title {
    max-width: 700px;
  }
.services-card-num {
    font-size: 120px;
}
}

/* ---------- LAPTOP ≤ 1024px ---------- */
@media (max-width: 991px) {
  .hero-title br {
    display: none;
  }

  section#ext-hero .ext-hero-container,
  section#web-hero .web-hero-container,
  section.mobile-app-hero .mobile-app-hero-container,
  section#game-hero .game-hero-container {
    padding: 0 16px;
  }

  .hero-img-grid .img-left,
  .hero-img-grid .img-left img {
    max-height: 450px;
  }

  .img-right .img-tr,
  .img-right .img-mr,
  .img-right .img-br {
    max-height: 150px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 30px;
  }

  .about-card {
    padding: 20px;
    min-width: 200px;
  }

  .container {
    padding: 0 15px;
  }

  section#services .services-card h3 {
    font-size: 1.5rem;
  }

  section#services .container-right-img img {
    margin-left: 0;
  }

  section#services .services-card {
    padding: 50px 0 0;
  }
    section#services .services-card:nth-of-type(2), section#services .services-card:nth-of-type(4){
		background: #000000;
	}
  section#services .services-top-head {
    padding: 80px 0 0;
  }

  section#services,
  section#products {
    padding: 70px 5px;
  }

  .client-value-grid {
    gap: 20px;
  }

  section#client-value .client-value-content .client-value-title,
  .faq-title,
  .blog-title,
  .services-title,
  .services-title span,
  .reviews-title,
  .reviews-title span,
  .case-studies .section-title {
    font-size: clamp(2.2rem, 4vw, 5rem);
  }

  .client-value-img img {
    aspect-ratio: 4 / 4;
  }

  section#products .products-bento-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .products.section .bento-card {
    padding: 25px;
    width: 48%;
  }

  section#about .about-title,
  section#about .about-subtitle {
    max-width: 100%;
    text-align: left;
  }

  a.bento-card.bento-wh.scroll-bounce.active-scroll .bento-content h3,
  a.bento-card.bento-os.scroll-bounce.active-scroll .bento-content h3 {
    font-size: 1.6rem;
  }

  a.bento-card.bento-wh.scroll-bounce.active-scroll .bento-content p,
  a.bento-card.bento-os.scroll-bounce.active-scroll .bento-content p {
    display: block;
  }


  .about-number {
    font-size: 2.3rem;
  }

  .about-cards-wrapper {
    margin-bottom: 20px;
  }

  section#services .tagline-boxes {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 10px;
    margin: 0;
  }

  span.btn-pill {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  div.tagline-box {
    padding: 6px 15px;
    font-size: 0.9rem;
    border: 1px solid #e8e8e8;
    letter-spacing: 0;
  }

  .hero-badge {
    left: -20px;
    bottom: -10px;
    width: 110px;
    height: 110px;
  }

  .hero-badge .badge-text {
    width: 90px !important;
    height: 90px !important;
  }

  .sparkle.s1 {
    right: -10px;
    width: 60px;
    height: 60px;
  }

  .sparkle.s2 {
    right: 10px;
    width: 24px;
    height: 24px;
  }

  .client-value-content .client-value-title,
  .faq-title,
  .blog-title,
  .services-title,
  .services-title span,
  .reviews-title,
  .reviews-title span,
  .case-studies .section-title {
    font-size: clamp(2.3rem, 4vw, 5rem);
  }

  .client-value-content .client-value-title br {
    display: none;
  }

  .client-value-bottom {
    margin-top: 5px;
  }

  .client-value-stats {
    padding-left: 0;
  }

  .section {
    padding: 70px 0;
  }

  section#hero {
    padding: 130px 0 60px;
  }

  .client-value-img {
    max-width: 500px;
    margin: 0 auto;
  }

  .rotating-badge {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -20px;
  }

  .faq-card-title {
    font-size: 1rem;
  }

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

  .pricing-table {
    overflow-x: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-header {
    margin-bottom: 30px;
  }

  .services-top-head {
    padding: 100px 24px 0;
  }

  .services-card {
    padding: 60px 24px;
  }

  .reviews-card {
    width: 340px;
  }
}

/* ---------- TABLET & MOBILE NAV ≤ 991px ---------- */
@media (max-width: 991px) {

  /* --- Header / Nav --- */
  .nav {
    padding: 12px 16px;
    justify-content: flex-end;
    gap: 12px;
  }

  a.nav-logo {
    margin-right: auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    margin-right: 10px;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: -8px;
    gap: 16px;
    z-index: 999;
    align-items: self-start;
  }

  .nav.open .nav-cta {
    display: block;
    text-align: center;
  }

  .dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    padding: 0 0 0 16px;
    background: none;
    box-shadow: none;
    display: flex;
    min-width: auto;
  }
    .hero-title {
        font-size: 65px;
    }
	.hero-title span::after {
    width: calc(100% + 15px);
    left: -7px;
	}
	.services-card-num {
    font-size: 100px;
}
}

/* ---------- MOBILE ≤ 767px ---------- */
@media (max-width: 767px) {
  section#case-studies .portfolio-categories-tabs {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  section#case-studies .portfolio-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  section.excellence-section,
  section.advantages-section.bg-white {
    padding: 70px 16px;
  }

  section.blog-single-section .blog-sidebar {
    flex-direction: column;
  }

  section#contact-hero .form-card,
  section#support-channels .email-card {
    padding: 25px 15px;
  }

  section#contact-hero .contact-hero-content h1,
  section#support-channels .email-text-box h3 {
    font-size: 32px;
  }

  section#contact-hero {
    padding: 100px 0 70px !important;
  }

  section#support-channels .btn-outline-sub {
    padding: 8px 20px;
    font-size: 0.85rem;
    width: fit-content;
  }

  section#support-channels .sub-card {
    padding: 25px 20px;
  }

  .squads-section .section-title br {
    display: none;
  }

  section#squads .squad-card {
    padding: 25px 20px;
  }

  section#join-cta .join-cta-box {
    padding: 40px 15px;
  }

  /* --- General --- */
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .hero-img-grid {
    gap: 10px;
  }

  .img-left {
    height: 280px;
    margin-top: 30px;
  }

  .img-right {
    height: 340px;
  }

  .hero-badge {
    width: 90px;
    height: 90px;
    left: -10px;
    bottom: -5px;
  }

  .hero-badge .badge-text {
    width: 72px !important;
    height: 72px !important;
  }

  .hero-badge .badge-icon {
    width: 28px;
    height: 28px;
  }

  .sparkle.s1 {
    width: 50px;
    height: 50px;
    right: -5px;
  }

  .sparkle.s2 {
    width: 20px;
    height: 20px;
  }

  section#ext-hero,
  section#web-hero,
  section.mobile-app-hero,
  section#game-hero {
    padding: 110px 0 70px;
  }

  section#ext-hero h1,
  section#web-hero h1,
  section.mobile-app-hero h1,
  section#game-hero h1 {
    font-size: 28px;
  }

  section#ext-hero h1 br,
  section#web-hero h1 br,
  section.mobile-app-hero h br,
  section#game-hero h1 br {
    display: none;
  }

  /* --- About --- */
  .about {
    padding: 60px 0;
  }

  .about-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .about-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .about-number {
    font-size: 2.5rem;
  }

  /* --- Services --- */
  .services-top-head {
    padding: 80px 20px 0;
  }

  .services-card {
    padding: 40px 20px;
    position: static;
    opacity: 1;
    transform: none;
  }

  .services-card-num {
    font-size: 2rem;
  }

  .services-card h3 {
    font-size: 1.4rem;
  }

  .services-progress {
    display: none;
  }

  .services-top {
    position: static;
  }

  /* --- Client Value --- */
  .client-value-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .client-value-stats .stat-big {
    font-size: 2rem;
  }

  .rotating-badge {
    width: 120px;
    height: 120px;
    bottom: -15px;
    right: -15px;
  }

  /* --- FAQ --- */
  .faq {
    padding: 60px 0;
  }


  .faq-accordion-container {
    flex-direction: column;
    min-height: auto;
    gap: 12px;
  }

  .faq-card {
    flex: none;
    width: 100%;
    min-height: 80px;
    padding: 24px;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .faq-card.active {
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq-card-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }

  .faq-card.active .faq-card-icon {
    margin-bottom: 0;
  }

  .faq-card-content {
    justify-content: center;
    margin-top: 0;
  }

  .faq-card-title {
    margin-top: 0 !important;
    width: auto;
    transform: none;
    font-size: 1.05rem;
  }

  .faq-card.active .faq-card-title {
    max-width: 100%;
  }

  .faq-card-body {
    display: none;
  }

  .faq-card.active .faq-card-body {
    display: block;
    width: 100%;
  }

  /* --- Case Studies --- */
  .case-studies {
    padding: 60px 0;
  }

  .case-studies .section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

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

  .case-card {
    height: 380px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-content {
    padding: 24px 20px 0;
  }

  .card-image-wrapper {
    padding: 16px 20px 0;
  }

  /* --- Reviews --- */
  .reviews {
    padding: 60px 0;
  }

  .reviews-title strong,
  .reviews-title span.font-thin {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .reviews-card {
    width: 300px;
  }

  .reviews-review {
    padding: 20px;
  }

  .reviews-review p {
    font-size: 0.95rem;
  }

  .staggered-down {
    margin-top: 20px;
  }

  /* --- Blog --- */
  .blog {
    padding: 60px 0;
  }

  .blog-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-card h3 {
    font-size: 1.1rem;
  }

  .blog-footer {
    flex-direction: row;
    justify-content: space-between;
  }

  /* --- Footer --- */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-logo {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

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

  .shape-top-right {
    width: 300px;
    height: 300px;
    top: -120px;
    right: -120px;
  }

  .shape-bottom-left {
    width: 250px;
    height: 250px;
    bottom: -180px;
    left: -150px;
  }

  /* --- Pricing --- */
  .pricing-head,
  .pricing-row,
  .pricing-actions {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    font-size: .8rem;
  }

  /* --- Benefits --- */
  .benefits-header {
    grid-template-columns: 1fr;
  }

  /* --- Go Up --- */
  .go-up {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }
section#heroSection {
    padding: 80px 0 0 !important;
}
.services-card-num {
    font-size: 90px;
}
    section#about {
        padding: 0 0 40px !important;
    }
}

/* ---------- MOBILE ≤ 480px ---------- */
@media (max-width: 480px) {

  /* --- Header --- */
  .nav {
    padding: 12px 15px;
  }

  .nav-logo svg {
    width: 26px;
    height: 26px;
  }

  .nav.open .nav-links {
    padding: 20px 16px;
    gap: 12px;
  }

  .nav.open .nav-links a {
    font-size: 1.05rem;
  }

  /* --- General --- */
  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-tag span {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    margin-bottom: 16px;
  }
    .hero-title span::after {
        width: calc(100% + 12px);
        left: -5px;
        border-width: 1px;
    }
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 14px;
    width: 100%;
    align-items: center;
  }

  .btn-dark-green,
  .btn-text {
    padding: 8px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-img-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .img-left {
    height: 200px;
    margin-top: 20px;
    border-radius: 16px 40px 16px 16px;
  }

  .img-right {
    height: 250px;
    gap: 8px;
  }

  .img-tr {
    border-radius: 24px 16px 16px 16px;
  }

  .img-br {
    border-radius: 16px 16px 40px 16px;
  }

  .hero-badge {
    width: 70px;
    height: 70px;
    left: -5px;
    bottom: 0;
  }

  .hero-badge .badge-text {
    width: 56px !important;
    height: 56px !important;
    font-size: 10px !important;
  }

  .hero-badge .badge-icon {
    width: 22px;
    height: 22px;
  }

  .hero-badge .badge-icon svg {
    width: 10px;
    height: 10px;
  }

  .sparkle.s1 {
    width: 36px;
    height: 36px;
    right: -2px;
    bottom: 20px;
  }

  .sparkle.s2 {
    width: 16px;
    height: 16px;
  }

  /* --- About --- */
  .about {
    padding: 48px 0;
  }

  .about-header {
    margin-bottom: 32px;
  }

  .about-title {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
    line-height: 1.45;
  }
.marquee-logo {
    opacity: 1;
    width: 60px;
    height: 60px;
}
  .about-subtitle {
    font-size: 1rem;
  }

  .about-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .about-card {
    padding: 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .about-number {
    font-size: 2.2rem;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .about-card-text {
    font-size: 0.85rem;
  }

  .about-marquee-content {
    gap: 40px;
    padding-right: 40px;
  }

  .marquee-logo {
    font-size: 1.2rem;
  }

  /* --- Services --- */
  .services-top-head {
    padding: 60px 16px 0;
  }

  .services-card {
    padding: 32px 16px;
  }

  .services-card-num {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .services-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .services-card p {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .services-list li {
    font-size: 1.05rem;
  }

  .services-list .check {
    width: 20px;
    height: 20px;
    font-size: 1.05rem;
  }

  section#services .services-card h3 {
    font-size: 1.15rem;
  }

  /* --- Client Value --- */
  .client-value .container {
    padding: 0 16px;
  }

  .client-value-grid {
    gap: 32px;
  }

  .client-value-content .client-value-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .client-value-text {
    font-size: 1.05rem;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 1.05rem;
    width: 100%;
    justify-content: center;
  }

  .client-value-stats .stat-big {
    font-size: 1.2rem;
  }

  .client-value-stats p {
    font-size: 1.05rem;
  }

  .rotating-badge {
    width: 100px;
    height: 100px;
    bottom: -12px;
    right: -12px;
  }

  .rotating-badge .badge-icon {
    width: 40px;
    height: 40px;
  }

  .avatar-stack {
    margin-top: 5px !important;
  }


  .client-value-stats p br {
    display: none;
  }

  /* --- FAQ --- */
  .faq {
    padding: 48px 0;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-subtitle {
    font-size: 1.05rem;
  }

  .faq-card {
    padding: 18px;
    gap: 12px;
  }

  .faq-card-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .faq-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .faq-card-title {
    font-size: 1.05rem;
  }

  .faq-card-text {
    font-size: 1.05rem;
  }

  /* --- Case Studies --- */
  .case-studies {
    padding: 48px 0;
  }

  .case-studies .section-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .case-studies .section-label {
    font-size: 1.05rem;
  }

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

  .case-card {
    height: 340px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-content {
    padding: 20px 16px 0;
  }

  .card-desc {
    font-size: 1.05rem;
  }

  .card-image-wrapper {
    padding: 12px 16px 0;
  }

  .btn-more-cases {
    font-size: 1.05rem;
    padding: 0.8rem 1.5rem;
  }

  /* --- Reviews --- */
  .reviews {
    padding: 48px 0;
  }

  .reviews-title strong,
  .reviews-title span.font-thin {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .reviews-card {
    width: 260px;
  }

  .reviews-client {
    padding: 14px;
    border-radius: 12px;
  }

  .client-img {
    width: 40px;
    height: 40px;
  }

  .client-name {
    font-size: 1.05rem;
  }

  .client-role {
    font-size: 1.05rem;
  }

  .rating-box {
    padding: 4px 10px;
    font-size: 1.05rem;
  }

  .reviews-review {
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
  }

  .reviews-review p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .stars {
    font-size: 1.05rem;
    gap: 2px;
  }

  .staggered-down {
    margin-top: 16px;
  }

  /* --- Blog --- */
  .blog {
    padding: 48px 0;
  }

  .blog-header {
    margin-bottom: 32px;
  }

  .blog-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .section-label {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }

  .blog-grid {
    gap: 24px;
  }

  .blog-card-img {
    margin-bottom: 5px;
  }

  .blog-meta-label {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .blog-card h3 {
    font-size: 1.05rem;
  }

  .blog-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .nav-btn {
    width: 42px;
    height: 42px;
  }

  .view-all-link {
    font-size: 1.05rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 48px 0 24px;
  }

  .footer-header {
    padding-bottom: 28px;
    margin-bottom: 32px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-desc {
    font-size: 1.05rem;
  }

  .footer-desc br {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul a,
  .contact-col ul li {
    font-size: 1.05rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 16px 0;
  }

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

  .footer-links {
    justify-content: center;
    gap: 16px;
  }

  .footer-links a {
    font-size: 1.05rem;
  }

  .footer-copyright {
    font-size: 1.05rem;
  }

  .shape-top-right {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -80px;
  }

  .shape-bottom-left {
    width: 180px;
    height: 180px;
    bottom: -120px;
    left: -100px;
  }

  /* --- Go Up --- */
  .go-up {
    width: 38px;
    height: 38px;
    bottom: 16px;
    right: 16px;
    font-size: 1.05rem;
  }
section#heroSection {
    padding: 80px 0 0 !important;
}
.services-card-num {
    font-size: 80px;
}
}

/* ===== SERVICES ===== */
.services {
  background: #05182b;
  position: relative;
}

section#services {
  padding: 0;
}

.services-top-head {
  max-width: 1448px;
  margin: 0 auto;
  padding: 140px 0 0;
  overflow: hidden;
}

.services-top-head .services-title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--primary);
  max-width: 790px;
}

.services-top-head .services-title span {
  font-weight: 300;
  color: var(--primary);
  margin-left: 0px;
}

.container.services-container {
  max-width: 100%;
  padding: 0;
}

.services-top {
  flex: 1;
  position: sticky;
  top: 72px;
  max-width: 100%;
}

.services-sticky h2 {
  margin-top: 10px;
  margin-bottom: 30px;
}

.services-title .span {
  font-weight: 300;
  color: var(--primary);
  margin-left: 0px;
}

.services-progress {
  width: 100%;
  height: 4px;
  background: var(--active);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.services-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 150px;
  padding-bottom: 50px;
  padding-top: 50px;
}

.services-card {
  background: #05182b;
  padding: 90px 0;
  opacity: 0.3;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 95px;
}

.services-card.active-scroll {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: var(--primary);
}

.services-card.active-scroll:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
}

.container-right-img img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}

.services-card.active-scroll:hover .container-right-img img {
  transform: scale(1.05) translateY(-5px);
}

.fade-container-left {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card.active-scroll:hover .fade-container-left {
  transform: translateX(10px);
}

.services-card-num {
  position: absolute;
  font-size: 320px;
  z-index: -1;
  top: -90px;
  color: #120006;
  font-weight: 900;
  transform: rotate(340deg);
  opacity: 0.2;
}

.services-card h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: #cdcdcd;
}

.services-card p {
  color: var(--sada);
  font-size: 2.8rem;
  margin: 40px 0 50px;
  line-height: 1.25;
  font-weight: 900;
  max-width: 850px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.services-list .check {
  color: var(--primary);
  font-weight: 800;
  background: rgba(182, 255, 0, 0.2);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fade-container {
  display: flex;
  gap: 50px;
  max-width: 1448px;
  margin: 0 auto;
  min-height: 500px;
}

.container-right-img svg {
  width: 100%;
}

.fade-container .fade-container-left {
  width: 55%
}

.fade-container .fade-container-right {
  width: 45%
}

@media (max-width: 1200px) {
.services-card p {
    font-size: 2.5rem;
    line-height: 1.35;
}
.tagline-box {
    font-size: 0.7rem;
}
}
@media (max-width: 992px) {
section.web-hero, section.mobile-app-hero, section.game-hero, section.ext-hero, section#inner-page-banner, section.contact-hero {
    padding: 100px 0 70px;
}
  .services-container {
    flex-direction: column;
    gap: 40px;
  }

  .services-top {
    position: static;
    max-width: 100%;
  }

  .services-progress {
    display: none;
  }

  .services-bottom {
    gap: 40px;
    padding-top: 0;
  }

  .services-card {
    opacity: 1;
    transform: none;
    position: static;
  }
.header-shape-top-right{
display: none;	
}
}

/* ===== PRODUCTS BENTO ===== */
.products {
  background-color: var(--sada);
  padding: 100px 0;
}

.products-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 65px;
  color: var(--primary);
  max-width: 1200px;
}

.products-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card {
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  /* Scroll bounce animation base */
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card.active-scroll {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bento-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bento-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #05182b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.bento-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-pill {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-pill.dark {
  background: #05182b;
  color: #ffffff;
}

.btn-pill.dark:hover {
  background: var(--primary);
  color: var(--sada);
}

.link-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #05182b;
  transition: var(--transition);
}

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

.bento-img-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.bento-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-img {
  transform: translateY(-8px) scale(1.02);
}

/* Grid placing */
.bento-wp {
  background-color: #f1f5f9;
  grid-column: 1 / 3;
}

.bento-wb {
  background-color: #efe1e1;
  grid-column: 3 / 5;
}

.bento-ai {
  background-color: #f3f0ff;
  grid-column: 1 / 3;
  grid-row: 2 / 4;
}

.bento-wh {
  background-color: #ecfdf5;
  grid-column: 3 / 4;
}

.bento-os {
  background-color: #fefce8;
  grid-column: 4 / 5;
}

.bento-em {
  background-color: #dcedff;
  grid-column: 3 / 5;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.bento-em .bento-content {
  flex: 1.2;
}

.bento-em .bento-img-wrapper {
  flex: 1;
  margin-top: 0;
}
@media (max-width: 1200px) {
.bento-card h3 {
    font-size: 1.3rem;
}
div.process-card {
    flex-direction: column;
}
}
@media (max-width: 991px) {
  .products-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-ai {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .bento-wh {
    grid-column: 1 / 2;
  }

  .bento-os {
    grid-column: 2 / 3;
  }

  .hiring-description-wrapper {
    padding: 0 16px;
  }

}

@media (max-width: 768px) {
div.hero-feature-badge {
    padding: 10px 15px;
}
  .products-bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-wp,
  .bento-wb,
  .bento-ai,
  .bento-wh,
  .bento-os,
  .bento-em {
    grid-column: 1 / -1;
  }

  .bento-em {
    flex-direction: column;
  }

  .bento-em .bento-img-wrapper {
    margin-top: 30px;
  }
}

/* ===== CASE STUDIES ===== */
section#inner-page-banner .container.portfolio {
text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-studies {
  background-color: var(--dark);
  padding: 120px 0;
}

.case-studies .section-title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: bolder;
}

.case-studies .section-title span {
  font-weight: 300;
  color: var(--primary);
  margin-left: 0px;
}

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

.case-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  height: 480px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}

.case-card.active-scroll {
  opacity: 1;
  transform: translateY(0);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 35px 35px 0;
  display: flex;
  flex-direction: column;
  color: var(--primary);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: var(--primary);
  text-align: center;
}

.card-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--primary-2);
  text-align: center;
}

.case-card:hover .card-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}

.card-image-wrapper {
  width: 100%;
  margin-top: auto;
  padding: 20px 30px 0;
  transition: transform 0.4s ease;
  display: flex;
  justify-content: center;
}

.card-image-wrapper img {
  width: 100%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  /*box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);*/
  display: block;
}

.case-card:hover .card-image-wrapper {
  transform: translateY(40px);
}

.btn-more-cases {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
}

.btn-more-cases .arrow {
  transition: transform 0.3s ease;
}

.btn-more-cases:hover .arrow {
  transform: translateX(5px);
}



/* ===== INNER PAGE CONTENT ===== */
.page-content {
  min-height: calc(100vh - 200px);
}

/* --- Tagline Boxes --- */
.tagline-boxes {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.tagline-boxes>div:nth-child(5n+1) {
  background: #ffdbd7;
}

.tagline-boxes>div:nth-child(5n+2) {
  background: #c6e6fb;
}

.tagline-boxes>div:nth-child(5n+3) {
  background: #c2ffdc;
}

.tagline-boxes>div:nth-child(5n+4) {
  background: #d8bffc;
}

.tagline-boxes>div:nth-child(5n) {
  background: #a4b0bb;
}

.tagline-box {
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 100;
  color: #252525;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #ffffff;
  border-radius: 100px;
  width: max-content;
  letter-spacing: 0;
}



/* ===== PORTFOLIO CATEGORY BADGES & TABS SYSTEM ===== */

/* Category Tabs Navigation Container */
.portfolio-categories-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px auto 20px;
  max-width: 900px;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Category Tab button */
.portfolio-tab {
  background: var(--white, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--primary, #05182b);
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 99px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.portfolio-tab span {
  background: rgba(15, 23, 42, 0.06);
  color: #64748b;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 700;
  transition: all 0.3s;
}

.portfolio-tab:hover {
  transform: translateY(-2px);
  border-color: var(--primary, #FF004D);
  color: var(--primary, #FF004D);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.portfolio-tab:hover span {
  background: rgba(255, 0, 77, 0.1);
  color: var(--primary, #FF004D);
}

.portfolio-tab.active {
  background: var(--primary, #FF004D);
  border-color: var(--primary, #FF004D);
  color: var(--white, #ffffff);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.portfolio-tab.active span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white, #ffffff);
}

/* Bento card category badge */
.bento-cat-badge {
  display: inline-block;
  background: rgba(255, 0, 77, 0.08);
  color: var(--primary, #FF004D);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-cat-badge {
  background: var(--primary, #FF004D);
  color: var(--white, #ffffff);
  transform: scale(1.02);
}

/* Case card category tag */
.case-cat-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #05182b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.case-card:hover .case-cat-tag {
  background: #05182b;
  color: var(--white, #ffffff);
}

.no-portfolios {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  margin-top: 20px;
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE SYSTEM — devXta
   Breakpoints: 1500 / 1400 / 1280 / 1024 / 768 / 480 / 360
   ============================================================ */
@media (max-width: 1500px) {

  .fade-container,
  .services-top {
    padding: 0 20px;
  }
section#inner-page-banner .container.leadership {
    padding: 0 30px;
}
}

@media (max-width: 1400px) {
  .hero {
    padding-top: 130px;
  }
}

/* ---- MOBILE HAMBURGER NAV (≤768px) ---- */
@media (max-width: 1200px) {
section#inner-blog .blog-grid.inner-blog-grid {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 991px) {
  .mobile-toggle span {
    background: var(--primary);
  }
section#inner-page-banner .container.blog-list {
    display: flex;
    flex-direction: row-reverse;
}
    section#inner-blog .blog-grid.inner-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Dropdown stays open in mobile */
  .nav.open .dropdown-menu {
		position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #ffffff;
        padding: 8px 20px 8px 20px;
        box-shadow: none;
        border-radius: 10px;
        margin-top: 4px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        max-width: 100%;
        min-width: 100%;
  }

  .nav.open .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }

  .nav.open .nav-links a {
    color: rgba(255, 255, 255, 0.9);
  }
    section#case-studies .case-card {
        height: 310px;
    }
.card-content {
    padding: 35px 15px 0;
}
.card-title {
    font-size: 1.2rem;
    line-height: 1.5;
}
}

/* ---- INNER PAGE BANNER (≤768px) ---- */
@media (max-width: 767px) {
	section#inner-page-banner .container.portfolio {
  flex-direction: column;
}
  section#inner-page-banner {
    padding: 130px 0 50px;
  }

  section#inner-page-banner h1 {
    font-size: 1.15rem;
  }

  .inner-page-banner .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
.services-mega-r, .services-mega-l:after{
	display: none;
}
.dropdown-menu.services-mega .wage-menu {
    padding: 0;
    gap: 5px;
}
.nav.open .dropdown-menu {
    flex-direction: column;
}
.services-mega-l {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
}
section#inner-page-banner .container.blog-list {
        flex-direction: column-reverse;
    }
section#inner-blog .blog-hero-row .blog-card.featured-blog {
    flex-direction: column;
}
.featured-blog .blog-card-body {
  padding: 25px;
  max-width: 100%;
}
section.blog-single-section {
    padding: 80px 0 30px;
}
}

@media (max-width: 480px) {
  section#inner-page-banner {
    padding: 110px 0 40px;
  }

  section#inner-page-banner h1 {
    font-size: 1rem;
  }

  .inner-page-banner .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/* ---- SERVICES STICKY LAYOUT (≤991px) ---- */
@media (max-width: 991px) {
  .fade-container {
    flex-direction: column;
    gap: 30px;
  }
.footer-bottom {
    flex-direction: column;
    gap: 15px;
            justify-content: left;
        align-items: baseline;
}
  .fade-container .fade-container-left,
  .fade-container .fade-container-right {
    width: 100%;
  }

  .services-right {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .services-right {
    gap: 40px;
  }

  .services-sticky {
    position: static;
  }
}

/* ---- PORTFOLIO PAGE TABS (≤768px) ---- */
@media (max-width: 767px) {
  .portfolio-categories-tabs {
    gap: 8px;
    margin: 24px auto 12px;
  }

  .portfolio-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products.section .bento-card {
    padding: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .portfolio-categories-tabs {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .portfolio-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

/* ---- TAGLINE BOXES (≤768px) ---- */
@media (max-width: 767px) {
  .tagline-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tagline-boxes {
    grid-template-columns: 1fr;
  }
}

/* ---- YOU GET WRAPPER (≤768px) ---- */
@media (max-width: 767px) {
  .you-get-wrapper {
    border-radius: 16px;
  }

  .you-get-content {
    padding: 40px 24px;
  }

  .you-get-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .you-get-content {
    padding: 28px 16px;
  }

  .you-get-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
}

/* ---- PRICING TABLE (≤768px) ---- */
@media (max-width: 767px) {
  .pricing .section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .pricing-table {
    font-size: 0.82rem;
  }

  .pricing-head,
  .pricing-row,
  .pricing-actions {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    font-size: 0.78rem;
  }

  .pricing-head-cell,
  .pricing-cell {
    padding: 12px 10px;
  }

  .pricing-head-cell .price {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pricing-table {
    overflow-x: auto;
    display: block;
  }

  .pricing-head,
  .pricing-row,
  .pricing-actions {
    min-width: 500px;
  }
}

/* ---- SPECIALIZATION GRID (≤768px) ---- */
@media (max-width: 767px) {
  .specialization-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }

  .spec-card {
    padding: 30px 24px;
  }

  .spec-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .spec-card {
    padding: 24px 16px;
  }
}

/* ---- HANDOVER GRID (≤768px) ---- */
@media (max-width: 767px) {
  .handover-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
.inner-blog {
  margin-top: -100px;
}
.featured-blog .blog-card-body {
  margin:10px 0 0 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
  .handover-card {
    padding: 28px 20px;
  }

  .handover-card.handover-full {
    grid-column: auto;
    flex-direction: column;
    gap: 12px;
  }
}

/* ---- EXPERTISE GRID (≤768px) ---- */
@media (max-width: 767px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .exp-card {
    padding: 20px;
  }
}

/* ---- ABOUT SECTION (≤480px) ---- */
@media (max-width: 480px) {
  .about-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .about-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px;
    min-width: 150px;
  }

  .about-number {
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 1.7rem;
  }

  .about-cards-wrapper .about-card {
    flex-direction: column;
  }
}

/* ---- TESTIMONIALS (≤768px) ---- */
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-left h2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .ps-overview-body tr {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .testimonials-left h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .testimonial-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-author img {
    width: 44px;
    height: 44px;
  }
}

/* ---- CLIENT VALUE (≤480px) ---- */
@media (max-width: 480px) {
  .client-value-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .client-value-content .client-value-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .client-value-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    width: max-content;
    justify-content: center;
    min-width: 150px;
    padding: 8px 20px;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .client-value-stats {
    padding-left: 0;
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
  }
}

/* ---- FOOTER (≤480px) ---- */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ---- BLOG SINGLE PAGE (≤991px) ---- */
@media (max-width: 991px) {
  .blog-single-layout {
    grid-template-columns: 1fr !important;
  }

  .blog-single-sidebar {
    order: -1;
  }

  .blog-single-sidebar .sidebar-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 20px;
  }

  .blog-single-sidebar .sidebar-card h4 {
    grid-column: 1 / -1;
  }

  .blog-hero-row {
    grid-template-columns: 1fr;
  }

  .blog-cats-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 767px) {
  .blog-single-hero {
    padding: 120px 0 40px !important;
  }

  .blog-single-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-single-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
  }

  .blog-content-area {
    padding: 48px 0 60px !important;
  }
}

@media (max-width: 480px) {
  .blog-single-title {
    font-size: clamp(1.4rem, 7vw, 2rem) !important;
  }

  .blog-share-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ---- PORTFOLIO SINGLE PAGE (≤991px) ---- */
@media (max-width: 991px) {
  .ps-hero .ps-hero-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }
  .ps-meta-strip .ps-meta-item {
        flex: 0 0 23%;
    }
  .ps-meta-strip .ps-meta-inner {
        flex-wrap: nowrap;
        gap: 10px;
    }
  .ps-hero {
    padding: 140px 0 60px !important;
  }

  .ps-laptop {
    max-width: 420px;
  }

  .ps-meta-inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ps-meta-item {
    flex: 0 0 45%;
    border-right: none;
    padding: 0;
  }

  .ps-content-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
section.ps-content-section {
    padding: 50px 0;
}
}
@media (max-width: 767px) {
    .ps-hero .ps-hero-inner {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .ps-meta-strip .ps-meta-inner {
        flex-wrap: wrap;
	}
.ps-meta-strip .ps-meta-item {
        flex: 0 0 48%;
    }
    .ps-meta-strip .ps-meta-inner {
        flex-wrap: wrap;
        gap: 40px 10px;
    }
}
@media (max-width: 480px) {
  .ps-hero {
    padding: 110px 0 40px !important;
  }

  .ps-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
  }

  .ps-meta-item {
    flex: 0 0 100%;
  }

  .ps-meta-strip {
    padding: 24px 0;
  }
}

/* ---- CONTACT PAGE (≤768px) ---- */
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .contact-form-card {
    padding: 32px 20px !important;
  }

  .contact-info-item {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .contact-section {
    padding: 60px 0 !important;
  }
}

/* ---- TEAMS PAGE (≤768px) ---- */
@media (max-width: 767px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .join-actions {
    flex-direction: column;
    gap: 12px;
  }

  .join-actions .btn {
    width: fit-content;
    justify-content: center;
  }

  section#services .services-card p {
    font-size: 1.5rem;
  }

  .team-values-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .teams-grid {
    grid-template-columns: 1fr !important;
  }

  .team-member-card {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ---- ABOUT US PAGE (≤768px) ---- */
@media (max-width: 767px) {
  .about-us-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .about-hero-img {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ---- GENERAL FIXES (≤480px) ---- */
@media (max-width: 480px) {

  /* Prevent horizontal scroll everywhere */
  body {
    overflow-x: hidden;
  }

  /* Fix bento cards */
  .bento-card {
    padding: 28px 20px;
  }

  .bento-card h3 {
    font-size: 1.3rem;
  }

  .bento-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Fix case card height */
  .case-card {
    height: 300px;
  }

  /* Section titles */
  .section-title,
  .products-title,
  .faq-title,
  .reviews-title,
  .blog-title,
  .services-top-head .services-title {
    font-size: clamp(1.5rem, 7.5vw, 2rem) !important;
    line-height: 1.35;
  }

  .client-value-content .client-value-title,
  .faq-title,
  .blog-title,
  .services-title,
  .services-title span,
  .reviews-title,
  .reviews-title span,
  .case-studies .section-title {
    font-size: clamp(2rem, 4vw, 5rem);
  }

  .client-value-img img {
    aspect-ratio: 4 / 2;
  }

  /* Section padding */
  .section,
  .products,
  .case-studies,
  .blog,
  .reviews,
  .faq {
    padding: 40px 0 !important;
  }

  section#hero {
    padding: 100px 0 40px !important;
  }

  /* Blog grid single column */
  .blog-grid,
  .inner-blog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* Footer grid single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    align-items: start;
  }

  /* Btn full width on very small screens */
  .hero-actions .btn-dark-green {
    width: max-content;
    justify-content: center;
    min-width: 150px;
  }

  .hero-container {
    gap: 10px;
  }

  /* Go up button */
  .go-up {
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  /* Nav CTA */
  .nav-cta {
		padding: 5px 10px;
        margin: 0 0px 5px;
        height: 30px;
        line-height: 19px;
        letter-spacing: -1px;
  }

  section#services .services-top-head {
    padding: 40px 0 0;
  }

  section#services .services-card {
    padding: 20px 0 0;
  }
}

/* ---- ULTRA-SMALL SCREENS (≤360px) ---- */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .header {
    width: calc(100% - 12px);
    top: 6px;
  }

  .nav {
    padding: 8px 12px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }

  .section-title,
  .products-title,
  .faq-title,
  .reviews-title,
  .blog-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem) !important;
  }

  .about-number {
    font-size: 1.8rem;
  }

  .bento-card {
    padding: 20px 14px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .nav-cta {
    font-size: 0.65rem;
    padding: 5px;
    margin: 0 5px 5px;
  }
}

/* ---- PRINT MEDIA (hide decorative elements) ---- */
@media print {

  .header,
  .footer,
  .go-up,
  .page-loader,
  .hero-badge,
  .sparkle,
  .reviews-slider-wrap,
  .about-marquee-wrapper,
  .mobile-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}