/* ── ROOT COLORS (same as homepage) ── */
:root {
  --primary: #0057ff;
  --primary-dark: #0040cc;
  --orange: #ff7a00;
  --navy: #0a0f2c;
  --dark: #1a1a2e;
  --gray: #666;
  --light-bg: #f8f9ff;
  --ai-purple: #7c3aed;
  --dm-green: #059669;
  --shopify: #008060;
  --white: #fff;
  --border: #e8e8e8;
}

/* ── HERO ── */
/* new index page styling  */

/* ── NAV BADGE ── */
.nav_new_badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff4d4f, #ff7a00);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── AI GRID ── */
.ai_services_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.ai_services_grid li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s;
  text-decoration: none;
  color: #222;
  font-size: 13px;
  font-weight: 500;
}

.ai_services_grid li a:hover {
  background: #f0f5ff;
  color: #0057ff;
}

.ai_icon_box {
  width: 36px;
  height: 36px;
  background: #e8f0fe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

/* ── NAV TABS: Left side pill buttons for Development dropdown ── */
.dev_menu_tabs .nav-link {
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  border-radius: 8px;
  transition: all .2s;
  cursor: pointer;
  width: 100%;
  display: block;
}

.dev_menu_tabs .nav-link:hover,
.dev_menu_tabs .nav-link.active {
  background: #eef4ff;
  color: #0057ff;
}

/* ── SERVICE TAG CHIPS ── */
.service_tags_strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service_tag_chip {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}

.service_tag_chip.ai_chip {
  border-color: #c4b5fd;
  color: #7c3aed;
  background: #f5f0ff;
}

.service_tag_chip.dm_chip {
  border-color: #6ee7b7;
  color: #059669;
  background: #f0fdf4;
}

/* ── HERO TAG ── */
.hero_ai_tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 87, 255, .08);
  border: 1px solid rgba(0, 87, 255, .2);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #0057ff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero_ai_tag .dot {
  width: 7px;
  height: 7px;
  background: #0057ff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: .4;
    transform: scale(1.3)
  }
}

/* ── SECTION EYEBROW ── */
.section_eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0057ff;
  background: #f0f5ff;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section_eyebrow.ai {
  color: #7c3aed;
  background: #f5f0ff;
}

/* ── READY SOLUTION CARDS ── */
.solutions_card_new {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 22px;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px !important;
  height: 100%;
}

.solutions_card_new:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.solutions_card_new .card_icon_wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.solutions_card_new .card_label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.solutions_card_new h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.solutions_card_new p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .solutions_card_new {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  .solutions_card_new .card_icon_wrap {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .solutions_card_new {
    padding: 15px 10px;
  }
  .solutions_card_new .card_icon_wrap {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .solutions_card_new .card_label {
    font-size: 9px;
  }
}

.ai_card .card_icon_wrap {
  background: #f5f0ff;
}

.ai_card .card_label {
  color: #7c3aed;
}

.ai_card:hover {
  border-color: #7c3aed;
}

.dm_card .card_icon_wrap {
  background: #f0fdf4;
}

.dm_card .card_label {
  color: #059669;
}

.dm_card:hover {
  border-color: #059669;
}

.app_card .card_icon_wrap {
  background: #f0f5ff;
}

.app_card .card_label {
  color: #0057ff;
}

.shopify_card .card_icon_wrap {
  background: #f0fff4;
}

.shopify_card .card_label {
  color: #008060;
}

.shopify_card:hover {
  border-color: #008060;
}

/* ── TECH STACK ── */
.tech_stack_section {
  background: #f8f9ff;
  padding: 30px 0;
}

.tech_scroll_row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tech_pill {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tech_pill.ai_tech {
  border-color: #c4b5fd;
  color: #7c3aed;
  background: #f5f0ff;
}

/* ── WHY DQOT ── */
.why_card {
  background: #fff;
  padding: 26px;
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  height: 100%;
}

.why_card .why_icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.why_card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.why_card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── NAV CONTENT HEADING ── */
.nav_section_label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  padding: 0 10px 8px;
  display: block;
}

/* ── DEV DROPDOWN FIX ── */
#devTabContent .tab-pane {
  display: none;
}

#devTabContent .tab-pane.show {
  display: block;
}

/* new  index page styling*/
.sp_hero {
  background: linear-gradient(135deg, var(--navy) 0%, #12195a 60%, #1a0f3c 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.sp_hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 87, 255, .15) 0%, transparent 70%);
  border-radius: 50%;
}

.sp_hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, .1) 0%, transparent 70%);
  border-radius: 50%;
}

.sp_hero .container {
  position: relative;
  z-index: 2;
}

.sp_hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sp_hero_badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: .4;
    transform: scale(1.3)
  }
}

.sp_hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.sp_hero h1 span {
  color: var(--orange);
}

