:root {
  --bg-body: #ffffff;
  --text: #0f172a;
  --accent: #2563eb;
  --nav-glass: rgba(255, 255, 255, 0.7);
  --border: rgba(0, 0, 0, 0.08);
  --mega-bg: #ffffff;
  --sub-text: #64748b;
  --card-hover: #f8fafc;
  --hero-grad-1: #f8fafc;
  --hero-grad-2: #eff6ff;
  --tag-bg: #f8fafc;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --footer-bg: #0f172a;
  --footer-line: rgba(255, 255, 255, 0.1);
  --text-light: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.03);

  /* Gradients for each phase */
  --wdlc-gradient-1: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  --wdlc-gradient-2: linear-gradient(135deg, #e879f9 0%, #c026d3 100%);
  --wdlc-gradient-3: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
  --wdlc-gradient-4: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --wdlc-gradient-5: linear-gradient(135deg, #34d399 0%, #059669 100%);

  /* UI Colors */
  --wdlc-bg-body: #020617;
  --wdlc-bg-glow: radial-gradient(circle at 50% 0%, #1e293b 0%, #020617 60%);
  --wdlc-card-bg: rgba(30, 41, 59, 0.4);
  --wdlc-card-border: rgba(255, 255, 255, 0.08);
  --wdlc-card-hover-border: rgba(255, 255, 255, 0.2);
  --wdlc-text-main: #f8fafc;
  --wdlc-text-muted: #94a3b8;
  --wdlc-shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --font-main: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="dark"] {
  --bg-body: #020617;
  --text: #f8fafc;
  --accent: #3b82f6;
  --nav-glass: rgba(11, 15, 26, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --mega-bg: #161b2a;
  --sub-text: #94a3b8;
  --card-hover: #1e293b;
  --hero-grad-1: #020617;
  --hero-grad-2: #111827;
  --tag-bg: #22253E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

html,
body {
  background: var(--bg-body);
  color: var(--text);
  transition: background 0.4s ease;
  max-width: 100%;
  overflow-x: hidden;
}

/*header for all start*/
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin: 0.8em 0 0.5em 0;
  letter-spacing: -0.02em;
}

/* ====================== */
/*        h1 Styles       */
/* ====================== */
h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.2rem);
  font-weight: 700;
  margin-bottom: 0.6em;
  background: linear-gradient(to right, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====================== */
/*        h2 Styles       */
/* ====================== */
h2 {
  font-size: clamp(1.8rem, 4vw + 0.5rem, 2.8rem);
  position: relative;
  padding-bottom: 0.5em;
  font-weight: 700;
}

/* Popular underline style for h2 */
h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6366f1, #a855f7);
  border-radius: 2px;
}

/* ─────────────────────────────────────────────── */
/*                Alternative Variations           */
/* ─────────────────────────────────────────────── */

/* Minimal & clean version */
h1.clean,
h2.clean {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111827;
}

h2.clean {
  font-weight: 700;
  border-bottom: 3px solid #e2e8f0;
  padding-bottom: 0.4em;
}

/* Hero / Large display style */
h1.hero {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0.4em 0 0.6em;
}

/*header for all end*/
/*button base format start*/
/* Base Button Styles */
/* Reset & base button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  /* Increased gap for icons */
  padding: 0.95rem 1.5rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
  margin-right: 1rem;
}

/* Smoother Shine Layer */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  /* Start further back */
  width: 80%;
  /* Wider for a softer edge */
  height: 100%;
  background: linear-gradient(115deg,
      /* Better angle */
      transparent,
      rgba(255, 255, 255, 0.1) 10%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.1) 90%,
      transparent);
  /* Uses a custom cubic-bezier for a "fast-start, slow-end" sweep */
  transition: left 0.85s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
  z-index: 1;
}

.btn:hover::before {
  left: 150%;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

/* Secondary button */
.btn-secondary {
  background: var(--bg-body);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--card-hover);
  border-color: var(--border);
  transform: translateY(-3px);
}

/* Glow version */
.btn-glow {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

/* Icon scaling */
.btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(2px);
  /* Subtle nudge on hover */
}

/*button base format end*/

/*a href for all start*/
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

/*a href for all end*/

