html {
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
}

/* =======================================================
*   Futuristic Tech Theme — Color Tokens
* ======================================================= */
:root {
  --brand: #FF9000;
  --brand-2: #ff6a00;
  --cyan: #00e5ff;
  --cyan-dim: #0ea5b8;
  --magenta: #ff2bd6;
  --bg-dark: #0a0f1f;
  --bg-deep: #050814;
  --surface: #0f1730;
  --line: rgba(0, 229, 255, 0.18);
  --line-strong: rgba(0, 229, 255, 0.45);
  --glow-cyan: 0 0 12px rgba(0, 229, 255, 0.55), 0 0 30px rgba(0, 229, 255, 0.25);
  --glow-brand: 0 0 12px rgba(255, 144, 0, 0.55), 0 0 30px rgba(255, 144, 0, 0.25);

  /* ============================================================
   * Motion vocabulary — used across tech-fx.css, portfolio-chat,
   * case-study.css. Pick a duration token + an easing token; do
   * NOT hand-write durations or curves elsewhere unless there's
   * a real reason. Keeps the whole portfolio feeling like one
   * system instead of ten different timing sensibilities.
   * ============================================================ */
  --tx-instant: 0.08s;   /* micro-feedback: button press, glow on */
  --tx-fast:    0.15s;   /* hover state toggles */
  --tx-base:    0.35s;   /* card hover lift, default UI */
  --tx-mid:     0.55s;   /* panel open, drawer slide */
  --tx-slow:    0.8s;    /* scroll-reveal, large motion */
  --tx-stage:   1.1s;    /* page-dive, hero entry */

  --ez-out:  cubic-bezier(0.2, 0.9, 0.2, 1);    /* default — quick start, soft land */
  --ez-in:   cubic-bezier(0.7, 0, 0.84, 0);     /* exits — accelerates into nothing */
  --ez-back: cubic-bezier(0.34, 1.56, 0.64, 1); /* slight overshoot — for "pop" moments */
  --ez-soft: cubic-bezier(0.45, 0, 0.55, 1);    /* symmetric — for things that come back */

  /* 3D depth tokens — pick one when you need translateZ */
  --z-surface:  0px;
  --z-card:     12px;
  --z-floating: 28px;
  --z-modal:    60px;
}

/* =======================================================
*
*   Navigation
*
* ======================================================= */
#fh5co-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fh5co-nav-brand {
  font-family: "Kaushan Script", cursive;
  font-size: 24px;
  color: #FF9000 !important;
  float: left;
  line-height: 65px;
  text-decoration: none;
}
.fh5co-nav-brand:hover {
  color: #e68000 !important;
}
.fh5co-nav-links {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 65px;
}
.fh5co-nav-links li {
  display: inline-block;
  margin-left: 22px;
}
.fh5co-nav-links li a {
  color: #4d4d4d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.fh5co-nav-links li a:hover {
  color: #FF9000;
}
.fh5co-nav-links li a.hire-btn {
  background: #FF9000;
  color: #fff;
  padding: 8px 22px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-size: 13px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.fh5co-nav-links li a.hire-btn:hover {
  background: #e68000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fh5co-nav-links {
    display: none;
  }
}

/* =======================================================
*
*   Hero Status Badge
*
* ======================================================= */
.hero-status {
  margin-bottom: 20px;
}
.status-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 6px 18px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: status-pulse 2s infinite;
          animation: status-pulse 2s infinite;
  flex-shrink: 0;
}
@-webkit-keyframes status-pulse {
  0%, 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
  50%       { opacity: 0.6; -webkit-transform: scale(1.4); transform: scale(1.4); }
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

/* =======================================================
*
*   Tools & Stack
*
* ======================================================= */
.tools-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding-bottom: 2em;
}
.tool-badge {
  background: #f5f5f5;
  color: #4d4d4d;
  border: 1px solid #e0e0e0;
  padding: 8px 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-size: 14px;
  font-family: "Space Mono", Arial, serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tool-badge:hover {
  background: #FF9000;
  color: #fff;
  border-color: #FF9000;
}
.tool-badge.tool-ai {
  background: #FF9000;
  color: #fff;
  border-color: #FF9000;
}
.tool-badge.tool-ai:hover {
  background: #e68000;
  border-color: #e68000;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* =======================================================
*
* 	Template Style 
*
* ======================================================= */
body {
  font-family: "Space Mono", Arial, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #4d4d4d;
  background: #fff;
}

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  padding-top: 65px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.offcanvas #page {
  overflow: hidden;
  position: absolute;
}
.offcanvas #page:after {
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}

a {
  color: #FF9000;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: #FF9000;
  outline: none;
  text-decoration: none;
}

