/* =====================================================
   MODERN ARCHITECT DESIGN SYSTEM
   --bg-primary:   #0B0E14  (deep charcoal)
   --bg-secondary: #1E293B  (slate gray)
   --accent:       #0078D4  (azure blue)
   --accent-light: #2B9FE8  (azure hover)
   --orange:       #F97316  (vivid orange — blog/accent)
   --orange-light: #FB923C  (orange hover)
   --text:         #E2E8F0  (soft white)
   --text-sec:     #CBD5E1  (body text)
   --text-muted:   #94A3B8  (slate-grey)
   --glass:        rgba(255,255,255,0.04)
   --border:       rgba(255,255,255,0.08)
===================================================== */

:root {
  --bg-primary:   #0B0E14;
  --bg-secondary: #1E293B;
  --accent:       #0078D4;
  --accent-light: #2B9FE8;
  --orange:       #F97316;
  --orange-light: #FB923C;
  --text:         #E2E8F0;
  --text-sec:     #CBD5E1;
  --text-muted:   #94A3B8;
  --glass:        rgba(255, 255, 255, 0.04);
  --border:       rgba(255, 255, 255, 0.08);
  --teal:         #2B9FE8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  margin: 0;
  font: 400 15px/26px 'Outfit', Verdana, sans-serif;
  color: var(--text-sec);
}

h1 { font: 800 52px/58px 'Inter', Georgia, serif; color: var(--text); letter-spacing: -0.02em; margin: 0 0 8px; }
h2 { font: 700 20px/26px 'Inter', Georgia, serif; color: var(--text); letter-spacing: -0.02em; margin: 0 0 6px; }
h3 { font: 600 15px/20px 'Inter', Georgia, serif; color: var(--text); letter-spacing: -0.01em; margin: 0; }
ul { margin: 0; padding: 0; }
a  { text-decoration: none; color: var(--accent-light); }
a:hover { color: var(--accent); }
a img { border: 0; }

/* Cursor glow orb */
#cursor-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,120,212,0.10) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  top: 30%;
  left: 50%;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#container {
  width: 950px;
  margin: 0 auto 300px auto;
  background: transparent;
  overflow: auto;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

/****************************************************/
/* TERMINAL INTRO                                   */
/****************************************************/

@keyframes termBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(0,120,212,0.65); }
  70%  { box-shadow: 0 0 0 7px rgba(0,120,212,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,120,212,0); }
}

#terminal-intro {
  padding: 100px 43px 0;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

/* Keyword cloud canvas — full bleed background layer */
#keyword-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Lift terminal content above canvas */
.term-eyebrow,
.terminal-window,
.term-ctas {
  position: relative;
  z-index: 1;
}

.term-eyebrow {
  font: 400 12px/1 'Fira Code', monospace;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin: 0;
  text-align: center;
}

/* ---- Window chrome ---- */
.terminal-window {
  width: 100%;
  max-width: 760px;
  background: #0D1117;
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 28px 80px rgba(0,0,0,0.55),
    0 0 80px rgba(0,120,212,0.04);
}

.terminal-titlebar {
  background: #1E293B;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  user-select: none;
}