/*main navbar start*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Section */
.logo-img {
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.accent-text {
  color: var(--accent);
}

/* Navigation Items */
.main-nav {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.nav-item {
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item:hover {
  background: var(--card-hover);
  color: var(--accent);
}

.has-mega:hover .nav-item i {
  transform: rotate(180deg);
}

/* Mega Menu Refinement */
/* 1. Mega Menu ko position fix gareko */
.mega-menu {
  position: absolute;
  /* Nav link sanga touch huna 100% rakheko */
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--mega-bg);
  border-bottom: 1px solid var(--border);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  /* Ease function ali smooth banayeko */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  padding: 2.5rem 0;
  box-shadow: var(--shadow);
  z-index: 100;
}

/* 2. Bridge/Invisible Padding thapeko (Important!) */
/* Yasle garda mouse link bata menu ma jada bich ma "Hover Out" hudaina */
.has-mega::after {
  content: "";
  position: absolute;
  top: 75px;
  /* Navbar ko height anusar adjust garnus */
  left: 0;
  width: 100%;
  height: 25px;
  /* Yo invisible area le menu lai connect garchha */
  display: block;
}

/* 3. Hover Trigger */
.has-mega:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  /* Hover vaye pachi menu thir rahanchha */
  pointer-events: auto;
}

/* 4. Mouse menu bhitra huda pani menu na-hatauna pointer-events active rakheko */
.mega-menu:hover {
  visibility: visible !important;
  opacity: 1 !important;
}

.mega-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding: 0 2rem;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mega-sidebar h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mega-sidebar p {
  color: var(--sub-text);
  font-size: 0.95rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.sub-item {
  display: flex;
  gap: 15px;
  padding: 1.2rem;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.sub-item:hover {
  background: var(--card-hover);
  border-color: var(--border);
  transform: translateY(-3px);
}

.sub-item i {
  width: 45px;
  height: 45px;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--accent);
  font-size: 1.2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sub-item span {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.sub-item small {
  color: var(--sub-text);
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

/* Language & Theme Switchers */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.lang-picker {
  background: var(--card-hover);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-body);
  color: var(--text);
  cursor: pointer;
  transition: 0.3s;
}

.theme-btn:hover {
  background: var(--text);
  color: var(--bg-body);
}


/* Developer Grid Specific Styling */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Desktop ma 4 columns */
  gap: 12px;
}

.dev-card {
  padding: 1rem !important;
  background: transparent;
}

.dev-card i {
  font-size: 1.5rem !important;
  transition: transform 0.3s ease;
  background: var(--card-hover) !important;
  /* Subtle background for icons */
}

.dev-card:hover i {
  background: var(--accent) !important;
  color: #fff !important;
  transform: scale(1.1) rotate(5deg);
}

.trust-badge {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Multi-column setup for smaller Mega Menus */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Specific styling for Ecommerce Icons */
.ecom-item i {
  color: #f39c12;
  /* Amazon/Gold tone */
  background: rgba(243, 156, 18, 0.1) !important;
}

.domain-item i {
  color: #27ae60;
  /* Domain/Green tone */
  background: rgba(39, 174, 96, 0.1) !important;
}

/* Hover effect refinements */
.sub-item:hover i {
  background: var(--accent) !important;
  color: #ffffff !important;
}

/* Glassmorphism adjustment for Mobile */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Blockchain Theme */
.block-item i {
  color: #8e44ad;
  /* Purple tone */
  background: rgba(142, 68, 173, 0.1) !important;
}

/* Hosting Theme */
.host-item i {
  color: #e67e22;
  /* Orange/Storage tone */
  background: rgba(230, 126, 34, 0.1) !important;
}

/* Hover effects (already defined in previous step, but ensuring consistency) */
.sub-item:hover i {
  background: var(--accent) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.custom-lang {
  position: relative;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--card-hover);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: 0.3s;
}

.lang-selected:hover {
  border-color: var(--accent);
}

.lang-selected .arrow {
  font-size: 0.7rem;
  transition: 0.3s;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 120px;
  background: var(--mega-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  list-style: none;
  padding: 5px;
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

/* Hover garda khulne logic */
.custom-lang:hover .lang-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-lang:hover .arrow {
  transform: rotate(180deg);
}

.lang-dropdown li {
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.2s;
}

.lang-dropdown li:hover {
  background: var(--accent);
  color: #fff;
}

/* Response for Mid-sized screens (Laptops) */
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Response for Mobile */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: 1fr;
    /* Mobile ma single column */
  }

  .developer-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu Animation */
@media (max-width: 1024px) {

  /*.mobile-toggle { cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
    .mobile-toggle .bar { width: 28px; height: 2px; background: var(--text); transition: 0.3s; }*/
  .mobile-toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-body);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .main-nav {
    flex-direction: column;
    padding: 2rem;
    align-items: stretch;
  }

  .mega-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    box-shadow: none;
    padding: 1rem 0;
  }

  .has-mega:hover .mega-menu {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}



@media (min-width: 769px) {
  .mobile-toggle {
    display: none !important;
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*main navbar end*/
/* Split Section start */
/* ===============================
   SPLIT SECTION – MOBILE FIRST
   =============================== */

/* Base layout (mobile) */
.split-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 120px;
}

/* Left heading */
.section-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0;
}

/* Right text */
.section-right p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--sub-text);
  margin: 0;
}

/* Divider (hidden on mobile) */
.section-divider {
  display: none;
}

/* ===============================
   TABLET & UP (768px+)
   =============================== */
@media (min-width: 768px) {
  .split-section {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .section-left,
  .section-right {
    flex: 1;
  }

  .section-left h1 {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
  }

  .section-right p {
    font-size: 1.1rem;
  }

  /* Divider */
  .section-divider {
    display: block;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent,
        var(--accent),
        transparent);
    transform: scaleY(0);
    opacity: 0;
    transition:
      transform 1s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.6s ease;
  }
}

/* ===============================
   DESKTOP & UP (1024px+)
   =============================== */
@media (min-width: 1024px) {
  .section-left h1 {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .section-right p {
    font-size: 1.2rem;
  }
}

/* ===============================
   DIVIDER ANIMATION TRIGGER
   =============================== */
.split-section.is-visible .section-divider {
  transform: scaleY(1);
  opacity: 1;
}

/* split section end */



/*hero section start*/
/* HERO SECTION */
.hero-section {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 0% 0%, var(--hero-grad-1), var(--hero-grad-2));
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  line-height: 1.1;
  color: var(--text);

}


.highlight {
  color: var(--accent);
  font-family: var(--font-heading);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--sub-text);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* TAGS */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-item {
  background: var(--mega-bg);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.tag-item i {
  color: var(--accent);
}

.tag-item:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--card-hover);
  border-color: var(--accent);
}

/* FLOAT ANIMATION */
.hero-tags-container {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .tags-cloud {
    justify-content: center;
  }
}

/*hero section end*/

/*next level start*/
.next-level-section {
  padding: 120px 10px 40px 10px;
  background: var(--bg-body);
  overflow: hidden;
}


.split-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Content Styling */
.split-content {
  flex: 1;
}

.split-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 20px 0 30px;
  color: var(--text);
}


