/* ===== Portfolio Page - Trust & Integrity Design ===== */
:root {
  --white: #ffffff;
  --blue: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-pale: #eff6ff;
  --black: #0f172a;
  --gray-dark: #374151;
  --gray: #64748b;
  --gray-light: #f8fafc;
  --green: #10b981;
  --border: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: var(--white); color: var(--black); line-height: 1.6; }
.main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-container { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; }
.nav-logo { z-index: 1001; }
.logo-image { height: 40px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 0.3rem; align-items: center; }
.nav-link { text-decoration: none; color: var(--gray-dark); font-weight: 500; font-size: 0.9rem; padding: 0.6rem 1rem; border-radius: 8px; transition: all 0.3s ease; }
.nav-link:hover { color: var(--blue); background: var(--blue-pale); }
.nav-link.active { color: var(--white); background: var(--blue); font-weight: 600; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger-line { width: 24px; height: 2.5px; background: var(--black); border-radius: 4px; transition: all 0.3s ease; }

/* ===== Common ===== */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; background: var(--blue-pale); color: var(--blue); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.text-gradient { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header p { color: var(--gray-medium); font-size: 0.95rem; }
/* ===== Common ===== */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-highlight { color: var(--blue); position: relative; }
.bg-alt { background: var(--gray-light); }

/* ===== Hero ===== */
/* ===== Compact Hero Section ===== */
.pf-hero-compact {
  position: relative;
  height: 380px;
  max-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

/* Background Layers */
.hero-bg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Wave Shapes */
.bg-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bg-wave-1 {
  background: linear-gradient(160deg, 
    #1e3a8a 0%, 
    #1e2d5f 30%, 
    #0f172a 60%, 
    #111827 100%
  );
}

.bg-wave-2 {
  background: radial-gradient(
    ellipse at 70% 50%, 
    rgba(59,130,246,0.15) 0%, 
    transparent 60%
  );
}

/* Dot Pattern */
.bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Glow Effects */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.bg-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(59,130,246,0.15);
  top: -50px;
  right: -50px;
  animation: glowMove 6s ease-in-out infinite;
}

.bg-glow-2 {
  width: 200px;
  height: 200px;
  background: rgba(30,58,138,0.2);
  bottom: -30px;
  left: 30%;
  animation: glowMove 5s ease-in-out infinite reverse;
}

@keyframes glowMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

/* Content Grid */
.hero-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Left Content */
.hero-compact-left {
  color: white;
}

.compact-tag {
  display: inline-block;
  background: rgba(59,130,246,0.2);
  color: #93c5fd;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(59,130,246,0.3);
}

.hero-compact-left h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: white;
}

.text-blue {
  color: #60a5fa;
}

.hero-compact-left p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.compact-stats {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.compact-stats strong {
  color: #60a5fa;
  font-size: 1.1rem;
}

.stat-sep {
  color: #475569;
}

/* Right Visual */
.hero-compact-right {
  display: flex;
  justify-content: center;
}

.compact-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compact-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}

.ring-outer {
  width: 200px;
  height: 200px;
  border-color: rgba(255,255,255,0.08);
  animation: spin 20s linear infinite;
}

.ring-middle {
  width: 150px;
  height: 150px;
  border-color: rgba(59,130,246,0.2);
  animation: spin 15s linear infinite reverse;
}

.ring-inner {
  width: 100px;
  height: 100px;
  border-color: rgba(96,165,250,0.3);
  border-style: dashed;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.compact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(59,130,246,0.4);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { box-shadow: 0 0 30px rgba(59,130,246,0.4); }
  50% { box-shadow: 0 0 50px rgba(59,130,246,0.7); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .pf-hero-compact {
    height: auto;
    max-height: none;
    padding: 2.5rem 0;
  }
  
  .hero-compact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .compact-stats {
    justify-content: center;
  }
  
  .compact-visual {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  
  .ring-outer { width: 160px; height: 160px; }
  .ring-middle { width: 120px; height: 120px; }
  .ring-inner { width: 80px; height: 80px; }
}
/* ===== Trust Bar ===== */
.pf-trust-bar { padding: 2rem 0; background: white; border-bottom: 1px solid var(--border); }
.trust-indicators { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem 1.5rem; }
.trust-icon { width: 45px; height: 45px; background: #f0fdf4; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green); }
.trust-text strong { display: block; font-size: 0.85rem; color: var(--black); }
.trust-text span { font-size: 0.75rem; color: var(--gray); }

/* ===== Project Sections ===== */
.pf-project-section { padding: 4rem 0; }
.pf-project-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.pf-project-alt.reverse { direction: rtl; }
.pf-project-alt.reverse .pf-project-body { direction: ltr; }
.pf-project-image-lg { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.pf-project-image-lg img { width: 100%; height: 380px; object-fit: cover; display: block; }
.pf-project-badge { position: absolute; top: 1rem; right: 1rem; background: var(--green); color: white; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.pf-project-badge a{ text-decoration: none;color: white;}
.pf-project-category { display: inline-block; color: var(--blue); font-weight: 600; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.pf-project-body h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.pf-project-body > p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.pf-feature-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.pf-feature { display: flex; gap: 0.8rem; }
.pf-feature i { color: var(--green); font-size: 1.1rem; margin-top: 3px; }
.pf-feature strong { display: block; font-size: 0.95rem; color: var(--black); }
.pf-feature span { font-size: 0.8rem; color: var(--gray); }
.pf-tech-stack { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pf-tech-stack span { background: var(--blue-pale); color: var(--blue); padding: 0.3rem 0.8rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.pf-testimonial-mini { background: #fefce8; padding: 1rem 1.2rem; border-radius: 12px; border-left: 3px solid var(--blue); }
.pf-testimonial-mini i { color: var(--blue); opacity: 0.3; font-size: 1.2rem; }
.pf-testimonial-mini p { font-style: italic; color: var(--gray-dark); font-size: 0.9rem; margin: 0.3rem 0; }
.pf-testimonial-mini span { font-size: 0.8rem; color: var(--gray); font-weight: 600; }

/* ===== Metrics ===== */
.pf-metrics { padding: 4rem 0; background: var(--blue-pale); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.metric-card { text-align: center; padding: 2rem; background: white; border-radius: 16px; transition: all 0.3s; }
.metric-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.metric-icon { font-size: 2rem; margin-bottom: 0.8rem; color: var(--blue); }
.metric-number { display: block; font-size: 2.2rem; font-weight: 800; color: var(--black); }
.metric-label { font-size: 0.85rem; color: var(--gray); }

/* ===== Capabilities ===== */
.pf-capabilities { padding: 5rem 0; background: white; }
.pf-cap-title { text-align: center; font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 800; }
.pf-cap-subtitle { text-align: center; color: var(--gray); margin: 0.5rem 0 3rem; }
.pf-cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pf-cap-card { padding: 2rem; text-align: center; border-radius: 16px; border: 1px solid var(--border); transition: all 0.3s; }
.pf-cap-card:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.pf-cap-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.pf-cap-card h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.pf-cap-card p { color: var(--gray); font-size: 0.85rem; }

/* ===== Integrity ===== */
.pf-integrity { padding: 4rem 0; background: var(--gray-light); }
.integrity-card { max-width: 800px; margin: 0 auto; text-align: center; background: white; padding: 3rem; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.integrity-icon { font-size: 3rem; color: var(--blue); margin-bottom: 1rem; }
.integrity-card h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.integrity-points { text-align: left; display: flex; flex-direction: column; gap: 1rem; }
.integrity-point { display: flex; align-items: center; gap: 0.8rem; }
.integrity-point i { color: var(--green); font-size: 1.1rem; }
.integrity-point span { font-size: 0.95rem; color: var(--gray-dark); }

/* ===== CTA ===== */
.pf-cta { padding: 5rem 0; background: linear-gradient(135deg, var(--black), #1e2d5f); }
.pf-cta-wrapper { text-align: center; max-width: 700px; margin: 0 auto; }
.pf-cta-wrapper h2 { color: white; font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.pf-cta-wrapper p { color: #94a3b8; margin-bottom: 2rem; }
.pf-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.pf-btn-primary { background: white; color: var(--blue); padding: 0.9rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s; }
.pf-btn-primary:hover { background: var(--blue-light); color: white; }
.pf-btn-secondary { background: transparent; color: white; padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; border: 2px solid rgba(255,255,255,0.3); display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s; }
.pf-btn-secondary:hover { border-color: white; }

/* ===== Footer ===== *//* ===== Footer ===== */
.footer-modern {
  background: #06080f;
  position: relative;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col-large {
  color: #cbd5e1;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.newsletter-form button {
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links-list a i {
  font-size: 0.6rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links-list a:hover i {
  color: #60a5fa;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.contact-text a{
  text-decoration: none;
  color: #94a3b8;
}
/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom-content strong {
  color: white;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.dot-divider {
  width: 3px;
  height: 3px;
  background: #4b5563;
  border-radius: 50%;
}

/* ===== Responsive Footer ===== */
@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-col-large {
    grid-column: 1;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links-list a {
    justify-content: center;
  }
  
  .footer-contact-list li {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .newsletter-form {
    max-width: 350px;
    margin: 0 auto;
  }
}
/* ===== Responsive ===== */
@media (max-width: 968px) {
  .pf-project-alt { grid-template-columns: 1fr; gap: 2rem; }
  .pf-project-alt.reverse { direction: ltr; }
  .pf-project-image-lg img { height: 280px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-cap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: white; flex-direction: column; justify-content: center; gap: 1.5rem; transform: translateX(-100%); transition: 0.4s; z-index: 1000; }
  .nav-menu.active { transform: translateX(0); }
  .trust-indicators { flex-direction: column; align-items: center; gap: 0.5rem; }
  .metrics-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .pf-cap-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .footer-grid-main { grid-template-columns: 1fr; text-align: center; }
}
/* ===== Our Commitment - Flip Cards ===== */
.commitment-unique {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fefce8 0%, #fff7ed 50%, #fef2f2 100%);
  position: relative;
  overflow: hidden;
}

.commitment-unique::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.03) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.commitment-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.commitment-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d97706;
  margin-bottom: 1rem;
  background: #fef3c7;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
}

.commitment-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
}

.text-highlight {
  color: var(--blue);
  position: relative;
}

.commitment-header p {
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Flip Cards Grid */
.commitment-cards-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.commit-card {
  perspective: 1000px;
  height: 280px;
}

.commit-card-front,
.commit-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.commit-card-front {
  background: white;
  border: 2px solid #f1f5f9;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  z-index: 2;
}

.commit-card-back {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  transform: rotateY(180deg);
  color: white;
  padding: 1.5rem;
}

.commit-card:hover .commit-card-front {
  transform: rotateY(180deg);
}

.commit-card:hover .commit-card-back {
  transform: rotateY(0deg);
}

.commit-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: floatEmoji 3s ease-in-out infinite;
}

.commit-card:nth-child(2) .commit-emoji { animation-delay: 0.5s; }
.commit-card:nth-child(3) .commit-emoji { animation-delay: 1s; }
.commit-card:nth-child(4) .commit-emoji { animation-delay: 1.5s; }

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

.commit-card-front h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.commit-hint {
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
}

.commit-card-back p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.commit-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
  width: 100%;
  text-align: left;
}

.commit-check i {
  color: #4ade80;
  font-size: 0.9rem;
}

/* ===== What We Can Build - Showcase Grid ===== */
.build-unique {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.build-header {
  text-align: center;
  margin-bottom: 3rem;
}

.build-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  background: var(--blue-pale);
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
}

.build-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
}

.build-header p {
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Showcase Grid */
.build-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.build-showcase-item {
  position: relative;
  background: var(--gray-light);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid transparent;
}

.build-showcase-item:hover {
  background: white;
  border-color: var(--blue-light);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.build-showcase-visual {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.build-showcase-emoji {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.build-showcase-item:hover .build-showcase-emoji {
  transform: scale(1.2) rotate(-5deg);
}

.build-showcase-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.build-showcase-item:hover .build-showcase-glow {
  opacity: 0.15;
}

.build-showcase-info h3 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.build-showcase-info p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.build-showcase-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.build-showcase-tags span {
  background: white;
  border: 1px solid var(--border);
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.build-showcase-item:hover .build-showcase-tags span {
  background: var(--blue-pale);
  border-color: var(--blue-light);
  color: var(--blue);
}

.build-showcase-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  transition: color 0.4s ease;
}

.build-showcase-item:hover .build-showcase-number {
  color: #bfdbfe;
}

.build-bottom-cta {
  text-align: center;
  margin-top: 3rem;
}

.build-bottom-cta p {
  color: var(--gray);
  font-size: 1rem;
}

.build-bottom-cta a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s ease;
}

.build-bottom-cta a:hover {
  gap: 0.6rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .commitment-cards-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .build-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .commitment-cards-stack {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .commit-card {
    height: 250px;
  }
  
  .build-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* my code  */


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: #6c4cff;
}

.dot-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}


/* =========================================================
   POLICY MODAL
   ========================================================= */

.policy-modal {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 99999;
}

.policy-modal.active {
  display: flex;
}


/* Dark background */

.policy-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.75);

  backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL CONTAINER
   ========================================================= */

.policy-modal-content {
  position: relative;

  width: min(760px, 100%);
  max-height: 85vh;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.30);

  z-index: 2;

  animation: policyModalIn 0.25s ease;
}


/* Animation */

@keyframes policyModalIn {

  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.policy-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #f1f2f6;

  color: #333;

  font-size: 15px;

  cursor: pointer;

  transition: all 0.2s ease;

  z-index: 3;
}

.policy-modal-close:hover {
  background: #321b9b;
  color: #ffffff;
  transform: rotate(90deg);
}


/* =========================================================
   MODAL HEADER
   ========================================================= */

.policy-modal-header {
  padding: 30px 35px 20px;

  border-bottom: 1px solid #e7e8ee;
}

.policy-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 8px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.policy-modal-header h2 {
  margin: 0;

  color: #111827;

  font-size: 26px;

  line-height: 1.3;
}


/* =========================================================
   MODAL BODY
   ========================================================= */

.policy-modal-body {
  max-height: calc(85vh - 120px);

  overflow-y: auto;

  padding: 25px 35px 35px;

  color: #555b6e;

  font-size: 14px;

  line-height: 1.75;
}

.policy-modal-body h3 {
  margin: 22px 0 8px;

  color: #1f2937;

  font-size: 17px;
}

.policy-modal-body h3:first-child {
  margin-top: 0;
}

.policy-modal-body p {
  margin: 0 0 14px;
}

.policy-modal-body ul {
  margin: 8px 0 16px;

  padding-left: 22px;
}

.policy-modal-body li {
  margin-bottom: 7px;
}

.policy-modal-body a {
  color: #321b9b;

  text-decoration: none;

  font-weight: 600;
}

.policy-modal-body a:hover {
  text-decoration: underline;
}


/* =========================================================
   PREVENT BACKGROUND SCROLL
   ========================================================= */

body.policy-modal-open {
  overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .footer-bottom-links {
    justify-content: center;

    margin-top: 10px;
  }

  .policy-modal {
    padding: 12px;
  }

  .policy-modal-content {
    width: 100%;
    max-height: 90vh;

    border-radius: 14px;
  }

  .policy-modal-header {
    padding: 24px 20px 18px;
  }

  .policy-modal-header h2 {
    font-size: 21px;
  }

  .policy-modal-body {
    max-height: calc(90vh - 110px);

    padding: 20px;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
  }

}
