:root {
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --amber-dark: #D97706;
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --slate: #475569;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --bg: #FAFAFA;
  /* Brand Colors */
  --brand-light: #98d4ff;
  --brand-primary: #27a8f7;
  --brand-text: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
}
h1, h2, h3, h4, .brand { font-family: 'Open Sans', sans-serif; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 4px; }

/* ── Navbar ── */

.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 40px; height: 68px;
  gap: 4px;
}

.nav-logo { 
display: flex; 
align-items: center; 
gap: 4px; 
margin-right: 32px; 
text-decoration: none; 
}

/* Logo Styles munna */
.logo-mark {
width: 38px; 
height: 38px; 
border-radius: 8px;
background: transparent;
border: 2px solid var(--brand-primary);
display: flex; 
align-items: center; 
justify-content: center;
position: relative; 
overflow: hidden;
}
/*    .logo-mark::after {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  background: var(--brand-light);
  border-radius: 50%;
  bottom: 6px; right: 6px;
}*/
.logo-letters { 
font-family: 'Open Sans', sans-serif; 
font-weight: 800; 
font-size: 0.85rem; 
color: var(--brand-primary);
}

/* Shuttle text */
/*.brand-text {*/
/*font-weight: 800;*/
/*font-size: 1.15rem;*/
/*color: var(--brand-light);*/
/*margin-right: 2px;*/
/*}*/

