/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --accent-color: #38bdf8;
  --bg-sidebar: #0f172a;
  --bg-sidebar-gradient: linear-gradient(180deg, #1e40af 0%, #0f172a 100%);
  --bg-content: #f8faff;
  /* Glacier White */
  --bg-section: #eff6ff;
  /* Mist Blue */
  --debian-red: #D70A53;
  --text-primary: #1e293b;
  --text-muted: #64748b;
  --border-glow: rgba(215, 10, 83, 0.4);
  /* Match Debian Red */
}

body {
  font-family: "Ubuntu Mono", monospace;
  color: #272829;
  overflow-x: hidden;
  background-color: var(--bg-content);
}

/* For Boot Sequence */
body.booting {
  overflow: hidden;
}

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

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu Mono", monospace;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  /* More angular, architect style */
  transition: all 0.4s;
  box-shadow: 0 0 15px var(--border-glow);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: var(--bg-sidebar-gradient);
  /* Added Gradient */
  overflow-y: auto;
  border-right: 1px solid rgba(37, 99, 235, 0.1);
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 4px solid var(--primary-color);
  padding: 4px;
  background: var(--bg-darker);
}

#header .profile h1 {
  font-size: 26px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.5px;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--bg-darker);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#header .profile .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--border-glow);
}

#main {
  margin-left: 300px;
}

.container,
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }

  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-left: 3px solid transparent;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--text-muted);
  opacity: 0.6;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #fff;
  background: rgba(37, 99, 235, 0.1);
  /* Sapphire tint background */
  border-left-color: var(--primary-color);
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: var(--primary-color);
  opacity: 1;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  height: 100vh;
  background: var(--bg-sidebar);
  position: relative;
  overflow: hidden;
  margin-left: 300px;
  width: calc(100% - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center within available space */
}

@media (max-width: 1199px) {

  /* Match sidebar mobile breakpoint */
  #hero {
    margin-left: 0;
    width: 100%;
  }
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero:before {
  content: "";
  background: radial-gradient(circle at left center, transparent 0%, var(--bg-sidebar) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0.8;
}

#hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-intro {
  text-align: center;
  margin-bottom: 40px;
  z-index: 3;
}

.hero-intro h1 {
  margin: 0;
  font-size: 82px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -1px;
  text-transform: none;
  text-shadow: none;
}

.hero-intro p {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Ubuntu Mono", monospace;
  opacity: 0.9;
}

.hero-intro p span {
  color: var(--accent-color);
  font-weight: 700;
}

.hero-console {
  position: relative;
  z-index: 3;
  align-self: center;
  background: rgba(10, 15, 24, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--debian-red);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(215, 10, 83, 0.2);
  width: 750px;
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-console:hover {
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero-console {
    width: 90%;
  }

  .hero-intro h1 {
    font-size: 42px;
  }
}

.console-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(45, 45, 45, 0.6);
  padding: 8px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-family: "Ubuntu Mono", monospace;
}

.terminal-branding i {
  color: var(--debian-red);
  font-size: 18px;
}

.terminal-controls {
  display: flex;
  gap: 15px;
}

.control-btn-linux {
  color: #94a3b8;
  font-family: monospace;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.control-btn-linux:hover {
  color: #fff;
}

.control-btn-linux.close:hover {
  color: var(--debian-red);
}

.console-content {
  padding: 25px 30px;
  height: 290px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--debian-red) transparent;
}

/* Custom Scrollbar for Terminal */
.console-content::-webkit-scrollbar {
  width: 6px;
}

.console-content::-webkit-scrollbar-track {
  background: transparent;
}

.console-content::-webkit-scrollbar-thumb {
  background-color: var(--debian-red);
  border-radius: 10px;
}

.console-output {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 24px;
  font-family: "Ubuntu Mono", monospace;
  margin-bottom: 5px;
}

.console-output .prompt {
  font-weight: 700;
  white-space: nowrap;
}

.console-output .prompt .user {
  color: #10b981;
}

.console-output .prompt .path {
  color: #3b82f6;
}

.console-output .typed,
#terminal-history div,
#terminal-input {
  color: #f8fafc;
  line-height: 1.2;
  font-family: "Ubuntu Mono", monospace;
}

#terminal-history {
  font-size: 18px;
}

#terminal-history div {
  margin-bottom: 8px;
}

#terminal-history .command-out {
  color: #94a3b8;
  padding-left: 20px;
}

.input-line {
  margin-top: 10px;
}

#terminal-input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 24px;
  padding: 0;
  caret-color: var(--primary-color);
}

#terminal-input::placeholder {
  color: rgba(148, 163, 184, 0.4);
  /* Very subtle gray/blue */
  font-style: italic;
  font-size: 18px;
}

.typed-cursor {
  color: var(--primary-color);
  font-weight: 300;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-content);
}

/* Architect's Layout Markers */
section::before,
section::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--accent-color);
  border-style: solid;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

section::before {
  top: 40px;
  left: 40px;
  border-width: 1px 0 0 1px;
}

section::after {
  bottom: 40px;
  right: 40px;
  border-width: 0 1px 1px 0;
}

.section-bg {
  background: var(--bg-section);
  background-image:
    radial-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, var(--bg-content), var(--bg-section));
  background-size: 30px 30px, 100% 100%;
}

