.footer_contact_sec {
  display: none;
}

/* HERO SECTION BACKGROUND */
.hero-sec {
  margin-top: -90px;
  background: linear-gradient(135deg, #06142a, #0b2a4a);
  padding: 8rem 0 4rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

/* LEFT CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
}

.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 174, 255, 0.5);
  color: #7dd3fc;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  background: linear-gradient(120deg, #38bdf8, #7aa2f7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  color: #cbd5e6;
  margin-top: 20px;
  /* max-width: 540px; */
  line-height: 1.65;
  font-size: 1rem;
}

.hero-btns {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-btns .btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero-btns .btn:hover {
  color: #fff !important;
}

.btn-primary {
  background: linear-gradient(95deg, #0ea5e9, #2563eb);
  border: none;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
  background: linear-gradient(95deg, #2563eb, #1e40af);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #38bdf8;
}

/* ========== MOBILE FRAME DESIGN (Right side form inside realistic phone mockup) ========== */
.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

/* The actual phone frame */
.mobile-frame {
  background: #111217;
  border-radius: 48px;
  padding: 14px 8px 18px 8px;
  box-shadow:
    0 30px 50px -20px rgba(0, 0, 0, 0.6),
    0 0 0 6px #2c2e3a,
    0 0 0 12px #1e1f2a;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

/* Dynamic island / notch effect */
.mobile-frame::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0a0a0e;
  border-radius: 30px;
  z-index: 10;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

/* speaker grill */
.mobile-frame::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 5px;
  background: #2c2e3a;
  border-radius: 20px;
  z-index: 11;
}

/* screen content (the actual form) */
.phone-screen {
  background: #fefefe;
  border-radius: 36px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  max-height: 580px;
  padding: 20px 18px 24px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
}

/* Custom scroll inside phone */
.phone-screen::-webkit-scrollbar {
  width: 3px;
}

.phone-screen::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.phone-screen::-webkit-scrollbar-thumb {
  background: #3b82f6;
  border-radius: 10px;
}

/* Form styling inside mobile frame */
.mobile-form h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
  text-align: center;
  letter-spacing: -0.3px;
}

.mobile-form .sub {
  font-size: 12px;
  color: #475569;
  text-align: center;
  margin-bottom: 20px;
  /* border-left: 2px solid #3b82f6; */
  padding-left: 10px;
  font-weight: 500;
}

.mobile-form .form-control,
.mobile-form select.form-control {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 0.85rem;
  transition: all 0.2s;
  width: 100%;
}

.mobile-form select.form-control {
  padding: 0px 14px;
}

.mobile-form .form-control:focus,
.mobile-form select.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: white;
}

.mobile-form textarea.form-control {
  resize: vertical;
  min-height: 3rem;
}

.mobile-form button {
  width: 100%;
  padding: 12px;
  font-weight: 700;
  border-radius: 40px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  border: none;
  color: white;
  margin-top: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.mobile-form button:hover {
  background: linear-gradient(90deg, #3b82f6, #0284c7);
  transform: scale(0.98);
}

.mobile-form .note {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  color: #5b6e8c;
  text-align: center;
}

/* fake home indicator */
.home-indicator {
  width: 130px;
  height: 5px;
  background: #3a3c4a;
  border-radius: 40px;
  margin: 12px auto 4px;
}

/* Hide default footer contact */
.footer_contact_sec {
  display: none;
}

/* Responsive: On desktop, right column shows phone frame; on actual mobile, frame scales and looks like a real phone app */
@media (max-width: 991px) {
  .hero-sec {
    padding: 4rem 0 3.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .phone-mockup-wrapper {
    margin-top: 40px;
  }

  .mobile-frame {
    max-width: 290px;
    margin: 0 auto;
  }

  .phone-screen {
    max-height: 540px;
  }
}

  .herosectioncountrycode .countrycode {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    width: 90px;
    margin-bottom: 16px;
    border-radius: 14px 0 0 14px;
    padding: 8px 0 11px 14px;
    font-size: 0.85rem;
    transition: all 0.2s;
    height: 35px!important;
  }
  .herosectioncountrycode input{
    border-radius: 0 14px 14px 0!important;
  }
@media (max-width: 576px) {


  .mobile-form .form-control,
.mobile-form select.form-control,
.herosectioncountrycode .countrycode {
 height: 50px!important;
}
  .hero-sec {
    height: 100%;
    padding: 6rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .badge-top {
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero-btns .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  /* mobile frame looks perfect even on tiny screens */
  .mobile-frame {
    max-width: 94%;
    border-radius: 38px;
    padding: 12px 6px 14px 6px;
  }

  .phone-screen {
    padding: 16px 14px;
    max-height: 500px;
  }

  .mobile-form h4 {
    font-size: 1.35rem;
  }

  .mobile-form .form-control,
  .mobile-form select.form-control {
    padding: 9px 12px;
    font-size: 0.8rem;
    margin-bottom: 12px;
  }


  .mobile-form button {
    padding: 10px;
  }
}

/* extra smoothness */
.mobile-frame {
  transition: all 0.2s;
}

.phone-screen {
  scroll-behavior: smooth;
}

/* force no overflow */
.container,
.row {
  overflow-x: visible;
}

/* counter with logo slider */
.trust-sec {
  padding: 3rem 0;
  background: #fff;
}

/* TITLE */
.tl {
  font-size: 13px;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 30px;
}

/* LOGO SLIDER */
.logo-slider {
  overflow: hidden;
  margin-bottom: 40px;
}

.logo-track {
  display: flex;
  width: calc(200px * 14);
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 140px;
  margin: 0 30px;
  /* filter: grayscale(100%);
  opacity: 0.7; */
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* INFINITE ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* STATS BOX */
.stats-box {
  background: linear-gradient(90deg, #020617, #0ea5e9);
  border-radius: 20px;
  padding: 40px 20px;
  color: #fff;
}

/* STAT CELL */
.stat-cell {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell h2 {
  font-size: 48px;
  font-weight: 800;
  display: inline-block;
}

.stat-cell span {
  font-size: 30px;
  color: #38bdf8;
  margin-left: 5px;
}

.stat-cell p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .stat-cell {
    border: none;
    margin-bottom: 20px;
  }

  .logo-track img {
    width: 100px;
    margin: 0 15px;
  }

  .stat-cell h2 {
    font-size: 32px;
  }
}

/* =====================================
   MOBILE SERVICES SECTION
===================================== */
#mobile-services-section {
  background: linear-gradient(135deg, #020617, #0b2a4a);
  padding: 3rem 0;
  color: #fff;
}

/* HEADER */
.section-subtitle {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-description {
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 40px;
}

/* CARD */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

/* TOP BORDER HOVER */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  transition: 0.4s;
}

.service-card:hover::before {
  width: 100%;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

/* ICON */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon img {
  width: 28px;
}

/* TEXT */
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-title a {
  color: #fff;
}
.service-text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-tag {
  font-size: 12px;
  color: #38bdf8;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 14px;
  }
}

/* =====================================
   INDUSTRY EXPERTISE SECTION
===================================== */
#industry-expertise-section {
  background: #f1f5f9;
  padding: 3rem 0;
}

/* HEADER */
.industry-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
}

.industry-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
}

.industry-description {
  max-width: 600px;
  color: #64748b;
  line-height: 1.3;
  margin-bottom: 50px;
}

/* CARD */
.industry-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

/* HOVER */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.industry-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* TITLE */
.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.industry-card h3 a {
  color: #0f172a;
}

/* TEXT */
.industry-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .industry-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .industry-title {
    font-size: 26px;
  }

  .industry-description {
    font-size: 14px;
  }
}

/* =====================================
   DEVELOPMENT PROCESS SECTION
===================================== */
#development-process-section {
  background: #f1f5f9;
  padding: 0 0 2rem 0;
}

/* HEADER */
.process-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-description {
  max-width: 600px;
  color: #64748b;
  line-height: 1.3;
  margin-bottom: 3rem;
}

/* WRAPPER */
.process-wrapper {
  position: relative;
}

/* LINE */
.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #cbd5f5;
  z-index: 0;
}

/* STEP */
.process-step {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

/* CIRCLE */
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #1d4ed8;
  margin: 0 auto 15px;
  background: #fff;
  transition: 0.3s;
}

/* ACTIVE (BLUE FILLED) */
.step-circle.active {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.step-circle.active:hover {
  border: 3px solid #1d4ed8;
  background: #fff;
  color: #2563eb;
  transition: 0.3s;
}

.step-circle:hover {
  border: 3px solid #fff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
/* TITLE */
.process-step .process_header {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

/* TEXT */
.process-step p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .process-title {
    font-size: 32px;
  }

  .process-line {
    display: none;
  }

  .step-circle {
    width: 65px;
    height: 65px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .process-title {
    font-size: 26px;
  }

  .process-description {
    font-size: 14px;
  }
}

/* =====================================
   TECHNOLOGY SECTION
===================================== */
#technology-section {
  background: linear-gradient(135deg, #020617, #0b2a4a);
  padding: 3rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* dotted background */
#technology-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.3;
}

/* HEADER */
.technology-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.technology-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.technology-description {
  max-width: 650px;
  color: #94a3b8;
  line-height: 1.3;
  margin-bottom: 50px;
}

/* CARD */
.tech-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  transition: 0.3s;
}

/* HOVER */
.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

/* ICON */
.tech-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* TITLE */
.tech-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-card h4 a {
  color: #fff;
}

/* TEXT */
.tech-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* TAG */
.tech-tag {
  font-size: 11px;
  color: #38bdf8;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .technology-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .technology-title {
    font-size: 24px;
  }
}

/* =====================================
       TECH STACK SECTION (Enhanced)
    ===================================== */
#tech-stack-section {
  background: #f8fafc;
  padding: 3rem 0;
  position: relative;
  overflow-x: hidden;
}

/* modern gradient background + subtle noise */
#tech-stack-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 20% 30%,
    rgba(59, 130, 246, 0.02) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* optional floating accent */
.bg-accent-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.03) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  top: -150px;
  right: -100px;
  pointer-events: none;
}

/* HEADER */
.techstack-header {
  text-align: center;
  margin-bottom: 2rem;
}

.techstack-subtitle {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 40px;
  backdrop-filter: blur(2px);
}

.techstack-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 10px 0 12px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.techstack-description {
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}

/* TABS - modern pill design */
.techstack-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.tech-tab {
  border: none;
  background: white;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  font-family: "Inter", sans-serif;
}

.tech-tab:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.tech-tab.active {
  background: linear-gradient(105deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.4);
}

/* SECTION TITLE (NEW & TRENDING / ESTABLISHED) */
.techstack-section-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #0f172a;
  margin: 1rem 0 20px 0;
  padding-left: 6px;
  /* border-left: 4px solid #3b82f6; */
  display: inline-block;
}