.sp_hero .sp_tagline {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.sp_hero_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn_hero_primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn_hero_secondary {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  border: 2px solid rgba(255, 255, 255, .3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn_hero_secondary:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.sp_hero_stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.sp_stat_item .num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.sp_stat_item .num span {
  color: var(--orange);
}

.sp_stat_item .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

/* Hero right image panel */
.sp_hero_visual {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.sp_hero_visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 87, 255, .1), rgba(124, 58, 237, .1));
}

.sp_hero_image_box {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

.sp_hero_img_main {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.sp_hero_visual:hover .sp_hero_img_main {
  transform: scale(1.05);
}

.sp_hero_icon_main {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
}

.sp_hero_feature_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.sp_hero_pill {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .8);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* ── SECTION COMMON ── */
.sp_section {
  padding: 70px 0;
}

.sp_section_alt {
  padding: 70px 0;
  background: var(--light-bg);
}

.sp_section_dark {
  padding: 70px 0;
  background: var(--navy);
  color: #fff;
}

.sp_eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.sp_eyebrow.blue {
  color: var(--primary);
  background: #f0f5ff;
}

.sp_eyebrow.purple {
  color: var(--ai-purple);
  background: #f5f0ff;
}

.sp_eyebrow.green {
  color: var(--dm-green);
  background: #f0fdf4;
}

.sp_eyebrow.orange {
  color: var(--orange);
  background: #fff7f0;
}

.sp_h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.sp_h2_white {
  color: #fff;
}

.sp_lead {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── FEATURE CARDS ── */
.sp_feat_card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s;
  height: 100%;
}

.sp_feat_card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.sp_feat_icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.sp_feat_card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.sp_feat_card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* ── PROCESS STEPS ── */
.sp_process_step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .3s;
}

.sp_process_step:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 87, 255, .08);
}

.sp_step_num {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp_step_content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.sp_step_content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ── TECH BADGES ── */
.sp_tech_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sp_tech_badge {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── FAQ ── */
.sp_faq_item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.sp_faq_q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.sp_faq_q:hover {
  background: #f8f9ff;
}

.sp_faq_q .sp_faq_icon {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 10px;
}

.sp_faq_a {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  display: none;
}

/* ── WHY DQOT ── */
.sp_why_card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 26px;
}

.sp_why_icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.sp_why_card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sp_why_card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin: 0;
}

/* ── USE CASES ── */
.sp_usecase_card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 22px;
  transition: all .3s;
}

.sp_usecase_card:hover {
  border-color: var(--primary);
}

.sp_usecase_industry {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
}

.sp_usecase_card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.sp_usecase_card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ── CTA SECTION ── */
.sp_cta_section {
  background: linear-gradient(135deg, var(--primary) 0%, #0040cc 100%);
  padding: 70px 0;
  text-align: center;
}

.sp_cta_section h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.sp_cta_section p {
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
}

.btn_cta_white {
  background: #fff;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.btn_cta_white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  color: var(--primary);
}

.btn_cta_ghost {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  margin-left: 14px;
}

.btn_cta_ghost:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* ── TRUSTED BY ── */
.sp_trust_bar {
  background: var(--light-bg);
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.sp_trust_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sp_trust_logos span {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* ── NAV BADGE ── */
.nav_new_badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff4d4f, #ff7a00);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── AI GRID IN NAV ── */
.ai_services_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.ai_services_grid li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s;
  text-decoration: none;
  color: #222;
  font-size: 13px;
  font-weight: 500;
}

.ai_services_grid li a:hover {
  background: #f0f5ff;
  color: var(--primary);
}

.ai_icon_box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .sp_hero {
    padding: 60px 0 50px;
  }

  .sp_hero h1 {
    font-size: 28px;
  }

  .sp_hero_btns {
    flex-direction: column;
  }

  .sp_hero_visual {
    margin-top: 40px;
  }

  .btn_cta_ghost {
    margin-left: 0;
    margin-top: 10px;
  }
}
/* ── MEGA MENU COMPACT FIX ──
   Purpose: Remove white space from mega menu dropdowns and improve layout.
   Date: 2026-05-15
*/
.new_header:has(li.hide-global-form:hover) .header-form-outer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.new_header .navbar .navbar-nav .nav-item .service_menu {
    width: max-content !important;
    min-width: auto !important;
    left: 0px !important;
    top: 58px !important;
    padding: 0 !important; /* Remove padding to let columns fill the edges */
}

.new_header .navbar .navbar-nav .nav-item .service_menu .inner-depth-box .sub_menu_content .tab-content .tab-pane .all_menu_tabs ul {
    height: auto !important;
    max-height: 484px !important;
    padding-right: 15px !important;
}

/* Ensure the row doesn't force 100% width and columns fit content */
.new_header .navbar .navbar-nav .nav-item .service_menu .inner-depth-box .row {
    flex-wrap: nowrap !important;
    width: max-content !important;
    margin: 0 !important;
}

.new_header .navbar .navbar-nav .nav-item .service_menu .inner-depth-box .row > div {
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
}

/* Restore some padding for content */
.new_header .navbar .navbar-nav .nav-item .service_menu .inner-depth-box .sub_menu_content {
    padding: 20px 30px 20px 20px !important;
}