/* Gradient variation for depth */
section:nth-of-type(odd) {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-content) 100%);
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-color);
  display: inline-block;
}

.section-title h2::before {
  content: "[ ";
  color: var(--accent-color);
  font-weight: 300;
}

.section-title h2::after {
  content: " ]";
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background: none;
  bottom: auto;
  left: auto;
  color: var(--accent-color);
  font-weight: 300;
}

.section-title .title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--border-glow);
}

.section-title p {
  margin-bottom: 0;
}

.download-cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-sidebar);
  color: #fff;
  padding: 12px 25px;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.download-cv-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  border-color: #fff;
}

.download-cv-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.download-cv-btn:hover i {
  transform: translateY(2px);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--primary-color);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--primary-color);
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: var(--primary-color);
  float: left;
  line-height: 0;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Ubuntu Mono", monospace;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Ubuntu Mono", monospace;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .section-title h2 {
  margin-bottom: 30px;
}

.doing-box {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 8px 8px 0px rgba(37, 99, 235, 0.05);
  /* Architect shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 120px;
}

.doing-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 12px 12px 0px var(--border-glow);
}

.doing-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-right: 20px;
  transition: 0.3s;
}

.doing-box:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.doing-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--bg-sidebar);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  background: rgba(99, 102, 241, 0.03);
  padding: 40px;
  border-radius: 4px;
  text-align: center;
  border: 1px dashed rgba(99, 102, 241, 0.2);
}

@media (max-width: 992px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.skill-logo {
  font-size: 50px;
  transition: all 0.3s ease;
}

.skill-logo:hover {
  color: #495057 !important;
  transform: scale(1.1);
}


.skill-title {
  margin-top: 50px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Ubuntu Mono", monospace;
  color: #050d18;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px dashed var(--primary-color);
  /* Circuit style */
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Ubuntu Mono", monospace;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 14px;
  background: var(--bg-sidebar);
  color: #fff;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid var(--accent-color);
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 0;
  /* Square for architect feel */
  left: -7px;
  top: 0;
  background: var(--bg-sidebar);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color);
}

/*--------------------------------------------------------------
# Kriptogram
--------------------------------------------------------------*/
.kriptogram .kriptogram-item {
  margin-bottom: 30px;
}

.kriptogram #kriptogram-flters {
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.kriptogram #kriptogram-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.kriptogram #kriptogram-flters li:hover,
.kriptogram #kriptogram-flters li.filter-active {
  color: var(--primary-color);
}

.kriptogram #kriptogram-flters li:last-child {
  margin-right: 0;
}

.kriptogram .kriptogram-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.kriptogram .kriptogram-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.kriptogram .kriptogram-wrap .kriptogram-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.kriptogram .kriptogram-wrap .kriptogram-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(37, 99, 235, 0.85);
  transition: 0.3s;
  width: 50%;
}

.kriptogram .kriptogram-wrap .kriptogram-links a:hover {
  background: var(--primary-color);
}

.kriptogram .kriptogram-wrap .kriptogram-links a+a {
  border-left: 1px solid var(--accent-color);
}

.kriptogram .kriptogram-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.kriptogram .kriptogram-wrap:hover .kriptogram-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Kriptogram Details
--------------------------------------------------------------*/
.kriptogram-details {
  padding-top: 40px;
}

.kriptogram-details .kriptogram-details-slider img {
  width: 100%;
}

.kriptogram-details .kriptogram-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.kriptogram-details .kriptogram-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary-color);
}

.kriptogram-details .kriptogram-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.kriptogram-details .kriptogram-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

.kriptogram-details .kriptogram-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.kriptogram-details .kriptogram-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.kriptogram-details .kriptogram-info ul li+li {
  margin-top: 10px;
}

.kriptogram-details .kriptogram-description {
  padding-top: 30px;
}

.kriptogram-details .kriptogram-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.kriptogram-details .kriptogram-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #149ddd;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--primary-color);
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: var(--primary-color);
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: var(--primary-color);
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--bg-sidebar);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--accent-color);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-primary);
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}



.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #149ddd;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #37b3ed;
}

/*--------------------------------------------------------------
# Terminal Boot Screen
--------------------------------------------------------------*/
#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 99999;
  padding: 40px;
  color: #fff;
  font-family: "Ubuntu Mono", monospace;
  font-size: 16px;
  line-height: 1.4;
  overflow-y: auto;
  pointer-events: all;
  transition: opacity 0.8s ease, visibility 0.8s;
  scrollbar-width: none;
}

#boot-screen::-webkit-scrollbar {
  display: none;
}

#boot-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#boot-log div {
  margin-bottom: 2px;
  white-space: pre-wrap;
}

#boot-log .ok {
  color: #2ecc40;
  /* Green */
  font-weight: bold;
}

#boot-log .info {
  color: #fff;
}

#boot-log .system {
  color: #94a3b8;
  /* Gray */
}

#boot-log .error {
  color: var(--debian-red);
}

@media (max-width: 768px) {
  #boot-screen {
    padding: 20px;
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
}

#system-stats {
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-family: "Ubuntu Mono", monospace;
  font-size: 11px;
  border-left: 2px solid var(--accent-color);
}

#system-stats .stat-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

#system-stats .label {
  color: var(--accent-color);
  font-weight: 700;
}

#system-stats .stat-item span:last-child {
  color: #fff;
  opacity: 0.9;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}