/* CARD - glassmorphism inspired */
.techstack-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(0px);
  border-radius: 28px;
  padding: 24px 12px;
  text-align: center;
  position: relative;
  border: 1px solid #eef2ff;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: default;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.02);
}

.techstack-card:hover {
  transform: translateY(-8px);
  border-color: #cbdffc;
  box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.techstack-card img {
  width: auto;
  height: 50px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: transform 0.2s;
}

.techstack-card:hover img {
  transform: scale(1.02);
}

.techstack-card p {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.2px;
}

/* NEW BADGE enhanced */
.badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(120deg, #0ea5e9, #2563eb);
  color: white;
  font-size: 8px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 40px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  text-transform: uppercase;
}

/* empty state / loading style */
.fade-transition {
  transition: opacity 0.2s ease;
}

/* row spacing */
/* .row {
  row-gap: 24px;
} */

/* responsive touch */
@media (max-width: 768px) {
  #tech-stack-section {
    padding: 2rem 0;
  }
  .techstack-title {
    font-size: 32px;
  }
  .tech-tab {
    padding: 6px 18px;
    font-size: 0.8rem;
  }
  .techstack-card img {
    width: 48px;
    height: 48px;
  }
  .techstack-section-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .techstack-tabs {
    gap: 8px;
  }
  .tech-tab {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  .badge-new {
    top: 10px;
    right: 10px;
    padding: 2px 7px;
    font-size: 9px;
  }
}

/* animation for dynamic content */
.tech-grid-container {
  min-height: 320px;
}
.tab-transition {
  animation: fadeSlideUp 0.25s ease-out;
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
   WHY SISGAIN SECTION
===================================== */
#why-sisgain-section {
  background: #f1f5f9;
  padding: 3rem 0;
}

/* LEFT CARD */
.why-card {
  background: linear-gradient(135deg, #020617, #0ea5e9);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

/* INNER BOX */
.testimonial-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.stars {
  color: #facc15;
  margin-bottom: 10px;
}
.stars i {
  font-size: 14px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-user {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: #cbd5f5;
}
.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

/* BADGES */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badges span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
}

/* RIGHT */
.why-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 10px 0 30px;
}

/* ITEM */
.why-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.why-icon {
  width: 80px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #020617, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.why-icon img {
  width: 20px;
  height: 20px;
}

.why-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-item p {
  font-size: 14px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-title {
    font-size: 28px;
  }

  .why-card {
    margin-bottom: 30px;
  }
}

/* =====================================
   COST OVERVIEW SECTION
===================================== */
#cost-overview-section {
  background: #f1f5f9;
  padding: 0 0 3rem 0;
}

/* HEADER */
.cost-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
}

