/* PRIVACY PAGE */
.privacy-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  padding: 20px
}
.privacy-section {
  background: rgba(30,41,59,0.85);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 700px;
  width: 100%;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.privacy-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 1px;
}
.privacy-date {
  text-align: center;
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 24px;
}
.privacy-section h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #38bdf8;
}
.privacy-section p, .privacy-section ul {
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.privacy-section ul {
  padding-left: 22px;
  margin-bottom: 0;
}
.privacy-section li {
  margin-bottom: 7px;
}
.privacy-section a {
  color: #38bdf8;
  text-decoration: underline;
}
@media (max-width: 800px) {
  .privacy-section {
    padding: 20px
  }
  .privacy-title {
    font-size: 26px;
  }
}
/* BLOG PAGE */
.blog-hero {
  text-align: center;
  margin: 60px 0 40px 0;
}
.blog-title {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #38bdf8;
}
.blog-tagline {
  font-size: 22px;
  color: #cbd5e1;
  margin-bottom: 0;
}

.blog-grid-section {
  display: flex;
  justify-content: center;
  padding: 0 8% 60px 8%;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: 100%;
  max-width: 1200px;
}
.blog-card {
  background: #1e293b;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(56,189,248,0.18);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-content {
  padding: 28px 22px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-content h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #38bdf8;
}
.blog-card-content p {
  color: #cbd5e1;
  margin-bottom: 18px;
  flex: 1;
}
.read-more {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  align-self: flex-start;
  transition: color 0.15s;
}
.read-more:hover {
  color: #6366f1;
}

.blog-post-main {
  display: flex;
  justify-content: center;
  padding: 32px 8% 64px 8%;
}

.blog-post-article {
  width: 100%;
  max-width: 900px;
  background: #1e293b;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
}

.blog-post-meta {
  color: #93c5fd;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-post-article h1 {
  color: #38bdf8;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-post-intro {
  color: #e2e8f0;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-post-article img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 8px 0 26px 0;
  display: block;
}

.blog-post-article h2 {
  color: #7dd3fc;
  font-size: 27px;
  margin: 18px 0 10px 0;
}

.blog-post-article p,
.blog-post-article li {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

.blog-post-article ul {
  padding-left: 22px;
  margin: 8px 0 18px 0;
}

.blog-post-back {
  display: inline-block;
  margin-top: 20px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.blog-post-back:hover {
  color: #6366f1;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    margin: 40px 0 24px 0;
  }
  .blog-title {
    font-size: 36px;
  }
  .blog-tagline {
    font-size: 16px;
  }

  .blog-post-main {
    padding: 20px 4% 42px 4%;
  }

  .blog-post-article {
    padding: 24px 18px;
  }

  .blog-post-article h1 {
    font-size: 30px;
  }

  .blog-post-article h2 {
    font-size: 22px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 8%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle .bar {
  width: 26px;
  height: 3px;
  background: #cbd5e1;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: start;
}

.logo img {
  width: 180px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logo span {
  color: #38bdf8; /* your blue accent */
}

.logo:hover {
  opacity: 0.9;
}


.logo span {
  color: #38bdf8;
}

.navbar nav {
  justify-self: center;
  display: flex;
  align-items: center;
}

.navbar nav a {
  color: #cbd5e1;
  margin: 0 14px;
  text-decoration: none;
  font-size: 15px;
}

.navbar nav a.active,
.navbar nav a:hover {
  color: #38bdf8;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.navbar > .btn-primary {
  justify-self: end;
}

.mobile-contact-btn {
  display: none;
}

.btn-outline {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  margin-left: 15px;
}

/* Global section spacing to prevent overlapping */
section {
  position: relative;
  overflow: hidden;
}

section + section {
  margin-top: 0;
  padding: 20px 0 20px;
  
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  /* min-height: 90vh; */
}

.hero-content {
  max-width: 55%;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #38bdf8;
}

.hero-content p {
  margin: 20px 0 30px;
  color: #cbd5e1;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats div strong {
  font-size: 22px;
  display: block;
}

.hero-stats div span {
  font-size: 13px;
  color: #94a3b8;
}

/* VISUAL */
.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 420px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.glow-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #38bdf8, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 1;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .services {
    padding: 60px 4% 80px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tech-section {
    padding: 60px 4%;
  }
  .capability-flow {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
    margin-bottom: 50px;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .values-section {
    padding: 60px 4%;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 16px 4%;
    position: relative;
  }
  .nav-toggle {
    display: flex;
  }
  .navbar nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100vw;
    background: #0b0f1a;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 8%;
    gap: 18px;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .navbar nav.open {
    display: flex;
  }
  .navbar nav a {
    margin: 0 0 12px 0;
    font-size: 18px;
    width: 100%;
    padding: 8px 0;
  }
  .navbar nav .mobile-contact-btn {
    display: block;
    margin-top: 6px;
    text-align: center;
  }
  .navbar > .btn-primary {
    display: none;
  }
  .btn-outline {
    margin-left: 0;
    width: 100%;
    text-align: center;
    display: inline-block;
  }
  /* HERO SECTION RESPONSIVE */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 4%;
    min-height: unset;
    gap: 32px;
  }
  .hero-content {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 16px;
    margin: 16px 0 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
  }
  .hero-visual {
    margin-top: 24px;
  }
  .hero-visual img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .glow-circle {
    width: 200px;
    height: 200px;
  }
}


Servicess section  



/* SERVICES SECTION */
.services {
  padding: 100px 8% 120px;
  background: radial-gradient(circle at top, #0f172a, #020617);
  position: relative;
  display: flow-root;
  clear: both;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.services-header .badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.services-header h2 span {
  color: #38bdf8;
}

.services-header p {
  color: #94a3b8;
  font-size: 16px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* How We Work / Why Choose styles */
.how-we-work {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(245,247,250,1) 0%, rgba(255,255,255,1) 100%);
}
.how-header h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}
.how-header p {
  color: #5b6770;
  margin-bottom: 28px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.hw-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hw-step-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(24,39,75,0.06);
  align-items: center;
}
.hw-step-num {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg,#2b7cff,#5ad0ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.hw-step-card h4 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}
.hw-step-card p {
  margin: 0;
  color: #576270;
  font-size: 0.95rem;
}
.why-choose {
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(35,47,63,0.04);
}
.why-choose h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.why-cards {
  display: grid;
  gap: 12px;
}
.why-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: transparent;
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #eef7ff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}
.why-card h5 {
  margin: 0 0 6px 0;
}
.why-card p {
  margin: 0;
  color: #5b6770;
  font-size: 0.95rem;
}
.why-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.btn-outline {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(43,67,120,0.08);
  color: #2b7cff;
  background: transparent;
  text-decoration: none;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .hw-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .hw-steps {
    grid-template-columns: 1fr;
  }
  .how-header h2 { font-size: 1.5rem; }
  .how-header p { font-size: 0.95rem; }
}

/* --- Section spacing & alignment fixes --- */
/* Provide a consistent container padding and max width */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Uniform section vertical rhythm for the target sections */
.services-list,
.tech-ai,
.deep-dives,
.process,
.why,
.architecture,
.security,
.team-delivery,
.accessibility {
  padding: 56px 0;
}

/* Headings spacing consistency */
.services-list h1,
.services-list h2,
.tech-header h2,
.how-header h2,
.deep-dives h3,
.architecture h4,
.security h4,
.team-delivery h4,
.accessibility h4 {
  margin-bottom: 14px;
}

/* Grids alignment */
.services-list .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}
.case-grid,
.deep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

/* Tech Stack & Partners section */
.stack-partners {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(56,189,248,0.08);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
}

.stack-partners h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.stack-partners p {
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* Partner logos layout */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
  margin-top: 12px;
  padding: 16px;
  background: rgba(56,189,248,0.03);
  border-radius: 8px;
}
.partner-logos img {
  display: block;
  max-height: 45px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Demo grid */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}
.demo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Architecture image scaling and centering */
.arch-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 16px 0 0 0;
}

/* Mobile Apps section */
.mobile-apps {
  background: rgba(56,189,248,0.04);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
}

.mobile-apps h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.mobile-apps p {
  color: #cbd5e1;
  margin-bottom: 18px;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.mobile-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(56,189,248,0.08);
  border-radius: 10px;
  padding: 16px;
  transition: all 0.3s ease;
}

.mobile-card:hover {
  border-color: rgba(56,189,248,0.25);
  background: rgba(56,189,248,0.08);
}

.mobile-card h5 {
  margin: 0 0 8px 0;
  color: #38bdf8;
  font-size: 1rem;
}

.mobile-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .mobile-apps {
    padding: 16px 12px;
    margin: 14px 0;
  }
  .mobile-features {
    grid-template-columns: 1fr;
  }
}

/* Digital Marketing section */
.digital-marketing {
  background: rgba(99,102,241,0.04);
  border: 1px solid rgba(99,102,241,0.1);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
}

.digital-marketing h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #38bdf8;
}

.digital-marketing p {
  color: #cbd5e1;
  margin-bottom: 18px;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.marketing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.3s ease;
}

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

@media (max-width: 620px) {
  .marketing-grid {
    grid-template-columns: 1fr;
  }
  .digital-marketing {
    padding: 16px 12px;
    margin: 14px 0;
  }
  .digital-marketing h4 {
    font-size: 1rem;
  }
}

.marketing-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

.marketing-card h5 {
  margin: 0 0 8px 0;
  color: #6366f1;
  font-size: 1rem;
  font-weight: 600;
}

.marketing-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Trust, Delivery & Excellence section */
.trust-delivery-section {
  padding: 24px;
  margin: 20px 0;
}

.trust-delivery-section h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #38bdf8;
}

.trust-delivery-section > p {
  color: #cbd5e1;
  margin-bottom: 22px;
  max-width: 700px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: rgba(56,189,248,0.3);
  background: rgba(56,189,248,0.1);
  box-shadow: 0 8px 24px rgba(56,189,248,0.1);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: inline-block;
}

.trust-card h4 {
  margin: 0 0 14px 0;
  font-size: 1.1rem;
  color: #38bdf8;
}

.trust-card ul {
  padding-left: 18px;
  margin: 0;
}

.trust-card ul li {
  color: #cbd5e1;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.trust-card p {
  color: #cbd5e1;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.metrics-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-item {
  background: rgba(99,102,241,0.08);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.metric-item strong {
  display: block;
  font-size: 1.4rem;
  color: #6366f1;
  margin-bottom: 4px;
}

.metric-item span {
  display: block;
  font-size: 0.9rem;
  color: #cbd5e1;
}

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

@media (max-width: 620px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-delivery-section {
    padding: 16px 12px;
    margin: 14px 0;
  }
  .trust-delivery-section h3 {
    font-size: 1.3rem;
  }
  .trust-icon {
    font-size: 1.8rem;
  }
  .trust-card {
    padding: 16px;
  }
  .metric-item {
    padding: 10px;
  }
  .metric-item strong {
    font-size: 1.2rem;
  }
}

/* Tech Stack & Latest Technologies section */
.tech-stack-section {
  padding: 56px 0;
}

.tech-stack-header {
  text-align: center;
  margin-bottom: 42px;
}

.tech-stack-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #38bdf8;
}

.tech-stack-header p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tech-category {
  background: rgba(56,189,248,0.04);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.3s ease;
}

.tech-category:hover {
  border-color: rgba(56,189,248,0.3);
  background: rgba(56,189,248,0.08);
  box-shadow: 0 8px 20px rgba(56,189,248,0.1);
}

.tech-category h4 {
  margin: 0 0 16px 0;
  font-size: 1.15rem;
  color: #38bdf8;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(56,189,248,0.15));
  border: 1px solid rgba(99,102,241,0.2);
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.tech-tags span:hover {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(56,189,248,0.25));
  border-color: rgba(99,102,241,0.4);
  color: #e5e7eb;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .tech-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-stack-header h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 620px) {
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tech-category {
    padding: 16px;
  }
  .tech-stack-header h2 {
    font-size: 1.3rem;
    margin-top: 12px;

  }
}
.security ul {
  padding-left: 20px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Metrics and team layout */
.metrics-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.metrics-grid > div {
  min-width: 140px;
  text-align: center;
  padding: 12px;
}

.team-delivery ul { padding-left: 20px; line-height: 1.6; }

.lead-ctas .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.accessibility p { max-width: 820px; color: #cbd5e1; }

@media (max-width: 900px) {
  .services-list,
  .tech-ai,
  .deep-dives { padding: 40px 18px; }
  .metrics-grid { justify-content: center; }
  .partner-logos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .container { padding: 0 14px; }
  .partner-logos { justify-content: center; grid-template-columns: repeat(2, 1fr); }
  .stack-partners { padding: 16px 12px; margin: 14px 0; }
}

/* CARD */
.service-card {
  background: linear-gradient(180deg, #020617, #020617);
  border: 1px solid rgba(56,189,248,0.15);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 20px 60px rgba(56,189,248,0.15);
}

.service-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: #cbd5f5;
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 25px;
  flex: 1;
}

.service-card ul li {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.service-card ul li::before {
  content: "•";
  color: #38bdf8;
  position: absolute;
  left: 0;
}

.service-card a {
  color: #38bdf8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
}

.service-card a:hover {
  text-decoration: underline;
}


TECH CAPABILITIES + VISION


/* TECH SECTION */
.tech-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #020617, #0b0f1a);
  position: relative;
  display: flow-root;
  margin-bottom: 0;
  margin-top: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* HEADER */
.tech-header {
  max-width: 800px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.tech-header .pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99,102,241,0.15);
  color: #a5b4fc;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.tech-header h2 {
  font-size: 46px;
  margin-bottom: 15px;
}

.tech-header h2 span {
  color: #6366f1;
}

.tech-header p {
  color: #94a3b8;
  max-width: 650px;
}

/* CAPABILITY FLOW */
.capability-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.cap-item {
  background: #020617;
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.35s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.cap-item span {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.cap-item h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.2;
}

.cap-item p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.cap-item:hover {
  transform: translateY(-6px);
  border-color: #6366f1;
  box-shadow: 0 15px 40px rgba(99,102,241,0.2);
}

/* METRIC STYLE */
.cap-item.highlight {
  background: linear-gradient(135deg, #6366f1, #38bdf8);
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 30px 20px;
}

.cap-item.highlight strong {
  font-size: 36px;
  line-height: 1;
  margin: 0;
  display: block;
}

.cap-item.highlight small {
  display: block;
  opacity: 0.95;
  font-size: 14px;
  margin: 0;
  line-height: 1;
}

/* PURPOSE GRID */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.purpose-card {
  background: #020617;
  border-radius: 22px;
  padding: 40px;
  border: 1px solid rgba(99,102,241,0.15);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.purpose-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.purpose-card .icon {
  font-size: 30px;
  margin-bottom: 18px;
  display: inline-block;
}

.purpose-card h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.3;
}

.purpose-card p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
  flex: 1;
}

value card 

.values-section {
  padding: 100px 8%;
  margin: 40px 0;
  background: linear-gradient(180deg, #0f172a, #020617);
  position: relative;
  display: flow-root;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.values-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 60px;
}

/* LEFT */
.values-intro .badge {
  background: rgba(58, 134, 255, 0.12);
  color: #3A86FF;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
  display: inline-block;
}

.values-intro h2 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.values-intro h2 span {
  color: #3A86FF;
}

.values-intro p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 500px;
  line-height: 1.6;
}

/* RIGHT */
.values-cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.value-card {
  display: flex;
  gap: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 32px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.2);
}

.value-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
}

.value-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

/* ICONS */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.icon.primary {
  background: linear-gradient(135deg, #3A86FF, #00B4D8);
}

.icon.secondary {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}

.icon.accent {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* TAGS */
.tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background: rgba(58, 134, 255, 0.1);
  color: #3A86FF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}


/* ===============================
   GEN AI SECTION
================================ */

.ai-section {
  background: radial-gradient(circle at top right, #0f172a, #020617);
  padding: 90px 20px;
  margin-top: 32px;
  color: #e5e7eb;
  overflow: hidden;
}

.ai-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.ai-content .badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.ai-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ai-content h2 span {
  color: #6366f1;
}

.ai-content p {
  font-size: 17px;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 35px;
}

/* FEATURES */
.ai-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-feature span {
  font-size: 22px;
  color: #818cf8;
}

.ai-feature h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.ai-feature p {
  font-size: 15px;
  color: #b6c0ff;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  padding: 14px 32px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99,102,241,0.4);
}

/* RIGHT VISUAL */
.ai-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.ai-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ai-grid span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.ai-grid span:hover {
  background: rgba(99, 102, 241, 0.18);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ai-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .ai-content {
    max-width: 100%;
  }

  .ai-content p {
    margin: 0 auto 35px;
    max-width: 100%;
  }

  .ai-features {
    align-items: center;
  }

  .ai-feature {
    justify-content: center;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  .ai-visual {
    margin-top: 30px;
    height: 320px;
  }

  .ai-glow {
    width: 280px;
    height: 280px;
  }
}


:root {
  --primary-blue: #3b82f6;   /* main blue */
  --soft-blue: #60a5fa;     /* lighter accent */
  --text-light: #cbd5e1;
  --text-muted: #94a3b8;
  --bg-dark: #070b14;
  --bg-dark-2: #0a1220;
}

/* SECTION */
.why-us-alt {
  background: linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
  padding: 40px 20px;
  color: #ffffff;
}

.why-alt-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* BADGE */
.why-alt-badge {
  display: inline-block;
  padding: 6px 14px;
  border-left: 3px solid var(--primary-blue);
  color: var(--soft-blue);
  font-size: 14px;
  margin-bottom: 20px;
}

/* HEADING */
.why-alt-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-alt-left h2 span {
  color: var(--primary-blue);
}

/* TEXT */
.why-alt-left p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 30px;
}

/* POINTS */
.why-alt-points div {
  margin-bottom: 16px;
}

.why-alt-points strong {
  display: block;
  font-size: 16px;
}

.why-alt-points span {
  font-size: 14px;
  color: var(--text-muted);
}

/* NOTE */
.why-alt-note {
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

/* RIGHT METRICS */
.why-alt-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 40px;
}

.metric {
  position: relative;
  padding-left: 18px;
}

.metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.metric-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
}

.metric-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-alt-container {
    grid-template-columns: 1fr;
  }

  .why-alt-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .why-us-alt {
    padding: 60px 4%;
  }

  .why-alt-left h2 {
    font-size: 28px;
  }

  .why-alt-left p {
    font-size: 15px;
  }

  .metric-value {
    font-size: 28px;
  }

  .ai-section {
    padding: 60px 4%;
  }

  .ai-content h2 {
    font-size: 32px;
  }

  .ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ai-grid span {
    padding: 14px 10px;
    font-size: 14px;
  }

  .ai-visual {
    height: auto;
    margin-top: 12px;
  }

  .why-alt-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    padding-top: 28px;
  }

  .metric {
    padding-left: 0;
    text-align: center;
  }

  .metric::before {
    display: none;
  }

  .capability-flow {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  
  .cap-item {
    min-height: 160px;
    padding: 28px 20px;
  }
  
  .cap-item.highlight {
    min-height: 160px;
  }
  
  .purpose-card {
    min-height: 220px;
    padding: 32px 24px;
  }
  
  .service-card {
    min-height: 380px;
    padding: 28px;
  }

  /* Responsive for values section */
  .values-section {
    padding: 60px 4%;
  }
  .values-container {
    display: block;
    padding: 0;
  }
  .values-intro {
    margin-bottom: 32px;
    text-align: center;
  }
  .values-intro h2 {
    font-size: 28px;
  }
  .values-cards {
    gap: 16px;
  }
  .value-card {
    flex-direction: column;
    align-items: center;
    padding: 18px 12px;
    text-align: center;
  }
  .icon {
    margin-bottom: 10px;
  }
  .tags {
    justify-content: center;
  }
}


.cta-section {
  padding: 80px 20px;
  background: radial-gradient(
      circle at top,
      #14224a 0%,
      #0b1220 60%
  );
  margin-top: 40px;
}

.cta-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 70px 30px;
  border-radius: 24px;
  background: linear-gradient(
      180deg,
      rgba(30,108,255,0.12),
      rgba(15,27,51,0.9)
  );
  border: 1px solid rgba(79,140,255,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.cta-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(30,108,255,0.15);
  color: #4f8cff;
  font-size: 14px;
  margin-bottom: 22px;
}

.cta-inner h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 18px;
  color: #b8c4e0;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e6cff, #4f8cff);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 108, 255, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-inner {
    padding: 50px 20px;
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .cta-inner p {
    font-size: 16px;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn, .btn-outline {
    width: 100%;
    text-align: center;
  }
}
.contact-section {
  background: radial-gradient(circle at top, #162238, #0b1220);
  padding: 40px 20px;
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #b8c2d8;
  margin-bottom: 30px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon {
  font-size: 20px;
  opacity: 0.8;
}

.info-list strong {
  display: block;
  margin-bottom: 4px;
}

.info-list p {
  color: #cbd5e1;
  font-size: 14px;
}

.emergency {
  margin-top: 30px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #3b82f6;
  font-size: 14px;
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

button {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s;
}

button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-section {
    padding: 60px 4%;
  }
}


.site-footer {
  background: linear-gradient(180deg, #0b1220, #050914);
  color: #cbd5e1;
  font-size: 14px;
}

/* Newsletter */
.footer-newsletter {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-newsletter h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 6px;
}

.footer-newsletter p {
  color: #94a3b8;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: #0f172a;
  color: #fff;
  min-width: 260px;
}

.newsletter-form button {
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Main Footer */
.footer-main {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
}

.socials {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

/* Links */
.footer-links h5,
.footer-contact h5 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* Contact */
.footer-contact p {
  margin-bottom: 10px;
  color: #94a3b8;
}

/* Bottom */
.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom a {
  color: #94a3b8;
  margin-left: 20px;
  text-decoration: none;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

CONTACT US PAGE 

/* CONTACT HERO – FIXED ALIGNMENT */
.contact-hero {
  background: linear-gradient(180deg, #0b1f3a 0%, #08162b 100%);
  padding: 88px 8% 72px;
  margin: 12px 0 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.contact-hero p {
  font-size: 1rem;
  line-height: 1.55;
  color: #b9c7e2;
  max-width: 620px;
  margin: 0 auto;
 margin-bottom: 25px;

}

/* MOBILE FIX */
@media (max-width: 768px) {
  .contact-hero {
    padding: 25px 4% 0px;
    margin: 8px 0 16px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }
}

/* Utilities for pages */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Services page hero */
.page-hero.services-hero {
  padding: 32px 0 35px;
  text-align: center;
  background: linear-gradient(180deg, #081028 0%, #050814 100%);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.page-hero.services-hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}
.page-hero.services-hero .lead {
  color: #cbd5e1;
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
}

/* Services list */
.services-list {
  padding: 60px 0 40px;
}
.services-list .services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.services-list .services-grid > * {
  min-width: 0;
}
.services-cta {
  margin-top: 28px;
  margin-bottom: 10px;
  text-align: center;
}

/* Tech & AI section */
.tech-ai {
  padding: 20px;
  background: linear-gradient(180deg, #050814 0%, #02040a 100%);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.tech-section .tech-header {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}
.tech-section .tech-header h2 {
  margin-bottom: 10px;
}
.tech-section .tech-header p {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}
.tech-header {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}
.tech-header h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 8px;
}
.tech-header p {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .tech-section .tech-header {
    margin: 0 auto 24px;
    padding: 0 10px;
  }
  .tech-section .tech-header h2 {
    font-size: 32px;
    line-height: 1.25;
  }
  .tech-section .tech-header p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 24px auto 40px;
}
.tech-card {
  background: #071027;
  border: 1px solid rgba(99,102,241,0.06);
  padding: 22px;
  border-radius: 14px;
}
.tech-card h4 {
  color: #38bdf8;
  margin-bottom: 8px;
}
.tech-card p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 10px;
}
.tech-card ul {
  list-style: none;
  padding-left: 0;
}
.tech-card ul li {
  color: #94a3b8;
  margin-bottom: 6px;
}

.ai-case {
  max-width: 1100px;
  margin: 0 auto 40px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.case {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 10px;
  color: #cbd5e1;
}

.process {
  max-width: 900px;
  margin: 0 auto 36px;
  color: #cbd5e1;
  padding: 0 20px;
}
.process ol {
  margin-top: 14px;
  padding-left: 20px;
}
.process li {
  margin-bottom: 10px;
}

.why {
  max-width: 900px;
  margin: 0 auto 60px;
  color: #cbd5e1;
  padding: 0 20px;
}
.why ul {
  list-style: disc;
  padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .services-list .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid, .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .services-list .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-hero.services-hero h1 { font-size: 28px; }
  .tech-grid, .case-grid {
    grid-template-columns: 1fr;
  }
  .services-list .services-grid {
    grid-template-columns: 1fr;
  }
  .services-list { padding: 24px 0; }
  .tech-header h2 { font-size: 26px; }
}

/* Deep-dives and supporting sections */
.deep-dives {
  padding: 60px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.deep-dives h3 { font-size: 30px; margin-bottom: 12px; color: #fff; }
.deep-dives p { color: #94a3b8; margin-bottom: 18px; }
.deep-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 18px; }
.deep-card { background: #071127; padding: 18px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.03); }
.deep-card h4 { color: #60a5fa; margin-bottom: 6px; }
.deep-card p { color: #cbd5e1; font-size: 14px; }

.partner-logos { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 12px 0 28px; }
.partner-logos img { height: 36px; object-fit: contain; background: rgba(255,255,255,0.02); padding: 6px; border-radius: 6px; }

.demo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 20px; }
.demo { background: #071127; padding: 12px; border-radius: 10px; text-align: center; }
.demo img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 8px; }

.arch-img img { width: 100%; height: auto; border-radius: 10px; border: 1px solid rgba(255,255,255,0.03); }

.security ul { list-style: disc; padding-left: 20px; color: #cbd5e1; }

.metrics-grid { display: flex; gap: 20px; justify-content: center; margin: 12px 0 24px; }
.metrics-grid div { background: #071127; padding: 12px 20px; border-radius: 8px; text-align: center; border: 1px solid rgba(255,255,255,0.03); }
.metrics-grid strong { color: #60a5fa; display: block; font-size: 20px; }
.metrics-grid span { color: #94a3b8; font-size: 13px; }

.tech-card,
.case,
.deep-card,
.demo,
.marketing-card,
.trust-card {
  min-width: 0;
}

.tech-card p,
.tech-card ul li,
.case,
.deep-card p,
.demo p,
.marketing-card p,
.trust-card p,
.trust-card li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.team-delivery ul { list-style: disc; padding-left: 20px; color: #cbd5e1; }

.lead-ctas .cta-row { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.lead-ctas .btn-outline { padding: 10px 18px; border-radius: 8px; border: 1px solid rgba(99,102,241,0.12); color: #cbd5e1; text-decoration: none; }

.accessibility p { color: #94a3b8; }

@media (max-width: 1000px) {
  .deep-grid, .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos img { height: 32px; }
}

@media (max-width: 700px) {
  .deep-grid, .demo-grid { grid-template-columns: 1fr; }
  .metrics-grid { flex-direction: column; gap: 12px; }
  .partner-logos { justify-content: center; }
  .lead-ctas .cta-row { justify-content: center; }
}

/* Enhanced visuals & accessibility */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.service-card .icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover .icon { transform: translateY(-4px) scale(1.04); }

.link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}
.link:hover, .link:focus { text-decoration: underline; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(99,102,241,0.18);
  color: #cbd5e1;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
}
.btn-outline:hover, .btn-outline:focus {
  background: rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

.deep-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.deep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.partner-logos img {
  filter: grayscale(90%);
  opacity: 0.9;
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}
.partner-logos img:hover { filter: none; opacity: 1; transform: translateY(-4px); }

.demo img, .arch-img img { max-width: 100%; height: auto; display: block; }

.metrics-grid div { min-width: 140px; }

/* Focus styles for keyboard users */
a:focus, button:focus, .btn-primary:focus {
  outline: 3px solid rgba(56,189,248,0.18);
  outline-offset: 3px;
}

/* Small screens tweaks */
@media (max-width: 480px) {
  .navbar { padding: 12px 4%; }
  .logo { font-size: 20px; }
  .logo img { width: 138px; height: 36px; }
  .page-hero.services-hero { padding: 40px 0 24px; }
  .services-list { padding: 20px }
  .deep-dives { padding: 20px  }
  .partner-logos img { height: 28px; }
  
  /* Index page adjustments for very small screens */
  .services { padding: 20px }
  .services-header h2 { font-size: 28px; }
  .services-header p { font-size: 14px; margin-bottom: 40px; }
  .service-card { padding: 24px; min-height: 380px; }
  
  .tech-section { padding: 20px; }
  .tech-header h2 { font-size: 32px; }
  .tech-header p { font-size: 14px; margin-bottom: 40px; }
  
  .values-section { padding:20px }
  .values-intro h2 { font-size: 24px; }
  .values-intro p { font-size: 15px; }
  .value-card { padding: 20px; }
  
  .capability-flow {
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .cap-item {
    min-height: 140px;
    padding: 20px 16px;
  }
  
  .cap-item h4 {
    font-size: 16px;
  }
  
  .cap-item.highlight strong {
    font-size: 32px;
  }
  
  .purpose-grid {
    gap: 16px;
    margin-top: 30px;
  }
  
  .purpose-card {
    min-height: 200px;
    padding: 28px 20px;
  }
  
  .ai-content h2 { font-size: 26px; }
  .ai-content p { font-size: 15px; }
  
  .why-alt-left h2 { font-size: 24px; }
  .why-alt-left p { font-size: 14px; }
  
  .cta-inner { padding: 30px 16px; }
  .cta-inner h2 { font-size: 24px; }
  .cta-inner p { font-size: 14px; }
  
  .contact-section { padding: 20px }
  .contact-form { padding: 20px 16px; }
}

/* Performance hints */
img { max-width: 100%; height: auto; display: block; }

/* Our Process page styles (responsive) */
.process-steps {
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #050814 0%, #02040a 100%);
}
.process-steps h2 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 22px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.step-card {
  background: #071127;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-color: rgba(56,189,248,0.15);
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.step-card h3 { margin: 0; color: #60a5fa; font-size: 18px; }
.step-card p { color: #cbd5e1; font-size: 14px; flex: 1; }

/* Methodology: improved layout, card style, and responsive columns */
.methodology {
  max-width: 1100px;
  margin: 48px auto;
  padding: 28px;
  background: linear-gradient(180deg, rgba(7,17,39,0.6), rgba(4,6,12,0.6));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
}
.methodology h2 {
  color: #ffffff;
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 1.15;
  grid-column: 1 / -1;
}
.methodology p {
  color: #cbd5e1;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.methodology ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.methodology ul li {
  position: relative;
  padding-left: 36px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}
.methodology ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  box-shadow: 0 6px 18px rgba(56,189,248,0.08);
}
.methodology .meta {
  color: #94a3b8;
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .methodology { padding: 20px; }
  .methodology h2 { font-size: 22px; margin-bottom: 16px; }
  .methodology p { font-size: 14px; }
  .methodology ul { gap: 8px; }
  .methodology ul li { padding-left: 30px; font-size: 13px; }
  .methodology ul li::before { left: 4px; width: 14px; height: 14px; top: 7px; }
}

.engagement { padding: 48px 0 36px; max-width: 1200px; margin: 0 auto; }
.engagement h2 { text-align: center; color: #fff; font-size: 26px; margin-bottom: 20px; }
.engagement > p { text-align: center; color: #cbd5e1; margin-bottom: 28px; font-size: 15px; }
.engage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.engage-grid div { background: #071127; padding: 24px 20px; border-radius: 12px; color: #cbd5e1; border: 1px solid rgba(255,255,255,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.engage-grid div:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); border-color: rgba(56,189,248,0.2); }
.engage-grid h4 { color: #60a5fa; font-size: 18px; margin: 0 0 10px; }
.engage-grid p { margin: 0; font-size: 14px; line-height: 1.6; }

/* Accessibility helpers */
.step-card:focus-within { box-shadow: 0 18px 40px rgba(0,0,0,0.45); transform: translateY(-6px); outline: 2px solid rgba(56,189,248,0.5); outline-offset: 2px; }

/* Responsive breakpoints */
@media (max-width: 1000px) {
  .steps-grid, .engage-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  .process-steps { padding: 32px 16px; }
  .steps-grid { grid-template-columns: 1fr; padding: 0 12px; gap: 16px; }
  .engage-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { min-height: auto; padding: 20px; }
  .step-number { width: 40px; height: 40px; font-size: 16px; }
  .engagement { padding: 32px 16px; }
  .cta-section { padding: 20px; margin-top: 20px; }
}

@media (max-width: 480px) {
  .process-steps h2 { font-size: 22px; }
  .step-card h3 { font-size: 16px; }
}


ABOUT US SECTONN

/* ABOUT HERO */
.about-hero {
  padding: 100px 20px 80px;
  background: radial-gradient(
    circle at top left,
    #0f1c2e,
    #070d18 60%
  );
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 32px;
}

.about-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.about-hero-content h1 {
  font-size: 48px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-hero-content h1 span {
  color: #38bdf8;
}

.about-hero-content p {
  color: #cbd5e1;
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 28px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #e2e8f0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(15, 23, 42, 0.6);
}

/* TERMINAL CARD */
.terminal-card {
  background: #0b1220;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0f172a;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #facc15; }
.dot.green { background: #22c55e; }

.terminal-title {
  margin-left: 10px;
  font-size: 13px;
  color: #94a3b8;
}

.terminal-body {
  padding: 18px;
  font-family: monospace;
  font-size: 14px;
  color: #e5e7eb;
}

.terminal-body span {
  color: #38bdf8;
}

.terminal-body .highlight {
  color: #22c55e;
  margin: 8px 0 14px;
}

.terminal-body ul {
  padding-left: 18px;
}

.terminal-body li {
  margin-bottom: 6px;
  color: #cbd5f5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero {
    padding: 60px 4% 50px;
  }

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

  .about-hero-content h1 {
    font-size: 32px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .terminal-card {
    max-width: 500px;
    margin: 0 auto;
  }
}


.capabilities {
  padding: 100px 8%;
  background: radial-gradient(circle at top left, #121c30, #070d1c);
  color: #e5e7eb;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cap-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* LEFT NAV */
.cap-nav h3 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 24px;
}

.cap-nav ul {
  list-style: none;
  padding: 0;
}

.cap-nav li {
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.cap-nav li:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cap-nav li.active {
  background: linear-gradient(135deg, #7c2d12, #ca8a04);
  color: #fff;
}

/* RIGHT CONTENT */
.cap-content {
  background: linear-gradient(135deg, rgba(124,45,18,0.25), rgba(2,6,23,0.9));
  border-radius: 22px;
  padding: 60px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.cap-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.cap-content h2 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #f9fafb;
}

.cap-content p {
  font-size: 18px;
  max-width: 650px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 30px;
}

/* METRICS */
.cap-metrics {
  display: flex;
  gap: 50px;
  margin: 40px 0;
}

.cap-metrics strong {
  font-size: 32px;
  color: #facc15;
}

.cap-metrics span {
  display: block;
  font-size: 13px;
  color: #9ca3af;
}

/* TAGS */
.cap-tags span {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(239,68,68,0.12);
  color: #fecaca;
  font-size: 13px;
}

.genai-lab {
  padding: 100px 8%;
  background: radial-gradient(circle at center, #111827, #020617);
  color: #e5e7eb;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.genai-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.genai-head .pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.genai-head h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.genai-head p {
  font-size: 18px;
  color: #cbd5f5;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* NODES */
.genai-nodes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}

.node {
  padding: 20px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.node:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.node.highlight {
  background: linear-gradient(135deg, #7c2d12, #ca8a04);
  color: #fff;
  font-weight: 600;
}

/* CORE */
.genai-core {
  background: linear-gradient(
    135deg,
    rgba(124,45,18,0.35),
    rgba(2,6,23,0.95)
  );
  padding: 60px;
  border-radius: 26px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
}

.genai-core h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.genai-core p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #d1d5db;
}

/* STATS */
.core-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.core-stats > div {
  text-align: center;
}

.core-stats strong {
  font-size: 36px;
  color: #facc15;
}

.core-stats span {
  display: block;
  font-size: 13px;
  color: #9ca3af;
}

/* RESPONSIVE STYLES FOR ABOUT PAGE */
@media (max-width: 1000px) {
  .cap-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cap-content {
    padding: 40px;
  }

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

@media (max-width: 768px) {
  .capabilities {
    padding: 60px 4%;
  }

  .cap-nav {
    display: none;
  }

  .cap-content {
    padding: 32px 24px;
  }

  .cap-content h2 {
    font-size: 32px;
  }

  .cap-content p {
    font-size: 16px;
  }

  .cap-metrics {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .genai-lab {
    padding: 60px 4%;
  }

  .genai-head h2 {
    font-size: 32px;
  }

  .genai-head p {
    font-size: 16px;
  }

  .genai-nodes {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .genai-core {
    padding: 40px 24px;
  }

  .genai-core h3 {
    font-size: 26px;
  }

  .genai-core p {
    font-size: 15px;
  }

  .core-stats {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 20px 4% 20px;
  }

  .about-hero-content h1 {
    font-size: 26px;
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .about-tags span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .terminal-body {
    font-size: 12px;
    padding: 14px;
  }

  .capabilities {
    padding: 40px 4%;
  }

  .cap-content {
    padding: 24px 16px;
  }

  .cap-content h2 {
    font-size: 26px;
  }

  .cap-tags span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .genai-lab {
    padding: 40px 4%;
  }

  .genai-head h2 {
    font-size: 26px;
  }

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

  .node {
    padding: 16px 14px;
    font-size: 13px;
    min-height: 60px;
  }

  .genai-core {
    padding: 28px 16px;
  }

  .genai-core h3 {
    font-size: 22px;
  }

  .core-stats strong {
    font-size: 28px;
  }
}