.split-content .description {
  font-size: 1.15rem;
  color: var(--sub-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

/* Service Grid Styling */
.split-services {
  flex: 1;
}

.service-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.next-card {
  background: var(--card-hover);
  padding: 40px 30px;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}


.next-card:hover {
  background: var(--mega-bg);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.25);
  border-color: var(--accent);
}

.n-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: 0.3s;
}




/* Custom Icon Colors */
.n-icon.ai {
  background: #eff6ff;
  color: #2563eb;
}

.n-icon.mobile {
  background: #fdf2f8;
  color: #db2777;
}

.n-icon.web {
  background: #f0fdf4;
  color: #16a34a;
}

.n-icon.blockchain {
  background: #fff7ed;
  color: #ea580c;
}

[data-theme="dark"] .n-icon.ai {
  background: rgba(59, 130, 246, .15);
}

[data-theme="dark"] .n-icon.mobile {
  background: rgba(219, 39, 119, .15);
}

[data-theme="dark"] .n-icon.web {
  background: rgba(22, 163, 74, .15);
}

[data-theme="dark"] .n-icon.blockchain {
  background: rgba(234, 88, 12, .15);
}

.next-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.next-card p {
  font-size: 0.95rem;
  color: var(--sub-text);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .split-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .content-cta {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .service-grid-mini {
    grid-template-columns: 1fr;
  }
}

/*next level end*/
/*products-section start*/
.products-section {
  padding: 80px 0;
  background: var(--bg-body);
  transition: 0.3s;
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: var(--mega-bg);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  transition: 0.3s;
}

.product-card:hover .product-icon {
  background: var(--accent);
  color: #fff;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-card p {
  color: var(--sub-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Specific icon colors to keep it colorful but minimalist */
.icon-web {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

.icon-block {
  color: #8e44ad;
  background: rgba(142, 68, 173, 0.1);
}

.icon-wallet {
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .product-grid {
    padding: 0 20px;
  }
}

/*products-section end*/

/*tag section start*/
.tag-page-section {
  padding: 100px 0;
  background: var(--tag-bg);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.tag-card {
  background: var(--mega-bg);
  padding: 60px 40px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.tag-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.tag-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-body);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 15px;
  transition: 0.3s;
}

.tag-card:hover .tag-icon {
  background: var(--accent);
  color: var(--bg-body);
}

.tag-info h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 5px;
}

.tag-info span {
  font-size: 0.85rem;
  color: var(--sub-text);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tag-grid {
    grid-template-columns: 1fr;
  }
}

/*tag section end*/



/*Team members section start*/
.team-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.team-card {
  background: var(--mega-bg);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.member-image {
  width: 100px;
  height: 100px;
  background: var(--card-hover);
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  transition: 0.3s;
}

.team-card:hover .member-image {
  background: var(--accent);
  color: #fff;
}

.member-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.role {
  font-size: 0.85rem;
  color: var(--sub-text);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

/* Specialty Colors */
.head {
  border-top: 4px solid var(--accent);
}

.blockchain .member-image {
  color: #8e44ad;
}

.apps .member-image {
  color: #e67e22;
}

.designer .member-image {
  color: #27ae60;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: 0.3s;
}

.team-card:hover .social-links {
  opacity: 1;
}

.social-links a {
  color: var(--sub-text);
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

/* Mobile View */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/*Team members section end*/

/*Team members filter section start*/

.team-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--mega-bg);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}

/* Filtering Animation */
.team-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card.hide {
  display: none;
  opacity: 0;
  transform: scale(0.8);
}

/*Team members filter section end*/


/*tech-stack-section start*/
.tech-stack-section {
  padding: 100px 0;
  background: var(--bg-body);
}

/* Horizontal Tabs Menu */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.tab-link {
  background: transparent;
  border: none;
  padding: 12px 25px;
  font-weight: 700;
  color: var(--sub-text);
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  font-size: 1rem;
}

.tab-link.active {
  color: var(--accent);
}

.tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  border-radius: 5px 5px 0 0;
}

/* Tab Content Visibility */
.tab-content {
  display: none;
  animation: fadeEffect 0.6s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vertical/Grid Icons */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.tech-item {
  background: var(--mega-bg);
  border: 1px solid var(--border);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
}

.tech-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
  transition: 0.3s;
}

.tech-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.tech-item:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.tech-item:hover i,
.tech-item:hover span {
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tech-tabs {
    flex-direction: column;
    align-items: stretch;
    border: none;
  }

  .tab-link.active::after {
    display: none;
  }

  .tab-link {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 5px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*tech-stack-section end*/






/*blog section start*/
.blog-section {
  padding: 100px 0;
  background: var(--bg-body);
}

/* Featured Blog */
.featured-blog {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--mega-bg);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 60px;
  transition: 0.3s;
}

.featured-image {
  background: var(--card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: var(--accent);
  min-height: 400px;
}

.featured-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-cat {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.featured-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-content p {
  color: var(--sub-text);
  line-height: 1.8;
  margin-bottom: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: var(--sub-text);
  font-size: 0.85rem;
  margin-bottom: 30px;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--accent);
}

.read-more {
  background: var(--accent);
  color: var(--bg-body);
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
  transition: 0.3s;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--mega-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.blog-img {
  height: 200px;
  background: var(--card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent);
}

.blog-info {
  padding: 30px;
}

.blog-info h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-info p {
  font-size: 0.9rem;
  color: var(--sub-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile */
@media (max-width: 992px) {
  .featured-blog {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 300px;
  }

  .featured-content {
    padding: 30px;
  }
}

/*blog section end*/



/*pricing section start*/
.pricing-section {
  padding: 100px 0;
  background: var(--bg-body);
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.08);
  /* Ali thulo dekhine */
  z-index: 2;
  background: #ffffff;
  box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.2);
}

/* Toggle Switch Styling */
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--accent);
}

input:checked+.slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background: #27ae60;
  color: white;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 5px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--mega-bg);
  padding: 50px 40px;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition: 0.4s;
  position: relative;
}

.pricing-card.recommended {
  border: 2px solid var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-header h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  transition: 0.3s;
}

.duration {
  color: var(--sub-text);
}

.p-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.p-features li {
  margin-bottom: 15px;
  color: var(--sub-text);
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-features li i {
  color: #27ae60;
}

.p-features li.disabled {
  opacity: 0.5;
}

.p-features li.disabled i {
  color: var(--sub-text);
}

.btn-price {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-card:hover .btn-price,
.recommended .btn-price {
  background: var(--accent);
  color: white;
}

@media (max-width: 992px) {
  .pricing-card.featured {
    transform: scale(1);
    margin: 30px 0;
  }
}

/*pricing section end*/


/*industry section(full-final) start*/
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  background: var(--bg-body);
}

/* ================= HEADER ================= */

.industry-header-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}

.header-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.header-right p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--sub-text);
  margin: 0;
}