.cost-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 10px 0;
}

.cost-desc {
  color: #64748b;
  max-width: 600px;
  margin-bottom: 30px;
}

/* TABLE */
.cost-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

/* HEADER */
.cost-table thead {
  background: linear-gradient(90deg, #020617, #0ea5e9);
  color: #fff;
}

.cost-table th {
  padding: 16px;
  text-align: left;
  font-size: 13px;
}

/* BODY */
.cost-table td {
  padding: 18px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
}

/* 🔥 BLUR COLUMN */
/* .blur-col {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.6);
} */

/* TAGS */
.tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.basic {
  background: #e0e7ff;
  color: #1d4ed8;
}
.medium {
  background: #dbeafe;
  color: #2563eb;
}
.complex {
  background: #cffafe;
  color: #0891b2;
}
.enterprise {
  background: #e0f2fe;
  color: #0369a1;
}

/* NOTE */
.cost-note-box {
  margin-top: 20px;
  background: #e0f2fe;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
}

.cost-note-box a {
  cursor: pointer;
  color: #2563eb !important;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cost-title {
    font-size: 28px;
  }

  .cost-table td,
  .cost-table th {
    font-size: 12px;
    padding: 12px;
  }
}

/* =====================================
   GLOBAL PRESENCE SECTION
===================================== */
#global-presence-section {
  background: linear-gradient(135deg, #020617, #0b2a4a);
  padding: 3rem 0;
  color: #fff;
  position: relative;
}

