:root {
  --bg-color: #0b0d13;
  --text-color: #ffffff;
  --accent: #3169af;
  /* --accent: #0073ff; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color); /* base */
  background-image: 
    radial-gradient(at 0% 0%, hsla(182,100%,50%,0.25) 0px, transparent 50%),
    radial-gradient(at 100% 0%, hsla(266,100%,50%,0.25) 0px, transparent 50%),
    radial-gradient(at 50% 100%, hsla(182,100%,50%,0.15) 0px, transparent 50%);

  background-repeat: no-repeat;
  background-attachment: fixed; /* IMPORTANT */
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-size: 200% 200%;
  animation: meshMove 20s ease infinite;
}

@keyframes meshMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


a, a:hover {
    text-decoration: none;
}


.navbar {
  padding: 0rem 6rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  height: 110px;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease all;
    background: transparent;
}


.navbar.toggle-class {
  background:#11131b;
  height: 80px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
}

.navbar .navbar-list {
  display: flex;
  }

.navbar-list li {
    list-style: none;
}

.navbar-list li a {
    color: var(--text-color);
    font-size: 18px;
    transition: 0.3s ease all;
    padding: 0 10px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.navbar-list li a:before,
.navbar.toggle-class .navbar-list li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 2px;
    border-radius: 25px;
    opacity: 0;
    transition: 0.3s ease all;
}
.navbar-list li a:hover,
.navbar.toggle-class .navbar-list li a:hover {
    color: var(--accent);
}
.navbar-list li a.active:before,
.navbar-list li a:hover:before,
.dropdown-menu a.active:before,
.dropdown-menu a:hover:before {
    opacity: 1;
}
.navbar.toggle-class .navbar-list li a {
    color: var(--text-color);
}


/* DROPDOWN */

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:-20px;
  list-style:none;
  padding:10px 0;
  border-radius:8px;
  min-width:180px;
  display:none;
}