p {
  margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6, figure {
  color: #000;
  font-family: "Space Mono", Arial, serif;
  font-weight: 400;
  margin: 0 0 20px 0;
}

::-webkit-selection {
  color: #fff;
  background: #FF9000;
}

::-moz-selection {
  color: #fff;
  background: #FF9000;
}

::selection {
  color: #fff;
  background: #FF9000;
}

#fh5co-header,
.fh5co-cover {
  background-color: transparent;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  height: 600px;
  width: 100%;
}
#fh5co-header .overlay,
.fh5co-cover .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 144, 0, 0.9);
}
#fh5co-header .display-t,
.fh5co-cover .display-t {
  width: 100%;
  display: table;
}
#fh5co-header .display-tc,
.fh5co-cover .display-tc {
  display: table-cell;
  vertical-align: middle;
  height: 600px;
}
#fh5co-header .display-tc h1, #fh5co-header .display-tc h2, #fh5co-header .display-tc h3,
.fh5co-cover .display-tc h1,
.fh5co-cover .display-tc h2,
.fh5co-cover .display-tc h3 {
  margin: 0;
  padding: 0;
  color: white;
}
#fh5co-header .display-tc h1,
.fh5co-cover .display-tc h1 {
  font-family: "Kaushan Script", cursive;
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 300;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
#fh5co-header .display-tc h1 span,
.fh5co-cover .display-tc h1 span {
  padding: 4px 15px;
  position: relative;
}
#fh5co-header .display-tc h1 span:before,
.fh5co-cover .display-tc h1 span:before {
  position: absolute;
  top: 40px;
  left: 0;
  width: 30px;
  height: 4px;
  content: '';
  background: #fff;
  margin-left: -30px;
}
#fh5co-header .display-tc h1 span:after,
.fh5co-cover .display-tc h1 span:after {
  position: absolute;
  top: 40px;
  right: 0;
  width: 30px;
  height: 4px;
  content: '';
  background: #fff;
  margin-right: -30px;
}
@media screen and (max-width: 768px) {
  #fh5co-header .display-tc h1,
  .fh5co-cover .display-tc h1 {
    font-size: 34px;
  }
  #fh5co-header .display-tc h1 span:before,
  .fh5co-cover .display-tc h1 span:before {
    top: 28px;
    width: 20px;
    height: 3px;
    margin-left: -15px;
  }
  #fh5co-header .display-tc h1 span:after,
  .fh5co-cover .display-tc h1 span:after {
    top: 28px;
    width: 20px;
    height: 3px;
    margin-right: -15px;
  }
}
#fh5co-header .display-tc h2,
.fh5co-cover .display-tc h2 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
#fh5co-header .display-tc h3,
.fh5co-cover .display-tc h3 {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #fh5co-header .display-tc h3,
  .fh5co-cover .display-tc h3 {
    font-size: 14px;
  }
}
#fh5co-header .display-tc .profile-thumb,
.fh5co-cover .display-tc .profile-thumb {
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 200px;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#fh5co-header .display-tc .fh5co-social-icons li a,
.fh5co-cover .display-tc .fh5co-social-icons li a {
  color: #fff;
}
#fh5co-header .display-tc .fh5co-social-icons li a i,
.fh5co-cover .display-tc .fh5co-social-icons li a i {
  font-size: 30px;
}

#fh5co-features {
  background: #FF9000;
}
#fh5co-features h2 {
  color: #fff;
}
#fh5co-features .services-padding {
  padding: 7em 0;
}
#fh5co-features .feature-left {
  margin-bottom: 40px;
  float: left;
}
@media screen and (max-width: 992px) {
  #fh5co-features .feature-left {
    margin-bottom: 30px;
  }
}
#fh5co-features .feature-left .icon {
  display: table;
  text-align: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#fh5co-features .feature-left .icon i {
  font-size: 50px;
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  color: #FF9000 !important;
}
#fh5co-features .feature-left .feature-copy {
  width: 100%;
}
#fh5co-features .feature-left h3 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}
#fh5co-features .feature-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
#fh5co-features .feature-left p:last-child {
  margin-bottom: 0;
}
#fh5co-features .feature-left p a {
  color: #000 !important;
}

#fh5co-about,
#fh5co-resume,
#fh5co-skills,
#fh5co-started,
#fh5co-work,
#fh5co-blog,
#fh5co-pricing,
#fh5co-contact {
  padding: 7em 0;
  clear: both;
}
@media screen and (max-width: 768px) {
  #fh5co-about,
  #fh5co-resume,
  #fh5co-skills,
  #fh5co-started,
  #fh5co-work,
  #fh5co-blog,
  #fh5co-pricing,
  #fh5co-contact {
    padding: 3em 0;
  }
}

#fh5co-started {
  border-bottom: none;
}

.fh5co-bg-dark {
  background: #2F3C4F;
  background: #FF9000;
}
.fh5co-bg-dark .fh5co-heading h2 {
  color: #fff !important;
}

.info {
  margin: 0;
  padding: 0;
  width: 90%;
  float: left;
}
@media screen and (max-width: 768px) {
  .info {
    margin-bottom: 3em;
  }
}
.info li {
  width: 100%;
  float: left;
  list-style: none;
  padding: 10px 0;
}
.info li:first-child {
  padding-top: 0;
}
.info li .first-block {
  width: 40%;
  display: inline-block;
  float: left;
  color: #000;
  font-weight: bold;
}
.info li .second-block {
  width: 60%;
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
}

.fh5co-social-icons {
  margin: 0;
  padding: 0;
}
.fh5co-social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.fh5co-social-icons li a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  color: #FF9000;
  padding-left: 10px;
  padding-right: 10px;
}
.fh5co-social-icons li a i {
  font-size: 20px;
}

#fh5co-about .fh5co-social-icons {
  margin: 0;
  padding: 0;
}
#fh5co-about .fh5co-social-icons li {
  padding: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#fh5co-about .fh5co-social-icons li a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  color: #fff;
  background: #2F3C4F;
  padding: 10px 10px 2px 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
#fh5co-about .fh5co-social-icons li a i {
  font-size: 20px;
}
#fh5co-about .fh5co-social-icons li a:hover {
  background: #FF9000;
}