/* dotted background */
#global-presence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.3;
}

/* HEADER */
.global-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #38bdf8;
}

.global-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 10px 0;
}

.global-desc {
  max-width: 600px;
  color: #94a3b8;
  margin-bottom: 40px;
}

/* CARD */
.global-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

/* HOVER */
.global-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

/* COUNTRY CODE */
.country-code {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  /* background-color: #000; */
  background: linear-gradient(135deg, #020617, #0ea5e9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* TITLE */
.global-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.global-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* LINK */
.global-card a {
  display: inline-block;
  margin-top: 10px;
  color: #38bdf8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .global-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .global-title {
    font-size: 24px;
  }
  #global-presence-section,
  #mobile-services-section {
    padding: 2rem 0 0 0;
  }

  .trust-sec {
    padding: 0 0 2rem 0;
  }
  .mobile-form h4 {
    margin-top: 10px;
  }
  .badge-top {
    display: none;
  }
}

/* =====================================
   CLIENT testimonial SECTION
===================================== */
:root {
  --ct-gap: 24px;
  --ct-radius: 18px;
  --ct-shadow:
    0 10px 30px rgba(2, 6, 23, 0.08), inset 0 0 0 1px rgba(2, 6, 23, 0.04);
  --ct-bg: #fff;
  --ct-text: #0f172a;
  --ct-dim: #475569;
  --ct-accent: #0ea5e9;
  --ct-per-view: 3;
}
.client-title {
  font-weight: 600;
  font-size: 2.5rem;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}
