/* ===========================
   QUICK CLICK BUILDS — STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --bg-deep:       #050508;
  --bg-dark:       #0a0a12;
  --bg-card:       #0f0f1a;
  --bg-card-hover: #141425;
  --border:        rgba(108, 77, 255, 0.18);
  --border-bright: rgba(108, 77, 255, 0.45);
  --purple:        #6c4dff;
  --purple-light:  #8b6fff;
  --purple-dim:    rgba(108, 77, 255, 0.15);
  --blue:          #3d9bff;
  --blue-light:    #6ab8ff;
  --blue-dim:      rgba(61, 155, 255, 0.12);
  --accent-grad:   linear-gradient(135deg, var(--purple), var(--blue));
  --text-white:    #f0eeff;
  --text-muted:    #8a87a8;
  --text-dim:      #5a5778;
  --font-head:     'Exo 2', sans-serif;
  --font-body:     'Rajdhani', sans-serif;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-deep); color: var(--text-white); font-family: var(--font-body); font-size: 17px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

.cursor { width: 12px; height: 12px; background: var(--purple-light); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform 0.1s; mix-blend-mode: screen; }
.cursor-trail { width: 32px; height: 32px; border: 1.5px solid var(--purple); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: transform 0.25s ease, opacity 0.2s; opacity: 0.5; }
@media (hover: none) { .cursor, .cursor-trail { display: none; } }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-light); background: var(--purple-dim); border: 1px solid var(--border-bright); border-radius: 100px; padding: 6px 16px; margin-bottom: 20px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-header h2 em, h2 em { font-style: normal; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header p { max-width: 540px; margin: 0 auto; color: var(--text-muted); font-size: 17px; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-grad); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; padding: 14px 30px; border-radius: 100px; border: none; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #8b6fff, #6ab8ff); opacity: 0; transition: opacity 0.3s; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,77,255,0.5); }
.btn-primary.btn-large { padding: 18px 44px; font-size: 17px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-white); font-family: var(--font-head); font-weight: 600; font-size: 15px; padding: 14px 30px; border-radius: 100px; border: 1.5px solid var(--border-bright); cursor: pointer; transition: var(--transition); }
.btn-ghost:hover { background: var(--purple-dim); border-color: var(--purple-light); transform: translateY(-2px); }

[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 40px; display: flex; align-items: center; justify-content: flex-end; transition: background 0.4s, box-shadow 0.4s; }
.navbar.scrolled { background: rgba(5,5,8,0.92); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }

/* Desktop nav — always visible */
.nav-links { display: flex !important; align-items: center; gap: 8px; }
.nav-links a { font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
.nav-links a:hover { color: var(--text-white); background: rgba(255,255,255,0.05); }
.nav-links .nav-cta { color: #fff; background: var(--accent-grad); padding: 9px 22px; border-radius: 100px; }
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,77,255,0.4); }

/* Hamburger — hidden on desktop */
.hamburger { display: none !important; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 60px 24px 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(108,77,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(108,77,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 500px; height: 500px; background: rgba(108,77,255,0.18); top: -150px; left: -150px; animation: orbFloat 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(61,155,255,0.12); bottom: -100px; right: -100px; animation: orbFloat 10s ease-in-out infinite 2s; }
.orb-3 { width: 300px; height: 300px; background: rgba(139,111,255,0.1); top: 30%; left: 50%; transform: translateX(-50%); animation: orbFloat 7s ease-in-out infinite 1s; }
.orb-4 { width: 600px; height: 600px; background: rgba(108,77,255,0.12); top: -200px; right: -200px; }
.orb-5 { width: 700px; height: 700px; background: rgba(61,155,255,0.1); bottom: -300px; left: 50%; transform: translateX(-50%); }
#particles { position: absolute; inset: 0; }

.hero-content { position: relative; z-index: 2; max-width: 800px; }

/* HERO LOGO — transparent, centered, directly above badge */
.hero-logo { margin-bottom: 20px; animation: fadeSlideIn 0.7s ease both; display: flex; justify-content: center; width: 100%; }
.hero-logo img { height: 200px; width: auto; margin: 0 auto; display: block; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--purple-light); background: var(--purple-dim); border: 1px solid var(--border-bright); border-radius: 100px; padding: 8px 20px; margin-bottom: 28px; animation: fadeSlideIn 0.8s 0.1s ease both; }
.hero-title { font-family: var(--font-head); font-size: clamp(44px, 8vw, 88px); font-weight: 900; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-title .line-1 { display: block; color: var(--text-muted); font-size: 0.7em; animation: fadeSlideIn 0.8s 0.2s ease both; }
.hero-title .line-2 { display: block; animation: fadeSlideIn 0.8s 0.3s ease both; }
.hero-title .line-3 { display: block; animation: fadeSlideIn 0.8s 0.4s ease both; }
.hero-title em { font-style: normal; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 580px; margin: 0 auto 36px; line-height: 1.7; animation: fadeSlideIn 0.8s 0.5s ease both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 56px; animation: fadeSlideIn 0.8s 0.6s ease both; }
.hero-stats { display: flex; align-items: center; justify-content: center; animation: fadeSlideIn 0.8s 0.7s ease both; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px 40px; backdrop-filter: blur(10px); }
.stat { text-align: center; padding: 0 28px; }
.stat-num { display: block; font-family: var(--font-head); font-size: 26px; font-weight: 900; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); animation: fadeSlideIn 1s 1s ease both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--purple), transparent); animation: scrollPulse 2s infinite; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; background: rgba(108,77,255,0.06); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.ticker { display: flex; gap: 32px; align-items: center; white-space: nowrap; animation: ticker 30s linear infinite; font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.ticker .dot { color: var(--purple); font-size: 8px; }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; overflow: hidden; transition: var(--transition); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--purple-dim), var(--blue-dim)); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: var(--purple); background: linear-gradient(145deg, rgba(108,77,255,0.08), var(--bg-card)); }
.service-icon { font-size: 36px; margin-bottom: 18px; position: relative; z-index: 1; }
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; position: relative; z-index: 1; }
.service-list { position: relative; z-index: 1; }
.service-list li { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '✦'; color: var(--purple-light); font-size: 9px; flex-shrink: 0; }
.service-tag { position: absolute; top: 18px; right: 18px; font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-light); background: var(--purple-dim); border: 1px solid var(--border-bright); padding: 4px 12px; border-radius: 100px; }