.fh5co-heading {
  margin-bottom: 5em;
}
.fh5co-heading.fh5co-heading-sm {
  margin-bottom: 2em;
}
.fh5co-heading h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000;
}
.fh5co-heading p {
  font-size: 18px;
  line-height: 1.5;
  color: #828282;
}
.fh5co-heading span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}
.timeline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #e6e6e6;
  left: 50%;
  margin-left: 0px;
}
@media screen and (max-width: 768px) {
  .timeline:before {
    margin-left: -64px;
  }
}
@media screen and (max-width: 480px) {
  .timeline:before {
    margin-left: -64px;
  }
}
@media screen and (max-width: 768px) {
  .timeline .timeline-heading {
    margin-bottom: 30px;
  }
}
.timeline .timeline-heading > div h3 {
  display: inline-block;
  padding: 7px 15px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  background: #e6e6e6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .timeline .timeline-heading > div h3 {
    float: left;
    margin-bottom: 0;
  }
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .timeline > li {
    margin-bottom: 4em;
  }
}
.timeline > li:before, .timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 45%;
  float: left;
  margin-bottom: 0;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .timeline > li > .timeline-panel {
    width: 85% !important;
  }
}
@media screen and (max-width: 480px) {
  .timeline > li > .timeline-panel {
    width: 75% !important;
  }
  .timeline > li > .timeline-panel:before {
    top: 30px;
  }
  .timeline > li > .timeline-panel:after {
    top: 31px;
  }
}
.timeline > li > .timeline-badge {
  color: #fff;
  width: 44px;
  height: 44px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -21px;
  background-color: #FF9000;
  z-index: 100;
  display: table;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .timeline > li > .timeline-badge {
    margin-left: -10px !important;
  }
}
@media screen and (max-width: 992px) {
  .timeline > li > .timeline-badge {
    margin-left: -10px !important;
  }
}
.timeline > li > .timeline-badge i {
  display: table-cell;
  vertical-align: middle;
  height: 44px;
  font-size: 18px;
}
.timeline > li.timeline-unverted {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .timeline > li.timeline-unverted {
    text-align: left;
  }
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-title {
  margin-top: 0;
}

.company {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: normal;
  color: #bfbfbf;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

@media (max-width: 992px) {
  ul.timeline:before {
    left: 90px;
  }

  ul.timeline > li > .timeline-panel {
    width: calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
  }

  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}
.progress-wrap {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.progress-wrap h3 {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  float: left;
  width: 100%;
}
.progress-wrap h3 .name-left {
  float: left;
}
.progress-wrap h3 .value-right {
  float: right;
}

.progress {
  width: 100%;
  float: left;
  height: 5px;
  box-shadow: none;
}

.progress-bar {
  background-color: #2F3C4F;
  height: 5px;
  display: block;
  box-shadow: none;
}
.progress-bar.progress-bar-1 {
  background-color: #2980b9 !important;
}
.progress-bar.progress-bar-2 {
  background-color: #c0392b !important;
}
.progress-bar.progress-bar-3 {
  background-color: #d35400 !important;
}
.progress-bar.progress-bar-4 {
  background-color: #8e44ad !important;
}
.progress-bar.progress-bar-5 {
  background-color: #27ae60 !important;
}
.progress-bar.progress-bar-ai {
  background-color: #FF9000 !important;
}

.chart {
  width: 160px;
  height: 160px;
  margin: 0 auto 40px auto;
  position: relative;
  text-align: center;
}
.chart span {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -30px;
  width: 100%;
}
.chart span strong {
  display: block;
}
.chart canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.work {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 270px;
  width: 100%;
  display: table;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .work {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .work {
    height: 270px;
  }
}
.work .desc {
  display: table-cell;
  vertical-align: middle;
  height: 270px;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.work .desc h3 {
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}
.work .desc span {
  display: block;
  color: #999999;
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}
@media screen and (max-width: 768px) {
  .work .desc {
    opacity: 1;
    background: rgba(255, 255, 255, 0.6);
  }
  .work .desc h3 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .work .desc span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.work:hover .desc {
  opacity: 1;
}
.work:hover .desc h3 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.work:hover .desc span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#fh5co-started {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  float: left;
  width: 100%;
}
#fh5co-started .fh5co-heading {
  margin-bottom: 0;
}
#fh5co-started .fh5co-heading h2 {
  color: #fff;
  margin-bottom: 20px !important;
}
#fh5co-started .fh5co-heading p {
  color: rgba(255, 255, 255, 0.8);
}
#fh5co-started .btn {
  height: 54px;
  border: none !important;
  background: #fff;
  color: #FF9000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 50px;
  padding-right: 50px;
}

.fh5co-blog {
  width: 100%;
  float: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .fh5co-blog {
    width: 100%;
  }
}
.fh5co-blog .blog-bg {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .fh5co-blog .blog-bg {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .fh5co-blog .blog-bg {
    height: 270px;
  }
}
.fh5co-blog .blog-text {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  padding: 30px;
  float: left;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .fh5co-blog .blog-text {
    padding: 10px;
  }
}
.fh5co-blog .blog-text span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px !important;
  color: rgba(0, 0, 0, 0.3);
}
.fh5co-blog .blog-text .stuff {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}
.fh5co-blog .blog-text .stuff li {
  list-style: none;
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .fh5co-blog .blog-text .stuff li {
    font-size: 14px;
  }
}
.fh5co-blog .blog-text .stuff li:first-child {
  margin-left: 0;
}
.fh5co-blog .blog-text .stuff li:last-child {
  float: right;
}
.fh5co-blog .blog-text .stuff li:last-child a {
  color: #000;
}
.fh5co-blog .blog-text .stuff li:last-child i {
  padding-right: 0;
  padding-left: 10px;
}
.fh5co-blog .blog-text .stuff li i {
  font-size: 14px;
  padding-right: 5px;
}
.fh5co-blog .blog-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.fh5co-blog .blog-text h3 a {
  color: black;
}

#fh5co-consult {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  width: 100%;
  float: left;
}
#fh5co-consult .video, #fh5co-consult .choose {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #fh5co-consult .video, #fh5co-consult .choose {
    width: 100% !important;
  }
}
#fh5co-consult .video {
  display: table;
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #fh5co-consult .video {
    display: none;
  }
}
#fh5co-consult .choose {
  width: 50%;
  padding: 4em;
}
@media screen and (max-width: 768px) {
  #fh5co-consult .choose {
    width: 100%;
    padding: 4em 1em;
  }
}