/* Divider animation */
.header-divider {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: scaleY(0);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
}

.industry-header-section.in-view .header-divider {
  transform: scaleY(1);
  opacity: 1;
}

/* ================= GRID ================= */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.industry-card {
  background: var(--bg-body);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.industry-card:hover {
  background: var(--tag-bg);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  z-index: 2;
}

/* ================= ICON ================= */

.industry-icon {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--accent);
  opacity: 0.75;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.35s ease,
    opacity 0.35s ease;
}

.industry-icon::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 65%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

/* ================= TEXT ================= */

.industry-card h3,
.industry-card p,
.meta-tag {
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.35s ease;
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  transform: translateY(6px);
}

.industry-card p {
  font-size: 14px;
  color: var(--sub-text);
  line-height: 1.6;
  margin-bottom: 20px;
  transform: translateY(10px);
}

.meta-tag {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--sub-text);
  margin-top: auto;
  letter-spacing: 0.08em;
  transform: translateY(14px);
  opacity: 0;
}

/* Hover stagger */
.industry-card:hover .industry-icon {
  transform: translateY(-6px) rotate(-6deg) scale(1.08);
  color: var(--accent);
  opacity: 1;
}

.industry-card:hover .industry-icon::after {
  opacity: 1;
  transform: scale(1);
}