.brand-text {
font-weight: 800;
font-size: 1.15rem;
color: var(--brand-primary);
margin-right: 2px;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  color: var(--slate); padding: 8px 14px; border-radius: 8px;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover { background: #f0f8ff; color: var(--brand-primary); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  font-family: 'Open Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--navy); padding: 9px 20px; border-radius: 10px;
  border: 1.5px solid var(--border); background: transparent;
  cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--brand-primary); background: var(--brand-primary); color: #fff; }
.btn-cta {
  font-family: 'Open Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  background: var(--brand-primary); color: #fff;
  padding: 10px 22px; border-radius: 10px; border: none;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.btn-cta:hover { background: #1a8fd6; color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

/*nav service dropdown header*/

/* ── Navigation Dropdown (Fixed Position) ── */

/* ── Modern Mega Dropdown ── */
.nav-dropdown-wrapper {
position: relative;
}

.nav-dropdown-trigger {
display: flex;
align-items: center;
gap: 5px;
cursor: pointer;
}

.dropdown-arrow {
transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover .dropdown-arrow {
transform: rotate(180deg);
}

/* Dropdown Container */
.mega-dropdown {
position: absolute;
top: calc(100% + 4px);
left: 0;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 200;
width: 520px;
pointer-events: none;
}

.nav-dropdown-wrapper:hover .mega-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
pointer-events: all;
}

/* Bridge to prevent flickering */
.mega-dropdown::before {
content: '';
position: absolute;
top: -8px;
left: 0;
right: 0;
height: 8px;
background: transparent;
}

/* Inner Container */
.mega-inner {
display: flex;
padding: 20px 20px 0;
gap: 0;
}

/* Columns */
.mega-col {
flex: 1;
display: flex;
flex-direction: column;
padding: 0 10px;
}

.mega-col:first-child {
border-right: 1px solid #f1f5f9;
}

/* Mega Items */
.mega-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 14px;
border-radius: 12px;
text-decoration: none;
transition: all 0.2s ease;
border: 1px solid transparent;
margin-bottom: 2px;
}

.mega-item:hover {
background: #f8fafc;
border-color: #e8f4ff;
transform: translateX(4px);
}

.mega-item-featured {
background: linear-gradient(135deg, #FFFBF0 0%, #FFF7E0 100%);
border: 1px solid rgba(245, 158, 11, 0.15);
margin-top: auto;
}

.mega-item-featured:hover {
background: linear-gradient(135deg, #FFF7E0 0%, #FFEBAA 100%);
border-color: rgba(245, 158, 11, 0.3);
}

.mega-item-icon {
width: 38px;
height: 38px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.2s ease;
}

.mega-item:hover .mega-item-icon {
transform: scale(1.1);
}

.mega-item-content {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
}

.mega-item-title {
font-size: 0.85rem;
font-weight: 700;
color: #0F172A;
line-height: 1.3;
}

.mega-item:hover .mega-item-title {
color: #27a8f7;
}

.mega-item-featured .mega-item-title {
color: #92400E;
}

.mega-item-desc {
font-size: 0.73rem;
color: #94A3B8;
line-height: 1.3;
}

/* Footer */
.mega-footer {
padding: 14px 20px;
margin-top: 14px;
border-top: 1px solid #f1f5f9;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
background: #fafafa;
border-radius: 0 0 16px 16px;
}

.mega-footer span {
font-size: 0.8rem;
font-weight: 500;
color: #64748B;
}

.mega-footer-link {
font-size: 0.82rem;
font-weight: 600;
color: #27a8f7;
text-decoration: none;
transition: all 0.2s;
white-space: nowrap;
}

.mega-footer-link:hover {
color: #1a8fd6;
transform: translateX(2px);
}

/* Navbar overflow fix */
.navbar {
overflow: visible;
}

/* Responsive */
@media (max-width: 768px) {
.nav-dropdown-wrapper {
position: static;
}

.mega-dropdown {
position: fixed;
top: 68px;
left: 0;
right: 0;
width: 100%;
border-radius: 0 0 16px 16px;
max-height: 65vh;
overflow-y: auto;
transform: translateY(8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.nav-dropdown-wrapper:hover .mega-dropdown {
transform: translateY(0);
}

.mega-inner {
flex-direction: column;
padding: 12px 12px 0;
}

.mega-col:first-child {
border-right: none;
border-bottom: 1px solid #f1f5f9;
padding-bottom: 8px;
margin-bottom: 4px;
}

.mega-col {
padding: 0 4px;
}

.mega-item {
padding: 10px 12px;
}

.mega-footer {
border-radius: 0;
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 12px;
}
}


/*company dropdown*/

/* ── Company Dropdown ── */
.company-dropdown {
width: 320px;
left: 0;
}

.company-dropdown-inner {
padding: 16px;
display: flex;
flex-direction: column;
gap: 2px;
}

.company-item {
display: flex;
align-items: center;
gap: 12px;
padding: 11px 14px;
border-radius: 10px;
text-decoration: none;
transition: all 0.2s ease;
border: 1px solid transparent;
}

.company-item:hover {
background: #f8fafc;
border-color: #e8f4ff;
transform: translateX(3px);
}

.company-item-icon {
width: 34px;
height: 34px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.2s ease;
}

.company-item:hover .company-item-icon {
transform: scale(1.1);
}

.company-item-content {
display: flex;
flex-direction: column;
gap: 1px;
}

.company-item-title {
font-size: 0.85rem;
font-weight: 700;
color: #0F172A;
line-height: 1.3;
}

.company-item:hover .company-item-title {
color: #27a8f7;
}

.company-item-desc {
font-size: 0.72rem;
color: #94A3B8;
line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
.company-dropdown {
width: 100%;
left: 0;
right: 0;
}

.company-dropdown-inner {
padding: 12px;
}

.company-item {
padding: 10px 12px;
}
}

/*end*/ 

/* ── Hero ── */
.hero-section {
  background: #fff;
  padding: 80px 40px 60px;
  max-width: 1280px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e8f4ff; color: var(--brand-primary);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  border: 1px solid rgba(39,168,247,0.2);
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--brand-primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
.hero-h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.05;
  letter-spacing: -1.5px; color: var(--navy);
}
.hero-h1 .accent { color: var(--brand-primary); }
.hero-sub {
  font-size: 1.15rem; color: var(--slate); line-height: 1.7;
  max-width: 540px; margin-top: 20px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-btn-primary {
  background: var(--brand-primary); color: #fff; font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem; padding: 14px 28px;
  border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.hero-btn-primary:hover { background: #1a8fd6; transform: translateY(-2px); }
.hero-btn-secondary {
  background: #fff; color: var(--navy); font-family: 'Open Sans', sans-serif;
  font-weight: 500; font-size: 0.95rem; padding: 14px 28px;
  border-radius: 12px; border: 1.5px solid var(--border); cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.hero-btn-secondary:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.stat-item .stat-num { font-family: 'Open Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-item .stat-label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ── Right Side Image Card ── */
.hero-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/5;
  max-height: 600px;
  border: 2px solid rgba(39,168,247,0.2);
}
.hero-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border-color: rgba(39,168,247,0.4);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-image-card:hover .hero-image { transform: scale(1.05); }
.hero-image-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.3), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── Technology Bar ── */
.tech-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: linear-gradient(135deg, #FAFAFA 0%, #f0f8ff 50%, #FAFAFA 100%);
  overflow: hidden; position: relative;
}
.tech-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.tech-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em;
  white-space: nowrap; padding: 8px 16px;
  background: linear-gradient(135deg, #e8f4ff, #c9e8ff);
  border-radius: 8px; border: 1px solid rgba(39,168,247,0.3);
  z-index: 2; flex-shrink: 0; position: relative;
}
.tech-scroll-wrapper {
  flex: 1; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.tech-scroll-track {
  display: flex; align-items: center; gap: 32px;
  animation: scrollTech 30s linear infinite;
  width: max-content;
}
.tech-scroll-track:hover { animation-play-state: paused; }
.tech-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: var(--slate);
  white-space: nowrap; padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 10px; transition: all 0.3s ease;
  cursor: default; flex-shrink: 0;
}
.tech-item:hover {
  color: var(--brand-primary);
  background: rgba(39,168,247,0.08);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39,168,247,0.15);
}
.tech-item svg { flex-shrink: 0; opacity: 0.7; transition: opacity 0.3s ease; }
.tech-item:hover svg { opacity: 1; color: var(--brand-primary); }

@keyframes scrollTech {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-scroll-wrapper::before,
.tech-scroll-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 60px; z-index: 2; pointer-events: none;
}
.tech-scroll-wrapper::before { left: 0; background: linear-gradient(to right, #FAFAFA, transparent); }
.tech-scroll-wrapper::after { right: 0; background: linear-gradient(to left, #FAFAFA, transparent); }

/* ── Section wrapper ── */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 16px;
}
.eyebrow-line { width: 24px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
.section-h2 { font-family: 'Open Sans', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; }
.section-sub { color: var(--slate); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin-top: 14px; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.service-card {
  border: 1.5px solid var(--border); border-radius: 20px;
  padding: 28px 24px; background: #fff; transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8f4ff 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--brand-primary); box-shadow: 0 20px 44px rgba(39,168,247,0.12); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.service-card h3 { font-family: 'Open Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; position: relative; z-index: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--brand-primary); margin-top: 18px; position: relative; z-index: 1;
  text-decoration: none;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; position: relative; z-index: 1; }
.service-tag { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; background: #e8f4ff; color: var(--brand-primary); }

/* ── Portfolio ── */
.portfolio-filter { display: flex; gap: 8px; background: #fff; padding: 6px; border-radius: 12px; border: 1px solid var(--border); }
.filter-btn {
  padding: 8px 16px; border-radius: 8px; border: none;
  background: transparent; color: var(--slate);
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.filter-btn.active { background: var(--brand-primary); color: #fff; box-shadow: 0 2px 8px rgba(39,168,247,0.2); }
.filter-btn:hover:not(.active) { background: #e8f4ff; color: var(--brand-primary); }

.portfolio-grid-new { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.portfolio-item {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.portfolio-item:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
.portfolio-image-wrapper { position: relative; width: 100%; height: 260px; overflow: hidden; background: #f1f5f9; }
.portfolio-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover .portfolio-image { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-category {
  display: inline-block;
  background: rgba(39,168,247,0.2); color: var(--brand-light);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 6px;
  margin-bottom: 8px; width: fit-content;
}
.portfolio-title { font-family: 'Open Sans', sans-serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.portfolio-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-primary); color: #fff;
  font-family: 'Open Sans', sans-serif; font-weight: 600;
  font-size: 0.85rem; padding: 8px 16px; border-radius: 8px;
  border: none; cursor: pointer; transition: all 0.2s;
}
.portfolio-view-btn:hover { background: #1a8fd6; transform: translateX(4px); }
.portfolio-details { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.portfolio-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.portfolio-client { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.portfolio-year { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.portfolio-description { font-size: 0.9rem; color: var(--slate); line-height: 1.6; margin-bottom: 14px; }
.portfolio-tech-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tech-badge { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; background: #F1F5F9; color: var(--slate); border: 1px solid #E2E8F0; }
.portfolio-stats-row { display: flex; gap: 24px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.portfolio-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-highlight { font-family: 'Open Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: #059669; }
.stat-context { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.portfolio-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy);
  font-family: 'Open Sans', sans-serif; font-weight: 600;
  font-size: 0.9rem; padding: 12px 24px; border-radius: 12px;
  border: 1.5px solid var(--border); cursor: pointer; transition: all 0.2s;
}
.portfolio-load-more:hover { border-color: var(--brand-primary); background: var(--brand-primary); color: #fff; }

/* ── Process ── */
.process-bg { background: var(--bg); }
.process-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 50px; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--border), var(--brand-primary) 50%, var(--border));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.process-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-family: 'Open Sans', sans-serif;
  font-weight: 800; font-size: 1rem; transition: all 0.3s; color: var(--slate);
}
.process-step:hover .process-num { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; transform: scale(1.1); }
.process-step h4 { font-family: 'Open Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── AI Section ── */
.ai-section { background: var(--navy); }
.ai-inner { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
.ai-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; margin-top: 48px; }
.ai-nav-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 12px; align-self: start; position: sticky; top: 90px;
}
.ai-nav-item {
  padding: 14px 16px; border-radius: 12px; cursor: pointer;
  color: rgba(255,255,255,0.5); font-weight: 500; font-size: 0.9rem;
  margin-bottom: 4px; transition: all 0.2s;
  display: flex; align-items: center; gap: 12px; border: 1px solid transparent;
}
.ai-nav-item.active, .ai-nav-item:hover {
  background: rgba(39,168,247,0.15); color: var(--brand-light);
  border-color: rgba(39,168,247,0.3);
}
.ai-nav-item .arrow { margin-left: auto; opacity: 0; transition: opacity 0.2s; }
.ai-nav-item.active .arrow, .ai-nav-item:hover .arrow { opacity: 1; }
.ai-panel { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ai-panel:last-child { border-bottom: none; }
.ai-panel h3 { font-family: 'Open Sans', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.ai-panel p { color: #94A3B8; max-width: 560px; line-height: 1.7; margin-bottom: 28px; }
.ai-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ai-feature-chip {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 18px;
}
.ai-feature-chip .chip-title { font-weight: 600; color: var(--brand-light); margin-bottom: 4px; font-size: 0.9rem; }
.ai-feature-chip .chip-desc { font-size: 0.82rem; color: #64748B; line-height: 1.5; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.tcard { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 28px 24px; transition: all 0.2s; }
.tcard:hover { box-shadow: 0 16px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.stars { color: var(--brand-primary); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.tcard blockquote { font-size: 0.92rem; color: var(--navy); line-height: 1.65; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: 0.9rem; color: #fff; }
.tcard-author .aname { font-weight: 700; font-size: 0.88rem; }
.tcard-author .arole { font-size: 0.78rem; color: var(--muted); margin-top: 1px; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.pricing-card { border: 1.5px solid var(--border); border-radius: 20px; padding: 30px 26px; background: #fff; position: relative; transition: all 0.25s; }
.pricing-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.07); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--brand-primary); box-shadow: 0 8px 32px rgba(39,168,247,0.15); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand-primary); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; }
.price-tier { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.price-amount { font-family: 'Open Sans', sans-serif; font-size: 2.4rem; font-weight: 800; margin: 12px 0 4px; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-desc { font-size: 0.85rem; color: var(--slate); margin-bottom: 24px; }
.price-feature { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--slate); margin-bottom: 12px; }
.price-btn { width: 100%; margin-top: 24px; padding: 13px; border-radius: 12px; font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: 1.5px solid var(--border); background: #fff; color: var(--navy); transition: all 0.2s; }
.price-btn:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.pricing-card.popular .price-btn { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.pricing-card.popular .price-btn:hover { background: #1a8fd6; border-color: #1a8fd6; }

/* ── FAQ ── */
.faq-list { margin-top: 44px; max-width: 820px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; background: #fff; transition: background 0.2s; }
.faq-q:hover { background: var(--bg); }
.faq-q.open { background: #e8f4ff; color: var(--brand-primary); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 0.9rem; color: var(--slate); line-height: 1.7; }
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }
.faq-icon { transition: transform 0.3s; font-size: 1.2rem; font-weight: 300; }
.faq-q.open .faq-icon { transform: rotate(45deg); }

/* ── CTA Banner ── */
.cta-banner { background: var(--navy); margin: 0; padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(39,168,247,0.2), transparent 70%); }
.cta-banner h2 { font-family: 'Open Sans', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { color: #94A3B8; font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-btn-main { background: var(--brand-primary); color: #fff; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 14px 30px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; }
.cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); }
.cta-btn-outline { background: transparent; color: #fff; font-family: 'Open Sans', sans-serif; font-weight: 500; font-size: 0.95rem; padding: 14px 30px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s; }
.cta-btn-outline:hover { border-color: rgba(255,255,255,0.6); }

/* ── Contact ── */
/* ── Contact Section ── */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 60px;
align-items: start;
}

/* Sticky left column - only sticky within contact section */
.contact-sticky-col {
position: sticky;
top: 100px; /* Below navbar */
align-self: start;
}

/* Contact Icon Wrapper */
.contact-icon-wrapper {
width: 44px;
height: 44px;
border-radius: 12px;
background: linear-gradient(135deg, #e8f4ff, #c9e8ff);
display: flex;
align-items: center;
justify-content: center;
color: var(--brand-primary);
flex-shrink: 0;
border: 1px solid rgba(39,168,247,0.2);
}

/* Contact Label */
.contact-label {
font-size: 0.78rem;
font-weight: 600;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 4px;
}

/* Contact Value */
.contact-value {
font-size: 0.95rem;
font-weight: 600;
color: var(--navy);
text-decoration: none;
transition: color 0.2s;
}

a.contact-value:hover {
color: var(--brand-primary);
}

/* Contact Details */
.contact-details {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 40px;
}

.contact-item {
display: flex;
align-items: flex-start;
gap: 16px;
}

/* Social Links */
.contact-social {
padding-top: 24px;
border-top: 1px solid var(--border);
}

.contact-social-label {
font-size: 0.85rem;
font-weight: 600;
color: var(--navy);
display: block;
margin-bottom: 12px;
}

.contact-social-links {
display: flex;
gap: 10px;
}

.contact-social-link {
width: 40px;
height: 40px;
border-radius: 10px;
border: 1.5px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
color: var(--slate);
transition: all 0.2s;
text-decoration: none;
}

.contact-social-link:hover {
background: var(--brand-primary);
border-color: var(--brand-primary);
color: #fff;
transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
background: #fff;
border-radius: 24px;
padding: 36px;
border: 1.5px solid var(--border);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 6px;
}

.form-label {
font-size: 0.82rem;
font-weight: 600;
color: var(--navy);
letter-spacing: 0.02em;
}

.form-input {
width: 100%;
padding: 12px 16px;
border: 1.5px solid var(--border);
border-radius: 10px;
font-family: 'Open Sans', sans-serif;
font-size: 0.9rem;
color: var(--navy);
background: #FAFAFA;
transition: all 0.2s;
outline: none;
}

.form-input:focus {
border-color: var(--brand-primary);
background: #fff;
box-shadow: 0 0 0 3px rgba(39,168,247,0.1);
}

.form-input::placeholder {
color: var(--muted);
}

.form-select {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
padding-right: 40px;
cursor: pointer;
}

.form-textarea {
resize: vertical;
min-height: 100px;
}

.form-submit-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
background: var(--brand-primary);
color: #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 0.95rem;
padding: 14px 28px;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.2s;
width: 100%;
}

.form-submit-btn:hover {
background: #1a8fd6;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(39,168,247,0.3);
}

.form-disclaimer {
font-size: 0.78rem;
color: var(--muted);
text-align: center;
line-height: 1.6;
}

.form-disclaimer a {
color: var(--brand-primary);
text-decoration: none;
font-weight: 500;
}

.form-disclaimer a:hover {
text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-sticky-col {
position: static; /* Remove sticky on mobile */
}

.contact-form-wrapper {
padding: 28px;
}
}

@media (max-width: 600px) {
.form-row {
grid-template-columns: 1fr;
gap: 20px;
}

.contact-form-wrapper {
padding: 20px;
border-radius: 16px;
}

.contact-details {
gap: 16px;
}
}

/* ── Footer ── */
footer { background: #0A0F1A; padding: 56px 40px 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: #64748B; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-family: 'Open Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-link { display: block; font-size: 0.88rem; color: #64748B; margin-bottom: 10px; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--brand-light); }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom span { font-size: 0.82rem; color: #475569; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #1E293B; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #64748B; transition: all 0.2s; text-decoration: none; font-size: 0.85rem; }
.social-link:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* ── Mobile menu ── */
#mobile-menu { display: none; position: fixed; inset: 0; top: 68px; z-index: 99; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px 24px; gap: 4px; }
#mobile-menu.open { display: flex; }
.mobile-nav-link { font-family: 'Open Sans', sans-serif; font-weight: 500; font-size: 1rem; color: var(--navy); padding: 14px 16px; border-radius: 10px; text-decoration: none; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.mobile-nav-link:hover { background: #e8f4ff; color: var(--brand-primary); }


/* ── Mobile menu ── */
@media (max-width: 768px) {
.navbar { padding: 0 20px; }
.nav-link, .nav-right { display: none; }
.nav-dropdown-wrapper { display: none; }
.hamburger { 
display: flex !important; 
flex-direction: column; 
gap: 5px; 
margin-left: auto !important;
}
.hamburger span { 
width: 22px; 
height: 2px; 
background: var(--navy); 
border-radius: 2px; 
display: block; 
transition: all 0.3s; 
}
}

#mobile-menu { 
display: none; 
position: fixed; 
inset: 0; 
top: 68px; 
z-index: 99; 
background: rgba(255,255,255,0.98); 
backdrop-filter: blur(20px); 
flex-direction: column; 
padding: 20px 24px; 
gap: 4px;
overflow-y: auto;
}
#mobile-menu.open { display: flex; }

/* Mobile dropdown items in menu */
.mobile-dropdown {
padding-left: 16px;
border-left: 2px solid #e8f4ff;
margin: 4px 0 8px 16px;
}

.mobile-dropdown-item {
display: block;
padding: 10px 14px;
font-size: 0.9rem;
color: var(--slate);
text-decoration: none;
border-radius: 8px;
transition: all 0.2s;
}

.mobile-dropdown-item:hover {
background: #f0f8ff;
color: var(--brand-primary);
}

.mobile-nav-link { 
font-family: 'Open Sans', sans-serif; 
font-weight: 500; 
font-size: 1rem; 
color: var(--navy); 
padding: 14px 16px; 
border-radius: 10px; 
text-decoration: none; 
border-bottom: 1px solid var(--border); 
transition: background 0.2s; 
}
.mobile-nav-link:hover { 
background: #e8f4ff; 
color: var(--brand-primary); 
}

/* Mobile dropdown toggle */
.mobile-dropdown-toggle {
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
}

.mobile-dropdown-toggle .mobile-arrow {
transition: transform 0.3s ease;
font-size: 0.7rem;
}

.mobile-dropdown-toggle.open .mobile-arrow {
transform: rotate(180deg);
}

.mobile-dropdown-content {
display: none;
}

.mobile-dropdown-content.open {
display: block;
}

/*mobile menu end*/

/* ── Modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(12px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-container { background: #ffffff; border-radius: 24px; max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4); position: relative; animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.modal-close-btn { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.95); border: 1.5px solid #E2E8F0; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #475569; z-index: 10; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.modal-close-btn:hover { background: #0F172A; color: #ffffff; border-color: #0F172A; transform: rotate(90deg); }
.modal-header { padding: 40px 32px 24px; text-align: center; }
.modal-badge { display: inline-flex; align-items: center; gap: 8px; background: #e8f4ff; color: var(--brand-primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; border: 1px solid rgba(39,168,247,0.2); }
.modal-badge-dot { width: 6px; height: 6px; background: var(--brand-primary); border-radius: 50%; animation: pulse 2s infinite; }
.modal-title { font-family: 'Open Sans', sans-serif; font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; color: #0F172A; margin-bottom: 8px; line-height: 1.2; }
.modal-subtitle { font-size: 0.95rem; color: #64748B; max-width: 500px; margin: 0 auto; line-height: 1.6; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #0F172A; margin: 0 32px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); border: 2px solid rgba(39,168,247,0.15); }
.youtube-embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 14px; }
.modal-footer { padding: 28px 32px 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.modal-stats { display: flex; gap: 32px; }
.modal-stat-item { text-align: center; position: relative; }
.modal-stat-item:not(:last-child)::after { content: ''; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); width: 1px; height: 30px; background: #E2E8F0; }
.modal-stat-value { display: block; font-family: 'Open Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: #0F172A; line-height: 1; margin-bottom: 4px; }
.modal-stat-label { display: block; font-size: 0.72rem; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.modal-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--brand-primary); color: #ffffff; font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 0.9rem; padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(39,168,247,0.2); }
.modal-cta-btn:hover { background: #1a8fd6; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(39,168,247,0.35); }

/* ── Back to Top ── */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 50px; height: 50px; border-radius: 50%; background: #ffffff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); padding: 0; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-primary); color: #ffffff; box-shadow: 0 8px 30px rgba(39,168,247,0.3); transform: translateY(-4px); }
.progress-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-90deg); width: 50px; height: 50px; }
.progress-ring-bg { fill: none; stroke: #E2E8F0; stroke-width: 2.5; }
.progress-ring-fill { fill: none; stroke: var(--brand-primary); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; transition: stroke-dashoffset 0.1s linear, stroke 0.3s ease; }
.arrow-icon { position: relative; z-index: 2; color: var(--navy); transition: color 0.3s ease; width: 20px; height: 20px; }
.back-to-top:hover .arrow-icon { color: #ffffff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-link, .nav-right { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; }
  .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: all 0.3s; }
  .hero-section { padding: 40px 20px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-card { aspect-ratio: 16/9; max-height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid-new { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-timeline::before { display: none; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-nav-card { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-wrap { padding: 56px 20px; }
  .ai-inner { padding: 56px 20px; }
  .cta-banner { padding: 56px 20px; }
  footer { padding: 40px 20px 20px; }
  .hero-stats { gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .hero-image-card { aspect-ratio: 4/3; max-height: 300px; }
  .process-timeline { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .ai-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* pages css */


/* web dev page css */

    /* ── Banner ── */
    .banner-section {
      position: relative;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
      padding: 80px 40px;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
    }
    .banner-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(39,168,247,0.15), transparent 70%); border-radius: 50%; }
    .banner-section::after { content: ''; position: absolute; bottom: -80px; left: -50px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(152,212,255,0.1), transparent 70%); border-radius: 50%; }
    
    .banner-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
    .banner-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(39,168,247,0.15); border: 1px solid rgba(39,168,247,0.3); color: var(--brand-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; }
    .banner-badge-dot { width: 6px; height: 6px; background: var(--brand-primary); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.4); } }
    .banner-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
    .banner-title .highlight { color: var(--brand-primary); }
    .banner-description { font-size: 1.1rem; color: #94A3B8; line-height: 1.7; max-width: 500px; margin-bottom: 32px; }
    .banner-stats { display: flex; gap: 40px; }
    .banner-stat-item { text-align: center; }
    .banner-stat-value { font-weight: 800; font-size: 2rem; color: var(--brand-light); display: block; line-height: 1; margin-bottom: 6px; }
    .banner-stat-label { font-size: 0.85rem; color: #64748B; font-weight: 500; }
    .banner-image-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 2px solid rgba(39,168,247,0.15); }
    .banner-image { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
    .banner-image-wrapper:hover .banner-image { transform: scale(1.03); }

    /* ── Section Wrapper ── */
    .section-wrap { max-width: 1280px; margin: 0 auto; padding: 80px 40px; }
    .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; }
    .eyebrow-line { width: 24px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
    .section-h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; }
    .section-sub { color: var(--slate); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin-top: 14px; }

    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .feature-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; transition: all 0.3s ease; }
    .feature-card:hover { border-color: var(--brand-primary); box-shadow: 0 20px 40px rgba(39,168,247,0.12); transform: translateY(-4px); }
    .feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
    .feature-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

    .tech-stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
    .tech-stack-item { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s ease; }
    .tech-stack-item:hover { border-color: var(--brand-primary); box-shadow: 0 10px 30px rgba(39,168,247,0.1); transform: translateY(-3px); }
    .tech-stack-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
    .tech-stack-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
    .tech-stack-desc { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

    .process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
    .process-timeline::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--border), var(--brand-primary) 50%, var(--border)); z-index: 0; }
    .process-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
    .process-num { width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 800; font-size: 1.2rem; transition: all 0.3s; color: var(--slate); }
    .process-step:hover .process-num { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; transform: scale(1.1); box-shadow: 0 8px 20px rgba(39,168,247,0.3); }
    .process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
    .process-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; transition: all 0.3s ease; position: relative; }
    .pricing-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
    .pricing-card.popular { border-color: var(--brand-primary); box-shadow: 0 8px 32px rgba(39,168,247,0.15); }
    .popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand-primary); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; }
    .price-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
    .price-amount { font-weight: 800; font-size: 2.5rem; color: var(--navy); margin-bottom: 4px; }
    .price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
    .price-desc { font-size: 0.85rem; color: var(--slate); margin-bottom: 24px; line-height: 1.6; }
    .price-features { list-style: none; padding: 0; margin: 0 0 24px; }
    .price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--slate); margin-bottom: 12px; }
    .price-btn { width: 100%; padding: 14px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: 1.5px solid var(--border); background: #fff; color: var(--navy); text-align: center; }
    .price-btn:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
    .pricing-card.popular .price-btn { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
    .pricing-card.popular .price-btn:hover { background: #1a8fd6; border-color: #1a8fd6; }

    .cta-section { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(39,168,247,0.2), transparent 70%); }
    .cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; }
    .cta-section p { color: #94A3B8; font-size: 1.05rem; margin-bottom: 36px; position: relative; }
    .cta-btn-main { background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 16px 32px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; position: relative; }
    .cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(39,168,247,0.3); }

    @media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .tech-stack-grid { grid-template-columns: repeat(2, 1fr); } .pricing-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 1fr 1fr; } .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 30px; } .process-timeline::before { display: none; } }
    @media (max-width: 768px) {
      .navbar { padding: 0 20px; } .nav-link, .nav-right { display: none; } .hamburger { display: flex; flex-direction: column; gap: 5px; } .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
      .banner-section { padding: 60px 20px; min-height: auto; } .banner-grid { grid-template-columns: 1fr; gap: 40px; } .banner-image-wrapper { max-width: 400px; margin: 0 auto; }
      .features-grid { grid-template-columns: 1fr; } .tech-stack-grid { grid-template-columns: repeat(2, 1fr); } .pricing-grid { grid-template-columns: 1fr; } .process-timeline { grid-template-columns: 1fr; }
      .section-wrap { padding: 56px 20px; } .cta-section { padding: 56px 20px; } footer { padding: 40px 20px 20px; } .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) { .tech-stack-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } .banner-stats { gap: 20px; flex-wrap: wrap; } }


/* end web dev page css */

/* app development page css */

    /* ── Platforms Grid ── */
    .platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .platform-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 40px 32px; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
    .platform-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #e8f4ff 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
    .platform-card:hover::before { opacity: 1; }
    .platform-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(39,168,247,0.1); border-color: var(--brand-primary); }
    .platform-card i { font-size: 3rem; margin-bottom: 20px; display: block; position: relative; z-index: 1; }
    .platform-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); position: relative; z-index: 1; }
    .platform-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }
    .platform-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; position: relative; z-index: 1; }
    .platform-tag { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; background: #e8f4ff; color: var(--brand-primary); }

        /* ── Showcase ── */
  .showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
  .showcase-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); transition: all 0.3s ease; }
  .showcase-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
  .showcase-image { width: 100%; height: 240px; object-fit: cover; }
  .showcase-body { padding: 24px; }
  .showcase-body h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
  .showcase-body p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin-bottom: 12px; }
  .showcase-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--muted); }
  .showcase-meta span { display: flex; align-items: center; gap: 4px; }

      /* ── Process ── */
      .process-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; position: relative; }
      .process-timeline::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--border), var(--brand-primary) 50%, var(--border)); z-index: 0; }
      .process-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
      .process-num { width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 800; font-size: 1.2rem; transition: all 0.3s; color: var(--slate); }
      .process-step:hover .process-num { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; transform: scale(1.1); box-shadow: 0 8px 20px rgba(39,168,247,0.3); }
      .process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
      .process-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }


      @media (max-width: 1024px) { .features-grid{grid-template-columns:repeat(2,1fr)} .platforms-grid{grid-template-columns:repeat(2,1fr)} .pricing-grid{grid-template-columns:1fr 1fr} .showcase-grid{grid-template-columns:1fr} .footer-top{grid-template-columns:1fr 1fr} .process-timeline{grid-template-columns:repeat(3,1fr);gap:30px} .process-timeline::before{display:none} }
  @media (max-width: 768px) {
    .navbar{padding:0 20px} .nav-link,.nav-right{display:none} .hamburger{display:flex;flex-direction:column;gap:5px} .hamburger span{width:22px;height:2px;background:var(--navy);border-radius:2px;display:block}
    .banner-section{padding:60px 20px;min-height:auto} .banner-grid{grid-template-columns:1fr;gap:40px} .banner-image-wrapper{max-width:350px;margin:0 auto}
    .features-grid{grid-template-columns:1fr} .platforms-grid{grid-template-columns:1fr} .pricing-grid{grid-template-columns:1fr} .process-timeline{grid-template-columns:repeat(2,1fr)}
    .section-wrap{padding:56px 20px} .cta-section{padding:56px 20px} footer{padding:40px 20px 20px} .footer-top{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 480px) { .process-timeline{grid-template-columns:1fr} .footer-top{grid-template-columns:1fr} .footer-bottom{flex-direction:column;gap:16px;text-align:center} .banner-stats{gap:20px;flex-wrap:wrap} }

/* end app development page css */

/* grapics designing css */

.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.tool-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s ease; }
.tool-card:hover { border-color: var(--brand-primary); box-shadow: 0 12px 30px rgba(39,168,247,0.08); transform: translateY(-3px); }
.tool-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.tool-card h4 { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.tool-card p { font-size: 0.8rem; color: var(--muted); }


@media (max-width: 1024px) { .services-grid{grid-template-columns:repeat(2,1fr)} .tools-grid{grid-template-columns:repeat(2,1fr)} .pricing-grid{grid-template-columns:1fr 1fr} .footer-top{grid-template-columns:1fr 1fr} .process-timeline{grid-template-columns:repeat(2,1fr);gap:30px} .process-timeline::before{display:none} }
  @media (max-width: 768px) {
    .navbar{padding:0 20px} .nav-link,.nav-right{display:none} .hamburger{display:flex;flex-direction:column;gap:5px} .hamburger span{width:22px;height:2px;background:var(--navy);border-radius:2px;display:block}
    .banner-section{padding:60px 20px;min-height:auto} .banner-grid{grid-template-columns:1fr;gap:40px} .banner-image-wrapper{max-width:400px;margin:0 auto}
    .services-grid{grid-template-columns:1fr} .tools-grid{grid-template-columns:repeat(2,1fr)} .pricing-grid{grid-template-columns:1fr} .process-timeline{grid-template-columns:1fr}
    .section-wrap{padding:56px 20px} .cta-section{padding:56px 20px} footer{padding:40px 20px 20px} .footer-top{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 480px) { .tools-grid{grid-template-columns:1fr} .footer-top{grid-template-columns:1fr} .footer-bottom{flex-direction:column;gap:16px;text-align:center} .banner-stats{gap:20px;flex-wrap:wrap} }

/* end grapics designing css */

/* digital marketing css */

    /* ── Results Grid ── */
    .results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
    .result-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 28px; text-align: center; transition: all 0.3s ease; }
    .result-card:hover { border-color: var(--brand-primary); box-shadow: 0 16px 36px rgba(39,168,247,0.08); transform: translateY(-3px); }
    .result-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
    .result-value { font-size: 2rem; font-weight: 800; color: var(--brand-primary); margin-bottom: 4px; display: block; }
    .result-label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

        /* ── Case Studies ── */
  .cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
  .case-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); transition: all 0.3s ease; }
  .case-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
  .case-img { width: 100%; height: 220px; object-fit: cover; }
  .case-body { padding: 24px; }
  .case-body h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
  .case-body p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }
  .case-result { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
  .case-stat { text-align: center; }
  .case-stat .val { font-size: 1.2rem; font-weight: 800; color: #059669; display: block; }
  .case-stat .lbl { font-size: 0.75rem; color: var(--muted); }


  @media (max-width: 1024px) { .services-grid{grid-template-columns:repeat(2,1fr)} .results-grid{grid-template-columns:repeat(2,1fr)} .cases-grid{grid-template-columns:1fr} .pricing-grid{grid-template-columns:1fr 1fr} .footer-top{grid-template-columns:1fr 1fr} .process-timeline{grid-template-columns:repeat(3,1fr);gap:30px} .process-timeline::before{display:none} }
  @media (max-width: 768px) {
    .navbar{padding:0 20px} .nav-link,.nav-right{display:none} .hamburger{display:flex;flex-direction:column;gap:5px} .hamburger span{width:22px;height:2px;background:var(--navy);border-radius:2px;display:block}
    .banner-section{padding:60px 20px;min-height:auto} .banner-grid{grid-template-columns:1fr;gap:40px} .banner-image-wrapper{max-width:350px;margin:0 auto}
    .services-grid{grid-template-columns:1fr} .results-grid{grid-template-columns:repeat(2,1fr)} .pricing-grid{grid-template-columns:1fr} .process-timeline{grid-template-columns:repeat(2,1fr)}
    .section-wrap{padding:56px 20px} .cta-section{padding:56px 20px} footer{padding:40px 20px 20px} .footer-top{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 480px) { .results-grid{grid-template-columns:1fr} .process-timeline{grid-template-columns:1fr} .footer-top{grid-template-columns:1fr} .footer-bottom{flex-direction:column;gap:16px;text-align:center} .banner-stats{gap:20px;flex-wrap:wrap} .case-result{flex-direction:column;gap:10px} }

  /* end digital marketing css */


    /* ai/ml css */
  /* ── Pipeline ── */
  .pipeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
  .pipeline-grid::before { content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--border), var(--brand-primary) 50%, var(--border)); z-index: 0; }
  .pipeline-step { text-align: center; position: relative; z-index: 1; padding: 0 15px; }
  .pipeline-icon { width: 80px; height: 80px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2rem; transition: all 0.3s; }
  .pipeline-step:hover .pipeline-icon { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; transform: scale(1.1); box-shadow: 0 8px 20px rgba(39,168,247,0.3); }
  .pipeline-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
  .pipeline-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

  /* ── Use Cases ── */
  .usecases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
  .usecase-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); transition: all 0.3s ease; }
  .usecase-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
  .usecase-img { width: 100%; height: 200px; object-fit: cover; }
  .usecase-body { padding: 24px; }
  .usecase-body h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
  .usecase-body p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }
  .usecase-stats { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
  .usecase-stat { text-align: center; }
  .usecase-stat .val { font-size: 1.2rem; font-weight: 800; color: var(--brand-primary); display: block; }
  .usecase-stat .lbl { font-size: 0.75rem; color: var(--muted); }

        /* ── Tech Grid ── */
  .tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
  .tech-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s ease; }
  .tech-card:hover { border-color: var(--brand-primary); box-shadow: 0 12px 30px rgba(39,168,247,0.08); transform: translateY(-3px); }
  .tech-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.5rem; }
  .tech-card h4 { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .tech-card p { font-size: 0.8rem; color: var(--muted); }

  @media (max-width: 1024px) { .services-grid{grid-template-columns:repeat(2,1fr)} .tech-grid{grid-template-columns:repeat(2,1fr)} .usecases-grid{grid-template-columns:1fr} .pricing-grid{grid-template-columns:1fr 1fr} .footer-top{grid-template-columns:1fr 1fr} .pipeline-grid{grid-template-columns:repeat(2,1fr);gap:30px} .pipeline-grid::before{display:none} }
  @media (max-width: 768px) {
  .navbar{padding:0 20px} .nav-link,.nav-right{display:none} .hamburger{display:flex;flex-direction:column;gap:5px} .hamburger span{width:22px;height:2px;background:var(--navy);border-radius:2px;display:block}
  .banner-section{padding:60px 20px;min-height:auto} .banner-grid{grid-template-columns:1fr;gap:40px} .banner-image-wrapper{max-width:350px;margin:0 auto}
  .services-grid{grid-template-columns:1fr} .tech-grid{grid-template-columns:repeat(2,1fr)} .pricing-grid{grid-template-columns:1fr} .pipeline-grid{grid-template-columns:1fr}
  .section-wrap{padding:56px 20px} .cta-section{padding:56px 20px} footer{padding:40px 20px 20px} .footer-top{grid-template-columns:1fr 1fr}
  }
  @media (max-width: 480px) { .tech-grid{grid-template-columns:1fr} .footer-top{grid-template-columns:1fr} .footer-bottom{flex-direction:column;gap:16px;text-align:center} .banner-stats{gap:20px;flex-wrap:wrap} .usecase-stats{flex-direction:column;gap:10px} }

    /* end ai/ml css */

    /* about us css */

    .page-header { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 70px 40px; text-align: center; position: relative; overflow: hidden; }
    .page-header::before { content: ''; position: absolute; top: -60px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(39,168,247,0.15), transparent 70%); border-radius: 50%; }
    .page-header::after { content: ''; position: absolute; bottom: -40px; left: -30px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(152,212,255,0.1), transparent 70%); border-radius: 50%; }
    .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; position: relative; }
    .page-header .subtitle { font-size: 1.1rem; color: #94A3B8; max-width: 600px; margin: 12px auto 0; position: relative; line-height: 1.6; }

    .section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
    .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; }
    .eyebrow-line { width: 24px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
    .section-h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }

    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-content p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }

    .trusted-section { background: var(--bg); }
    .trusted-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .trusted-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .trusted-stat-card { background: #fff; border-radius: 16px; padding: 24px; text-align: center; border: 1.5px solid var(--border); transition: all 0.3s; }
    .trusted-stat-card:hover { border-color: var(--brand-primary); box-shadow: 0 8px 24px rgba(39,168,247,0.08); transform: translateY(-3px); }
    .trusted-stat-value { font-size: 2rem; font-weight: 800; color: var(--brand-primary); display: block; margin-bottom: 4px; }
    .trusted-stat-label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
    .trusted-logos { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
    .trusted-logo { padding: 10px 16px; background: #fff; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.85rem; font-weight: 600; color: var(--slate); transition: all 0.2s; }
    .trusted-logo:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

    .vision-section { background: linear-gradient(135deg, #0F172A, #1E293B); color: #fff; text-align: center; padding: 80px 40px; position: relative; overflow: hidden; }
    .vision-section::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 400px; background: radial-gradient(ellipse, rgba(39,168,247,0.15), transparent 70%); }
    .vision-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 20px; position: relative; }
    .vision-section p { font-size: 1.05rem; color: #94A3B8; max-width: 750px; margin: 0 auto; line-height: 1.8; position: relative; }


        /* ── Founder Section ── */
  .founder-section { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
  .founder-grid { display: grid; grid-template-columns: 380px 1fr; gap: 50px; align-items: center; }
  .founder-image-wrap { position: relative; }
  .founder-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); aspect-ratio: 3/4; }
  .founder-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .founder-badge { position: absolute; bottom: 20px; right: -20px; background: var(--brand-primary); color: #fff; padding: 10px 16px; border-radius: 10px; font-size: 0.75rem; font-weight: 700; box-shadow: 0 8px 20px rgba(39,168,247,0.3); }
  .founder-name { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
  .founder-role { font-size: 0.9rem; color: var(--brand-primary); font-weight: 600; margin-bottom: 20px; display: block; letter-spacing: 0.02em; }
  .founder-quote { font-size: 1.1rem; font-style: italic; color: var(--brand-primary); padding-left: 20px; border-left: 3px solid var(--brand-primary); margin-bottom: 20px; line-height: 1.7; }
  .founder-content p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
  .founder-social { display: flex; gap: 10px; margin-top: 20px; }
  .founder-social a { width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--slate); transition: all 0.2s; text-decoration: none; font-size: 0.9rem; }
  .founder-social a:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; transform: translateY(-2px); }

  /* ── Team Section ── */
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
  .team-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); transition: all 0.3s; text-align: center; }
  .team-card:hover { border-color: var(--brand-primary); box-shadow: 0 20px 40px rgba(39,168,247,0.1); transform: translateY(-5px); }
  .team-img { width: 100%; height: 280px; object-fit: cover; }
  .team-info { padding: 20px 18px; }
  .team-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .team-role { font-size: 0.78rem; color: var(--brand-primary); font-weight: 600; margin-bottom: 10px; }
  .team-social { display: flex; gap: 8px; justify-content: center; }
  .team-social a { width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--slate); transition: all 0.2s; text-decoration: none; font-size: 0.8rem; }
  .team-social a:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }

  .cta-banner { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(39,168,247,0.2), transparent 70%); }
  .cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
  .cta-banner p { color: #94A3B8; font-size: 0.95rem; margin-bottom: 24px; position: relative; }
  .cta-btn-main { background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; position: relative; text-decoration: none; display: inline-block; }
  .cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); }

  @media (max-width: 968px) {
    .about-grid, .trusted-grid, .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .trusted-stats { grid-template-columns: repeat(2, 1fr); }
    .founder-image-wrap { max-width: 350px; margin: 0 auto; }
    .founder-badge { right: 0; }
  }
  @media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-link, .nav-right { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; }
    .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
    .page-header { padding: 50px 20px; }
    .section-wrap { padding: 50px 20px; }
    .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .trusted-stats { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 40px 20px 20px; }
  }
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .founder-name { font-size: 1.5rem; }
  }

    /* end about us css */

      /* clients css */

          /* ── Page Header ── */
  .page-header { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 70px 40px; text-align: center; position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; top: -60px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(39,168,247,0.15), transparent 70%); border-radius: 50%; }
  .page-header::after { content: ''; position: absolute; bottom: -40px; left: -30px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(152,212,255,0.1), transparent 70%); border-radius: 50%; }
  .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; position: relative; }
  .page-header .subtitle { font-size: 1rem; color: #94A3B8; max-width: 700px; margin: 12px auto 0; position: relative; line-height: 1.6; }


          /* ── Section ── */
  .section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }

  /* ── Intro ── */
  .clients-intro { text-align: center; max-width: 800px; margin: 0 auto 50px; }
  .clients-intro p { font-size: 1.05rem; color: var(--slate); line-height: 1.8; }

  /* ── Stats Bar ── */
  .stats-bar { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 50px 40px; }
  .stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  .stat-item { padding: 20px; }
  .stat-icon { font-size: 2rem; margin-bottom: 10px; }
  .stat-value { font-size: 2rem; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; }
  .stat-label { font-size: 0.82rem; color: #64748B; font-weight: 500; }

  /* ── Clients Grid ── */
  .clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .client-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 20px; text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 140px; }
  .client-card:hover { border-color: var(--brand-primary); box-shadow: 0 12px 30px rgba(39,168,247,0.1); transform: translateY(-4px); }
  .client-logo { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
  .client-location { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
  .client-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.3rem; font-weight: 700; color: #fff; }

  /* ── Testimonials ── */
  .testimonials-section { background: var(--bg); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: all 0.3s; }
  .testimonial-card:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.06); transform: translateY(-3px); }
  .testimonial-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testimonial-text { font-size: 0.9rem; color: var(--slate); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 0.9rem; }
  .testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
  .testimonial-role { font-size: 0.78rem; color: var(--muted); }

  /* ── CTA ── */
  .cta-section { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(39,168,247,0.2), transparent 70%); }
  .cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
  .cta-section p { color: #94A3B8; font-size: 0.95rem; margin-bottom: 24px; position: relative; }
  .cta-btn-main { background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; position: relative; }
  .cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); }

      /* ── Responsive ── */
      @media (max-width: 1024px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } .stats-grid { grid-template-columns: repeat(2, 1fr); } .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 768px) {
        .navbar { padding: 0 20px; }
        .nav-link, .nav-right { display: none; }
        .hamburger { display: flex; flex-direction: column; gap: 5px; }
        .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
        .page-header { padding: 50px 20px; }
        .section-wrap { padding: 50px 20px; }
        .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .client-card { padding: 20px 14px; min-height: 110px; }
        .client-logo { font-size: 1rem; }
        .stats-bar { padding: 30px 20px; }
        .testimonials-grid { grid-template-columns: 1fr; }
        .footer-top { grid-template-columns: 1fr 1fr; }
        footer { padding: 40px 20px 20px; }
      }
      @media (max-width: 480px) {
        .clients-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
        .stats-grid { grid-template-columns: 1fr; gap: 12px; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      }    
  
  /* end clients css */

      /* bayondbusiness css */ 

      /* ── Page Header ── */
  .page-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before { content: ''; position: absolute; top: -60px; right: -40px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(39,168,247,0.12), transparent 70%); border-radius: 50%; }
  .page-header::after { content: ''; position: absolute; bottom: -50px; left: -30px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(152,212,255,0.08), transparent 70%); border-radius: 50%; }
  .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; position: relative; margin-bottom: 16px; }
  .page-header .subtitle { font-size: 1.05rem; color: #94A3B8; max-width: 750px; margin: 0 auto; position: relative; line-height: 1.7; }

  /* ── Section ── */
  .section-wrap { max-width: 1100px; margin: 0 auto; padding: 80px 40px; }
  .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 14px; }
  .eyebrow-line { width: 20px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
  .section-h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }

  /* ── CSR Intro ── */
  .csr-intro { background: #fff; }
  .csr-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  .csr-intro-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
  .csr-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .csr-intro-text p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }

  /* ── CSR Initiatives ── */
  .initiatives-section { background: var(--bg); }
  .initiative-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); margin-bottom: 32px; transition: all 0.3s; }
  .initiative-card:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.06); transform: translateY(-3px); }
  .initiative-grid { display: grid; grid-template-columns: 300px 1fr; gap: 0; }
  .initiative-image { height: 100%; min-height: 280px; }
  .initiative-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .initiative-content { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
  .initiative-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
  .initiative-content p { font-size: 0.9rem; color: var(--slate); line-height: 1.8; margin-bottom: 12px; }
  .initiative-tag { display: inline-block; background: #e8f4ff; color: var(--brand-primary); font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; width: fit-content; }

  /* ── Impact Stats ── */
  .impact-section { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
  .impact-section::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 450px; height: 250px; background: radial-gradient(ellipse, rgba(39,168,247,0.15), transparent 70%); }
  .impact-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
  .impact-item { text-align: center; }
  .impact-icon { font-size: 2.2rem; margin-bottom: 10px; }
  .impact-value { font-size: 2rem; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; }
  .impact-label { font-size: 0.8rem; color: #64748B; font-weight: 500; }

  /* ── Other Initiatives ── */
  .other-initiatives { background: #fff; }
  .other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .other-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; transition: all 0.3s; }
  .other-card:hover { border-color: var(--brand-primary); box-shadow: 0 12px 28px rgba(39,168,247,0.08); transform: translateY(-3px); }
  .other-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
  .other-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .other-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

  /* ── CTA Contact ── */
  .cta-contact { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-contact::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(39,168,247,0.18), transparent 70%); }
  .cta-contact h2 { font-size: clamp(1.5rem, 3vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 8px; position: relative; }
  .cta-contact p { color: #94A3B8; font-size: 0.95rem; margin-bottom: 24px; position: relative; }
  .cta-btn-main { background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; position: relative; }
  .cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); }

      /* ── Responsive ── */
      @media (max-width: 968px) {
        .csr-intro-grid { grid-template-columns: 1fr; }
        .initiative-grid { grid-template-columns: 1fr; }
        .initiative-image { max-height: 220px; }
        .impact-grid { grid-template-columns: repeat(2, 1fr); }
        .other-grid { grid-template-columns: repeat(2, 1fr); }
      }
      @media (max-width: 768px) {
        .navbar { padding: 0 20px; }
        .nav-link, .nav-right { display: none; }
        .hamburger { display: flex; flex-direction: column; gap: 5px; }
        .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
        .page-header { padding: 60px 20px; }
        .section-wrap { padding: 50px 20px; }
        .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .other-grid { grid-template-columns: 1fr; }
        .footer-top { grid-template-columns: 1fr 1fr; }
        footer { padding: 40px 20px 20px; }
      }
      @media (max-width: 480px) {
        .impact-grid { grid-template-columns: 1fr; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      }
      

      /* end beyondbusiness css */

      /* start awards css */

       /* ── Page Header ── */
  .page-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 40px; text-align: center;
    position: relative; overflow: hidden;
  }
  .page-header::before { content: ''; position: absolute; top: -60px; right: -40px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(39,168,247,0.12), transparent 70%); border-radius: 50%; }
  .page-header::after { content: ''; position: absolute; bottom: -50px; left: -30px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(152,212,255,0.08), transparent 70%); border-radius: 50%; }
  .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; position: relative; margin-bottom: 12px; }
  .page-header h1 span { background: linear-gradient(135deg, #98d4ff, #27a8f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .page-header p { font-size: 1rem; color: #94A3B8; max-width: 600px; margin: 0 auto; position: relative; line-height: 1.7; }

  .section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
  .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 14px; }
  .eyebrow-line { width: 20px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
  .section-h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
  .section-sub { color: var(--slate); font-size: 1rem; max-width: 600px; line-height: 1.6; }

  /* ── Certifications ── */
  .cert-section { background: #fff; }
  .cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .cert-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1.5px solid var(--border); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
  .cert-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(39,168,247,0.12); border-color: var(--brand-primary); }
  .cert-card-img { height: 180px; overflow: hidden; position: relative; }
  .cert-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .cert-card:hover .cert-card-img img { transform: scale(1.08); }
  .cert-card-img .cert-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%); }
  .cert-card-body { padding: 24px 22px; }
  .cert-badge { display: inline-block; background: #e8f4ff; color: var(--brand-primary); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
  .cert-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .cert-card-body p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

  /* ── Awards ── */
  .awards-section { background: var(--bg); }
  .awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .award-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); transition: all 0.3s; }
  .award-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(39,168,247,0.1); border-color: var(--brand-primary); }
  .award-card-img { height: 160px; overflow: hidden; position: relative; }
  .award-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .award-card:hover .award-card-img img { transform: scale(1.06); }
  .award-card-body { padding: 20px; text-align: center; }
  .award-year-badge { display: inline-block; background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #92400E; font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: 6px; margin-bottom: 10px; }
  .award-card-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .award-card-body p { font-size: 0.8rem; color: var(--muted); }

  /* ── Timeline ── */
  .timeline-section { background: #fff; }
  .timeline { position: relative; padding-left: 40px; }
  .timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--brand-primary), #1a8fd6, var(--brand-primary)); }
  .timeline-item { position: relative; margin-bottom: 32px; padding-left: 30px; }
  .timeline-dot { position: absolute; left: -33px; top: 4px; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 3px solid var(--brand-primary); display: flex; align-items: center; justify-content: center; z-index: 2; font-size: 0.8rem; }
  .timeline-item:nth-child(even) .timeline-dot { border-color: #F59E0B; }
  .timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--brand-primary); margin-bottom: 4px; }
  .timeline-item:nth-child(even) .timeline-year { color: #F59E0B; }
  .timeline-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
  .timeline-desc { font-size: 0.85rem; color: var(--slate); }

  /* ── Recognition ── */
  .recognition-section { background: var(--bg); }
  .recognition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .recognition-card { background: #fff; border-radius: 16px; padding: 28px 20px; text-align: center; border: 1.5px solid var(--border); transition: all 0.3s; }
  .recognition-card:hover { border-color: var(--brand-primary); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(39,168,247,0.08); }
  .recognition-img { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 14px; overflow: hidden; border: 2px solid #f1f5f9; }
  .recognition-img img { width: 100%; height: 100%; object-fit: cover; }
  .recognition-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .recognition-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

  /* ── CTA ── */
  .cta-section { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 70px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(39,168,247,0.2), transparent 70%); }
  .cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; position: relative; margin-bottom: 8px; }
  .cta-section p { color: #94A3B8; position: relative; margin-bottom: 24px; }
  .cta-btn-main { background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 30px; border-radius: 12px; text-decoration: none; display: inline-block; position: relative; transition: all 0.2s; }
  .cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(39,168,247,0.3); }

  @media (max-width: 1024px) { .recognition-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 968px) { .cert-grid, .awards-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px) {
    .navbar { padding: 0 20px; } .nav-link, .nav-right { display: none; } .hamburger { display: flex; flex-direction: column; gap: 5px; } .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
    .page-header { padding: 60px 20px; } .section-wrap { padding: 50px 20px; }
    .cert-grid, .awards-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .recognition-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .footer-top { grid-template-columns: 1fr 1fr; } footer { padding: 40px 20px 20px; }
  }
  @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }
      
      /* end awards css */

      /* start career css */

      .page-header { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; top: -60px; right: -40px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(39,168,247,0.12), transparent 70%); border-radius: 50%; }
  .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; position: relative; margin-bottom: 12px; }
  .page-header .subtitle { font-size: 1.05rem; color: #94A3B8; max-width: 600px; margin: 0 auto; position: relative; line-height: 1.6; }

  .section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
  .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 14px; }
  .eyebrow-line { width: 20px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
  .section-h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }

  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .why-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; transition: all 0.3s; }
  .why-card:hover { border-color: var(--brand-primary); box-shadow: 0 12px 28px rgba(39,168,247,0.1); transform: translateY(-4px); }
  .why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
  .why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .why-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

  .positions-section { background: var(--bg); }
  .position-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 24px 28px; margin-bottom: 16px; transition: all 0.3s; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .position-card:hover { border-color: var(--brand-primary); box-shadow: 0 8px 24px rgba(39,168,247,0.08); transform: translateX(4px); }
  .position-info h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .position-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .position-meta span { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
  .position-tag { display: inline-block; background: #e8f4ff; color: var(--brand-primary); font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
  .position-btn { background: var(--brand-primary); color: #fff; font-weight: 600; font-size: 0.85rem; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
  .position-btn:hover { background: #1a8fd6; transform: translateY(-2px); }

  .stats-bar { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 50px 40px; }
  .stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  .stat-item { padding: 20px; }
  .stat-icon { font-size: 2rem; margin-bottom: 10px; }
  .stat-value { font-size: 2rem; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; }
  .stat-label { font-size: 0.82rem; color: #64748B; font-weight: 500; }

  .upload-section { background: #fff; }
  .upload-box { background: #f8fafc; border: 2px dashed var(--border); border-radius: 20px; padding: 50px 40px; text-align: center; transition: all 0.3s; cursor: pointer; }
  .upload-box:hover { border-color: var(--brand-primary); background: #f0f8ff; }
  .upload-icon { font-size: 3rem; color: var(--brand-primary); margin-bottom: 16px; }
  .upload-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .upload-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
  .upload-btn { background: var(--brand-primary); color: #fff; font-weight: 600; font-size: 0.9rem; padding: 12px 28px; border-radius: 10px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
  .upload-btn:hover { background: #1a8fd6; transform: translateY(-2px); }

  .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .benefit-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 24px 18px; text-align: center; transition: all 0.3s; }
  .benefit-card:hover { border-color: var(--brand-primary); transform: translateY(-3px); }
  .benefit-icon { font-size: 2rem; margin-bottom: 10px; }
  .benefit-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); }

  .cta-section { background: linear-gradient(135deg, #0F172A, #1E293B); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(39,168,247,0.18), transparent 70%); }
  .cta-section h2 { font-size: clamp(1.5rem, 3vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 8px; position: relative; }
  .cta-section p { color: #94A3B8; font-size: 0.95rem; margin-bottom: 24px; position: relative; }
  .cta-btn-main { background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: 12px; text-decoration: none; display: inline-block; position: relative; }
  .cta-btn-main:hover { background: #1a8fd6; transform: translateY(-2px); }
      

      /* ── Job Modal ── */
      .modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.85); backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
      .modal-overlay.active { opacity: 1; visibility: visible; }
      .modal-container { background: #fff; border-radius: 24px; max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto; box-shadow: 0 40px 80px rgba(0,0,0,0.3); position: relative; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
      .modal-overlay.active .modal-container { transform: translateY(0); }
      .modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: #f1f5f9; border: none; cursor: pointer; font-size: 1.2rem; color: var(--slate); transition: all 0.2s; display: flex; align-items: center; justify-content: center; z-index: 5; }
      .modal-close:hover { background: #ef4444; color: #fff; transform: rotate(90deg); }
      .modal-header-badge { display: inline-block; background: #e8f4ff; color: var(--brand-primary); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; margin-bottom: 12px; }
      .modal-body { padding: 36px 32px; }
      .modal-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
      .modal-meta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
      .modal-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--slate); background: #f8fafc; padding: 8px 14px; border-radius: 8px; }
      .modal-meta-item i { color: var(--brand-primary); }
      .modal-section { margin-bottom: 24px; }
      .modal-section h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
      .modal-section ul { list-style: none; padding: 0; }
      .modal-section ul li { font-size: 0.88rem; color: var(--slate); line-height: 1.7; padding: 6px 0; padding-left: 20px; position: relative; }
      .modal-section ul li::before { content: '•'; position: absolute; left: 6px; color: var(--brand-primary); font-weight: bold; }
      .modal-apply-btn { display: block; width: 100%; background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; text-align: center; margin-top: 8px; }
      .modal-apply-btn:hover { background: #1a8fd6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(39,168,247,0.3); }

      @media (max-width: 968px) { .why-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); } .stats-grid { grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 768px) {
        .navbar { padding: 0 20px; }
        .nav-link, .nav-right { display: none; }
        .hamburger { display: flex; flex-direction: column; gap: 5px; }
        .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
        .page-header { padding: 60px 20px; }
        .section-wrap { padding: 50px 20px; }
        .why-grid, .benefits-grid { grid-template-columns: 1fr; }
        .position-card { flex-direction: column; align-items: flex-start; }
        .footer-top { grid-template-columns: 1fr 1fr; }
        footer { padding: 40px 20px 20px; }
        .modal-body { padding: 24px 20px; }
        .modal-container { border-radius: 20px; }
      }
      @media (max-width: 480px) {
        .stats-grid { grid-template-columns: 1fr; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        .modal-meta-row { flex-direction: column; gap: 8px; }
      }

      /* end career css */

      /* contact us css */

          /* ── FAQ Section ── */
  .faq-section {
    background: var(--bg);
    padding: 60px 40px;
  }

  .faq-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-inner h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 32px;
  }

  .faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
  }

  .faq-q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
  }

  .faq-q:hover { background: #f8fafc; }
  .faq-q.open { background: #e8f4ff; color: var(--brand-primary); }

  .faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.7;
  }

  .faq-a.open { max-height: 200px; padding: 0 20px 16px; }

  .faq-icon { transition: transform 0.3s; }
  .faq-q.open .faq-icon { transform: rotate(45deg); }


      /* end contact us css */  

      /* privacy policy css */

      .page-header { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 70px 40px; text-align: center; position: relative; overflow: hidden; }
  .page-header::before { content: ''; position: absolute; top: -60px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(39,168,247,0.12), transparent 70%); border-radius: 50%; }
  .page-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; position: relative; margin-bottom: 8px; }
  .page-header p { font-size: 0.95rem; color: #94A3B8; position: relative; }

  .content-wrap { max-width: 850px; margin: 0 auto; padding: 60px 40px; }
  .last-updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 32px; padding: 12px 18px; background: #f8fafc; border-radius: 8px; border-left: 3px solid var(--brand-primary); }
  .content-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-top: 40px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #f1f5f9; }
  .content-wrap h2:first-of-type { margin-top: 0; }
  .content-wrap h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-top: 24px; margin-bottom: 10px; }
  .content-wrap p { font-size: 0.95rem; color: var(--slate); margin-bottom: 14px; line-height: 1.8; }
  .content-wrap ul { margin-bottom: 16px; padding-left: 24px; }
  .content-wrap ul li { font-size: 0.92rem; color: var(--slate); margin-bottom: 8px; line-height: 1.7; }
  .content-wrap ul li::marker { color: var(--brand-primary); }
  .content-wrap a { color: var(--brand-primary); text-decoration: none; font-weight: 500; }
  .content-wrap a:hover { text-decoration: underline; }
  .highlight-box { background: #f0f8ff; border: 1px solid #c9e8ff; border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
  .highlight-box p { margin-bottom: 0; font-weight: 500; color: var(--navy); }


  @media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-link, .nav-right { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; }
    .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }
    .page-header { padding: 50px 20px; }
    .content-wrap { padding: 40px 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 40px 20px 20px; }
  }
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }

  /* end privacy policy css */

  /* protfolio css */


  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--brand-primary); margin-bottom: 16px;
  }
  .eyebrow-line { width: 24px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
  .page-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800;
    line-height: 1.1; letter-spacing: -0.5px; color: var(--navy);
    margin-bottom: 16px;
  }
  .page-sub {
    font-size: 1.1rem; color: var(--slate); max-width: 600px;
    margin: 0 auto; line-height: 1.7;
  }

  /* ── Portfolio Filter ── */
  .filter-wrapper {
    max-width: 1280px; margin: 40px auto 0; padding: 0 40px;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  }
  .filter-btn {
    padding: 10px 24px; border-radius: 40px; border: 1.5px solid var(--border);
    background: #fff; color: var(--slate); font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
  }
  .filter-btn.active {
    background: var(--brand-primary); color: #fff;
    border-color: var(--brand-primary); box-shadow: 0 6px 18px rgba(39,168,247,0.25);
  }
  .filter-btn:hover:not(.active) {
    background: #f0f8ff; border-color: var(--brand-primary); color: var(--brand-primary);
  }

  /* ── Portfolio Grid ── */
  .portfolio-container {
    max-width: 1280px; margin: 0 auto; padding: 48px 40px 80px;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .portfolio-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    border: 1px solid var(--border); transition: all 0.3s ease;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  }
  .portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
    border-color: rgba(39,168,247,0.25);
  }
  .card-image {
    position: relative; width: 100%; height: 260px;
    overflow: hidden; background: #f1f5f9;
  }
  .card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .portfolio-card:hover .card-image img { transform: scale(1.06); }
  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; opacity: 0; transition: opacity 0.3s;
  }
  .portfolio-card:hover .card-overlay { opacity: 1; }
  .overlay-category {
    background: rgba(39,168,247,0.2); color: #bae6fd;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 4px 12px; border-radius: 20px;
    width: fit-content; margin-bottom: 10px;
  }
  .overlay-title {
    font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 14px;
  }
  .view-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-primary); color: #fff;
    font-weight: 600; font-size: 0.85rem; padding: 10px 20px;
    border-radius: 30px; border: none; cursor: pointer; transition: all 0.2s;
    width: fit-content;
  }
  .view-btn:hover { background: #1a8fd6; transform: translateX(4px); }
  .card-body {
    padding: 24px 28px 28px; flex: 1;
    display: flex; flex-direction: column;
  }
  .card-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; font-size: 0.85rem;
  }
  .client { font-weight: 700; color: var(--navy); }
  .year { color: var(--muted); font-weight: 500; }
  .card-desc {
    font-size: 0.95rem; color: var(--slate); line-height: 1.6;
    margin-bottom: 18px; flex: 1;
  }
  .tech-stack {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
  }
  .tech-badge {
    font-size: 0.72rem; font-weight: 600; padding: 5px 12px;
    border-radius: 20px; background: #F1F5F9; color: var(--slate);
    border: 1px solid #E2E8F0;
  }
  .stats-row {
    display: flex; gap: 28px; padding-top: 18px;
    border-top: 1px solid var(--border); margin-top: auto;
  }
  .stat-highlight {
    font-size: 1.15rem; font-weight: 800; color: #059669; display: block;
  }
  .stat-context {
    font-size: 0.75rem; color: var(--muted); font-weight: 500;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    background: #0F172A; padding: 72px 40px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; top: -80px; left: 50%;
    transform: translateX(-50%); width: 500px; height: 250px;
    background: radial-gradient(ellipse, rgba(39,168,247,0.2), transparent 70%);
  }
  .cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
    color: #fff; margin-bottom: 16px; position: relative;
  }
  .cta-sub {
    color: #94A3B8; font-size: 1.1rem; margin-bottom: 36px; position: relative;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-main {
    background: var(--brand-primary); color: #fff; font-weight: 700;
    font-size: 0.95rem; padding: 14px 32px; border-radius: 30px;
    border: none; cursor: pointer; transition: all 0.2s;
  }
  .btn-main:hover { background: #1a8fd6; transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: #fff; font-weight: 500;
    font-size: 0.95rem; padding: 14px 32px; border-radius: 30px;
    border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.6); }

    /* end protfolio css */