.fh5co-video {
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .fh5co-video {
    height: 450px;
  }
}
.fh5co-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#fh5co-footer {
  padding: 50px 0;
  float: left;
  width: 100%;
}
#fh5co-footer p:last-child {
  margin-bottom: 0;
}

.contact-info {
  margin-bottom: 4em;
  padding: 0;
}
.contact-info li {
  list-style: none;
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 40px;
  color: #000;
}
.contact-info li i {
  position: absolute;
  top: .3em;
  left: 0;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.3);
}
.contact-info li a {
  color: #000;
}

.form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 300;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.form-control:focus, .form-control:active {
  box-shadow: none;
  border: 2px solid rgba(0, 0, 0, 0.8);
}

input[type="text"] {
  height: 50px;
}

.form-group {
  margin-bottom: 30px;
}

#map {
  width: 100%;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #map {
    height: 200px;
  }
}

.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.gototop.active {
  opacity: 1;
  visibility: visible;
}
.gototop a {
  width: 50px;
  height: 50px;
  display: table;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.gototop a i {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}
.gototop a:hover, .gototop a:active, .gototop a:focus {
  text-decoration: none;
  outline: none;
}

.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-family: "Space Mono", Arial, serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: #FF9000;
  color: #fff;
  border: 2px solid #FF9000;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #ff9b1a !important;
  border-color: #ff9b1a !important;
}
.btn-primary.btn-outline {
  background: transparent;
  color: #FF9000;
  border: 2px solid #FF9000;
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
  background: #FF9000;
  color: #fff;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}
.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}
.btn-success.btn-outline:hover, .btn-success.btn-outline:focus, .btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 2px solid #5bc0de;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}
.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}
.btn-info.btn-outline:hover, .btn-info.btn-outline:focus, .btn-info.btn-outline:active {
  background: #5bc0de;
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}
.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}
.btn-warning.btn-outline:hover, .btn-warning.btn-outline:focus, .btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}
.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}
.btn-danger.btn-outline:hover, .btn-danger.btn-outline:focus, .btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  box-shadow: none;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn.with-arrow:hover {
  padding-right: 50px;
}
.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

.form-control {
  box-shadow: none;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 54px;
  font-size: 18px;
  font-weight: 300;
}
.form-control:active, .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #FF9000;
}

.row-pb-md {
  padding-bottom: 4em !important;
}

.row-pb-sm {
  padding-bottom: 2em !important;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.col-padding {
  padding: 6px !important;
  margin: 0px !important;
}

.fh5co-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader.gif) center no-repeat #fff;
}

.js .animate-box {
  opacity: 0;
}

/* =======================================================
*   Futuristic / Tech Layer
* ======================================================= */

/* Global body upgrade */
body {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* Nav: glass + neon accent */
#fh5co-nav {
  background: rgba(10, 15, 31, 0.92) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 30px rgba(0, 229, 255, 0.08);
}
.fh5co-nav-brand {
  color: var(--cyan) !important;
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 3px;
  text-shadow: var(--glow-cyan);
}
.fh5co-nav-brand:hover {
  color: #fff !important;
}
.fh5co-nav-links li a {
  color: #d8e6f5 !important;
  font-family: 'Orbitron', 'Space Mono', sans-serif;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  position: relative;
}
.fh5co-nav-links li a:not(.hire-btn):after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.fh5co-nav-links li a:not(.hire-btn):hover,
.fh5co-nav-links li a:not(.hire-btn)[aria-current="location"] {
  color: var(--cyan) !important;
}
.fh5co-nav-links li a:not(.hire-btn):hover:after,
.fh5co-nav-links li a:not(.hire-btn)[aria-current="location"]:after {
  transform: scaleX(1);
}
.fh5co-nav-links li a.hire-btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: var(--glow-brand);
  border: 1px solid rgba(255, 144, 0, 0.6);
}

/* Hero overlay → dark cyber gradient */
#fh5co-header .overlay,
.fh5co-cover .overlay {
  background: linear-gradient(135deg, rgba(5, 8, 20, 0.85) 0%, rgba(255, 106, 0, 0.55) 50%, rgba(10, 15, 31, 0.9) 100%) !important;
}

/* Tech grid background in hero */
.tech-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.10) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  animation: grid-drift 30s linear infinite;
  z-index: 1;
}
@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 50px 50px, 50px 50px; }
}

/* Scanline overlay */
.scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}
.scanline:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
  animation: scan-sweep 7s linear infinite;
}
@keyframes scan-sweep {
  0%   { top: -2px; }
  100% { top: 100%; }
}

#fh5co-header .container,
.fh5co-cover .container {
  position: relative;
  z-index: 2;
}

/* Hero profile thumb: neon ring */
#fh5co-header .display-tc .profile-thumb,
.fh5co-cover .display-tc .profile-thumb {
  border: 2px solid var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12), var(--glow-cyan), inset 0 0 30px rgba(0, 229, 255, 0.1);
}