.client-section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ct-slider {
  position: relative;
}
.ct-viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px;
}
.ct-track {
  display: flex;
  gap: var(--ct-gap);
  will-change: transform;
  touch-action: pan-y;
}
.ct-track.is-dragging {
  transition: none !important;
  cursor: grabbing;
}
.ct-card {
  flex: 0 0
    calc(
      (100% - (var(--ct-gap) * (var(--ct-per-view) - 1))) / var(--ct-per-view)
    );
  background: var(--ct-bg);
  border-radius: var(--ct-radius);
  box-shadow: var(--ct-shadow);
  padding: 28px;
}
.ct-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.ct-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 56px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.ct-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.ct-role {
  color: var(--ct-dim);
  margin-top: 2px;
  font-size: 14px;
}
.ct-quote {
  margin: 12px 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
}
.ct-stars {
  display: flex;
  gap: 6px;
}
.ct-stars i {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}
.ct-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}
.ct-nav:hover {
  transform: translateY(-50%) scale(1.05);
}
.ct-nav:active {
  transform: translateY(-50%) scale(0.97);
}
.ct-prev {
  left: -4px;
}
.ct-next {
  right: -4px;
}
.ct-nav svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  :root {
    --ct-per-view: 2;
  }
}
@media (max-width: 640px) {
  :root {
    --ct-per-view: 1;
  }
  .ct-nav {
    display: none;
  }
}

/* ===============================
   FAQ SECTION
=============================== */
#faq-section {
  background: #f1f5f9;
  padding: 3rem 0;
}

/* HEADER */
.faq-subtitle {
  color: #3b82f6;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 10px 0;
}

.faq-desc {
  color: #64748b;
  margin-bottom: 40px;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #64748b;
  transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title,
  .client-title {
    font-size: 2rem;
  }
}

/* cta section */
.cta-section {
  background: linear-gradient(135deg, #020617, #0ea5e9);
  padding: 3rem 0;
  color: #fff;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 600;
}

.cta-title span {
  color: #9ad9ff;
}

.cta-desc {
  margin: 20px 0;
  opacity: 0.9;
}

.cta-list {
  list-style: none;
  padding: 0;
}

.cta-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.cta-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
}

/* CONTACT */
.contact-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.contact-box {
  background: linear-gradient(135deg, #0f4c75, #1b7cb3);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
}

.contact_team {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact_team_phone_email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}

.contact_team_phone_email img {
  width: 20px;
}

/* FORM */
.form-card {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 20px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-card button {
  width: 100%;
  background: linear-gradient(90deg, #1b7cb3, #2ea1ff);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}

.form-footer {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 25px;
  padding: 0 10px;
  height: 45px;
  margin-bottom: 15px;
  font-size: 16px;
  border: #0f4c75 solid 2px;
}

/* PHONE GROUP */
.phone-group {
  display: flex;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 15px;
  border: #0f4c75 solid 2px;
}

.phone-group select {
  width: 110px;
  border: none;
  background: #fff;
  padding: 0 10px;
  margin-bottom: 0;
}

.phone-group input {
  border: none;
  flex: 1;
  background: transparent;
  margin-bottom: 0;
}

/* TEXTAREA */
.custom-form textarea {
  padding: 1rem;
  height: 70px;
  /* resize: none; */
}

/* BUTTON */
.custom-form button {
  width: 100%;
  background: linear-gradient(90deg, #1b7cb3, #2ea1ff);
  border: none;
  padding: 14px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
}

/* ✅ MOBILE RESPONSIVE FIX */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2rem;
    text-align: center;
  }

  .cta-desc {
    text-align: center;
  }

  .cta-list {
    text-align: left;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .form-card {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .contact-box {
    padding: 15px;
  }

  .form-card {
    padding: 20px;
  }

  .phone-group {
    flex-direction: row;
  }

  .phone-group select {
    width: 90px;
    font-size: 14px;
  }

  .phone-group input {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-desc {
    font-size: 14px;
  }

  .cta-list li {
    font-size: 14px;
  }

  .contact_team_phone_email {
    font-size: 14px;
  }

  .custom-form input,
  .custom-form select,
  .custom-form textarea {
    font-size: 14px;
    height: 42px;
  }

  .custom-form textarea {
    height: 80px;
  }

  .custom-form button {
    font-size: 14px;
    padding: 12px;
  }
}