.navbar.toggle-class .dropdown-menu{
  background:#11131b;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.dropdown-menu li{
  padding:10px 20px;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu,
.dropdown-sidebar-menu.show{
  /* display:block; */
  display: none;
}

.dropdown-toggle-btn {
    cursor: pointer;
    user-select: none;
}

.dropdown-sidebar-menu {
    display: none;
    list-style: none;
    padding-left: 20px; /* indent inside sidebar */
    margin: 5px 0;
    list-style: none;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-sidebar-menu li {
    padding: 5px 0px;
}

.dropdown-sidebar-menu li a {
    text-decoration: none;
    color: black;
    display: block;
}


.menu-btn,
.sidebar-menu{
    display: none;
}

.menu-icon{
  display:flex;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-icon span{
  width:25px;
  height:2px;
  background:#ffffff; /* or var(--text-color) */
  border-radius:2px;
  transition:0.3s;
}

.nav_logo {
  height: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 5rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a.active {
  color: var(--accent);
  font-weight: bold;
  border-bottom: 2px solid var(--accent);
}


.nav-links a:hover {
  color: var(--accent);
}

/*hero */

.hero {
  text-align: center;
  margin-top: 0px;
  background: transparent;
  padding-top: 0px;
  /* padding-inline: 80px; */
}

.hero_style {
  display: grid;
  align-items: center;
  height: auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-container {
  animation: float 4s ease-in-out infinite;
  transition: 0.3s ease all;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.video-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container img {
  width: 90%;
  object-fit: cover;
}


.hero-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--text-color);
  text-align: left;
}

.hero h1 {
  font-size: 5rem;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero-head {
background: linear-gradient(to right, #00f3ff, #7000ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
  justify-content: center;
  color: #ccc;
  font-style: italic;
  letter-spacing: 0.75px;
  animation: fadeInTagline 2s ease-in-out;
}

@keyframes fadeInTagline {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-down {
  margin-top: 2rem;
  font-size: 1.2rem;
  gap: 0.5rem;
  color: var(--accent);
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}


.btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent);
  color: #000;
}

section {
  padding: 0rem 2rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  max-width: 700px;
  margin-inline: auto;
}



/* BACKED BY SECTION */
.backed-section{
  /* background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(6,182,212,0.06) 100%); */
  padding: 80px 60px;
}

.backed-container{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}

/* TITLE */
.backed-title{
  /* font-size: 14px; */
  /* letter-spacing: 3px; */
  text-transform: uppercase;
  /* color: #00aeff; */
  /* margin-bottom: 30px; */
}

/* HEADING STYLE */
.backed-title{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* SUBTEXT */
.backed-sub{
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* LOGO WRAPPER */
.backed-logos{
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 60px;
  flex-wrap: wrap; */
  gap: 60px;
  flex-wrap: nowrap;
  overflow: hidden; 
}

/* EACH LOGO */
.backed-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  transition: 0.3s ease;
  flex: 1;                 /* allows shrinking */
  max-width: 300px;
}

/* IMAGE STYLE */
.backed-item img{
  /* max-height: 70px; */
  /* width: auto; */
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.backed-item:hover img{
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}



/* what do we */

.section { padding: 90px 60px; }
  .section-label { font-size: 12px; letter-spacing: 3px; color: #00aeff; text-transform: uppercase; text-align: center; margin-bottom: 12px; }
  .section-title { font-size: 38px; font-weight: 700; text-align: center; margin-bottom: 12px; }
  .section-sub { color: #64748b; text-align: center; font-size: 15px; max-width: 560px; margin: 0 auto 60px; line-height: 1.7; }

.what-we-do {
  background: transparent;
}

  .what-grid { 
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
  }

  .what-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,174,255,0.1); border-radius: 14px; padding: 28px 24px; transition: border-color 0.3s, transform 0.3s; }
  .what-card:hover { border-color: rgba(0,174,255,0.4); transform: translateY(-4px); }
  
  .what-icon {
    width: 44px;
    height: 44px;
    border-radius:
    10px; background:
    rgba(0,174,255,0.1);
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content:
    center; margin-bottom: 16px; font-size: 20px;
  }

  .what-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: #e2e8f0; }
  .what-card p { font-size: 13px; color: #64748b; line-height: 1.7; }


.our-team {
  background: transparent;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.team-member {
  border-radius: 12px;
  padding: 1rem;
  width: 200px;
  text-align: center;
}

.team-member:hover {
  transform: scale(1.05);
  background: rgba(0, 191, 255, 0.05);
  transition: 0.3s ease;
}

.team-img{
height: 210px;
overflow: hidden;
border-radius: 50%;
margin-bottom: 1rem;
}

.team-member img {
  width: 100%;
}




/* contact us */

.contact {
  background: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text-color);
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d5ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem;
}

.contact-info {
  color: #ccc;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info i {
  color: var(--accent);
  font-size: 1rem;
  width: 1.2rem;
}

.contact-styling{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-details {
  width: 50%;
  gap: 1rem;
}

.map-container {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  width: 50%;
  margin: 1rem;
}

.contact-form h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent);
}



/* ═══════════════════════════════════════
   FOOTER — Shared with main site
═══════════════════════════════════════ */
 
.footer {
  background: #07080f;
  color: #ffffff;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
 
.footer-glow-bar {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #00aeff55, #7000ff55, transparent);
}
 
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,174,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  align-items: start;
}
 
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.footer-logo {
  width: 130px;
  object-fit: contain;
}
 
.footer-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00aeff;
  margin: 0;
  font-weight: 600;
}
 
.footer-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  max-width: 300px;
}
 
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
 
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
 
.footer-social a:hover {
  background: rgba(0,174,255,0.12);
  border-color: rgba(0,174,255,0.35);
  color: #00aeff;
  transform: translateY(-2px);
}
 
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
 
.footer-col-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e2e8f0;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
 
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.footer-col ul li a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
 
.footer-col ul li a:hover {
  color: #00aeff;
}
 
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}
 
.footer-contact-list li a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
 
.footer-contact-list li a:hover {
  color: #00aeff;
}
 
.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0,174,255,0.08);
  border: 1px solid rgba(0,174,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00aeff;
  font-size: 11px;
  margin-top: 1px;
}
 
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}
 
.footer-copy {
  font-size: 12px;
  color: #334155;
  /* margin: 0; */
  /* max-width: none; */
  text-align: center;
}
 
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
 
.footer-bottom-links a {
  font-size: 12px;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s;
}
 
.footer-bottom-links a:hover {
  color: #00aeff;
}
 
/* ── Footer Responsive ── */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 30px 36px;
  }
  .footer-desc { max-width: 100%; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
 
@media (max-width: 640px) {
  .footer-inner { padding: 40px 20px 32px; gap: 36px; }
  .footer-links-group { grid-template-columns: 1fr; gap: 28px; }
  .footer-contact-col { grid-column: auto; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-links { gap: 14px; }
}
 
@media (max-width: 400px) {
  .footer-social a { width: 32px; height: 32px; font-size: 13px; }
}

/* ═══════════════════════════════════════
   UX ENHANCEMENTS — homepage
═══════════════════════════════════════ */

/* Cursor glow */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,105,175,0.10) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.08s ease, top 0.08s ease;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49,105,175,0.12);
  border: 1px solid rgba(49,105,175,0.35);
  color: #7eb8ff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3169af;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* Hero CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3169af, #1d4ed8);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(49,105,175,0.45);
  color: #fff;
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ccc;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost-hero:hover {
  border-color: rgba(49,105,175,0.5);
  color: #7eb8ff;
  background: rgba(49,105,175,0.06);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3169af;
}
.stat-label {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  letter-spacing: 0.4px;
  max-width: none;
  margin-inline: 0;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 3rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #3169af, transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* What-card icon rework */
.what-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(49,105,175,0.12);
  border: 1px solid rgba(49,105,175,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  transition: background 0.3s, transform 0.3s;
}
.what-card:hover .what-icon-wrap {
  background: rgba(49,105,175,0.22);
  transform: scale(1.08);
}

/* Card bottom accent line */
.card-line {
  height: 2px;
  background: linear-gradient(to right, #3169af, transparent);
  border-radius: 2px;
  margin-top: 20px;
  width: 40px;
  transition: width 0.4s ease;
}
.what-card:hover .card-line { width: 80px; }

/* Team role text */
.team-role {
  font-size: 13px;
  color: #3169af;
  font-weight: 500;
  margin: 0;
  max-width: none;
  margin-inline: 0;
}
.team-member h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #e2e8f0;
}

/* Team image overlay */
.team-img {
  position: relative;
  overflow: hidden;
}
.team-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 60%, rgba(49,105,175,0.15) 100%);
  transition: opacity 0.3s;
  opacity: 0;
}
.team-member:hover .team-img::after { opacity: 1; }