/* Terminal tag above name */
.terminal-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.7);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}
.cursor-blink {
  display: inline-block;
  animation: blink 1s steps(2, start) infinite;
  margin-left: 2px;
}
@keyframes blink { to { visibility: hidden; } }

/* Hero name: futuristic */
#fh5co-header .display-tc h1,
.fh5co-cover .display-tc h1 {
  font-family: 'Orbitron', 'Kaushan Script', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 4px !important;
  transform: rotate(0) !important;
  -webkit-transform: rotate(0) !important;
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.4), 0 0 36px rgba(255, 144, 0, 0.25);
  font-size: 56px !important;
}
@media screen and (max-width: 768px) {
  #fh5co-header .display-tc h1,
  .fh5co-cover .display-tc h1 {
    font-size: 32px !important;
    letter-spacing: 2px !important;
  }
}

.role-tag {
  font-family: 'JetBrains Mono', 'Space Mono', monospace !important;
  color: var(--cyan) !important;
  letter-spacing: 2px;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 16px !important;
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* Tech chip strip under hero */
.tech-stack-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 18px;
}
.tech-chip {
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 5px 12px;
  position: relative;
  transition: 0.3s;
}
.tech-chip:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  display: none;
}
.tech-chip:hover {
  background: rgba(0, 229, 255, 0.18);
  box-shadow: var(--glow-cyan);
  color: var(--cyan);
}

/* Headings */
.fh5co-heading h2 {
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.fh5co-heading h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.5);
}

/* Status badge upgrade */
.status-badge {
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid var(--line-strong) !important;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2), inset 0 0 12px rgba(0, 229, 255, 0.05);
}
.status-dot {
  background: var(--cyan) !important;
  box-shadow: 0 0 8px var(--cyan);
}

/* Hero social icons → neon */
#fh5co-header .display-tc .fh5co-social-icons li a,
.fh5co-cover .display-tc .fh5co-social-icons li a {
  color: #fff;
  transition: 0.3s;
}
#fh5co-header .display-tc .fh5co-social-icons li a:hover {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

/* About section: tech card */
#fh5co-about {
  background:
    radial-gradient(ellipse at top left, rgba(0, 229, 255, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(255, 144, 0, 0.05), transparent 60%),
    #fbfdff;
  position: relative;
  overflow: hidden;
}
#fh5co-about:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#fh5co-about .container { position: relative; z-index: 1; }

.info li {
  padding: 12px 0 !important;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.12);
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
}
.info li:last-child {
  border-bottom: none;
}
.info li .first-block {
  color: var(--cyan-dim) !important;
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  width: 38% !important;
  flex-shrink: 0;
  float: none !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.info li .second-block {
  width: auto !important;
  flex: 1;
  float: none !important;
  padding-top: 6px;
  word-break: break-word;
}
.info li .first-block i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
  transition: 0.3s;
}
.info li:hover .first-block i {
  background: var(--cyan);
  color: var(--bg-dark);
  box-shadow: var(--glow-cyan);
  transform: scale(1.05);
}

/* About social icons: bigger, neon */
#fh5co-about .fh5co-social-icons li a {
  background: rgba(10, 15, 31, 0.85) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--cyan) !important;
  width: 42px;
  height: 42px;
  line-height: 22px;
  text-align: center;
  border-radius: 6px !important;
  padding: 10px 0 !important;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
  margin: 0 4px;
  transition: 0.3s;
}
#fh5co-about .fh5co-social-icons li a:hover {
  background: var(--cyan) !important;
  color: var(--bg-dark) !important;
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}
#fh5co-about .fh5co-social-icons li a i {
  font-size: 18px;
}

/* Services section: dark cyber bg */
#fh5co-features {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--surface) 50%, var(--bg-dark) 100%) !important;
  position: relative;
  overflow: hidden;
}
#fh5co-features:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 20%, transparent 80%);
  pointer-events: none;
}
#fh5co-features:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}
#fh5co-features .container { position: relative; z-index: 1; }
#fh5co-features h2 { color: #fff !important; }
#fh5co-features .feature-left {
  background: rgba(15, 23, 48, 0.55);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 20px 25px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
#fh5co-features .feature-left:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(0, 229, 255, 0.08) 100%);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
#fh5co-features .feature-left:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.18), 0 0 0 1px rgba(0, 229, 255, 0.25);
}
#fh5co-features .feature-left:hover:before { opacity: 1; }
#fh5co-features .feature-left .icon {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(255, 144, 0, 0.15)) !important;
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow-cyan);
}
#fh5co-features .feature-left .icon i {
  color: var(--cyan) !important;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
#fh5co-features .feature-left .icon.icon-tech {
  background: linear-gradient(135deg, rgba(255, 144, 0, 0.15), rgba(255, 43, 214, 0.15)) !important;
  border-color: rgba(255, 144, 0, 0.5);
  box-shadow: var(--glow-brand);
}
#fh5co-features .feature-left .icon.icon-tech i {
  color: var(--brand) !important;
  text-shadow: 0 0 12px rgba(255, 144, 0, 0.7);
}
#fh5co-features .feature-left h3 {
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 1px;
  font-size: 18px !important;
}
.badge-new {
  display: inline-block;
  vertical-align: middle;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--brand), var(--magenta));
  color: #fff !important;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  box-shadow: 0 0 10px rgba(255, 43, 214, 0.45);
  text-transform: uppercase;
}