.terminal-traffic {
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 1;
}
.tl-btn {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: block;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.25);
}
.tl-close { background: #FF5F57; }
.tl-min   { background: #FFBD2E; }
.tl-max   { background: #28C840; }

.terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font: 500 12px/1 'Fira Code', monospace;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  white-space: nowrap;
}

/* ---- Terminal body ---- */
.terminal-body {
  padding: 24px 32px 36px;
  min-height: 320px;
  font: 400 13.5px/2 'Fira Code', 'JetBrains Mono', monospace;
  color: #CBD5E1;
}
.terminal-body .t-row { display: block; }

/* Token colour classes */
.t-prompt  { color: #0078D4; }
.t-cmd     { color: #E2E8F0; }
.t-flag    { color: #2B9FE8; }
.t-arg     { color: #F97316; }
.t-comment { color: #4B5563; font-style: italic; }
.t-info    { color: #6B7280; }
.t-key     { color: #94A3B8; }
.t-str     { color: #0078D4; }
.t-arr-val { color: #F97316; }
.t-punc    { color: #64748B; }
.t-success { color: #0078D4; font-weight: 600; }
.t-blank   { display: block; height: 0.35em; }
.t-cursor  {
  display: inline-block;
  width: 8px; height: 15px;
  background: #0078D4;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: termBlink 1s step-end infinite;
}

/* ---- CTA row below terminal ---- */
.term-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.term-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  border-radius: 999px;
  font: 600 13px/1 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, color 0.2s ease-out;
}
.term-cta--primary {
  background: linear-gradient(135deg, #0078D4 0%, #2B9FE8 100%);
  color: #0B0E14;
  border: none;
}
.term-cta--primary:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 24px rgba(0,120,212,0.4);
  color: #0B0E14;
}
.term-cta--ghost {
  background: transparent;
  color: #F97316;
  border: 1px solid rgba(249,115,22,0.4);
}
.term-cta--ghost:hover {
  background: rgba(249,115,22,0.07);
  border-color: #F97316;
  color: #FB923C;
  transform: scale(1.04);
}

/****************************************************/
/* HEADER                                           */
/****************************************************/
#header {
  width: 950px;
  height: 70px;
  background: rgba(11, 14, 20, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 43px;
  position: fixed;
  top: 0;
  left: 50%;
  margin: 0 0 0 -475px;
  z-index: 100;
  transition: height 0.3s ease-out, background 0.3s ease-out;
}
#header.header-scrolled {
  height: 52px;
  background: rgba(11, 14, 20, 0.97);
}
#header #logo { display: none; }
#header #main-menu {
  float: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0;
  margin: 0;
  transition: height 0.3s ease-out;
}
#header.header-scrolled #main-menu { height: 52px; }
#header #main-menu li {
  float: none;
  list-style: none;
  margin: 0 14px;
  font: 600 12px/22px 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#header #main-menu li a { color: var(--text-muted); transition: color 0.2s; }
#header #main-menu li a:hover { color: var(--accent-light); }

/****************************************************/
/* ABOUT SECTION                                    */
/****************************************************/
#about { margin: 0 43px; padding-top: 100px; position: relative; overflow: hidden; }
#about-parallax-bg {
  position: absolute;
  top: -60px;
  left: -43px;
  right: -43px;
  height: 420px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,120,212,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
#about > *:not(#about-parallax-bg) { position: relative; z-index: 1; }
#about h1 { float: left; }
#about #top-social { float: right; padding-top: 62px; }
#about #top-social li { float: left; list-style: none; margin-left: 10px; }
#about #top-social .facebook {
  text-indent: -9999px; display: block; width: 26px; height: 26px;
  background: url(images/sm-facebook-icon.png) no-repeat;
  opacity: 0.55; transition: opacity 0.2s;
}
#about #top-social .facebook:hover { opacity: 1; }
#about #top-social .linkedin {
  text-indent: -9999px; display: block; width: 26px; height: 26px;
  background: url(images/sm-linkedin-icon.png) no-repeat;
  opacity: 0.55; transition: opacity 0.2s;
}
#about #top-social .linkedin:hover { opacity: 1; }
#about .content { overflow: auto; }
#about .content img {
  float: left; margin-right: 40px;
  border: 2px solid var(--border);
  border-radius: 14px;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.3s, border-color 0.3s;
}
#about .content img:hover { filter: brightness(1) saturate(1); border-color: rgba(0,120,212,0.5); }

/* Azure Blue profile glow */
.avatar-glow {
  border: 2px solid rgba(0, 120, 212, 0.6) !important;
  box-shadow:
    0 0 12px rgba(0, 120, 212, 0.35),
    0 0 28px rgba(0, 120, 212, 0.18),
    0 0 0 4px rgba(0, 120, 212, 0.08);
  animation: azurePulse 3s ease-in-out infinite;
}
@keyframes azurePulse {
  0%, 100% { box-shadow: 0 0 12px rgba(0,120,212,0.35), 0 0 28px rgba(0,120,212,0.18), 0 0 0 4px rgba(0,120,212,0.08); }
  50%       { box-shadow: 0 0 20px rgba(0,120,212,0.55), 0 0 44px rgba(0,120,212,0.28), 0 0 0 6px rgba(0,120,212,0.12); }
}
#about .content h2 { color: var(--text); margin-bottom: 14px; }
#about .content p  { color: var(--text-sec); line-height: 1.8; }

.skills-block {
  clear: both;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.skills-label {
  display: block;
  font: 600 11px/16px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
/* Dark-on-dark icons — invert for visibility */
.devicon-github-original,
.devicon-flask-original {
  filter: invert(1) opacity(0.8);
}

/* Bio horizontal icon strip */
.bio-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.bio-icons i {
  font-size: 26px;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.bio-icons i:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Engineering Ecosystem Bento */
.ecosystem-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}
.eco-card {
  border: 1px solid rgba(0,120,212,0.22);
  border-radius: 12px;
  padding: 18px 20px;
  background: rgba(0,120,212,0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.eco-card:hover {
  border-color: rgba(0,120,212,0.6);
  background: rgba(0,120,212,0.06);
  box-shadow:
    0 0 18px rgba(0,120,212,0.22),
    inset 0 0 10px rgba(0,120,212,0.04);
}
.eco-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eco-dot--indigo { background: #0078D4; box-shadow: 0 0 7px #0078D4; }
.eco-dot--teal   { background: #2B9FE8; box-shadow: 0 0 7px #2B9FE8; }
.eco-dot--violet { background: #F97316; box-shadow: 0 0 7px #F97316; }
.eco-category {
  font: 700 11px/16px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text);
  margin: 0;
}
.eco-tools { display: flex; flex-wrap: wrap; gap: 7px; }
.eco-tool {
  font: 400 11.5px/1 'Fira Code', 'JetBrains Mono', 'Courier New', monospace;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  cursor: default;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.eco-tool:hover {
  color: var(--accent-light);
  border-color: rgba(0,120,212,0.4);
  background: rgba(0,120,212,0.08);
}

/****************************************************/
/* SKILLS SECTION — BENTO GRID                     */
/****************************************************/
#skills { padding-top: 115px; }
.skills-section-inner {
  background: var(--bg-secondary);
  margin: 0;
  padding: 52px 43px 60px;
}
.skills-gradient-bar {
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--teal));
  margin-bottom: 40px;
  border-radius: 2px;
}

/* 3-column bento: Languages|Cloud(tall)|Methodologies / Tools|Cloud(cont)|DataMgmt */
.skills-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-languages     { grid-column: 1; grid-row: 1; }
.bento-cloud         { grid-column: 2; grid-row: 1 / span 2; }
.bento-methodologies { grid-column: 3; grid-row: 1; }
.bento-tools         { grid-column: 1; grid-row: 2; }
.bento-datamgmt      { grid-column: 3; grid-row: 2; }

.bento-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  border-color: rgba(0,120,212,0.5);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,120,212,0.16);
}
.bento-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.bento-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,120,212,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bento-icon svg { width: 18px; height: 18px; }
.bento-card h3 {
  font: 700 15px/20px 'Inter', sans-serif;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}
.bento-subgroups { display: flex; flex-direction: column; gap: 14px; }
.bento-subgroup-label {
  display: block;
  font: 600 10px/14px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 6px;
}
.bento-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bento-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.2);
  color: var(--text-sec);
  font: 500 12px/18px 'Inter', sans-serif;
  cursor: default;
  transition: border-color 0.25s ease-out, color 0.25s ease-out, background 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.bento-tag:hover {
  background: rgba(0,120,212,0.2);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,120,212,0.22);
}

/****************************************************/
/* EXPERIENCE SECTION — GLASS CARDS                */
/****************************************************/
#experience { margin: 0 43px; padding-top: 115px; }
#experience .col {
  width: 100%;
  margin-bottom: 16px;
  padding: 22px 26px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  box-sizing: border-box;
  transition: box-shadow 0.35s ease-out, border-left-width 0.35s ease-out, padding-left 0.35s ease-out, border-color 0.35s ease-out;
}
#experience .col:hover {
  border-left-width: 6px;
  padding-left: 23px;
  box-shadow: -4px 0 20px rgba(0,120,212,0.35), 0 8px 32px rgba(0,120,212,0.10);
  border-color: rgba(0,120,212,0.35);
  border-left-color: var(--accent-light);
}
#experience .col h2  { color: var(--text); margin-bottom: 4px; }
#experience .col ul  { margin: 10px 0 0 18px; }
#experience .col ul li { margin-bottom: 6px; line-height: 1.6; color: var(--text-sec); }
#experience .col p   { color: var(--text-sec); margin: 0; line-height: 1.75; }
#experience .col .exp-date {
  font-style: italic;
  color: var(--text-muted);
  font-size: 12px;
  display: inline-block;
  margin-bottom: 8px;
}
.company-name {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: -0.01em;
}
#experience .content { overflow: auto; }

/****************************************************/
/* WORK SECTION — BENTO GRID                       */
/****************************************************/
#work { margin: 0 43px; padding-top: 115px; }
#work .content { overflow: auto; }
.work-bento {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  padding: 10px 0;
}
.work-bento-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 14px 14px;
  padding: 28px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-bento-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,120,212,0.18);
}
.work-bento-card h3 { margin: 12px 0 10px; font-size: 18px; color: var(--text); }
.work-bento-card p  { font-size: 14px; line-height: 1.75; color: var(--text-muted); margin: 0 0 18px; }
.project-icons { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.project-icons i { font-size: 28px; }
.tech-badge {
  background: rgba(0,120,212,0.12);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0,120,212,0.3);
  letter-spacing: 0.5px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  background: linear-gradient(135deg, #0078D4 0%, #2B9FE8 100%);
  padding: 9px 22px;
  border-radius: 999px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.project-link:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,120,212,0.45);
}

/****************************************************/
/* BLOG SECTION — GLASS CARDS                      */
/****************************************************/
#blog { margin: 0 43px; padding-top: 115px; }
#blog h1 { color: var(--text); }
#blog .content { overflow: auto; }
.blog-cards { display: flex; flex-wrap: wrap; gap: 24px; padding: 10px 0; }
.blog-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  width: 340px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,120,212,0.15);
}
.blog-card h3 { margin: 8px 0 12px; font-size: 16px; line-height: 1.5; }
.blog-card h3 a { color: var(--text); text-decoration: none; }
.blog-card h3 a:hover { color: var(--accent-light); }
.blog-card p { font-size: 14px; line-height: 1.75; color: var(--text-muted); margin: 0 0 16px; }
.blog-date { font-size: 12px; color: var(--text-muted); font-style: italic; }
.blog-card--teal { border-top: 3px solid var(--accent); }
.blog-card--cta {
  background: rgba(0,120,212,0.06);
  border-color: rgba(0,120,212,0.25);
}
/* CTA card inherits the global gradient pill — no override needed */

/****************************************************/
/* CONNECT SECTION                                  */
/****************************************************/
#connect { margin: 0 43px; padding-top: 115px; }
#connect .content { overflow: auto; }
#connect #form { width: 410px; float: left; }
#connect #form span {
  display: block;
  float: left;
  width: 100px;
  padding-top: 8px;
  font: 600 13px/16px 'Inter', sans-serif;
  color: var(--text-sec);
}
#connect #form input {
  float: left;
  width: 255px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text);
  padding: 10px 10px 10px 30px;
  font: 400 13px/20px 'Outfit', sans-serif;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: border-color 0.2s;
}
#connect #form input:focus { outline: none; border-color: var(--accent); }
#connect #form textarea {
  float: left;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  width: 255px;
  height: 100px;
  padding: 10px 10px 10px 30px;
  font: 400 13px/20px 'Outfit', sans-serif;
  color: var(--text);
  border-radius: 8px;
  transition: border-color 0.2s;
}
#connect #form textarea:focus { outline: none; border-color: var(--accent); }
#connect #form input.name    { background: var(--bg-secondary) url(images/icon-user.png)    no-repeat 10px 8px; color: var(--text); }
#connect #form input.email   { background: var(--bg-secondary) url(images/icon-mail.png)    no-repeat 10px 9px; color: var(--text); }
#connect #form textarea.message { background: var(--bg-secondary) url(images/icon-message.png) no-repeat 10px 8px; color: var(--text); }
#connect #form input.submit {
  width: 100px;
  height: 38px;
  float: right;
  padding: 0;
  margin: 10px 16px 0 0;
  background: var(--accent);
  color: #fff;
  font: 600 14px/16px 'Inter', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#connect #form input.submit:hover { background: var(--accent-light); transform: scale(1.04); }