/* ── PHOTOGRAPHY ── */
.photography { padding: 100px 0; background: var(--bg-deep); position: relative; overflow: hidden; }
.photo-bg { position: absolute; inset: 0; pointer-events: none; }
.photo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.photo-content h2 { font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.photo-content > p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.photo-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 22px; }
.photo-feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon { color: var(--purple-light); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.photo-feat strong { font-family: var(--font-head); font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.photo-feat p { color: var(--text-muted); font-size: 14px; margin: 0; }
.photo-visual { position: relative; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 140px; gap: 12px; }
.photo-tile { border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); position: relative; overflow: hidden; transition: var(--transition); }
.photo-tile:hover { transform: scale(1.02); }
.photo-tile span { position: relative; z-index: 1; }
.tile-1 { background: linear-gradient(135deg, #1a1030, #2d1c5e); grid-row: span 2; }
.tile-2 { background: linear-gradient(135deg, #0d1f3c, #1a3a6e); }
.tile-3 { background: linear-gradient(135deg, #0f1a2e, #1d2f50); }
.tile-4 { background: linear-gradient(135deg, #1a0d30, #3c1d6e); }
.photo-tile::before { content: ''; position: absolute; inset: 0; background: var(--accent-grad); opacity: 0.07; }
.photo-badge { position: absolute; bottom: -16px; right: -16px; background: var(--accent-grad); color: #fff; font-family: var(--font-head); font-size: 13px; font-weight: 700; padding: 12px 22px; border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(108,77,255,0.4); }

/* ── HOSTING ── */
.hosting { padding: 100px 0; background: var(--bg-dark); }
.hosting-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.hosting-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; transition: var(--transition); }
.hosting-card:hover { border-color: var(--border-bright); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.hosting-icon { font-size: 32px; margin-bottom: 14px; }
.hosting-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.hosting-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ── PROCESS ── */
.process { padding: 100px 0; background: var(--bg-deep); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.step { position: relative; padding: 36px 24px; text-align: center; }
.step-number { font-family: var(--font-head); font-size: 52px; font-weight: 900; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.25; line-height: 1; margin-bottom: 16px; }
.step-content h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.step-line { position: absolute; top: 54px; right: -1px; width: 2px; height: 36px; background: var(--border); }

/* ── CTA ── */
.cta-banner { padding: 100px 0; background: var(--bg-dark); position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); font-weight: 900; margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); font-size: 18px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--bg-deep); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 22px; width: 44px; height: 44px; background: var(--purple-dim); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { font-family: var(--font-head); font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 14px; margin: 0; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text-white); font-family: var(--font-body); font-size: 16px; transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,77,255,0.15); background: rgba(108,77,255,0.05); }
.form-group textarea { resize: vertical; min-height: 110px; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); font-size: 14px; font-family: var(--font-head); font-weight: 600; color: var(--text-muted); }
.checkbox-label:hover { border-color: var(--purple); color: var(--text-white); }
.checkbox-label input { accent-color: var(--purple); width: 16px; height: 16px; }
.checkbox-label:has(input:checked) { border-color: var(--purple); background: var(--purple-dim); color: var(--text-white); }

/* ── FOOTER ── */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 64px 0 32px; position: relative; overflow: hidden; }
.footer-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 2px; background: var(--accent-grad); opacity: 0.6; filter: blur(4px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; margin-top: 16px; line-height: 1.7; }
.footer-logo { height: 80px; width: auto; margin-bottom: 4px; }
.footer-logo-fallback { display: none; font-family: var(--font-head); font-size: 18px; font-weight: 900; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* ── KEYFRAMES ── */
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes orbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ── TABLET 960px ── */
@media (max-width: 960px) {
  .hamburger { display: flex !important; }
  .navbar { justify-content: flex-end; padding: 16px 24px; }
  .nav-links { display: none !important; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5,5,8,0.97); align-items: center; justify-content: center; gap: 16px; z-index: 999; }
  .nav-links.open { display: flex !important; }
  .nav-links a { font-size: 22px; padding: 12px 28px; }
  .hero-logo img { height: 130px; }
  .photo-layout { grid-template-columns: 1fr; gap: 48px; }
  .photo-visual { order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 20px 24px; }
  .stat-divider { display: none; }
}

/* ── MOBILE 640px ── */
@media (max-width: 640px) {
  .hero-logo img { height: 100px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