/* Resume / Timeline: tech panels */
#fh5co-resume {
  background: linear-gradient(180deg, #fbfdff 0%, #eef5fc 100%) !important;
  position: relative;
  overflow: hidden;
}
#fh5co-resume:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
#fh5co-resume .container { position: relative; z-index: 1; }
.timeline:before {
  background: linear-gradient(180deg, var(--cyan), var(--brand)) !important;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.45);
  width: 2px !important;
}
.timeline .timeline-heading > div h3 {
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  background: linear-gradient(135deg, var(--bg-dark), var(--surface)) !important;
  color: var(--cyan) !important;
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow-cyan);
  letter-spacing: 4px !important;
}
.timeline > li > .timeline-badge {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)) !important;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.6), 0 0 24px rgba(255, 144, 0, 0.4);
}
.timeline > li > .timeline-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.timeline > li > .timeline-panel:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.18);
  transform: translateY(-2px);
}
.timeline-title {
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  font-size: 18px !important;
  letter-spacing: 1px;
  color: var(--bg-dark) !important;
}
.company {
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  color: var(--cyan-dim) !important;
  font-size: 13px !important;
  letter-spacing: 1px;
}

/* Skills: glowing charts */
#fh5co-skills {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 144, 0, 0.05), transparent 50%),
    #fbfdff;
  position: relative;
  overflow: hidden;
}
#fh5co-skills:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#fh5co-skills .container { position: relative; z-index: 1; }
.chart {
  transition: 0.3s;
}
.chart:hover {
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}
.chart span strong {
  font-family: 'Orbitron', 'Space Mono', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--bg-dark);
}
.chart span {
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan-dim);
}
.progress {
  background: rgba(10, 15, 31, 0.08);
  border-radius: 4px;
  overflow: hidden;
  height: 6px !important;
}
.progress-bar {
  height: 6px !important;
  box-shadow: 0 0 8px currentColor;
}
.progress-bar.progress-bar-flutter {
  background: linear-gradient(90deg, #54C5F8, #01579B) !important;
  color: #54C5F8;
}
.progress-bar.progress-bar-vibe {
  background: linear-gradient(90deg, var(--brand), var(--magenta)) !important;
  color: var(--magenta);
}
.progress-bar.progress-bar-ai {
  background: linear-gradient(90deg, var(--brand), var(--cyan)) !important;
  color: var(--brand);
}

/* Tools/badges: futuristic chips */
.tool-badge {
  background: #fff !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--bg-dark) !important;
  font-family: 'JetBrains Mono', 'Space Mono', monospace !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px !important;
  padding: 8px 18px !important;
  position: relative;
  transition: 0.3s;
}
.tool-badge:hover {
  background: var(--bg-dark) !important;
  color: var(--cyan) !important;
  border-color: var(--cyan) !important;
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}
.tool-badge.tool-ai {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)) !important;
  color: #fff !important;
  border-color: var(--brand) !important;
  box-shadow: var(--glow-brand);
}
.tool-badge.tool-ai:hover {
  background: linear-gradient(135deg, var(--brand-2), var(--magenta)) !important;
  color: #fff !important;
  border-color: var(--magenta) !important;
  box-shadow: 0 0 14px rgba(255, 43, 214, 0.55);
}
.tool-badge.tool-mobile {
  background: linear-gradient(135deg, #54C5F8, #01579B) !important;
  color: #fff !important;
  border-color: #54C5F8 !important;
  box-shadow: 0 0 12px rgba(84, 197, 248, 0.45);
}
.tool-badge.tool-mobile:hover {
  background: linear-gradient(135deg, #01579B, #0D47A1) !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* Work section: dark cyber portfolio */
#fh5co-work {
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-dark)) !important;
  position: relative;
  overflow: hidden;
}
#fh5co-work:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
#fh5co-work .container { position: relative; z-index: 1; }
#fh5co-work h2 { color: #fff !important; }
.work {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: 0.4s;
}
.work:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}
.work .desc {
  background: rgba(10, 15, 31, 0.92) !important;
}
.work .desc h3 {
  color: var(--cyan) !important;
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}
.work .desc span {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

/* Blog "under construction" */
#fh5co-blog {
  background:
    radial-gradient(ellipse at center, rgba(0, 229, 255, 0.06), transparent 70%),
    #fbfdff;
}
#fh5co-blog h2 {
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 3px;
}

/* Started/Hire CTA: dark cyber */
#fh5co-started {
  background:
    linear-gradient(135deg, rgba(5, 8, 20, 0.92) 0%, rgba(255, 144, 0, 0.6) 100%),
    url(../images/cover_bg_3.jpg) !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}
#fh5co-started:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#fh5co-started .fh5co-heading h2 {
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 5px;
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
  font-weight: 700;
}

/* Hire-Me social icon buttons: restore icon, neon ring */
#fh5co-started .fh5co-social-icons li a i.btn {
  font-family: 'icomoon' !important;
  background: rgba(10, 15, 31, 0.7) !important;
  color: var(--cyan) !important;
  border: 1px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  width: 54px;
  height: 54px;
  line-height: 38px;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: 22px;
  transition: 0.3s;
}
#fh5co-started .fh5co-social-icons li a:hover i.btn {
  background: var(--cyan) !important;
  color: var(--bg-dark) !important;
  transform: translateY(-3px);
}
#fh5co-started .btn {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim)) !important;
  color: var(--bg-dark) !important;
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  border: 1px solid var(--cyan) !important;
  box-shadow: var(--glow-cyan);
  text-transform: uppercase;
}
#fh5co-started .btn:hover {
  background: linear-gradient(135deg, #fff, var(--cyan)) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.7);
}