.industry-card:hover h3 {
  transition-delay: 0.05s;
  transform: none;
}

.industry-card:hover p {
  transition-delay: 0.1s;
  transform: none;
}

.industry-card:hover .meta-tag {
  transition-delay: 0.15s;
  transform: none;
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .industry-header-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .header-divider {
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background: linear-gradient(to right, transparent, var(--accent), transparent);
  }

  .industry-header-section.in-view .header-divider {
    transform: scaleX(1);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/*industry section(full-final) end*/

/* stack tech page2 start*/
.master-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
  background: var(--bg-body);
}





/* -------- Tech Navigation -------- */
.master-container .tech-technav {
  max-width: 100vw;
  padding: 48px 5%;
  border-bottom: 1px solid var(--border);
  background: var(--bg-body);
  overflow: hidden;
}

.master-container .tech-technav h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* Horizontal scroll nav (mobile) */
.master-container .technav-list {
  max-width: 100%;
  overscroll-behavior-x: contain;
  list-style: none;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  scrollbar-width: none;
}

.master-container .technav-list::-webkit-scrollbar {
  display: none;
}

.master-container .technav-item {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sub-text);
  cursor: pointer;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.master-container .technav-item.active {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.12);
}

/* -------- Content -------- */
.master-container .tech-content {
  padding: 56px 5% 80px;
}

.master-container .content-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.master-container .content-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.master-container .kicker {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}

.master-container .pane-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 40px;
}

/* -------- Tools -------- */
.master-container .tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.master-container .tool-card {
  padding: 22px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  background: var(--bg-body);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.master-container .tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.master-container .tool-icon {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent);
  line-height: 1;
}

.master-container .tool-name {
  font-size: 13px;
  font-weight: 600;
}

/* ================= ENHANCEMENTS ================= */