/* Backed section logo pop */
.backed-item {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.backed-item:hover {
  transform: scale(1.06) translateY(-3px);
  filter: drop-shadow(0 0 12px rgba(49,105,175,0.35));
}

/* Responsive hero extras */
@media (max-width: 750px) {
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { font-size: 12px; }
  .stat-num { font-size: 1.7rem; }
  .scroll-indicator { display: none; }
  .hero-text { align-items: center; }
  .card-line { margin-left: auto; margin-right: auto; }
}



/* ═══════════════════════════════════════
   INNER PAGES — shared page hero
═══════════════════════════════════════ */

.page-hero {
  text-align: center;
  padding: 100px 60px 60px;
}
.page-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.gradient-text {
  background: linear-gradient(to right, #00f3ff, #7000ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */

.about-mission { padding-top: 20px; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text .section-title { text-align: left; }

.mission-para {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.mission-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.m-badge {
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.3);
  color: #7eb8ff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mstat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(49,105,175,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.mstat-card:hover {
  border-color: rgba(49,105,175,0.4);
  transform: translateY(-4px);
}
.mstat-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
.mstat-num span { color: #3169af; }
.mstat-label {
  font-size: 13px;
  color: #64748b;
  letter-spacing: 0.3px;
}

/* About page — team cards (fuller version) */
.team-card {
  width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49,105,175,0.3);
  background: rgba(49,105,175,0.05);
}
.team-img-wrap {
  width: 150px; height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(49,105,175,0.25);
  transition: border-color 0.3s;
}
.team-card:hover .team-img-wrap { border-color: rgba(49,105,175,0.6); }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card h4  { font-size: 16px; font-weight: 600; color: #e2e8f0; margin-bottom: 6px; }
.team-role     { font-size: 13px; color: #3169af; font-weight: 500; margin: 0; max-width: none; margin-inline: 0; }

/* ═══════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════ */

.products-main { padding-top: 10px; }

.product-featured-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(6,182,212,0.06) 100%);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 24px;
  padding: 60px 50px;
  margin-bottom: 80px;
}
.product-tag {
  position: absolute;
  top: -14px; left: 50px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.product-featured-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}
.product-featured-left img {
  width: 55%;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.product-featured-left img:hover { transform: scale(1.04); }
.product-featured-left > p {
  color: #94a3b8; font-size: 15px; line-height: 1.8;
  margin: 0 0 24px; max-width: none; margin-inline: 0; text-align: left;
}
.product-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.product-meta-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8; font-size: 12px;
  padding: 5px 12px; border-radius: 100px;
}
.product-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.product-featured-right { display: flex; flex-direction: column; gap: 16px; }

.coming-soon-section { padding-top: 20px; }
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.coming-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.coming-card:hover { border-color: rgba(49,105,175,0.3); transform: translateY(-4px); }
.coming-icon { font-size: 2rem; margin-bottom: 16px; }
.coming-card h3 { font-size: 18px; font-weight: 600; color: #e2e8f0; margin-bottom: 10px; }
.coming-card p  { font-size: 13px; color: #64748b; line-height: 1.7; max-width: none; margin-inline: 0; margin-bottom: 20px; }
.coming-badge {
  display: inline-block;
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.25);
  color: #7eb8ff; font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */

.contact-section { padding-top: 10px; padding-bottom: 100px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  text-align: left;
}
.contact-info-title { font-size: 1.6rem; font-weight: 700; color: #e2e8f0; margin-bottom: 10px; text-align: left; }
.contact-info-sub {
  font-size: 14px; color: #64748b; line-height: 1.7;
  margin-bottom: 32px; max-width: none; margin-inline: 0; text-align: left;
}
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.cdi-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #7eb8ff; font-size: 15px; flex-shrink: 0; margin-top: 2px;
}
.cdi-text { display: flex; flex-direction: column; gap: 3px; }
.cdi-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #64748b; font-weight: 600;
}
.cdi-text a,
.cdi-text span {
  font-size: 14px; color: #94a3b8; text-decoration: none;
  line-height: 1.5; max-width: none; margin-inline: 0; transition: color 0.2s;
}
.cdi-text a:hover { color: #00aeff; }
.contact-map { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }

.contact-form-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 40px 36px;
}
.contact-form-title { font-size: 1.6rem; font-weight: 700; color: #e2e8f0; margin-bottom: 28px; text-align: left; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  color: #94a3b8; text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 16px;
  color: #e2e8f0; font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  resize: none; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #334155; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(49,105,175,0.5);
  background: rgba(49,105,175,0.04);
}
.contact-submit-btn {
  background: linear-gradient(135deg, #3169af, #1d4ed8);
  color: #fff; border: none; border-radius: 10px;
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start; margin-top: 4px;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(49,105,175,0.45);
}
.form-note { font-size: 13px; margin: 0; max-width: none; margin-inline: 0; min-height: 20px; }

/* ── Inner pages responsive ── */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero h1 { font-size: 2.8rem; }
  .page-hero    { padding: 80px 30px 40px; }
  .product-featured-card { padding: 40px 24px; }
  .product-featured-left img { width: 70%; }
}
@media (max-width: 600px) {
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .team-card     { width: 160px; }
  .team-img-wrap { width: 120px; height: 120px; }
  .coming-grid   { grid-template-columns: 1fr; }
  .contact-form-col { padding: 28px 20px; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-submit-btn { width: 100%; text-align: center; }
  .product-featured-inner { gap: 30px; }
}


/* ═══════════════════════════════════════
   ABOUT PAGE — full redesign
═══════════════════════════════════════ */

/* ── Hero ── */
.ab-hero {
  padding: 110px 10% 70px;
  text-align: center;
}
.ab-hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 16px 0 20px;
  color: #fff;
}
.ab-hero-sub {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Shared heading ── */
.ab-section-h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.2;
}
.ab-section-h2.center { text-align: center; }

.ab-para {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

/* ── Story section ── */
.ab-story-section { padding-top: 0; }

.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

/* Left — story text */
.ab-story-left .section-label { text-align: left; margin-bottom: 10px; }

.ab-story-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.ab-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ab-stat-plus { color: #3169af; }
.ab-stat-label {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.4px;
  max-width: none;
  margin-inline: 0;
}
.ab-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* Right — pillar cards */
.ab-story-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-pillar-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-pillar-card:hover {
  border-color: rgba(49,105,175,0.35);
  transform: translateX(4px);
}
.ab-pillar-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ab-pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.ab-pillar-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  max-width: none;
  margin-inline: 0;
}
.ab-values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ab-values-chips span {
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.25);
  color: #7eb8ff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
}

/* Quote */
.ab-quote-block {
  border-left: 3px solid #3169af;
  padding: 32px 48px;
  background: rgba(49,105,175,0.05);
  border-radius: 0 16px 16px 0;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.ab-quote-mark {
  font-size: 6rem;
  line-height: 1;
  color: #3169af;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: Georgia, serif;
}
.ab-quote-text {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 16px;
  max-width: none;
  margin-inline: 0;
  padding-left: 20px;
}
.ab-quote-author {
  font-size: 13px;
  color: #3169af;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
  max-width: none;
  margin-inline: 0;
  padding-left: 20px;
}

/* ── Team section ── */
.ab-team-section { background: transparent; }
.ab-team-section .section-label { text-align: center; }

.ab-team-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 44px 48px;
  margin-bottom: 28px;
  transition: border-color 0.3s;
}
.ab-team-card:hover { border-color: rgba(49,105,175,0.25); }

/* Alt card — flip photo to right on desktop */
.ab-team-card-alt {
  grid-template-columns: 1fr 260px;
}
.ab-team-card-alt .ab-team-photo-col { order: 2; }
.ab-team-card-alt .ab-team-info      { order: 1; }

/* Photo column */
.ab-team-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.ab-team-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(49,105,175,0.3);
  transition: border-color 0.3s;
}
.ab-team-card:hover .ab-team-photo-wrap { border-color: rgba(49,105,175,0.7); }
.ab-team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ab-team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.25);
  color: #7eb8ff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.ab-team-social a:hover {
  background: rgba(49,105,175,0.25);
  transform: translateY(-2px);
}

/* Info column */
.ab-team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.ab-role-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  background: rgba(255,255,255,0.04);
  letter-spacing: 0.3px;
}
.ab-role-ceo    { background: rgba(49,105,175,0.15); border-color: rgba(49,105,175,0.35); color: #7eb8ff; }
.ab-role-cto    { background: rgba(6,182,212,0.12);  border-color: rgba(6,182,212,0.35);  color: #67e8f9; }
.ab-role-cmo    { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.35); color: #c4b5fd; }
.ab-role-founder{ background: rgba(16,185,129,0.1);  border-color: rgba(16,185,129,0.3);  color: #6ee7b7; }

.ab-team-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.ab-team-bio {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}
.ab-team-bio strong { color: #cbd5e1; font-weight: 600; }
.ab-team-bio:last-of-type { margin-bottom: 20px; }

.ab-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-team-tags span {
  font-size: 12px;
  color: #64748b;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Backed By ── */
.ab-backed-section .section-label { text-align: center; }

.ab-backed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.ab-backed-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-backed-card:hover {
  border-color: rgba(49,105,175,0.3);
  transform: translateY(-4px);
}

.ab-backed-logo {
  height: 60px;
  display: flex;
  align-items: center;
}
.ab-backed-logo img {
  max-height: 100%;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(1.1);
}

.ab-backed-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.ab-backed-type {
  font-size: 12px;
  color: #3169af;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  max-width: none;
  margin-inline: 0;
}
.ab-backed-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: none;
  margin-inline: 0;
}
.ab-backed-badge {
  display: inline-block;
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.25);
  color: #7eb8ff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

/* Events */
.ab-events-row {
  text-align: center;
  margin-top: 20px;
}
.ab-events-label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  max-width: none;
  margin-inline: 0;
}
.ab-events-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ab-event-chip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.ab-event-chip:hover {
  border-color: rgba(49,105,175,0.4);
  color: #7eb8ff;
}

/* ── About Page Responsive ── */
@media (max-width: 1000px) {
  .ab-story-grid  { grid-template-columns: 1fr; gap: 50px; }
  .ab-team-card   { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .ab-team-card-alt .ab-team-photo-col { order: 0; }
  .ab-team-card-alt .ab-team-info      { order: 0; }
  .ab-team-photo-col { flex-direction: row; align-items: center; gap: 24px; }
  .ab-team-photo-wrap { width: 120px; height: 120px; flex-shrink: 0; }
  .ab-backed-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ab-hero       { padding: 80px 6% 50px; }
  .ab-hero-title { font-size: 2.6rem; }
  .ab-section-h2 { font-size: 1.8rem; }
  .ab-quote-block{ padding: 24px 24px 24px 32px; }
  .ab-quote-text { font-size: 1.05rem; }
  .ab-story-stats{ gap: 16px; }
  .ab-stat-num   { font-size: 1.8rem; }
  .ab-team-photo-col { flex-direction: column; }
  .ab-team-photo-wrap{ width: 160px; height: 160px; }
}


/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */

/* ── Hero ── */
.ab-hero {
  text-align: center;
  padding: 110px 60px 70px;
}
.ab-hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.ab-hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.ab-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ab-hs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ab-hs-num {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.ab-hs-label {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.3px;
}
.ab-hs-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Story section ── */
.ab-story-section { padding-top: 100px; }

.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.ab-h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.ab-h2.center { text-align: center; }

.ab-para {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

/* Vision/Mission/Values column */
.ab-vmp-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-pillar-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-pillar-card:hover {
  border-color: rgba(49,105,175,0.35);
  transform: translateY(-3px);
}
.ab-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ab-pi-blue   { background: rgba(49,105,175,0.15); border: 1px solid rgba(49,105,175,0.25); }
.ab-pi-green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.ab-pi-purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); }

.ab-pillar-title {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.ab-pillar-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  max-width: none;
  margin-inline: 0;
}
.ab-values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.ab-values-chips span {
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.25);
  color: #7eb8ff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Quote block */
.ab-quote-block {
  position: relative;
  background: rgba(49,105,175,0.06);
  border: 1px solid rgba(49,105,175,0.18);
  border-left: 4px solid #3169af;
  border-radius: 0 16px 16px 0;
  padding: 40px 48px;
  margin-top: 20px;
}
.ab-quote-accent {
  position: absolute;
  top: -1px; left: -4px;
  width: 4px; height: 60px;
  background: linear-gradient(to bottom, #00f3ff, #3169af);
  border-radius: 4px 0 0 4px;
}
.ab-quote-text {
  font-size: 1.3rem;
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.7;
  font-weight: 400;
  border: none;
  padding: 0;
  margin: 0 0 16px;
  max-width: 780px;
  margin-inline: 0;
}
.ab-quote-attr {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0;
  max-width: none;
  margin-inline: 0;
}

/* ── Team section ── */
.ab-team-section { background: transparent; }

.ab-team-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px 48px;
  margin-bottom: 28px;
  transition: border-color 0.3s;
}
.ab-team-card:hover { border-color: rgba(49,105,175,0.25); }

.ab-team-flip { grid-template-columns: 1fr 260px; }
.ab-team-flip .ab-team-info { order: 1; }
.ab-team-flip .ab-team-photo-col { order: 2; }

.ab-team-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.ab-team-photo-wrap {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ab-team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.ab-team-card:hover .ab-team-photo-wrap img { transform: scale(1.05); }

/* Photo glow rings */
.ab-glow-blue   { box-shadow: 0 0 0 6px rgba(49,105,175,0.12), 0 0 0 12px rgba(49,105,175,0.05); }
.ab-glow-purple { box-shadow: 0 0 0 6px rgba(139,92,246,0.12), 0 0 0 12px rgba(139,92,246,0.05); }
.ab-glow-teal   { box-shadow: 0 0 0 6px rgba(6,182,212,0.12),  0 0 0 12px rgba(6,182,212,0.05); }

.ab-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(49,105,175,0.1);
  border: 1px solid rgba(49,105,175,0.3);
  color: #7eb8ff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ab-linkedin-btn:hover {
  background: rgba(49,105,175,0.2);
  border-color: rgba(49,105,175,0.55);
  color: #7eb8ff;
  transform: translateY(-2px);
}

/* Role chips */
.ab-role-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ab-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.4px;
}
.ab-chip-ceo     { background: rgba(49,105,175,0.15); border: 1px solid rgba(49,105,175,0.4); color: #7eb8ff; }
.ab-chip-cto     { background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.4); color: #c4b5fd; }
.ab-chip-cmo     { background: rgba(6,182,212,0.12);  border: 1px solid rgba(6,182,212,0.35); color: #67e8f9; }
.ab-chip-founder { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }
.ab-chip-neutral { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: #94a3b8; }

.ab-team-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}
.ab-name-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #3169af, transparent);
  border-radius: 2px;
  margin: 14px 0 20px;
}
.ab-team-bio {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}
.ab-team-bio strong { color: #c8d8f0; font-weight: 600; }

.ab-expertise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-expertise-row span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #64748b;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
}

/* ── Backed By section ── */
.ab-backed-section { background: transparent; }

.ab-backed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.ab-backed-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-backed-card:hover {
  border-color: rgba(49,105,175,0.3);
  transform: translateY(-4px);
}
.ab-backed-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
}
.ab-backed-logo-wrap img {
  max-height: 55px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(1);
}
.ab-backed-body { display: flex; flex-direction: column; gap: 10px; }
.ab-backed-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.4px;
  width: fit-content;
}
.ab-badge-govt    { background: rgba(49,105,175,0.12); border: 1px solid rgba(49,105,175,0.3); color: #7eb8ff; }
.ab-badge-network { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }

.ab-backed-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.3;
}
.ab-backed-ministry {
  font-size: 12px;
  color: #3169af;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0;
  max-width: none;
  margin-inline: 0;
}
.ab-backed-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.75;
  max-width: none;
  margin-inline: 0;
  margin: 0;
}

/* Events strip */
.ab-events-strip {
  text-align: center;
  padding: 32px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
}
.ab-events-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
  max-width: none;
  margin-inline: auto;
}
.ab-events-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ab-events-chips span {
  background: rgba(49,105,175,0.08);
  border: 1px solid rgba(49,105,175,0.2);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
}

/* ── About page responsive ── */
@media (max-width: 1024px) {
  .ab-team-card        { grid-template-columns: 200px 1fr; gap: 40px; padding: 36px 32px; }
  .ab-team-flip        { grid-template-columns: 1fr 200px; }
  .ab-team-photo-wrap  { width: 170px; height: 170px; }
}
@media (max-width: 900px) {
  .ab-hero-title  { font-size: 2.6rem; }
  .ab-hero        { padding: 80px 30px 50px; }
  .ab-story-grid  { grid-template-columns: 1fr; gap: 40px; }
  .ab-h2          { font-size: 2rem; }
  .ab-backed-grid { grid-template-columns: 1fr; }
  .ab-quote-block { padding: 28px 28px; }
  .ab-quote-text  { font-size: 1.1rem; }
}
@media (max-width: 700px) {
  .ab-team-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
  }
  .ab-team-flip .ab-team-info  { order: 2; }
  .ab-team-flip .ab-team-photo-col { order: 1; }
  .ab-team-photo-wrap { width: 140px; height: 140px; }
  .ab-team-name { font-size: 1.4rem; }
  .ab-hero-stats { gap: 16px; }
  .ab-hs-num { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .ab-hero-title { font-size: 2rem; }
  .ab-hero       { padding: 60px 20px 40px; }
  .ab-quote-block { padding: 22px 18px; border-radius: 0 10px 10px 0; }
  .ab-quote-text  { font-size: 1rem; }
  .section-sub    { font-size: 14px; }
}









 @media only screen and (min-width: 300px) and (max-width: 767px) {
      .menu-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          width: 50px;
          height: 50px;
          border: none;
          margin-top: 0px;
          margin-left: auto;
          margin-right: 10px;
          background: transparent;
          color: white;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 0;
          padding: 0.75rem 1.5rem;
          border: none;
          color: white;
          background: transparent;
          text-decoration: none;
          transition: 0.3s;
      }

      .menu-btn  {
          font-size: 24px;
      }

      .navbar {
          padding: 10px 10px;
          height: 100px;
          display: flex;
          position: static;
          flex-direction: row;
          background: transparent;
      }

      .sidebar-menu {
          position: fixed;
          top: 0;
          left: -1000%;
          width: 100%;
          background: var(--bg-color);
          z-index: 9999;
          transition: 0.3s ease all;
          display: flex;
          padding: 45px 30px;
          height: 100%;
      }

      .sidebar-menu.sidebar-toggle {
          left: 0;
      }

      .sidebar-menu .navbar-list li {
          margin: 10px 0;
      }

      .sidebar-menu .navbar-list li a {
          color: var(--text-color);
      }

      .navbar .navbar-list {
          display: none;
      }


      .navbar.toggle-class {
          height: 80px;
          scroll-behavior: smooth;
      }

      .navbar.toggle-class img {
          height: 100px;
      }
    }



    @media (max-width: 640px) {
    .menu-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          width: 50px;
          height: 50px;
          border: none;
          margin-top: 0px;
          margin-left: auto;
          margin-right: 10px;
          background: transparent;
          color: white;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 0;
      }

      .menu-btn  {
          font-size: 24px;
      }

      .navbar {
          padding: 10px 0;
          height: 100px;
          display: flex;
          flex-direction: row;
          background: transparent;
      }
    .navbar {
      padding: 0rem 1rem;
      align-items: center;
    }
    .navbar .navbar-list {
          display: none;
      }
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
  }

  @media (max-width: 768px) {

  .nav_logo {
    height: 80px;
  }
  }

  @media (max-width: 300px) {
  .navbar {
      padding: 0rem 0.5rem;
    } 
  .nav_logo {
    height: 70px;
  }
}