/* Footer: tech feel */
#fh5co-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--line);
}
#fh5co-footer:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 10px var(--cyan);
}
#fh5co-footer p {
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Primary button upgrade */
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)) !important;
  border: 1px solid var(--brand) !important;
  box-shadow: var(--glow-brand);
  font-family: 'Orbitron', 'Space Mono', sans-serif !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px !important;
}
.btn-primary:hover {
  box-shadow: 0 0 20px rgba(255, 144, 0, 0.7), 0 0 40px rgba(255, 43, 214, 0.3);
  transform: translateY(-2px);
}

/* Go-to-top: neon */
.gototop a {
  background: rgba(10, 15, 31, 0.92) !important;
  border: 1px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  color: var(--cyan) !important;
}
.gototop a:hover {
  background: var(--cyan) !important;
  color: var(--bg-dark) !important;
}

/* Disable parallax on small / fix attachment perf */
@media screen and (max-width: 992px) {
  #fh5co-started {
    background-attachment: scroll !important;
  }
}

/* =======================================================
*   Spacing refinements
* ======================================================= */

/* Tighter section padding — was 7em, felt cavernous */
#fh5co-about,
#fh5co-resume,
#fh5co-skills,
#fh5co-started,
#fh5co-work,
#fh5co-blog {
  padding: 5em 0 !important;
}
#fh5co-features .services-padding {
  padding: 5em 0 !important;
}
@media screen and (max-width: 768px) {
  #fh5co-about,
  #fh5co-resume,
  #fh5co-skills,
  #fh5co-started,
  #fh5co-work,
  #fh5co-blog {
    padding: 3em 0 !important;
  }
  #fh5co-features .services-padding {
    padding: 3em 0 !important;
  }
}

/* Headings: tighter bottom margin */
.fh5co-heading {
  margin-bottom: 3.5em;
}
.fh5co-heading h2 {
  margin-bottom: 0 !important;
  font-size: 36px !important;
}
.fh5co-heading h2:after {
  margin-top: 22px;
}

/* Hero: balanced vertical rhythm */
.terminal-tag {
  margin-top: 8px;
  margin-bottom: 22px;
}
#fh5co-header .display-tc h1,
.fh5co-cover .display-tc h1 {
  margin-bottom: 22px !important;
  font-size: 52px !important;
}
.role-tag {
  display: inline-block;
  margin-bottom: 22px;
}
.hero-status {
  margin-bottom: 24px;
}
.tech-stack-strip {
  margin: 0 0 24px;
  gap: 10px;
}
#fh5co-header .display-tc .profile-thumb {
  margin-bottom: 26px !important;
  height: 170px !important;
  width: 170px !important;
}
#fh5co-header .display-tc .fh5co-social-icons {
  margin-top: 6px;
}
#fh5co-header .display-tc .fh5co-social-icons li {
  margin: 0 4px;
}

/* Hero mobile density — the hero stacks ~9 distinct elements (terminal-tag,
   portrait, h1, role-tag, status, tech chips, stats, CTA, socials). The
   desktop margins of 22-26px between each add up to a hero that scrolls
   well past the fold on phones. Halve the inter-element rhythm and shrink
   the portrait so the primary CTA stays close to the fold. */
@media screen and (max-width: 768px) {
  #fh5co-header .display-tc .profile-thumb {
    height: 120px !important;
    width: 120px !important;
    margin-bottom: 16px !important;
  }
  .terminal-tag { margin-top: 4px; margin-bottom: 12px; }
  #fh5co-header .display-tc h1,
  .fh5co-cover .display-tc h1 { margin-bottom: 12px !important; }
  .role-tag {
    margin-bottom: 14px;
    font-size: 12.5px !important;
    letter-spacing: 1px !important;
    padding: 5px 10px !important;
    line-height: 1.5;
    max-width: 92vw;
  }
  .hero-status { margin-bottom: 14px; }
  .tech-stack-strip { margin: 0 0 14px; }
  .hero-stats { margin-bottom: 14px !important; }
  .hero-cta { margin-bottom: 12px !important; }
  #fh5co-header .display-tc .fh5co-social-icons { margin-top: 4px; }
}

/* Services grid: even row gaps */
#fh5co-features .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
#fh5co-features .row > [class*="col-"] {
  padding: 10px;
  margin-bottom: 0;
}
#fh5co-features .feature-left {
  margin-bottom: 0;
  height: 100%;
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#fh5co-features .feature-left .icon {
  margin-bottom: 22px;
}
#fh5co-features .feature-left h3 {
  margin-bottom: 14px;
}
#fh5co-features .feature-left p {
  margin-bottom: 0;
  line-height: 1.65;
}
@media screen and (max-width: 992px) {
  #fh5co-features .row {
    display: block;
  }
  #fh5co-features .feature-left {
    margin-bottom: 20px;
  }
}

/* Skills: pie chart bottom gap */
#fh5co-skills .chart {
  margin: 0 auto 30px auto;
}
#fh5co-skills .row-pb-md {
  padding-bottom: 2em !important;
}
.progress-wrap {
  margin-bottom: 18px;
}
.progress-wrap h3 {
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  font-size: 13px !important;
  letter-spacing: 1px;
}

/* Tools grid: cleaner gaps */
.tools-grid {
  gap: 12px;
  padding-bottom: 0;
  max-width: 900px;
  margin: 0 auto;
}
.tool-badge {
  padding: 9px 18px !important;
}