/* -------- Tablet -------- */
@media (min-width: 768px) {
  .master-container .pane-title {
    margin-bottom: 50px;
  }

  .master-container .tool-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
  }
}

/* -------- Desktop -------- */
@media (min-width: 1024px) {
  .master-container {
    grid-template-columns: 320px 1fr;
  }

  .master-container .tech-technav {
    padding: 100px 40px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 0;
    height: 100vh;
  }

  .master-container .technav-list {
    flex-direction: column;
    overflow: visible;
  }

  .master-container .technav-item {
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .master-container .technav-item:hover {
    background: var(--card-hover);
    color: var(--text);
  }

  .master-container .tech-content {
    padding: 100px 8%;
  }

  .master-container .tool-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
}

/* stack tech page2 end */
/*features section start*/
.features-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.features-content h2 {
  line-height: 1.2;
  margin: 15px 0 25px;
}

.main-desc {
  color: var(--sub-text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.experience-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-hover);
  padding: 25px;
  border-radius: 20px;
}

.exp-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
}

.exp-text {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-box {
  background: var(--mega-bg);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--sub-text);
  line-height: 1.5;
}

/* Optional helper */
.feature-text {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .features-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-content {
    text-align: center;
  }

  .experience-badge {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/*features section end*/

/*portfolio-section start*/
.portfolio-section {
  padding: 120px 0;
  background: var(--bg-body);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.filter-link {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sub-text);
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}

.filter-link.active {
  color: var(--accent);
}

.filter-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  min-height: 400px;
  /* Filter garda page jump nahos bhanna ko lagi */
}



.project-card {
  background: var(--mega-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.4s;
}

.project-img {
  height: 250px;
  background: var(--card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--accent);
  position: relative;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-btn {
  padding: 12px 25px;
  background: var(--bg-body);
  color: var(--accent);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
}

.project-info {
  padding: 30px;
}

.p-cat {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-info h3 {
  margin: 10px 0 15px;
  font-size: 1.4rem;
}

.project-info p {
  color: var(--sub-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.p-tech {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.p-tech span {
  background: var(--bg-body);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.portfolio-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
}



/* Hide garne bela smoothly fade out garna */
.portfolio-item[style*="display: none"] {
  opacity: 0;
  transform: scale(0.9);
}

/*portfolio-section end*/

/*footer final2 start*/
/* ── Mobile Bottom Nav (unchanged) ─────────────────────────── */
.mobile-app-nav {
  position: fixed;
  inset: auto 0 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  height: 68px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 9999;
}

.mobile-app-nav a {
  color: var(--sub-text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  transition: color 0.3s ease;
}

.mobile-app-nav a i {
  width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.25rem;
}

.mobile-app-nav a span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.7;
}

.mobile-app-nav a.active {
  color: white;
}

.mobile-app-nav a.active i {
  background: rgba(37, 99, 235, 0.22);
  color: var(--accent);
}

.mobile-app-nav a.active span {
  opacity: 1;
}

.nav-action-btn {
  background: var(--accent);
  color: white !important;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  transform: translateY(-20px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  border: 4px solid var(--footer-bg);
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding: 40px 5%;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-line);
  margin-bottom: 40px;
}

.cta-text h2 {
  font-family: var(--font-heading);
}

.cta-text p {
  color: var(--sub-text);
}

/* Option 2 - Bold solid accent with metallic shine */
.cta-button {
  /* === Option 1 - Most premium & modern (glass + gradient border) === */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(37, 99, 235, 0.5);
}

.cta-button i {
  transition: transform 0.4s ease;
}

.cta-button:hover i {
  transform: translateX(6px);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.cta-button:hover::after {
  left: 120%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.55);
}

.footer-matrix {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.brand-column h2 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.brand-column p {
  color: var(--sub-text);
  line-height: 1.6;
}

/* Footer accordion lists (unchanged for brevity) */
.footer-list details {
  border-bottom: 1px solid var(--footer-line);
}

.footer-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  cursor: pointer;
}

.footer-list summary::-webkit-details-marker {
  display: none;
}

.footer-list summary::after {
  content: '\f067';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.footer-list details[open] summary::after {
  content: '\f068';
}

.footer-list ul {
  list-style: none;
  padding: 8px 0 24px;
}

.footer-list a {
  color: var(--sub-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  transition: all 0.28s ease;
}

.footer-list a i {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  display: grid;
  place-items: center;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-list a:hover {
  color: white;
}

.footer-list a:hover i {
  background: var(--accent);
  color: white;
  transform: scale(1.12) rotate(-4deg);
}

/* ── LOCATION CARDS ────────────────────────────────────────── */
.footer-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(37, 99, 235, 0.25);
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.location-card:hover::before {
  opacity: 1;
}

.location-card .city {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.location-card .city i {
  width: 42px;
  height: 42px;
  background: rgba(37, 99, 235, 0.18);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.location-card:hover .city i {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.location-card .address {
  color: var(--sub-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ── Bottom Bar ────────────────────────────────────────────── */
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--footer-line);
  font-size: 12.5px;
  color: var(--sub-text);
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}


.footer-trademarks {
  padding-top: 50px;
  font-size: 12.5px;
  color: var(--sub-text);
  text-align: center;
  line-height: 2;
}

/* ── DESKTOP ───────────────────────────────────────────────── */
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .mobile-app-nav {
    display: none;
  }

  footer {
    padding: 64px 8% 80px;
  }

  .footer-cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 56px;
  }

  .footer-matrix {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
  }

  .footer-list details {
    border: none;
  }

  .footer-list summary {
    cursor: default;
    pointer-events: none;
    padding: 0 0 14px;
  }

  .footer-list summary::after {
    display: none;
  }

  .footer-locations {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .legal-links {
    margin-top: 0;
  }
}

/*footer final2 end*/
/*wdlc start*/
.wdlc {
  background-image: var(--wdlc-bg-glow);
  color: var(--wdlc-text-main);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --- Decorative Orbs --- */
.wdlc-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.wdlc-orb-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: #3b82f6;
}

.wdlc-orb-2 {
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: #c026d3;
}

/* --- Header --- */
.wdlc-page-header {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  z-index: 1;
}

.wdlc-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--wdlc-card-border);
  border-radius: 100px;
  color: var(--wdlc-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.wdlc-page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- Container & Flow --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 100px;
  position: relative;
  z-index: 1;
}

.wdlc-process-flow {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* The Linear Connecting Line (Desktop) */
.wdlc-process-flow::before {
  content: '';
  position: absolute;
  top: 70px;
  /* Aligned with icon center */
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg,
      #22d3ee, #e879f9, #818cf8, #fbbf24, #34d399);
  opacity: 0.2;
  z-index: -1;
}

.wdlc-step {
  flex: 1;
  background: var(--wdlc-card-bg);
  border: 1px solid var(--wdlc-card-border);
  border-radius: 20px;
  padding: 32px 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--wdlc-shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.wdlc-step:hover {
  transform: translateY(-10px);
  border-color: var(--wdlc-card-hover-border);
}

/* --- Icons --- */
.wdlc-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.wdlc-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

/* Phase Colors & Hover States */
.wdlc-step[data-phase="analysis"] svg {
  stroke: #22d3ee;
}

.wdlc-step[data-phase="analysis"]:hover .wdlc-icon-wrapper {
  background: var(--wdlc-gradient-1);
  stroke: white;
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.4);
}

.wdlc-step[data-phase="design"] svg {
  stroke: #e879f9;
}

.wdlc-step[data-phase="design"]:hover .wdlc-icon-wrapper {
  background: var(--wdlc-gradient-2);
  stroke: white;
  box-shadow: 0 0 25px rgba(232, 121, 249, 0.4);
}

.wdlc-step[data-phase="dev"] svg {
  stroke: #818cf8;
}

.wdlc-step[data-phase="dev"]:hover .wdlc-icon-wrapper {
  background: var(--wdlc-gradient-3);
  stroke: white;
  box-shadow: 0 0 25px rgba(129, 140, 248, 0.4);
}

.wdlc-step[data-phase="test"] svg {
  stroke: #fbbf24;
}

.wdlc-step[data-phase="test"]:hover .wdlc-icon-wrapper {
  background: var(--wdlc-gradient-4);
  stroke: white;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
}

.wdlc-step[data-phase="deploy"] svg {
  stroke: #34d399;
}

.wdlc-step[data-phase="deploy"]:hover .wdlc-icon-wrapper {
  background: var(--wdlc-gradient-5);
  stroke: white;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.4);
}

.wdlc-step:hover svg {
  stroke: #fff;
}

/* --- Details & List --- */
.wdlc-details-btn {
  background: transparent;
  border: none;
  color: var(--wdlc-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  padding: 10px;
  margin-top: 15px;
  transition: color 0.3s;
}

.wdlc-step:hover .wdlc-details-btn {
  color: white;
}

.wdlc-detail-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  text-align: left;
  width: 100%;
}

.wdlc-detail-list.active {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--wdlc-card-border);
}

.wdlc-detail-list ul {
  list-style: none;
}

.wdlc-detail-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 5px;
}

.wdlc-detail-list li::before {
  content: '→ ';
  color: var(--wdlc-text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .wdlc-process-flow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wdlc-step {
    min-width: 250px;
  }

  .wdlc-process-flow::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .wdlc-process-flow {
    flex-direction: column;
  }

  .wdlc-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .wdlc-icon-wrapper {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }
}

/*wdlc end*/


/* --- about page start --- */
.about-page {
  padding: 100px 0;
  background: var(--bg-body);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

.highlight {
  color: var(--accent);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--sub-text);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Stats Section */
.about-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-box p {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

/* Mission & Vision Cards */
.mission-vision {
  background: var(--mega-bg);
  padding: 80px 0;
  margin-top: 100px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: var(--bg-body);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.mv-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.mv-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Mobile View */
@media (max-width: 992px) {

  .about-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* --- about page end --- */

/*product details section start*/
.product-details-container {
  padding: 120px 0 60px;
  background: var(--bg-body);
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--sub-text);
  margin-bottom: 30px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--accent);
}

.details-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;

}

.main-image {
  width: 100%;
  height: 460px;
  /* ← adjust this height to your preference */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 20px 20px 0px #dfe6e9;
  transition: var(--transition);
}

.main-image:hover {
  transform: translateY(-8px);
  box-shadow: 20px 20px 0px #dfe6e9;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ← key property: image always fills nicely */
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.main-image:hover img {
  transform: scale(1.06);
  /* subtle zoom on hover */
}

/* fallback icon styling (shown when no image) */
.main-image:has(i) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  color: var(--accent);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}



/* Info Section */
.category-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.product-info h1 {
  font-size: 2.8rem;
  margin: 10px 0;
  font-weight: 800;
  color: var(--text);
}

.price-range {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.price-range span {
  color: var(--accent);
  font-size: 2rem;
}

.description {
  color: var(--sub-text);
  line-height: 1.8;
  margin-bottom: 30px;
}

.features-list {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text);
}

.feature-item i {
  color: var(--accent);
}

.action-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  border: none;
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}


/* Mobile View */
@media (max-width: 992px) {
  .details-wrapper {
    grid-template-columns: 1fr;
  }

  .product-info h1 {
    font-size: 2rem;
  }
}

/*product details section end*/

/*product-inquiry-section start*/
/* Container & Section */
.product-inquiry-section {
  max-width: 1100px;
  width: 100%;
  background: var(--card-hover);
  border-radius: 40px;
  padding: 60px;
  position: relative;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin: 60px auto 60px auto;
}

/* Subtle Background Glows */
.product-inquiry-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.05;
  z-index: 0;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* Form Header */
.form-header h2 {
  font-family: var(--font-heading);
  letter-spacing: -1px;
  margin-bottom: 12px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text);
}

.form-header p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Interactive Form */
.interactive-form {
  display: grid;
  gap: 24px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--accent);
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group input,
.input-group textarea {
  background: var(--bg-body);
  border: 1.5px solid var(--border);
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--inner-shadow);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  transform: translateY(-2px);
}

/* Premium Submit Button */
.submit-btn {
  background: var(--text);
  color: var(--bg-body);
  border: none;
  padding: 20px 40px;
  border-radius: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: var(--accent);
}

/* Sidebar Support */
.quick-support {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  color: var(--text);
}

.support-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.s-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
}

.support-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}

.support-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .quick-support {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }

  .product-inquiry-section {
    padding: 40px 25px;
    border-radius: 24px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .form-header h3 {
    font-size: 2rem;
  }
}

/*product-inquiry-section end*/


/* STYLISH HR IMPLEMENTATION START*/
.style-six {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  width: 50%;
  /* Only takes up half the width */
  margin: 0;
  /* Removes default centering */
}

/* STYLISH HR IMPLEMENTATION END*/