#connect #social-footer { width: 300px; float: left; margin-left: 75px; }
#connect #social-footer h2 { color: var(--text); }
#connect #social-footer p  { color: var(--text-sec); line-height: 1.8; }
#connect #social-footer #sm-links { margin-top: 25px; }
#connect #social-footer #sm-links li { list-style: none; float: left; }
#connect #social-footer #sm-links li a {
  display: block; text-indent: -9999px;
  width: 26px; height: 26px;
  margin-right: 10px;
  opacity: 0.6; transition: opacity 0.2s;
}
#connect #social-footer #sm-links li a:hover { opacity: 1; }
#connect #social-footer #sm-links li a.facebook { background: url(images/sm-facebook-icon.png) no-repeat; }
#connect #social-footer #sm-links li a.youtube  { background: url(images/sm-youtube-icon.png)  no-repeat; width: 28px; }
#connect #social-footer #sm-links li a.linkedin { background: url(images/sm-linkedin-icon.png) no-repeat; }

/****************************************************/
/* DIVIDERS                                         */
/****************************************************/
.top-divider, .bottom-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(0,120,212,0.22) 50%, transparent 100%);
  border: none;
  clear: both;
}
.top-divider    { margin-bottom: 40px; }
.bottom-divider { margin-top: 40px; }