/* Hero tech chip strip: better alignment */
.tech-stack-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Timeline: tighter rhythm */
.timeline {
  padding-top: 0;
}
.timeline > li {
  margin-bottom: 28px;
}
.timeline > li > .timeline-panel {
  padding: 22px 26px !important;
}
.timeline-title {
  margin-bottom: 6px !important;
}
.company {
  margin-bottom: 14px !important;
}
.timeline-body p {
  margin-bottom: 8px !important;
  line-height: 1.7;
}
.timeline .timeline-heading {
  margin: 18px 0 36px;
}

/* About: column gap on desktop */
@media (min-width: 992px) {
  #fh5co-about .row + .row {
    align-items: flex-start;
  }
  #fh5co-about .col-md-5 {
    padding-right: 30px;
  }
  #fh5co-about .col-md-7 {
    padding-left: 30px;
  }
}
#fh5co-about .col-md-7 h2 {
  margin-top: 0;
  margin-bottom: 18px;
}
#fh5co-about .col-md-7 p {
  margin-bottom: 18px;
}
#fh5co-about .col-md-7 p:last-of-type {
  margin-bottom: 24px;
}

/* About social icons row spacing */
#fh5co-about .fh5co-social-icons {
  margin-top: 8px;
}
#fh5co-about .fh5co-social-icons li {
  margin: 0 3px;
}

/* Hire-me: balanced gaps */
#fh5co-started .btn {
  margin-bottom: 28px !important;
}
#fh5co-started .fh5co-heading p {
  margin-bottom: 28px;
}
#fh5co-started .fh5co-social-icons li {
  margin: 0 6px;
}

/* Nav: tighter link spacing on medium screens */
@media (max-width: 992px) and (min-width: 769px) {
  .fh5co-nav-links li {
    margin-left: 14px;
  }
}

/* Work tiles: a touch more breathing room */
.col-padding {
  padding: 8px !important;
}
.work {
  border-radius: 8px;
}

/* Blog/under-construction: balanced */
#fh5co-blog .container > .row {
  padding: 18px 0;
}

/* =========================================================================
   PRINT STYLES — if a recruiter ctrl-P's the page, give them something they
   can actually read: white bg, black text, decoration removed, links inlined.
   Index-specific bits live here; case-study.css + tech-fx.css cover their
   own scoped widgets (siderail dot-nav, viewport-hud, chat bubble).
   ========================================================================= */
@media print {
  html, body {
    background: #fff !important;
    color: #111 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 11pt;
    line-height: 1.5;
  }

  /* Fixed/decorative chrome we never want on paper */
  #fh5co-nav,
  .fh5co-loader,
  .gototop,
  .tech-grid,
  .scanline,
  .viewport-hud,
  .siderail,
  .hud,
  .pchat,
  .terminal-tag,
  .hero-cta,
  .theme-picker,
  .fh5co-nav-toggle,
  .hyperframe__corner,
  .hyperframe__halo,
  .skip-link,
  [aria-hidden="true"] {
    display: none !important;
  }

  /* Reveal anything still hidden by scroll-fade-in state */
  .animate-box,
  .reveal,
  .animated-fast {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  /* Hero: ditch the dark cover + overlay, keep the type */
  #fh5co-header {
    background: none !important;
    color: #111 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16pt 0 !important;
    page-break-after: avoid;
  }
  #fh5co-header .overlay { display: none !important; }
  #fh5co-header h1,
  #fh5co-header h2 {
    color: #111 !important;
    text-shadow: none !important;
    font-family: Georgia, serif !important;
  }
  .role-tag, .status-badge, .tech-chip {
    color: #111 !important;
    background: none !important;
    border-color: #888 !important;
    text-shadow: none !important;
  }
  .profile-thumb {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    width: 110px !important;
    height: 110px !important;
  }

  /* Hero stats: inline, no boxes */
  .hero-stats {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 18pt;
  }
  .hero-stats .stat { color: #111 !important; }

  /* Section headings: readable serif */
  h1, h2, h3, h4 {
    color: #111 !important;
    text-shadow: none !important;
    font-family: Georgia, serif !important;
    page-break-after: avoid;
  }

  /* Cards and panels: flat */
  .code-card, .about-panel, .px-card, .profile-config,
  .exp-card, .proj-card, .skill-card, .stack-group {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .code-card__chrome, .px-card__chrome, .profile-config__chrome {
    background: #f4f4f4 !important;
    border-bottom: 1px solid #ccc !important;
  }

  /* Code highlighting → readable black on white */
  .tk-cmt { color: #6a6a6a !important; font-style: italic; }
  .tk-str { color: #1a5c1a !important; }
  .tk-key, .tk-fn { color: #1f2d7a !important; font-weight: 600; }
  .tk-num, .tk-bool { color: #883300 !important; }
  .tk-punct { color: #444 !important; }

  /* Links: print URL after, so a paper copy is navigable */
  a { color: #003fa3 !important; text-decoration: underline; }
  a[href^="http"]::after,
  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
  a[href^="#"]::after,
  .cfg-copy::after { content: none !important; }
  .cfg-copy { display: none !important; }

  /* Footer: keep, but trim */
  #fh5co-footer {
    background: none !important;
    color: #111 !important;
    padding: 12pt 0 !important;
    border-top: 1px solid #ccc;
    font-size: 9pt;
  }
  .git-log, .live-stats { display: none !important; }

  /* Avoid orphan section breaks */
  #fh5co-about, #fh5co-resume, #fh5co-features,
  #fh5co-skills, #fh5co-work, #fh5co-started {
    page-break-inside: auto;
  }
}

/*# sourceMappingURL=style.css.map */
