/**
 * =================================================================== 
 *  TOC:
 *  00. theme variables
 *  01. lazy loading styles
 *  02. webfonts and iconfonts
 *  03. base style overrides
 *  04. typography & general theme styles
 *  05. preloader
 *  06. forms
 *  07. buttons 
 *  08. other components
 *  09. common styles
 *  10. header styles
 *  11. intro
 *  12. about
 *  13. resume
 *  14. portfolio
 *  15. Blog-Section
 *  16. Services
 *  17. stats
 *  18. contact
 *  19. footer
 *
 * =================================================================== 
 */

/* 
 * ===================================================================
 * 00. theme variables - (theme-system)
 *
 * ------------------------------------------------------------------- 
 */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-header: #ffffff;
  --text-primary: #313131;
  --text-secondary: #6e6e6e;
  --text-muted: #888888;
  --border-color: #e9ecef;
  --shadow: rgba(0, 0, 0, 0.1);
  --accent-color: #ff0077;
}

html.dark-mode {
  --bg-primary: #151515;
  --bg-secondary: #1a1a1a;
  --bg-header: #000000;
  --text-primary: #ffffff;
  --text-secondary: #dddcdce9;
  --text-muted: #888888;
  --border-color: #333333;
  --shadow: rgba(255, 255, 255, 0.1);
  --accent-color: #ff0077;
}

html:not(.dark-mode) {
  --bg-primary: #ffffff00;
  --bg-secondary: #f8f9fa;
  --bg-header: #ffffff;
  --text-primary: #313131;
  --text-secondary: #232222;
  --text-muted: #3d3c3c;
  --border-color: #e9ecef;
  --shadow: rgba(0, 0, 0, 0.1);
  --accent-color: #ff0077;
}

html:not(.dark-mode) #intro {
  background: url(../images/intro-bg.webp) no-repeat center bottom !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

html:not(.dark-mode) .intro-overlay {
  background: rgba(255, 255, 255, 0.85) !important;
  opacity: 1 !important;
}

html:not(.dark-mode) #intro h1 {
  color: #313131 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) #intro h5 {
  color: #ff0077 !important;
}

html:not(.dark-mode) #intro p,
html:not(.dark-mode) #intro .intro-position span {
  color: #6e6e6e !important;
}

html:not(.dark-mode) .intro-social li a,
html:not(.dark-mode) .intro-social li a:visited {
  color: #313131 !important;
}

html:not(.dark-mode) .intro-social li a:hover,
html:not(.dark-mode) .intro-social li a:focus {
  color: #ff0077 !important;
}

html:not(.dark-mode) .button.stroke {
  border: 2px solid #313131 !important;
  color: #313131 !important;
  background: transparent !important;
}

html:not(.dark-mode) .button.stroke:hover {
  background: #313131 !important;
  color: #ffffff !important;
}

html:not(.dark-mode) .button.button-primary {
  background: #433e41 !important;
  color: #ffffff !important;
}

html:not(.dark-mode) .button.button-primary:hover {
  background: #383134 !important;
  border: 2px solid #cc005f !important;
}

html:not(.dark-mode) .grey-section {
  background: #f8f9fa !important;
}

html:not(.dark-mode) .skill-bars li strong {
  color: #313131;
}

html.dark-mode .skill-bars li strong {
  color: var(--text-primary);
}

html:not(.dark-mode) header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .nav-logo a {
  color: #313131 !important;
}

html:not(.dark-mode) .nav-logo a:hover {
  color: #ff0077 !important;
}

html:not(.dark-mode) .nav-link {
  color: #6e6e6e !important;
}

html:not(.dark-mode) .nav-link:hover,
html:not(.dark-mode) .nav-link:focus {
  color: #ff0077 !important;
  background: #f8f9fa !important;
}

html:not(.dark-mode) .nav-toggle .bar {
  background: #313131 !important;
}

@media screen and (max-width: 768px) {
  html:not(.dark-mode) .nav-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  }

  html:not(.dark-mode) .nav-item {
    border-bottom: 1px solid #e9ecef !important;
  }
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

p,
span,
div,
li,
td,
th {
  color: var(--text-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary) !important;
}

input,
textarea,
select {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.container,
.row {
  background-color: transparent;
}

nav a,
.main-navigation a {
  color: var(--text-primary) !important;
}

nav a:hover,
.main-navigation a:hover {
  color: var(--accent-color) !important;
}

#intro,
#about,
#resume,
#portfolio,
#services,
#contact {
  background-color: var(--bg-primary) !important;
}

#intro {
  background-image: url(../images/intro-bg.webp) !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}

/* 
 * ===================================================================
 * 01. lazy loading styles
 *
 * ------------------------------------------------------------------- 
 */
img[data-src] {
  opacity: 0.1;
  transition: opacity 0.4s ease-in-out;
  background-color: var(--bg-secondary);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200px 100%;
  background-repeat: no-repeat;
  animation: loading 1.5s infinite;
  width: 100%;
  display: block;
}

img[data-src].loading {
  opacity: 0.5;
}

img[data-src].loaded {
  opacity: 1;
  animation: none;
}

img[data-src].error {
  opacity: 0.5;
  background-color: #f8f8f8;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: screen;
}

#portfolio .folio-item img[data-src] {
  width: 100%;
  height: 100%;
}

@keyframes loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.validation-feedback {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.validation-feedback.success {
  color: #28a745;
}

.validation-feedback.error {
  color: #dc3545;
}

input.valid,
textarea.valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

input.invalid,
textarea.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.enhanced-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 0.5rem;
}

.loader-message {
  color: var(--text-primary);
  font-size: 0.875rem;
  text-align: center;
}

.loading-state {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
}

.toast {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow);
  margin-bottom: 0.5rem;
  padding: 1rem;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.removing {
  opacity: 0;
  transform: translateX(100%);
}

.toast-success {
  border-left: 4px solid #28a745;
}

.toast-error {
  border-left: 4px solid #dc3545;
}

.toast-warning {
  border-left: 4px solid #ffc107;
}

.toast-info {
  border-left: 4px solid #17a2b8;
}

.toast-icon {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.toast-success .toast-icon {
  color: #28a745;
}

.toast-error .toast-icon {
  color: #dc3545;
}

.toast-warning .toast-icon {
  color: #ffc107;
}

.toast-info .toast-icon {
  color: #17a2b8;
}

.toast-content {
  flex: 1;
}

.toast-message {
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  margin-left: 0.75rem;
  padding: 0;
  line-height: 1;
}

.toast-close:hover {
  color: var(--text-primary);
}

img {
  max-width: 100%;
  height: auto;
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 
 * ===================================================================
 * 02. webfonts and iconfonts - (_document-setup.scss)
 *
 * ------------------------------------------------------------------- 
 */
@import url("fonts.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("micons/micons.css");

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ff0077;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/** 
 * ===================================================================
 * 03. base style overrides - (_document-setup.scss)
 *
 * ------------------------------------------------------------------- 
 */
html {
  font-size: 10px;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg-primary);
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 1.7rem;
  line-height: 3rem;
  color: var(--text-secondary);
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-top: 70px;
  /* Account for fixed header */
}

/**
 * links - (_document-setup.scss)
 * -------------------------------------------------------------------
 */
a,
a:visited {
  color: #000000;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #ff0077;
  outline: 0;
}

/** 
 * ===================================================================
 *04. typography & general theme styles - (_document-setup.scss)
 *
 * ------------------------------------------------------------------- 
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h01,
.h02,
.h03,
.h04,
.h05,
.h06 {
  font-family: "poppins-semibold", sans-serif;
  color: var(--text-primary);
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-bottom: 2.1rem;
}

h3,
.h03,
h4,
.h04 {
  margin-bottom: 1.8rem;
}

h5,
.h05,
h6,
.h06 {
  font-family: 'Netflix-Sans-Bold';
  margin-bottom: 1.2rem;
}

h1,
.h01 {
  font-size: 3.1rem;
  line-height: 1.355;
  letter-spacing: -0.1rem;
}

@media only screen and (max-width: 600px) {

  h1,
  .h01 {
    font-size: 2.6rem;
    letter-spacing: -0.07rem;
  }
}

h2,
.h02 {
  font-size: 2.4rem;
  line-height: 1.25;
}

h3,
.h03 {
  font-size: 2rem;
  line-height: 1.5;
}

h4,
.h04 {
  font-size: 1.7rem;
  line-height: 1.765;
}

h5,
.h05 {
  font-size: 1.4rem;
  line-height: 1.714;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

h6,
.h06 {
  font-size: 1.3rem;
  line-height: 1.846;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

p img {
  margin: 0;
}

p.lead {
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 2rem;
  line-height: 1.8;
  color: #888888;
}

@media only screen and (max-width: 768px) {
  p.lead {
    font-size: 1.7rem;
  }
}

em,
i,
strong,
b {
  font-size: 1.7rem;
  line-height: 3rem;
  font-style: normal;
  font-weight: normal;
}

em,
i {
  font-family: "lora-italic", serif;
}

strong,
b {
  font-family: 'Netflix-Sans-Bold', "lora-bold", serif;
}

small {
  font-size: 1.2rem;
  line-height: inherit;
}

blockquote {
  margin: 3rem 0;
  padding-left: 4rem;
  position: relative;
}

blockquote:before {
  content: "\201C";
  font-size: 8rem;
  line-height: 0px;
  margin: 0;
  color: #313131;
  font-family: arial, sans-serif;
  position: absolute;
  top: 3rem;
  left: 0;
}

blockquote p {
  font-family: georgia, serif;
  font-style: italic;
  padding: 0;
  font-size: 1.9rem;
  line-height: 1.737;
}

blockquote cite {
  display: block;
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.616;
}

blockquote cite:before {
  content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited {
  color: #888888;
  border: none;
}

abbr {
  font-family: 'Netflix-Sans-Bold', "poppins-bold", serif;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.05rem;
  color: #888888;
}

var,
kbd,
samp,
code,
pre {
  font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
  padding: 2.4rem 3rem 3rem;
  background: #f1f1f1;
}

code {
  font-size: 1.4rem;
  margin: 0 0.2rem;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}

pre>code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}

pre.prettyprint>code {
  border: none;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

mark {
  background: #fff49b;
  color: #000;
}

hr {
  border: solid #d2d2d2;
  border-width: 1px 0 0;
  clear: both;
  margin: 2.4rem 0 1.5rem;
  height: 0;
}

.section-heading {
  font-family: 'Netflix-Sans-Bold' !important;
  font-size: 30px !important;
  color: var(--accent-color) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

/**
 * Lists - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.7rem;
}

ul li {
  padding-left: 0.4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0.6rem 0 0.6rem 1.7rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 0.8rem;
  position: relative;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0077;
  position: absolute;
  left: -17px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: #ff0077;
}

dd {
  margin: 0 0 0 2rem;
}

/**
 * tables - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: 'Netflix Sans', "lora-regular", sans-serif;
}

th,
td {
  padding: 1.5rem 3rem;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

th {
  color: #313131;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
}

td {
  line-height: 1.5;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

.table-responsive {
  overflow-x: auto;
}

/**
 * Spacing - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
button,
.button {
  margin-bottom: 1.2;
}

fieldset {
  margin-bottom: 1.5rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.ss-custom-select {
  margin-bottom: 3rem;
}

/**
 * floated image - (_document-setup.scss)  
 * -------------------------------------------------------------------
 */
img.pull-right {
  margin: 0.9rem 0 0 2.4rem;
}

img.pull-left {
  margin: 0.9rem 2.4rem 0 0;
}

/**
 * block grid paddings - (_document-setup.scss) 
 * -------------------------------------------------------------------
 */
.bgrid {
  padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
  .bgrid {
    padding: 0 18px;
  }
}

@media only screen and (max-width: 768px) {
  .bgrid {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 600px) {
  .bgrid {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 400px) {
  .bgrid {
    padding: 0;
  }
}

/**
 * pace.js styles - minimal  - (_document-setup.scss)
 * -------------------------------------------------------------------
 */
.pace {
  pointer-events: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #ff0077;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 100%;
  width: 100%;
  height: 6px;
}

/** 
 * ===================================================================
 * 05. preloader - (_preloader-1.scss)
 *
 * ------------------------------------------------------------------- 
 */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 800;
  height: 100%;
  width: 100%;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  padding: 0;
}

#loader:before {
  content: "";
  border-top: 11px solid rgba(255, 255, 255, 0.1);
  border-right: 11px solid rgba(255, 255, 255, 0.1);
  border-bottom: 11px solid rgba(255, 255, 255, 0.1);
  border-left: 11px solid #ff0077;
  animation: load 1.1s infinite linear;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/** 
 * ===================================================================
 * 06. forms - (_forms.scss)
 *
 * ------------------------------------------------------------------- 
 */
fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 6rem;
  padding: 1.5rem 0;
  border: 0;
  outline: none;
  text-align: middle;
  color: #313131;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  font-size: 1.5rem;
  line-height: 3rem;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.ss-custom-select {
  position: relative;
  padding: 0;
}

.ss-custom-select select {
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}

.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ss-custom-select::after {
  content: "\f0d7";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -10px;
  bottom: auto;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
  text-align: center;
  pointer-events: none;
  color: #252525;
}

.oldie .ss-custom-select::after {
  display: none;
}

textarea {
  min-height: 25rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #cc005f;
  border-bottom: 1px solid #ff0077;
}

label,
legend {
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: #3b3b3b;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  line-height: inherit;
}

label>input[type="checkbox"],
label>input[type="radio"] {
  margin: 0;
  position: relative;
  top: 0.15rem;
}

/**
 * Style Placeholder Text  
 * -
 */
.placeholder {
  color: #a1a1a1 !important;
}

/** 
 * ===================================================================
 * 07. buttons - (_button-essentials.scss)
 *
 * ------------------------------------------------------------------- 
 */
.button,
a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  height: 5.4rem;
  line-height: 5.4rem;
  padding: 0 3rem;
  margin: 0 0.3rem 1.2rem 20px;
  background: #d8d8d8;
  color: #504f4f;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: none;
  transition: all 0.3s ease-in-out;
}

.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background: #bebebe;
  color: #000000;
  outline: 0;
}

.button.button-primary,
a.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  background: #313131;
  color: #ffffff;
}

.button.button-primary:hover,
a.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  background: #1f1f1f;
}

button.full-width,
.button.full-width {
  width: 100%;
  margin-right: 0;
}

button.medium,
.button.medium {
  height: 5.7rem !important;
  line-height: 5.7rem !important;
  padding: 0 1.8rem !important;
}

button.large,
.button.large {
  height: 6rem !important;
  line-height: 6rem !important;
  padding: 0rem 3rem !important;
}

button.stroke,
.button.stroke {
  background: transparent !important;
  border: 3px solid #585757;
  line-height: 4.8rem;
}

button.stroke.medium,
.button.stroke.medium {
  line-height: 5.1rem !important;
}

button.stroke.large,
.button.stroke.large {
  line-height: 5.4rem !important;
}

button.stroke:hover,
.button.stroke:hover {
  border: 3px solid #ff0077;
  color: #ff0077;
}

/** 
 * ===================================================================
 * 08. other components - (_others.scss)
 *
 * ------------------------------------------------------------------- 
 */

/**
 * alert box - (_alert-box.scss)
 * -------------------------------------------------------------------
 */
.alert-box {
  padding: 2.1rem 4rem 2.1rem 3rem;
  position: relative;
  margin-bottom: 3rem;
  border-radius: 3px;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  font-size: 1.5rem;
}

.alert-box .close {
  position: absolute;
  right: 1.8rem;
  top: 1.8rem;
  cursor: pointer;
}

.ss-error {
  background-color: #ffd1d2;
  color: #e65153;
}

.ss-success {
  background-color: #c8e675;
  color: #758c36;
}

.ss-info {
  background-color: #d7ecfb;
  color: #4a95cc;
}

.ss-notice {
  background-color: #fff099;
  color: #bba31b;
}

/**
 * additional typo styles
 * -------------------------------------------------------------------
 */

.drop-cap:first-letter {
  float: left;
  margin: 0;
  padding: 1.5rem 0.6rem 0 0;
  font-size: 8.4rem;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  line-height: 6rem;
  text-indent: 0;
  background: transparent;
  color: #313131;
}

/**
 * line definition style
 */
.lining dt,
.lining dd {
  display: inline;
  margin: 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
  content: "\A";
  white-space: pre;
}

.lining dd+dd:before {
  content: ", ";
}

.lining dd+dd:before {
  content: ", ";
}

.lining dd:before {
  content: ": ";
  margin-left: -0.2em;
}

/**
 * dictionary definition style
 */
.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}

.dictionary-style dt+dt:before {
  content: ", ";
  margin-left: -0.2em;
}

.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}

.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *		<blockquote>
 *			<p></p>
 *		</blockquote>
 *	</aside>
 *
 * --------------------------------------------------------------------- 
 */
.pull-quote {
  position: relative;
  padding: 2.1rem 3rem 2.1rem 0px;
}

.pull-quote:before,
.pull-quote:after {
  height: 1em;
  position: absolute;
  font-size: 8rem;
  font-family: Arial, Sans-Serif;
  color: #333;
}

.pull-quote:before {
  content: "\201C";
  top: 33px;
  left: 0;
}

.pull-quote:after {
  content: "\201D";
  bottom: -33px;
  right: 0;
}

.pull-quote blockquote {
  margin: 0;
}

.pull-quote blockquote:before {
  content: none;
}

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *		<li><a href="#">[value]<em>[name]</em></a></li>
 *	</ul>
 *
 * Extend this object into your markup.
 *
 * ---------------------------------------------------------------------
 */
.stats-tabs {
  padding: 0;
  margin: 3rem 0;
}

.stats-tabs li {
  display: inline-block;
  margin: 0 1.5rem 3rem 0;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #ccc;
}

.stats-tabs li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.stats-tabs li a {
  display: inline-block;
  font-size: 2.5rem;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  border: none;
  color: #252525;
}

.stats-tabs li a:hover {
  color: #ff0077;
}

.stats-tabs li a em {
  display: block;
  margin: 0.6rem 0 0 0;
  font-size: 1.4rem;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  color: #888888;
}

/**
 * skillbars - (_skillbars.scss)
 * -------------------------------------------------------------------
 */
.skill-bars {
  list-style: none;
  margin: 6rem 0 3rem;
}

.skill-bars li {
  height: 0.6rem;
  background: #a1a1a1;
  width: 100%;
  margin-bottom: 6rem;
  padding: 0;
  position: relative;
}

.skill-bars li strong {
  position: absolute;
  left: 0;
  top: -3rem;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  color: #313131;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  line-height: 2.4rem;
}

.skill-bars li strong i {
  font-size: 1.8rem;
  margin-right: 0.8rem;
  vertical-align: middle;
  display: inline-block;
}

.skill-bars li .progress {
  background: #313131;
  position: relative;
  height: 100%;
}

.skill-bars li .progress span {
  position: absolute;
  right: 0;
  top: -3.6rem;
  display: block;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  color: white;
  font-size: 1.1rem;
  line-height: 1;
  background: #313131;
  padding: 0.6rem 0.6rem;
  border-radius: 3px;
}

.skill-bars li .progress span::after {
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #313131;
  content: "";
}

.skill-bars li .percent5 {
  width: 5%;
}

.skill-bars li .percent10 {
  width: 10%;
}

.skill-bars li .percent15 {
  width: 15%;
}

.skill-bars li .percent20 {
  width: 20%;
}

.skill-bars li .percent25 {
  width: 25%;
}

.skill-bars li .percent30 {
  width: 30%;
}

.skill-bars li .percent35 {
  width: 35%;
}

.skill-bars li .percent40 {
  width: 40%;
}

.skill-bars li .percent45 {
  width: 45%;
}

.skill-bars li .percent50 {
  width: 50%;
}

.skill-bars li .percent55 {
  width: 55%;
}

.skill-bars li .percent60 {
  width: 60%;
}

.skill-bars li .percent65 {
  width: 65%;
}

.skill-bars li .percent70 {
  width: 70%;
}

.skill-bars li .percent75 {
  width: 75%;
}

.skill-bars li .percent80 {
  width: 80%;
}

.skill-bars li .percent85 {
  width: 85%;
}

.skill-bars li .percent90 {
  width: 90%;
}

.skill-bars li .percent95 {
  width: 95%;
}

.skill-bars li .percent100 {
  width: 100%;
}

/** 
 * ===================================================================
 * 09. common styles (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
.grey-section {
  background: var(--bg-secondary) !important;
  padding: 6rem 0;
}

.grey-section p.lead {
  color: var(--text-secondary) !important;
  font-weight: 400;
}

.section-intro {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}

.section-intro h1 {
  font-family: "poppins-semibold", serif;
  font-size: 4.2rem;
  color: #ff0077;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.section-intro h5 {
  color: #ff0077;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 0.3rem;
  letter-spacing: 0.4rem;
}

@media only screen and (max-width: 768px) {
  .section-intro {
    max-width: 650px;
  }

  .section-intro h1 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 600px) {
  .section-intro h1 {
    font-size: 2.6rem;
  }

  .section-intro h5 {
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
  }
}

@media only screen and (max-width: 400px) {
  .section-intro h1 {
    font-size: 2.4rem;
  }
}

/** 
 * ===================================================================
 * 10. header styles - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar {
  width: 100%;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo a {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  font-family: "poppins-semibold", sans-serif;
}

.nav-logo a:hover {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
  background: var(--bg-secondary);
}

.nav-link.active {
  color: var(--accent-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: auto;
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-toggle:hover {
  background-color: var(--bg-secondary);
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.theme-toggle {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}

#theme-toggle-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

#theme-toggle-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--accent-color);
}

@media screen and (max-width: 960px) {
  .nav-container {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .nav-actions {
    order: 2;
    gap: 0.5rem;
  }

  .theme-toggle {
    margin-right: 0;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 2rem;
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
  }

  .nav-link:hover {
    background: var(--bg-secondary);
  }

  .nav-logo a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .nav-container {
    height: 60px;
    padding: 0 1rem;
  }

  .nav-logo a {
    font-size: 1.8rem;
  }

  .nav-menu {
    top: 60px;
  }

  .nav-toggle {
    gap: 3px;
  }

  .nav-toggle .bar {
    width: 22px;
    height: 2.5px;
  }

  #theme-toggle-btn {
    font-size: 1.6rem;
    padding: 6px;
  }
}

/**
 * menu toggle - (_layout.css)
 * ------------------------------------------------------------------- 
 */
.menu-toggle {
  float: left;
  width: 40px;
  height: 40px;
  margin-left: 20px;
  margin-top: 13px;
  display: block;
  position: relative;
}

.menu-toggle span {
  display: block;
  background-color: #ff0077;
  width: 24px;
  height: 3px;
  margin-top: -1.5px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: absolute;
  right: 8px;
  top: 50%;
  bottom: auto;
  left: auto;
  transition: background 0.2s ease-in-out;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
}

.menu-toggle span::before {
  top: -8px;
  transition-property: top, transform;
}

.menu-toggle span::after {
  bottom: -8px;
  transition-property: bottom, transform;
}

.menu-toggle.is-clicked span {
  background-color: rgba(255, 0, 119, 0);
}

.menu-toggle.is-clicked span::before,
.menu-toggle.is-clicked span::after {
  background-color: #ff0077;
  transition-delay: 0s, 0.2s;
}

.menu-toggle.is-clicked span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-clicked span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/**
 * theme toggle - Modern Toggle Switch
 * ------------------------------------------------------------------- 
 */
.theme-toggle {
  position: relative;
  display: inline-block;
}

#theme-toggle-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 60px;
  height: 30px;
  padding: 3px;
}

#theme-toggle-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 0, 119, 0.3);
  transform: translateY(-1px);
}

#theme-toggle-btn:active {
  transform: translateY(0);
}

/* Toggle Slider */
#theme-toggle-btn::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  left: 3px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icons */
.sun-icon,
.moon-icon {
  position: absolute;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  color: #ffffff;
  pointer-events: none;
  z-index: 1;
}

.sun-icon {
  left: 8px;
}

.moon-icon {
  right: 8px;
}

.sun-icon i,
.moon-icon i {
  font-style: normal !important;
  font-weight: 900 !important;
  display: block;
}

/* Dark Mode State */
html.dark-mode #theme-toggle-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
}

html.dark-mode #theme-toggle-btn::before {
  transform: translateX(30px);
}

html.dark-mode .sun-icon {
  opacity: 0.5;
  transform: scale(0.8);
}

html.dark-mode .moon-icon {
  opacity: 1;
  transform: scale(1);
  color: #fbbf24;
}

/* Light Mode State */
html:not(.dark-mode) #theme-toggle-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

html:not(.dark-mode) #theme-toggle-btn::before {
  transform: translateX(0);
}

html:not(.dark-mode) .sun-icon {
  opacity: 1;
  transform: scale(1);
  color: #fbbf24;
}

html:not(.dark-mode) .moon-icon {
  opacity: 0.5;
  transform: scale(0.8);
}

/* Hover Effects */
html.dark-mode #theme-toggle-btn:hover .moon-icon {
  color: #fde047;
  transform: scale(1.1);
}

html:not(.dark-mode) #theme-toggle-btn:hover .sun-icon {
  color: #fde047;
  transform: scale(1.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
  #theme-toggle-btn {
    width: 54px;
    height: 28px;
  }

  #theme-toggle-btn::before {
    width: 22px;
    height: 22px;
  }

  html.dark-mode #theme-toggle-btn::before {
    transform: translateX(26px);
  }

  .sun-icon,
  .moon-icon {
    font-size: 12px;
  }

  .sun-icon {
    left: 7px;
  }

  .moon-icon {
    right: 7px;
  }
}

@media screen and (max-width: 480px) {
  .theme-toggle {
    margin-right: 0.5rem;
  }

  #theme-toggle-btn {
    width: 50px;
    height: 26px;
  }

  #theme-toggle-btn::before {
    width: 20px;
    height: 20px;
  }

  html.dark-mode #theme-toggle-btn::before {
    transform: translateX(24px);
  }
}

#main-nav-wrap {
  display: block;
  width: 100%;
  font-family: 'Netflix-Sans-Medium', "poppins-medium", sans-serif;
  font-size: 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
}

.main-navigation {
  background: #000000;
  padding: 24px 30px 42px;
  margin: 0;
  width: 100%;
  height: 350px;
  clear: both;
  display: none;
  border-radius: 10px;
}

.main-navigation li {
  display: block;
  height: auto;
  text-align: left;
  padding: 0;
}

.main-navigation li a {
  display: block;
  color: #ffffff;
  width: auto;
  padding: 15px 0;
  line-height: 16px;
  border: none;
}

.main-navigation li a:hover {
  color: #ff0077;
  padding-left: 1rem;
}

.main-navigation li.current>a {
  background: none;
  color: #ff0077;
}

@media only screen and (max-width: 1024px) {
  header .top-bar {
    left: 60px;
  }
}

@media only screen and (max-width: 768px) {
  header .top-bar {
    left: 50px;
    width: 180px;
  }

  header .logo {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 600px) {
  header .top-bar {
    left: 35px;
  }
}

@media only screen and (max-width: 400px) {
  header .top-bar {
    left: 25px;
    width: 150px;
  }

  header .logo a {
    width: 80px;
    height: 13px;
    background-size: 80px 15px;
  }

  .menu-toggle {
    width: 20px;
    height: 20px;
    margin-left: 30px;
    margin-top: 22px;
  }
}

/** 
 * ===================================================================
 * 11. intro - (_layout.scss) 
 *
 * ------------------------------------------------------------------- 
 */
#intro {
  background: var(--bg-primary) url(../images/intro-bg.webp) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: table;
  position: relative;
  text-align: center;
}

.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  opacity: 0.85;
}

.intro-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  transform: translateY(-2.1rem);
}

.intro-content h1 {
  color: #ffffff;
  font-family: 'Netflix-Sans-Medium', "poppins-medium", sans-serif;
  font-size: 8.4rem;
  line-height: 1.071;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 0.6rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.intro-content h5 {
  color: #cc005f;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  font-size: 2.3rem;
  line-height: 1.565;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.intro-content .intro-position {
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 1.7rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.intro-content .intro-position span {
  display: inline-block;
}

.intro-content .intro-position span::after {
  content: "|";
  text-align: center;
  display: inline-block;
  padding: 0 8px 0 14px;
  color: rgba(255, 255, 255, 0.3);
}

.intro-content .intro-position span:first-child::before {
  content: "|";
  text-align: center;
  display: inline-block;
  padding: 0 14px 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

.intro-content .button {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3);
  height: 6rem !important;
  line-height: 5.4rem !important;
  padding: 0 3.5rem 0 3rem !important;
  margin-top: 0.6rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.intro-content .button:hover,
.intro-content .button:focus {
  border-color: #cc005f;
}

.intro-content .button::after {
  display: inline-block;
  content: "\f107";
  font-family: fontAwesome;
  font-size: 1.6rem;
  line-height: inherit;
  text-align: center;
  position: relative;
  left: 1.2rem;
}

.intro-social {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 7.2rem;
  font-size: 3.3rem;
  margin: 0;
  padding: 0;
}

.intro-social li {
  display: inline-block;
  margin: 0 20px;
  padding: 0;
}

.intro-social li a,
.intro-social li a:visited {
  color: #ffffff;
}

.intro-social li a:hover,
.intro-social li a:focus {
  color: #cc005f;
}

@media only screen and (max-width: 1024px) {
  .intro-content h1 {
    font-size: 7.6rem;
  }

  .intro-social {
    font-size: 3rem;
  }

  .intro-social li {
    margin: 0 15px;
  }
}

@media only screen and (max-width: 768px) {
  #intro {
    min-height: 660px;
  }

  .intro-content h1 {
    font-size: 5.2rem;
  }

  .intro-content h5 {
    font-size: 1.8rem;
  }

  .intro-content .intro-position {
    font-size: 1.3rem;
  }

  .intro-social {
    font-size: 2.5rem;
  }

  .intro-social li {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 600px) {
  #intro {
    min-height: 600px;
  }

  .intro-content h1 {
    font-size: 4.6rem;
    margin-bottom: 0.6rem;
  }

  .intro-content h5 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.2rem;
  }

  .intro-content .intro-position {
    font-size: 1.2rem;
  }

  .intro-content .intro-position span {
    padding: 0 0.6rem;
  }

  .intro-content .intro-position span::before,
  .intro-content .intro-position span::after {
    display: none !important;
  }

  .intro-social {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 280px) {
  #intro {
    display: flex;
  }

  .intro-content h1 {
    font-size: 3.2rem;
    word-break: break-word;
  }

  .intro-content h5 {
    font-size: 1.3rem;
  }

  .intro-social {
    font-size: 2rem;
  }

  .intro-content .row {
    margin-top: 150px;
  }

}

@media only screen and (max-width: 265px) {
  .intro-content h1 {
    font-size: 3rem;
  }

  .intro-content h5 {
    font-size: 1.1rem;
  }

  .intro-social {
    font-size: 1.8rem;
  }

  .intro-content .button {
    width: 85%;
    padding: 0px !important;
    margin-top: 1.2rem;
  }

  .intro-content .row {
    padding: 10px !important;
  }
}

@media only screen and (max-width: 245px) {
  .intro-content .button {
    font-size: 1.2rem;
  }

  .intro-content .row {
    padding: 7px !important;
  }
}

@media only screen and (max-width: 235px) {
  .intro-content h1 {
    font-size: 2.8rem;
  }
}


/** 
 * ===================================================================
 * 12. about - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#about {
  background: #ffffff00;
  padding-top: 12rem;
  padding-bottom: 3rem;
}

#about .section-intro {
  margin-bottom: 3rem;
}

.intro-info {
  margin-top: 4.2rem;
  margin-right: -30px;
  margin-left: -30px;
}

.intro-info img {
  height: 9rem;
  width: 9rem;
  border-radius: 50%;
  margin: 0.9rem 0 0 0;
  float: left;
}

.intro-info .lead {
  text-align: left;
  padding-left: 13rem;
}

.about-content {
  position: relative;
  text-align: left;
  max-width: 850px;
  margin-bottom: 3.6rem;
}

.about-content h3 {
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.about-content .info-list-p {
  line-height: 1.7;
}

.about-content .info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin-left: 0;
  padding-top: 20px;
}

.about-content .info-list li {
  padding: 0 0 1.5rem 0;
  margin-bottom: 0.6rem;
}

.about-content .info-list li strong {
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 3rem;
}

.about-content .info-list li span {
  display: block;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  color: #9e9d9d;
  font-size: 1.6rem;
  line-height: 1;
}

.about-content .skill-bars {
  margin-top: 6rem;
}

.button-section {
  text-align: center;
}

.button-section .button {
  width: 250px;
}

.button-section [class*="col-"] .button:first-child {
  margin-right: 4rem;
}

@media only screen and (max-width: 1024px) {
  .intro-info {
    margin-right: 0;
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .intro-info img {
    height: 7.8rem;
    width: 7.8rem;
  }

  .intro-info .lead {
    padding-left: 11rem;
  }

  .about-content h3 {
    text-align: center;
  }

  .about-content .info-list,
  .about-content .skill-bars {
    margin-bottom: 4.2rem;
  }

  .button-section .button {
    width: 100%;
    margin-bottom: 3rem;
  }

  .button-section [class*="col-"] .button:first-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 600px) {
  .intro-info {
    text-align: center;
    margin-top: 3rem;
  }

  .intro-info img {
    height: 6.6rem;
    width: 6.6rem;
    float: none;
    display: inline-block;
  }

  .intro-info .lead {
    padding-left: 0;
    text-align: center;
  }
}

/** 
 * ===================================================================
 * 13. resume - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#resume {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

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

#resume .resume-header h2 {
  color: #ff0077;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Section intro improvements */
#resume .section-intro h5 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

#resume .section-intro h1 {
  color: #ff0077;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}

#resume .section-intro p.lead {
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 4rem;
}

#resume .resume-timeline {
  max-width: 1000px;
  margin: 0 auto;
}

#resume .timeline-wrap {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 8rem;
}

#resume .timeline-wrap::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  left: 35%;
  top: 0;
}

#resume .timeline-block {
  position: relative;
  padding-top: 2rem;
  margin-bottom: 4rem;
}

#resume .timeline-ico {
  height: 5.6rem;
  width: 5.6rem;
  line-height: 5.6rem;
  background: var(--accent-color);
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 35%;
  top: 2rem;
  margin-left: -2.8rem;
  border: 4px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10 !important;
}

#resume .timeline-ico i {
  font-size: 2.4rem;
  color: #ffffff !important;
  font-weight: 900;
  line-height: 1;
  display: block;
  text-align: center;
  width: 100%;
  font-family: FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Pro" !important;
}

#resume .timeline-ico .fa-graduation-cap::before {
  content: "\f19d" !important;
}

#resume .timeline-ico .fa-briefcase::before {
  content: "\f0b1" !important;
}

#resume .timeline-ico .fa {
  font-family: FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Pro" !important;
  font-style: normal;
  font-weight: 900 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Pro";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.intro-social .fa {
  font-size: inherit !important;
  color: #ffffff !important;
}

.intro-social .fa:hover {
  color: #cc005f !important;
}

#resume .timeline-header {
  float: left;
  width: 35%;
  padding-right: 90px;
  text-align: right;
}

#resume .timeline-header h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
}

#resume .timeline-header p {
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

#resume .timeline-content {
  margin-left: 35%;
  padding-left: 60px;
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

#resume .timeline-content h4 {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
}

#resume .timeline-content h4::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

#resume .timeline-content p {
  color: var(--text-secondary);
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  #resume .timeline-header {
    padding-right: 50px;
  }

  #resume .timeline-header h3 {
    font-size: 2.2rem;
  }

  #resume .timeline-header p {
    font-size: 1.6rem;
  }

  #resume .timeline-content {
    padding-left: 50px;
    padding: 2.5rem;
  }

  #resume .timeline-content h4 {
    font-size: 2rem;
  }

  #resume .timeline-content p {
    font-size: 1.7rem;
  }

  #resume .section-intro h1 {
    font-size: 3.5rem;
  }

  #resume .section-intro p.lead {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 768px) {
  #resume .timeline-wrap::before {
    left: 2.8rem;
  }

  #resume .timeline-ico {
    left: 2.8rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    margin-left: -2.5rem;
    border: 3px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #resume .timeline-ico i {
    font-size: 2.2rem;
    color: #ffffff !important;
    font-weight: 900;
    line-height: 1;
  }

  #resume .timeline-header {
    float: none;
    width: auto;
    padding-right: 15px;
    text-align: left;
    margin-bottom: 2rem;
  }

  #resume .timeline-header h3 {
    font-size: 2.4rem;
    color: var(--text-primary);
  }

  #resume .timeline-header p {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
  }

  #resume .timeline-content {
    margin: 0;
    padding: 2rem;
  }

  #resume .timeline-content h4 {
    padding-bottom: 1.5rem;
    padding-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
  }

  #resume .timeline-content h4::after {
    bottom: auto;
    top: auto;
    bottom: 0;
  }

  #resume .timeline-content p {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  #resume .timeline-header,
  #resume .timeline-content {
    padding-left: 7rem;
  }

  #resume .section-intro h1 {
    font-size: 3rem;
  }

  #resume .section-intro p.lead {
    font-size: 1.7rem;
  }

  #resume .resume-header h2 {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 480px) {
  #resume .resume-header h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }

  #resume .section-intro h1 {
    font-size: 2.8rem;
  }

  #resume .section-intro h5 {
    font-size: 1.6rem;
  }

  #resume .section-intro p.lead {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  #resume .timeline-wrap::before {
    left: 2rem;
  }

  #resume .timeline-ico {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    left: 2rem;
    margin-left: -2.25rem;
    border: 3px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #resume .timeline-ico i {
    font-size: 2rem;
    color: #ffffff !important;
    font-weight: 900;
    line-height: 1;
  }

  #resume .timeline-header h3 {
    font-size: 2rem;
  }

  #resume .timeline-header p {
    font-size: 1.5rem;
  }

  #resume .timeline-content {
    padding: 1.8rem;
  }

  #resume .timeline-content h4 {
    font-size: 1.8rem;
  }

  #resume .timeline-content p {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  #resume .timeline-header,
  #resume .timeline-content {
    padding-left: 6rem;
  }
}

@media only screen and (max-width: 375px) {
  #resume .timeline-wrap::before {
    left: 1.5rem;
  }

  #resume .timeline-ico {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    left: 1.5rem;
    margin-left: -2rem;
    border: 2px solid var(--bg-primary);
  }

  #resume .timeline-ico i {
    font-size: 1.8rem;
  }

  #resume .timeline-header,
  #resume .timeline-content {
    padding-left: 5rem;
  }

  #resume .timeline-header h3 {
    font-size: 1.8rem;
  }

  #resume .timeline-header p {
    font-size: 1.4rem;
  }

  #resume .timeline-content {
    padding: 1.5rem;
  }

  #resume .timeline-content h4 {
    font-size: 1.6rem;
  }

  #resume .timeline-content p {
    font-size: 1.4rem;
  }
}

/** 
 * ===================================================================
 * 14. portfolio - (_layout.scss)
 * ------------------------------------------------------------------- 
 */
#portfolio {
  background: #FFFFFF;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

#portfolio .folio-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

#portfolio .folio-item img {
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
}

#portfolio .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#portfolio .folio-item-table {
  display: table;
  width: 100%;
  height: 100%;
}

#portfolio .folio-item-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  left: -100%;
}

#portfolio .folio-title {
  color: #FFFFFF;
  font-size: 3.3rem;
  padding: 0 3rem;
  margin-bottom: 0;
}

#portfolio .folio-types {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: "poppins-regular", sans-serif;
  font-size: 1.2rem;
  letter-spacing: .1rem;
  color: rgba(255, 255, 255, 0.6);
}

#portfolio .folio-item:hover .overlay {
  background: rgba(0, 0, 0, 0.8);
}

#portfolio .folio-item:hover .folio-item-cell {
  left: 0;
}

#portfolio .folio-item:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.More-Project {
  text-align: center;
  margin-top: 6rem;
  align-items: center;
  justify-content: center;
}

/**
 * responsive:
 * portfolio
 * ------------------------------------------------------------------- 
 */
@media only screen and (max-width:1024px) {
  #portfolio .folio-title {
    font-size: 3.1rem;
  }
}

@media only screen and (max-width:768px) {
  #portfolio .folio-title {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width:400px) {
  #portfolio .folio-title {
    font-size: 2.2rem;
  }
}


/**
 * Popup Modal - (_layout.scss)
 * ------------------------------------------------------------------
 */
.popup-modal {
  max-width: 550px;
  background: #FFFFFF;
  position: relative;
  margin: 0 auto;
}

.popup-modal .media {
  position: relative;
}

.popup-modal img {
  vertical-align: bottom;
}

.popup-modal .description-box {
  padding: 1.8rem 3.6rem 3rem;
  color: #000000;
}

.popup-modal .description-box h4 {
  font-family: "poppins-bold", sans-serif;
  font-size: 1.5rem;
  color: #000000 !important;
  line-height: 2.4rem;
  margin-bottom: .6rem;
}

.popup-modal .description-box p {
  font-family: "poppins-regular", sans-serif;
  font-size: 1.4rem;
  color: #000000;
  line-height: 2.4rem;
  margin-bottom: 12px;
}

.popup-modal .categories {
  font-family: "poppins-bold", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  display: block;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
}

.popup-modal .link-box {
  width: 100%;
  font-weight: 600;
  overflow: hidden;
  background: #000000;
}

.popup-modal .link-box a {
  font-family: "poppins-bold", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 6rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  display: block;
  text-align: center;
  float: left;
  width: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.popup-modal .link-box a:first-child {
  border-right: 1px solid rgba(200, 200, 200, 0.1);
}

.popup-modal .link-box a:hover {
  background: #cc005f;
  border: none;
}

@media only screen and (max-width:600px) {
  .popup-modal {
    width: auto;
    margin: 0 20px;
  }
}

/**
 * transition effect for modal popup - (_layout.scss)
 * ------------------------------------------------------------------ 
 */

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  transform: translateY(0);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  transform: translateY(-100%);
}

/** 
 * ===================================================================
 * 15. Blog-Section - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */

/**
 * Blog Section Styles
 * Modern, clean blog/article cards with responsive grid
 */

#blog {
  background: var(--color-bg, #0f0f0f);
  padding-top: 12rem;
  padding-bottom: 12rem;
  position: relative;
}

#blog .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#blog .section-intro {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 6rem;
}

#blog .section-intro h5 {
  color: var(--color-primary, #ff0077);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-bottom: 1rem;
}

#blog .section-intro h1 {
  font-size: 4.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

#blog .section-intro .lead {
  font-size: 1.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 80rem;
  margin: 0 auto;
}

.blog-content {
  position: relative;
  z-index: 2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 2rem 4rem rgba(255, 0, 119, 0.2);
  border-color: var(--color-primary, #ff0077);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 25rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-primary, #ff0077);
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  z-index: 1;
}

.blog-content-text {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
}

.blog-meta i {
  margin-right: 0.5rem;
  color: var(--color-primary, #ff0077);
}

.blog-content-text h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

.blog-content-text>p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  flex: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.blog-tags .tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.blog-tags .tag:hover {
  background: var(--color-primary, #ff0077);
  color: #ffffff;
}

.blog-read-more {
  color: #ff0077;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: gap 0.3s ease;
  align-self: flex-start;
}

.blog-read-more:hover {
  gap: 1.5rem;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(0.5rem);
}

.blog-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 0, 119, 0.1);
  border-radius: 1.2rem;
  border: 2px solid rgba(255, 0, 119, 0.3);
}

.blog-cta-text {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-cta .button {
  font-size: 1.6rem;
  padding: 1.5rem 3.5rem;
}

/**
 * Responsive Design
 * ------------------------------------------------------------------ 
 */

@media only screen and (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
}

@media only screen and (max-width: 900px) {
  #blog {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  #blog .section-intro h1 {
    font-size: 3.6rem;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 2.5rem;
  }

  .blog-card {
    max-width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  #blog {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  #blog .section-intro {
    margin-bottom: 4rem;
  }

  #blog .section-intro h1 {
    font-size: 2.8rem;
  }

  #blog .section-intro .lead {
    font-size: 1.6rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-image {
    height: 20rem;
  }

  .blog-content-text {
    padding: 2rem;
  }

  .blog-content-text h3 {
    font-size: 2rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .blog-cta {
    padding: 3rem 1.5rem;
  }

  .blog-cta-text {
    font-size: 1.7rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.dark-mode #blog {
  background: #0a0a0a;
}

.dark-mode .blog-card {
  background: rgba(255, 255, 255, 0.03);
}

.dark-mode .blog-card:hover {
  background: rgba(255, 255, 255, 0.05);
}


/** 
 * ===================================================================
 * 14. Login-Section - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */

/* #login-section {
  font-family: 'Netflix Sans', "lora-regular", serif !important;
  background: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  text-align: center;
  max-width: 640px;
}
.login-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
}

.login-content h2 {
  position: relative;
  font-size: 3rem;
  padding-bottom: 2.1rem;
  color: #ffffff;
}

.login-content h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 100px;
  background: #ff0077;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -50px;
}

.login-content h2 a,
.login-content h2 a:visited {
  color: #ffffff;
}

.login-content span {
  color: #ff0077;
}

.Login-popup-btn {
  border-radius: 5px;
}

html:not(.dark-mode) #login-section {
  background: #e8e8e8;
}

html:not(.dark-mode) .login-lead {
  color: #212121;
}

html:not(.dark-mode) .login-content h2 {
  color: #313131;
}

html:not(.dark-mode) .login-content h2::after {
  background: rgba(0, 0, 0, 0.2);
}

html:not(.dark-mode) .login-content h2 a,
html:not(.dark-mode) .login-content h2 a:visited {
  color: #313131;
}

html:not(.dark-mode) .login-content span {
  color: #3f0d39;
} */

/**
 * Responsive Design
 * ------------------------------------------------------------------ 
 */

/* @media only screen and (max-width: 650px) {
  .login-container {
    max-width: 650px;
  }
  .login-container h2 {
    font-size: 2.4rem;
  }
  .login-lead {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 300px) {
  .login-container {
    max-width: 400px;
  }
  .login-container h2 {
    font-size: 2rem;
  }
  .Login-popup-btn {
    font-size: 1rem !important;
  }
} */


/** 
 * ===================================================================
 * 15. Login 
 *
 * ------------------------------------------------------------------- 
 */
/* 
.Login-popup-btn {
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.377);
  z-index: 999;
}

.popup-overlay.active {
  display: block;
  pointer-events: auto;
}

.wrapper {
  width: 30%;
  max-height: 95%;
  font-family: 'Netflix Sans', "lora-regular", serif !important;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(113, 113, 113, 0.459);
  border: 2px solid rgba(225, 225, 225, 0.5);
  border-radius: 10px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
  position: fixed;
  pointer-events: auto;
  left: 50%;
  top: 50%;
  z-index: 1000;
  scrollbar-width: none;
  -ms-overflow-style: none; 
}

.wrapper::-webkit-scrollbar {
  display: none;
}

.wrapper.active-popup {
  transform: translate(-50%, -50%) scale(1);
}

.wrapper.active {
  transition: transform 0.4s ease-in;
  height: auto;
  width: 30%;
}

.form-box {
  width: 100%;
  font-family: 'Netflix Sans', "lora-regular", serif !important;
  height: auto;
  padding: 50px 65px 40px;
  align-items: center;
  flex-shrink: 0;
}

.form-box.login {
  transition: transform 0.18s ease-in;
  transform: translateX(50%);
}

.wrapper.active .form-box.login {
  transition: none;
  transform: translateX(-50%);
}

.wrapper .form-box.register {
  transform: translateX(50%);
}

.wrapper.active .form-box.register {
  transform: translateX(-50%);
  transition: transform 0.25s ease-in;
}

.wrapper .icon-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: grey;
  font-size: 1.5em;
  color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 1;
}

.go-back-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.go-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #e5e5e5;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.go-back-link:hover {
  color: #ffffff;
}

.go-back-icon {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.go-back-link:hover .go-back-icon {
  transform: translateX(-3px);
}

.popup-heading {
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 3.2rem !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
  color: rgb(255, 255, 255) !important;
  text-align: center;
}

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: -13px
}
  
.input-container input {
    width: 100%;
    padding: 22px 13px 8px 13px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    font-size: 15px;
    color: rgb(255, 254, 254) !important;
    outline: none;
  }

.input-container input::placeholder {
  color: transparent;
}
  
.input-container label {
    position: absolute;
    font-family: 'Netflix Sans', "lora-regular", serif;
    top: 35%;
    left: 18px;
    transform: translateY(-50%);
    color: #ffffffb3;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0 5px;
}
  
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
    top: 3px;
    left: 11px;
    font-size: 13px;
    transform: translateY(0);
}

.input-container input:focus {
    border: 2px solid white;
}

.cancel-icon {
  width: 18px;
  height: 18px;
  fill: #f4030f;
  flex-shrink: 0;
  margin-right: 4px;
}

.error-message {
    font-family: 'Netflix Sans', "lora-regular", serif;
    display: flex;
    align-items: center;
    color: #f4030f;
    font-size: 13.5px;
    margin-top: -20px;
    margin-bottom: 20px;
    display: none;
    line-height: 1.7rem;
}

.password-error-message {
    font-family: 'Netflix Sans', "lora-regular", serif;
    display: flex;
    align-items: center;
    color: #f4030f;
    font-size: 13.5px;
    margin-bottom: 5px;
    display: none;
    line-height: 1.7rem;
}

.input-container input.input-error + label {
    bottom: 20px;
    background-color: transparent;
}

.input-error {
    border: 1px solid #e50914 !important;
}
  
.toggle-password {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    cursor: pointer;
    color: grey;
    font-size: 12px;
    display: none;
}
.input-container input.input-error ~ .toggle-password {
    top: 30%;
}

.ent-btns {
    align-items: center;
}

.sgn-in-btn {
    font-family: 'Netflix Sans', "lora-regular", serif;
    width: 100%;
    max-height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #e50914;
    margin: none !important;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

.sgn-in-btn:hover {
    background-color: #cc0610;
}

.ent-btns p {
    font-family: 'Netflix Sans', "lora-regular", serif;
    text-align: center;
    color: #ffffffb3;
    font-size: 17px;
    margin: 0;
}

.ent-btns-or {
    font-size: 17px !important;
    margin-top: -5px;
    margin-bottom: 0px;
    padding-bottom: 5px;
}

.ent-btns p span {
    cursor: pointer;
    text-decoration: underline;
    color: #fff;
    font-size: 17px;
}

.sgn-code-btn {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.sgn-code-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.code-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.code-container h1 {
    color: #ffffff;
    margin: 0;
}

.code-container p{
  font-size: 16px !important;
}

.otp-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.otp-inputarea {
  text-align: center;
  margin-top: 15px;
  font-size: 24px;
  border: 2px solid #383838 !important;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
  width: 50px;
  height: 50px;
}

.otp-inputarea::-webkit-inner-spin-button,
.otp-inputarea::-webkit-outer-spin-button{
    display: none;
}

.otp-inputarea:focus {
  border-color: #ff4081;
}

.code-cont-para {
  margin-bottom: 20px !important;
  display: flex;
}

#resend-code-link {
  color: #dddee0;
  font-size: 16px;
  cursor: pointer;
  margin-left: 5px;
}

.Remember-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

#remember-me {
    background-color: white;
    border: 1px solid white;
    width: 17px;
    height: 17px;
    margin: 0;
    padding-right: 12px;
    cursor: pointer;
}

#remember-me:hover {
    background-color: #e50914;
    border-color: #e50914;
}

.rmbr-me {
    font-family: 'Netflix Sans', "lora-regular", serif;
    color: #c9c6c6;
    font-size: 16px;
    padding-left: 10px;
    font-weight: 600 !important;;
    margin: 0;
}

.popup-links {
  color: aquamarine !important;
}

.login h2 {
    font-size: 16px;
    padding-top: 17px;
    margin: 0;
    color: #ffffffb3;
}

.login h2 a {
    font-family: 'Netflix Sans', "lora-regular", serif;
    color: rgb(255, 255, 255);
    padding-left: 5px;
    margin: 0;
    cursor: pointer;
}

.login h2 a:hover {
    text-decoration: underline;
    color: #e50914;
}

.login p {
    font-family: 'Netflix Sans', "lora-regular", serif;
    font-size: 13px;
    color: #ffffff80;
    line-height: 2rem;
    margin: 0;
    padding-top: 10px;
}

.login p a {
    color: #448EF4;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

#confirm-password-container {
  margin-top: 15px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: #bcbbbb;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}

.divider span {
  color: #fffafa;
}

.social-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-btn {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f8faffbd;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.social-btn:hover {
  background-color: #e0e0e0;
}

.logo-icon {
  width: 50px;
  height: auto;
  margin-left: -20px;
}

.logo-text {
  height: auto;
  width: 60px;
  margin-left: -10px;
}

.microsoft-logo {
  width: 110px;
  height: auto;
}

.social-btn.google {
  border-color: #4285F4;
}

.social-btn.microsoft {
  border-color: #0078D4;
}

.register h2 {
    font-family: 'Netflix Sans', "lora-regular", serif;
    font-size: 16px;
    padding-top: 17px;
    margin: 0;
    color: #ffffffb3;
}

.register h2 a {
    color: rgb(249, 249, 249);
    padding-left: 5px;
    margin: 0;
    cursor: pointer;
}

.register h2 a:hover {
    text-decoration: underline;
    color: #e50914;
}

.register p {
    font-family: 'Netflix Sans', "lora-regular", serif;
    font-size: 13px;
    color: #ffffff80;
    line-height: 2rem;
    margin: 0;
    padding-top: 10px;
}

.register p a {
    color: #448EF4;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 10px;
}

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

.strength-meter {
  width: 100%;
  height: 10px;
  background-color: #ddd;
  border-radius: 3px;
  margin-top: -20px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

.strength-text {
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 14px;
  margin-top: 4px;
  color: #ccc;
}

.strength-weak {
  background-color: #e74c3c;
}

.strength-medium {
  background-color: #f1c40f;
}

.strength-strong {
  background-color: #2ecc71;
}

#forgot-password-container {
  font-family: 'Netflix Sans', "lora-regular", serif;
  text-align: center;
  display: none;
}

#forgot-password-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

#forgot-pass-input-container {
  margin-bottom: 30px;
}

#forgot-password-submit-btn {
  margin-bottom: 25px;
}

#forgot-password-container a {
  color: #dfe0e2;
  text-decoration: underline;
  cursor: pointer;
}

#forgot-password-success-container {
  text-align: left;
}

.popup-heading-success {
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 3.5rem !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
  margin-top: 25px !important;
  color: rgb(255, 255, 255) !important;
  text-align: left;
}

.forgot-password-heading {
  font-family: 'Netflix Sans', "lora-regular", serif;
  font-size: 3.2rem !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
  margin-top: 25px !important;
  color: rgb(255, 255, 255) !important;
  text-align: center;
}

#forgot-password-success-container p {
  font-size: 14.5px;
  color: #ffffffb3;
  margin-bottom: 20px;
}

#forgot-password-input-container {
  margin-top: 30px !important;  
  margin-bottom: 5px !important;
}

#forgot-confirm-password-container {
  margin-top: 25px;
  margin-bottom: 25px;
} */

/**
 * Responsive Design
 * ------------------------------------------------------------------ 
 */

/* @media only screen and (max-width: 1300px) {
  .form-box {
    padding: 50px 45px 40px;
  }
}

@media only screen and (max-width: 1265px) {
  .login h2 {
    font-size: 15px;
  }
  .login p {
    font-size: 12px;
  }
  .login p a {
    font-size: 13px;
  }
    .register p {
    font-size: 12px;
  }
  .register p a {
    font-size: 13px;
  }

}

@media only screen and (max-width: 1205px) {
  .login h2 {
    font-size: 14px;
  }
  #forgot-password-container p {
  font-size: 15px;
  }
  .register h2 {
    font-size: 14px;
  }

}

@media only screen and (max-width: 1150px) {
  .login h2 {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1100px) {
  .wrapper,
  .wrapper.active {
    width: 35%;
  }
  .form-box {
    padding: 50px 45px 40px;
  }
  .login h2 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 990px) {
  .wrapper,
  .wrapper.active {
    width: 40%;
  }
}

@media only screen and (max-width: 860px) {
  .wrapper,
  .wrapper.active {
    width: 45%;
  }
}

@media only screen and (max-width: 770px) {
  .wrapper,
  .wrapper.active {
    width: 50%;
  }


}

@media only screen and (max-width: 690px) {
  .wrapper,
  .wrapper.active {
    width: 55%;
  }
}

@media only screen and (max-width: 630px) {
  .wrapper,
  .wrapper.active {
    width: 60%;
  }
  .form-box {
    padding: 50px 38px 40px;
  }
}

@media only screen and (max-width: 560px) {
  .wrapper,
  .wrapper.active {
    width: 65%;
  }
  .form-box {
    padding: 50px 37px 40px;
  }
}

@media only screen and (max-width: 506px) {
  .wrapper,
  .wrapper.active {
    width: 70%;
  }
  .form-box {
    padding: 50px 35px 40px;
  }
}

@media only screen and (max-width: 465px) {
  .wrapper,
  .wrapper.active {
    width: 75%;
  }
  .form-box {
    padding: 50px 30px 40px;
  }
  .login h2 {
    font-size: 13px;
  }
  .login p,
  .register p {
    font-size: 12px;
  }
  .login p a,
  .register p a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 400px) {
  .wrapper,
  .wrapper.active {
    width: 80%;
  }
  .form-box {
    padding: 50px 30px 40px;
  }
}

@media only screen and (max-width: 370px) {
  .wrapper,
  .wrapper.active {
    width: 85%;
  }
}

@media only screen and (max-width: 350px) {
  .wrapper,
  .wrapper.active {
    width: 90%;
  }
}

@media only screen and (max-width: 320px) {
  .wrapper,
  .wrapper.active {
    width: 95%;
  }
}

@media only screen and (max-width: 300px) {
  .wrapper,
  .wrapper.active {
    width: 100%;
  }
} */

/** 
 * ===================================================================
 * 16. services - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#services {
  background: #313131 url(../images/bg.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 12rem;
  padding-bottom: 12rem;
  color: white;
  position: relative;
}

#services .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.85);
  z-index: 1;
}

#services .row {
  position: relative;
  z-index: 2;
}

#services .section-intro {
  margin-bottom: 1.8rem;
}

#services .section-intro h1 {
  color: #ff0077;
  font-size: 4.2rem;
  font-weight: bold;
}

#services .section-intro h5 {
  color: #ff0077;
}

#services .section-intro p {
  color: var(--text-secondary);
}

html:not(.dark-mode) #services {
  background: #e8e8e8 url(../images/bg.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  color: #313131;
}

html:not(.dark-mode) #services .overlay {
  background: rgba(232, 232, 232, 0.75);
}

html:not(.dark-mode) #services .section-intro h1 {
  color: #ff0077;
}

html:not(.dark-mode) #services .section-intro h5 {
  color: #ff0077;
}

html:not(.dark-mode) #services .section-intro p {
  color: #6e6e6e;
}

.services-content {
  max-width: 1200px;
}

.services-list {
  margin-top: 1.2rem;
  text-align: center;
}

.services-list .service {
  margin-bottom: 1.2rem;
  padding: 0 30px;
}

.services-list .icon {
  display: inline-block;
  margin-bottom: 2.1rem;
}

.services-list .icon i {
  font-size: 6rem !important;
  color: #ff0077;
}

.services-list h3 {
  color: var(--text-primary);
}

.services-list .desc {
  color: var(--text-secondary);
  font-family:"poppins-regular", sans-serif !important;
  padding-top: 5px;
}

html:not(.dark-mode) .services-list h3 {
  color: #313131;
}

html:not(.dark-mode) .services-list .desc {
  color: #6e6e6e;
  font-family:"poppins-regular", sans-serif !important;
  padding-top: 5px;
}

.owl-pagination {
  text-align: center;
  width: 100%;
  margin: 0.6rem 0 0;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 1.2rem 0.8rem 0 0.8rem;
  border-radius: 50%;
  display: inline-block;
  background: #ffffff;
}

.owl-theme .owl-controls .owl-page.active span {
  background: #ff0077;
}

/** 
 * ===================================================================
 * 17. stats - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#stats {
  background: #0f0f0f !important;
  padding-top: 7.2rem;
  padding-bottom: 3rem;
  text-align: center;
}

#stats .row {
  max-width: 1440px;
}

#stats .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 17.4rem;
}

#stats .stat:first-child {
  border: none;
}

#stats .icon-part i {
  font-size: 5.5rem !important;
  color: #ff0077;
}

#stats .stat-count {
  color: #ffffff;
  font-size: 3.6rem;
  margin-top: 1.2rem;
  margin-bottom: 0;
  font-family: 'Netflix-Sans-Medium', "poppins-medium", sans-serif;
}

#stats .stat-title {
  color: #ff0077;
  font-weight: bold;
  font-size: 1.1rem;
}

html:not(.dark-mode) #stats {
  background: #f8f9fa !important;
}

html:not(.dark-mode) #stats .stat {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) #stats .icon-part i {
  color: #ff0077;
}

html:not(.dark-mode) #stats .stat-count {
  color: #313131;
}

html:not(.dark-mode) #stats .stat-title {
  color: #ff0077;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  #stats .stat:nth-child(n) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1.5rem;
  }

  #stats .stat:nth-child(3n + 1) {
    border: none;
  }
}

@media only screen and (max-width: 768px) {
  #stats .stat:nth-child(n) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  #stats .stat:nth-child(2n + 1) {
    border: none;
  }
}

@media only screen and (max-width: 600px) {
  #stats .stat:nth-child(n) {
    border: none;
  }
}

/** 
 * ===================================================================
 * 18. contact - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
#contact {
  background: var(--bg-primary);
  padding-top: 12rem;
  padding-bottom: 7.2rem;
}

#contact .section-intro h1 {
  color: #ff0077;
  font-size: 4.2rem;
  font-weight: bold;
}

#contact .section-intro h5 {
  color: #ff0077;
}

#contact .section-intro p {
  color: var(--text-secondary);
}

html:not(.dark-mode) #contact .section-intro h1 {
  color: #ff0077;
}

html:not(.dark-mode) #contact .section-intro p {
  color: #6e6e6e;
}

.contact-form {
  max-width: 740px;
}

.contact-form .placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

#contact form {
  margin-top: 0;
  margin-bottom: 3rem;
}

#contact form .form-field {
  position: relative;
}

#contact form .form-field:before,
#contact form .form-field:after {
  content: "";
  display: table;
}

#contact form .form-field:after {
  clear: both;
}

#contact form .form-field label {
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  font-size: 1.1rem;
  line-height: 2.4rem;
  position: absolute;
  bottom: -1.2rem;
  right: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 0 2rem;
  margin: 0;
  color: #ffffff;
  background: #ff0077;
}

#contact form .form-field label::after {
  position: absolute;
  left: -5px;
  top: 50%;
  margin-top: -6px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #ff0077;
  content: "";
}

#contact input[type="text"],
#contact input[type="password"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  color: var(--text-secondary);
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
}

#contact input[type="text"],
#contact input[type="password"],
#contact input[type="email"] {
  height: 6.6rem;
  padding: 1.8rem 2rem;
}

#contact input[type="text"]:focus,
#contact input[type="password"]:focus,
#contact input[type="email"]:focus {
  border-color: #ff0077;
  color: var(--text-primary);
}

#contact textarea {
  min-height: 20rem;
  padding: 1.8rem 2rem;
}

#contact textarea:focus {
  border-color: #ff0077;
  color: var(--text-primary);
}

html:not(.dark-mode) #contact input[type="text"],
html:not(.dark-mode) #contact input[type="password"],
html:not(.dark-mode) #contact input[type="email"],
html:not(.dark-mode) #contact textarea {
  color: #6e6e6e;
  border-bottom: 1px solid #e9ecef;
}

html:not(.dark-mode) #contact input[type="text"]:focus,
html:not(.dark-mode) #contact input[type="password"]:focus,
html:not(.dark-mode) #contact input[type="email"]:focus,
html:not(.dark-mode) #contact textarea:focus {
  color: #313131;
}

#contact button.submitform {
  font-size: 1.5rem;
  display: block;
  letter-spacing: 0.2rem;
  height: 6.6rem;
  line-height: 6.6rem;
  padding: 0 3rem;
  margin-top: 4.8rem;
  width: 100%;
  background: #ff0077;
  color: #ffffff;
}

#contact button.submitform:hover,
#contact button.submitform:focus {
  background: #cc005f;
}

#message-warning,
#message-success {
  display: none;
  background: #0d0d0d;
  border-radius: 3px;
  padding: 3rem;
  margin-bottom: 3.6rem;
  width: 100%;
}

#message-warning {
  color: #fa0003;
}

#message-success {
  color: #008000;
}

#message-warning i,
#message-success i {
  margin-right: 10px;
}

#submit-loader {
  display: none;
  position: relative;
  left: 0;
  top: 1.8rem;
  width: 100%;
  text-align: center;
}

#submit-loader .text-loader {
  display: none;
  font-family: 'Netflix-Sans-Bold', "poppins-bold", sans-serif;
  color: #ffffff;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

.oldie #submit-loader .s-loader {
  display: none;
}

.oldie #submit-loader .text-loader {
  display: block;
}

.contact-info {
  margin: 4.8rem auto 0;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.contact-info .collapse {
  padding: 0;
}

.contact-info .icon {
  margin-bottom: 2.1rem;
}

.contact-info .icon i {
  font-size: 4.2rem;
  color: #ffffff;
}

.contact-info h5 {
  color: #ff0077;
}

/**
 * loader animation - (_layout.scss)
 * --------------------------------------------------------------- 
 */
.s-loader {
  margin: 1.2rem auto 3rem;
  width: 70px;
  text-align: center;
  transform: translateX(0.45rem);
}

.s-loader>div {
  width: 1rem;
  height: 1rem;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  margin-right: 0.9rem;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.s-loader .bounce1 {
  animation-delay: -0.32s;
}

.s-loader .bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/** 
 * ===================================================================
 * 19. footer - (_layout.scss)
 *
 * ------------------------------------------------------------------- 
 */
footer {
  padding-bottom: 3rem;
  font-size: 1.4rem;
  font-family: 'Netflix Sans', "poppins-regular", sans-serif;
}

footer a,
footer a:visited {
  color: #ffffff;
}

footer a:hover,
footer a:focus {
  color: #ff0077;
}

footer .row {
  max-width: 900px;
}

footer .social {
  text-align: right;
}

footer .footer-social {
  display: inline-block;
  font-size: 2.1rem;
  margin: 0;
  padding: 0;
  position: relative;
  top: -0.3rem;
}

footer .footer-social li {
  display: inline-block;
  margin: 0 12px;
  padding: 0;
}

footer .footer-social li a {
  color: #ffffff;
}

footer .footer-social li a:hover,
footer .footer-social li a:focus {
  color: #cc005f;
}

footer .copyright span {
  display: inline-block;
}

footer .copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 1rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.1);
}

footer .copyright span:last-child::after {
  display: none;
}

@media only screen and (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .social {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  footer .copyright span {
    display: block;
  }

  footer .copyright span::after {
    display: none;
  }
}

/**
 * go to top - (_layout.scss)
 * ------------------------------------------------------------------- 
 */
#go-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 600;
  display: none;
}

#go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.6rem;
  width: 6rem;
  line-height: 6.6rem;
  text-align: center;
  background: #cc005f;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#go-top a i {
  font-size: 1.6rem;
  line-height: inherit;
}

#go-top a:hover {
  background: #000000;
}

@media only screen and (max-width: 768px) {
  #go-top a {
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
  }

  #go-top a i {
    font-size: 1.8rem;
  }
}

.fa {
  display: inline-block !important;
  font: normal normal normal 14px/1 FontAwesome !important;
  font-size: inherit !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.services-list .icon i,
#stats .icon-part i {
  display: inline-block !important;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  text-decoration: inherit !important;
  line-height: 1 !important;
}

.tech-skills-section {
  padding-bottom: 7rem;
}

.tech-skills-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.tech-card:nth-child(8),
.tech-card:nth-child(9),
.tech-card:nth-child(10),
.tech-card:nth-child(11),
.tech-card:nth-child(12) {
  grid-column: auto;
}

.tech-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  padding: 1rem 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  width: 140px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tech-card i {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tech-card span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tech-card:nth-child(1) {
  background: linear-gradient(135deg, #3776ab 0%, #4b8bbe 100%);
}

.tech-card:nth-child(2) {
  background: linear-gradient(135deg, #f7df1e 0%, #ffeb3b 100%);
}

.tech-card:nth-child(3) {
  background: linear-gradient(135deg, #e34f26 0%, #f06529 100%);
}

.tech-card:nth-child(4) {
  background: linear-gradient(135deg, #1572b6 0%, #33a9dc 100%);
}

.tech-card:nth-child(5) {
  background: linear-gradient(135deg, #61dafb 0%, #21a6c1 100%);
}

.tech-card:nth-child(6) {
  background: linear-gradient(135deg, #68a063 0%, #8bc34a 100%);
}

.tech-card:nth-child(7) {
  background: linear-gradient(135deg, #f05032 0%, #ff6b35 100%);
}

.tech-card:nth-child(8) {
  background: linear-gradient(135deg, #24292e 0%, #586069 100%);
}

.tech-card:nth-child(9) {
  background: linear-gradient(135deg, #4479a1 0%, #00758f 100%);
}

.tech-card:nth-child(10) {
  background: linear-gradient(135deg, #7952b3 0%, #563d7c 100%);
}

.tech-card:nth-child(11) {
  background: linear-gradient(135deg, #f24e1e 0%, #a259ff 100%);
}

.tech-card:nth-child(12) {
  background: linear-gradient(135deg, #cb3837 0%, #ff6b6b 100%);
}

.tech-card:nth-child(13) {
  background: linear-gradient(135deg, #2496ed 0%, #0db7ed 100%);
}

.tech-card:nth-child(14) {
  background: linear-gradient(135deg, #ff9900 0%, #ffb84d 100%);
}

.tech-card:nth-child(15) {
  background: linear-gradient(135deg, #dd0031 0%, #c3002f 100%);
}

.tech-card:nth-child(16) {
  background: linear-gradient(135deg, #4fc08d 0%, #35495e 100%);
}

.tech-card:nth-child(17) {
  background: linear-gradient(135deg, #cc6699 0%, #ff6b9d 100%);
}

.tech-card:nth-child(18) {
  background: linear-gradient(135deg, #21759b 0%, #00a0d2 100%);
}

.tech-card:nth-child(19) {
  background: linear-gradient(135deg, #777bb4 0%, #8892bf 100%);
}

.tech-card:nth-child(20) {
  background: linear-gradient(135deg, #ed8b00 0%, #f89820 100%);
}

.tech-card:nth-child(21) {
  background: linear-gradient(135deg, #fcc624 0%, #333333 100%);
}

.tech-card:nth-child(22) {
  background: linear-gradient(135deg, #007acc 0%, #0098ff 100%);
}

.tech-card:nth-child(23) {
  background: linear-gradient(135deg, #fc6d26 0%, #fca326 100%);
}

.tech-card:nth-child(24) {
  background: linear-gradient(135deg, #4db33d 0%, #3f9b32 100%);
}

.tech-card:nth-child(9) {
  background: linear-gradient(135deg, #336791 0%, #4a90e2 100%);
}

.tech-card:nth-child(10) {
  background: linear-gradient(135deg, #7952b3 0%, #9c27b0 100%);
}

.tech-card:nth-child(11) {
  background: linear-gradient(135deg, #f24e1e 0%, #ff6154 100%);
}

.tech-card:nth-child(12) {
  background: linear-gradient(135deg, #cb3837 0%, #e53e3e 100%);
}

html.dark-mode .tech-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

html:not(.dark-mode) .tech-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.skills-title {
  font-size: 2.6rem;
  align-items: center;
  text-align: center;
}

.skills-subtitle {
  color: var(--text-secondary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .tech-skills-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    max-width: 500px;
  }

  .tech-card:nth-child(8),
  .tech-card:nth-child(9),
  .tech-card:nth-child(10),
  .tech-card:nth-child(11),
  .tech-card:nth-child(12) {
    grid-column: auto;
  }

  .tech-card {
    padding: 0.8rem 0.6rem;
    min-height: 85px;
    width: 80px;
  }

  .tech-card i {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .tech-card span {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .tech-skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    max-width: 350px;
  }

  .tech-card {
    padding: 0.6rem 0.4rem;
    min-height: 75px;
    width: 70px;
  }

  .tech-card i {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .tech-card span {
    font-size: 0.75rem;
  }
}

@media only screen and (max-width: 280px) {
  #go-top {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 600;
    display: none;
  }
}

/* ===================================================================
 * ENHANCED MOBILE RESPONSIVENESS
 * =================================================================== */

@media only screen and (max-width: 480px) {

  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .row {
    margin: 0 -1rem;
  }

  .row [class*="col-"] {
    padding: 0 1rem;
  }

  h1,
  .h01 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  h2,
  .h02 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }

  h3,
  .h03 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  h4,
  .h04 {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  h5,
  .h05 {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }

  p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .nav-container {
    height: 60px;
    padding: 0 1.5rem;
  }

  .nav-logo a {
    font-size: 1.8rem;
  }

  .nav-menu {
    top: 60px;
  }

  .nav-link {
    font-size: 1.6rem;
    padding: 1.5rem;
  }

  #intro {
    padding: 0 1.5rem;
    min-height: 100vh;
    background-attachment: scroll !important;
  }

  .intro-content {
    text-align: center;
    padding: 8rem 0 6rem;
  }

  #intro h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  #intro h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  #intro p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .intro-social {
    margin-top: 2rem;
  }

  .intro-social li {
    display: inline-block;
    margin: 0 0.5rem;
  }

  .intro-social li a {
    font-size: 2rem;
    padding: 1rem;
  }

  .btn {
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    margin: 0.5rem;
    display: inline-block;
    width: auto;
  }

  .btn.full-width {
    width: 100%;
    margin: 0.5rem 0;
  }

  #about {
    padding: 4rem 1.5rem;
  }

  .about-content {
    text-align: center;
  }

  .about-info {
    margin-bottom: 3rem;
  }

  #resume {
    padding: 4rem 1.5rem;
  }

  .timeline {
    margin-left: 0;
    padding-left: 2rem;
  }

  .timeline-content h3 {
    font-size: 1.6rem;
  }

  .timeline-content h4 {
    font-size: 1.4rem;
  }

  .timeline-content p {
    font-size: 1.3rem;
  }

  #portfolio {
    padding: 4rem 1.5rem;
  }

  .folio-item {
    margin-bottom: 2rem;
    padding: 5px;
  }

  .folio-item img {
    width: 100%;
    height: auto;
  }

  #contact {
    padding: 4rem 1.5rem;
  }

  .contact-form {
    margin-bottom: 3rem;
  }

  .form-field {
    margin-bottom: 2rem;
  }

  input[type="text"],
  input[type="password"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  textarea {
    min-height: 120px;
  }

  .stats {
    padding: 3rem 1.5rem;
  }

  .stat {
    margin-bottom: 2rem;
    text-align: center;
  }

  .stat-count {
    font-size: 3rem;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
  }

  .footer-social {
    margin-bottom: 2rem;
  }

  .footer-social li {
    margin: 0 0.5rem;
  }

  #go-top {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 50px;
    height: 50px;
  }

  #go-top a {
    font-size: 1.8rem;
    line-height: 50px;
  }
}

@media only screen and (max-width: 768px) {

  section {
    padding: 5rem 2rem;
  }

  .container,
  .narrow {
    max-width: 100%;
    padding: 0 2rem;
  }

  .grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flex-container {
    flex-direction: column;
  }

  .flex-container>* {
    margin-bottom: 2rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: 500px;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-block {
    margin-left: 3rem;
  }

  .timeline-img {
    left: 0;
  }

  .timeline-content {
    margin-left: 0;
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 992px) {

  .nav-container {
    padding: 0 2rem;
  }

  .row [class*="col-"] {
    padding: 0 1.5rem;
  }

  h1,
  .h01 {
    font-size: 3rem;
  }

  h2,
  .h02 {
    font-size: 2.6rem;
  }

  section {
    padding: 6rem 2rem;
  }
}

@media (hover: none) and (pointer: coarse) {

  .nav-link,
  .btn,
  .social-link,
  .portfolio-item,
  .timeline-block {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link:hover,
  .btn:hover,
  .social-link:hover {
    transform: none;
    transition: none;
  }

  .btn {
    margin: 0.5rem;
    padding: 1.2rem 2rem;
  }
}

@media only screen and (max-height: 500px) and (orientation: landscape) {

  #intro {
    min-height: 500px;
  }

  .intro-content {
    padding: 4rem 0 2rem;
  }

  #intro h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  #intro p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .intro-social {
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 320px) {

  body {
    font-size: 1.3rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo a {
    font-size: 1.6rem;
  }

  section {
    padding: 3rem 1rem;
  }

  h1,
  .h01 {
    font-size: 2rem;
  }

  h2,
  .h02 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }

  .tech-skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .tech-card {
    padding: 0.5rem 0.3rem;
    min-height: 65px;
    width: 60px;
  }

  .tech-card i {
    font-size: 1.2rem;
  }

  .tech-card span {
    font-size: 0.7rem;
  }
}

/* ===================================================================
 * ACCESSIBILITY & PERFORMANCE IMPROVEMENTS
 * =================================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --shadow: rgba(0, 0, 0, 0.5);
    --border-color: #000000;
  }

  html.dark-mode {
    --shadow: rgba(255, 255, 255, 0.5);
    --border-color: #ffffff;
  }
}

*:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.nav-link:focus,
.btn:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

::selection {
  background: var(--accent-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--accent-color);
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  header,
  .nav-toggle,
  .intro-social,
  #go-top {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  p,
  li {
    orphans: 3;
    widows: 3;
  }

  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}

/*
 *  TOC:
 *  01. reset
 *  02. basic/base setup styles
 *  03. grid
 *  04. MISC
 *
 * =================================================================== 
 *
 * ===================================================================
 * 01. reset - normalize.css v3.0.2 | MIT License | git.io/normalize
 *
 * ------------------------------------------------------------------- 
 */
html {
  font-family: sans-serif;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  box-sizing: content-box;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/** 
 * ===================================================================
 * 02. basic/base setup styles - (_basic.scss)
 *
 * ------------------------------------------------------------------- 
 */
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-weight: normal;
  line-height: 1;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
}

/**
 * Media - (_basic.scss)
 * ------------------------------------------------------------------- 
 */
img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Typography resets - (_basic.scss)
 * ------------------------------------------------------------------- 
 */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

ol,
ul {
  list-style: none;
}

li {
  display: block;
}

/**
 * links - (_basic.scss)
 * ------------------------------------------------------------------- 
 */
a {
  text-decoration: none;
  line-height: inherit;
}

a img {
  border: none;
}

/**
 * inputs - (_basic.scss)
 * ------------------------------------------------------------------- 
 */
fieldset {
  margin: 0;
  padding: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  appearance: none;
}

/** 
 * ===================================================================
 * 03. grid - (_grid.scss)
 *
 * ------------------------------------------------------------------- 
 */
.row {
  width: 94%;
  max-width: 1140px;
  margin: 0 auto;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

.row .row {
  width: auto;
  max-width: none;
  margin-left: -20px;
  margin-right: -20px;
}

[class*="col-"],
.bgrid {
  float: left;
}

[class*="col-"]+[class*="col-"].end {
  float: right;
}

[class*="col-"] {
  padding: 0 20px;
}

.col-one {
  width: 8.33333%;
}

.col-two,
.col-1-6 {
  width: 16.66667%;
}

.col-three,
.col-1-4 {
  width: 25%;
}

.col-four,
.col-1-3 {
  width: 33.33333%;
}

.col-five {
  width: 41.66667%;
}

.col-six,
.col-1-2 {
  width: 50%;
}

.col-seven {
  width: 58.33333%;
}

.col-eight,
.col-2-3 {
  width: 66.66667%;
}

.col-nine,
.col-3-4 {
  width: 75%;
}

.col-ten,
.col-5-6 {
  width: 83.33333%;
}

.col-eleven {
  width: 91.66667%;
}

.col-twelve,
.col-full {
  width: 100%;
}

/**
 * small screens - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 1024px) {
  .row .row {
    margin-left: -18px;
    margin-right: -18px;
  }

  [class*="col-"] {
    padding: 0 18px;
  }
}

/**
 * tablets - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 768px) {
  .row {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .row .row {
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px;
    margin-right: -15px;
  }

  [class*="col-"] {
    padding: 0 15px;
  }

  .tab-1-4 {
    width: 25%;
  }

  .tab-1-3 {
    width: 33.33333%;
  }

  .tab-1-2 {
    width: 50%;
  }

  .tab-2-3 {
    width: 66.66667%;
  }

  .tab-3-4 {
    width: 75%;
  }

  .tab-full {
    width: 100%;
  }
}

/**
 * large mobile devices - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 600px) {
  .row {
    padding-left: 25px;
    padding-right: 25px;
  }

  .row .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  [class*="col-"] {
    padding: 0 10px;
  }

  .mob-1-4 {
    width: 25%;
  }

  .mob-1-2 {
    width: 50%;
  }

  .mob-3-4 {
    width: 75%;
  }

  .mob-full {
    width: 100%;
  }
}

/**
 * small mobile devices - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 400px) {
  .row .row {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  [class*="col-"] {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  [class*="col-"]+[class*="col-"].end {
    float: none;
  }
}

/** 
 * ===================================================================
 * block grids - (_grid.scss)
 *
 * ------------------------------------------------------------------- 
 */
[class*="block-"]:before,
[class*="block-"]:after {
  content: "";
  display: table;
}

[class*="block-"]:after {
  clear: both;
}

.block-1-6 .bgrid {
  width: 16.66667%;
}

.block-1-4 .bgrid {
  width: 25%;
}

.block-1-3 .bgrid {
  width: 33.33333%;
}

.block-1-2 .bgrid {
  width: 50%;
}

/**
 * Clearing for block grid columns. Allow columns with 
 * different heights to align properly.
 */
.block-1-6 .bgrid:nth-child(6n + 1),
.block-1-4 .bgrid:nth-child(4n + 1),
.block-1-3 .bgrid:nth-child(3n + 1),
.block-1-2 .bgrid:nth-child(2n + 1) {
  clear: both;
}

/**
 * small screens - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 1024px) {
  .block-s-1-6 .bgrid {
    width: 16.66667%;
  }

  .block-s-1-4 .bgrid {
    width: 25%;
  }

  .block-s-1-3 .bgrid {
    width: 33.33333%;
  }

  .block-s-1-2 .bgrid {
    width: 50%;
  }

  .block-s-full .bgrid {
    width: 100%;
    clear: both;
  }

  [class*="block-s-"] .bgrid:nth-child(n) {
    clear: none;
  }

  .block-s-1-6 .bgrid:nth-child(6n + 1),
  .block-s-1-4 .bgrid:nth-child(4n + 1),
  .block-s-1-3 .bgrid:nth-child(3n + 1),
  .block-s-1-2 .bgrid:nth-child(2n + 1) {
    clear: both;
  }
}

/**
 * tablets - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 768px) {
  .block-tab-1-6 .bgrid {
    width: 16.66667%;
  }

  .block-tab-1-4 .bgrid {
    width: 25%;
  }

  .block-tab-1-3 .bgrid {
    width: 33.33333%;
  }

  .block-tab-1-2 .bgrid {
    width: 50%;
  }

  .block-tab-full .bgrid {
    width: 100%;
    clear: both;
  }

  [class*="block-tab-"] .bgrid:nth-child(n) {
    clear: none;
  }

  .block-tab-1-6 .bgrid:nth-child(6n + 1),
  .block-tab-1-4 .bgrid:nth-child(4n + 1),
  .block-tab-1-3 .bgrid:nth-child(3n + 1),
  .block-tab-1-2 .bgrid:nth-child(2n + 1) {
    clear: both;
  }
}

/**
 * large mobile devices - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 600px) {
  .block-mob-1-6 .bgrid {
    width: 16.66667%;
  }

  .block-mob-1-4 .bgrid {
    width: 25%;
  }

  .block-mob-1-3 .bgrid {
    width: 33.33333%;
  }

  .block-mob-1-2 .bgrid {
    width: 50%;
  }

  .block-mob-full .bgrid {
    width: 100%;
    clear: both;
  }

  [class*="block-mob-"] .bgrid:nth-child(n) {
    clear: none;
  }

  .block-mob-1-6 .bgrid:nth-child(6n + 1),
  .block-mob-1-4 .bgrid:nth-child(4n + 1),
  .block-mob-1-3 .bgrid:nth-child(3n + 1),
  .block-mob-1-2 .bgrid:nth-child(2n + 1) {
    clear: both;
  }
}

/**
 * stack on small mobile devices - (_grid.scss)
 * --------------------------------------------------------------- 
 */
@media screen and (max-width: 400px) {
  .stack .bgrid {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
}

/** 
 * ===================================================================
 * 04. MISC  - (_grid.scss)
 *
 * ------------------------------------------------------------------- 
 */

/**
 * Clearing - (http://nicolasgallagher.com/micro-clearfix-hack/
 */
.group:before,
.group:after {
  content: "";
  display: table;
}

.group:after {
  clear: both;
}

/**
 * Misc Helper Styles 
 */
.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.remove-bottom {
  margin-bottom: 0;
}

.half-bottom {
  margin-bottom: 1.5rem !important;
}

.add-bottom {
  margin-bottom: 3rem !important;
}

.no-border {
  border: none;
}

.full-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/*
 * Custom Font
================================================================================ */
@font-face {
  font-family: 'Netflix Sans';
  src: url('../fonts/Custom-Font/NetflixSans_W_Rg.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Netflix-Sans-Medium';
  src: url('../fonts/Custom-Font/NetflixSans_W_Md.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Netflix-Sans-Bold';
  src: url('../fonts/Custom-Font/NetflixSans_W_Bd.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

/**
 * Font Display Optimization
 * Overrides font-face declarations to use font-display: swap
 * Ensures text remains visible during webfont load (prevents FOIT)
 */

/* Font Awesome Brands - Optimized */
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2) format('woff2');
}

/* Font Awesome Solid - Optimized */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2) format('woff2');
}

/* Font Awesome Regular - Optimized */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2) format('woff2');
}

/* Font Awesome v4 Compatibility - Optimized */
@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-v4compatibility.woff2) format('woff2');
}

/* Fallback font stack to minimize layout shift */
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
.fa-brands,
.fa-solid,
.fa-regular {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Size adjustments to match font metrics (reduce CLS) */
.fa,
.fas,
.far,
.fab {
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

/* Prevent layout shift during font swap */
.fa::before,
.fas::before,
.far::before,
.fab::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optional: Add size-adjust for better metric matching */
@supports (size-adjust: 100%) {
  @font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    size-adjust: 100%;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2) format('woff2');
  }

  @font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    size-adjust: 100%;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2) format('woff2');
  }
}

/* Custom Font Awesome Subset - Only Used Icons (~96% smaller than full version) */

/* Core Font Awesome Base Styles */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa,
.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* Animation */
.fa-spin {
  animation: fa-spin 2s linear infinite;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Icon Definitions - Only icons actually used in your site */
/* Solid Icons (fas) */
.fa-user::before {
  content: "\f007";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-sun::before {
  content: "\f185";
}

.fa-moon::before {
  content: "\f186";
}

.fa-code::before {
  content: "\f121";
}

.fa-heart::before {
  content: "\f004";
}

.fa-cube::before {
  content: "\f1b2";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-server::before {
  content: "\f233";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-leaf::before {
  content: "\f06c";
}

.fa-cloud::before {
  content: "\f0c2";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-clock-o::before,
.fa-clock::before {
  content: "\f017";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-times::before {
  content: "\f00d";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-mobile::before {
  content: "\f10b";
}

.fa-paint-brush::before {
  content: "\f1fc";
}

.fa-image::before {
  content: "\f03e";
}

.fa-comments::before {
  content: "\f086";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

.fa-check::before {
  content: "\f00c";
}

.fa-arrow-up::before {
  content: "\f062";
}

/* Regular Icons (far) */
.fa-regular.fa-eye::before {
  content: "\f06e";
}

/* Brand Icons (fab) */
.fa-brands.fa-linkedin::before,
.fa-linkedin::before {
  content: "\f0e1";
}

.fa-brands.fa-twitter::before,
.fa-twitter::before {
  content: "\f099";
}

.fa-brands.fa-github::before,
.fa-github::before {
  content: "\f09b";
}

.fa-brands.fa-instagram::before,
.fa-instagram::before {
  content: "\f16d";
}

.fa-brands.fa-youtube::before,
.fa-youtube::before {
  content: "\f167";
}

.fa-brands.fa-html5::before,
.fa-html5::before {
  content: "\f13b";
}

.fa-brands.fa-css3-alt::before,
.fa-css3-alt::before {
  content: "\f38b";
}

.fa-brands.fa-js-square::before,
.fa-js-square::before {
  content: "\f3b9";
}

.fa-brands.fa-react::before,
.fa-react::before {
  content: "\f41b";
}

.fa-brands.fa-python::before,
.fa-python::before {
  content: "\f3e2";
}

.fa-brands.fa-node-js::before,
.fa-node-js::before {
  content: "\f3d3";
}

.fa-brands.fa-google::before,
.fa-google::before {
  content: "\f1a0";
}

.fa-brands.fa-aws::before,
.fa-aws::before {
  content: "\f375";
}

/* Font Face Declarations with font-display: swap already in font-display-optimization.css */
/* This file only contains icon mappings to reduce CSS size */
/**
 * Performance Optimizations CSS
 * CSS-based animations to replace jQuery animations
 * Uses GPU-accelerated properties (opacity, transform) for better performance
 */

/* Go to top button smooth transitions */
#go-top {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  will-change: opacity, transform;
}

#go-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Message boxes with CSS animations */
#message-warning,
#message-success {
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

#message-warning.show,
#message-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* Loader optimizations */
#preloader,
#loader {
  transition: opacity 0.5s ease;
  will-change: opacity;
}

#preloader.hidden,
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Form input validation states */
input.valid,
textarea.valid {
  border-color: #28a745;
  transition: border-color 0.2s ease;
}

input.error,
textarea.error {
  border-color: #dc3545;
  transition: border-color 0.2s ease;
}

/* Nav menu transitions */
#nav-menu {
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

#nav-menu.active {
  opacity: 1;
  transform: translateX(0);
}

/* Modal transitions */
.popup-modal,
.about-modal {
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.popup-modal.show,
.about-modal.show {
  opacity: 1;
}

/* Optimize animations with GPU acceleration */
.animated-element {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduce repaints for smooth scrolling */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optimize will-change for frequently animated elements */
.folio-item,
.blog-card,
.service {
  will-change: transform, opacity;
}

/* Remove will-change after animation completes */
.folio-item.animated,
.blog-card.animated,
.service.animated {
  will-change: auto;
}

/* Counter animation */
.stat-count {
  display: inline-block;
  transform: translateZ(0);
}

/* Reduce layout shifts */
.skill-bar-fill {
  contain: layout style paint;
}

/* Image loading optimization */
img {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1px;
}

/* Scroll performance */
.scroll-container {
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

/* Prevent layout thrashing on resize */
.resize-optimized {
  transition: width 0.2s ease, height 0.2s ease;
}

/* Contact form submit button loading state */
.submitform {
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.submitform:active {
  transform: scale(0.98);
}

/* Optimize portfolio grid */
#folio-wrapper {
  contain: layout style paint;
}

/* Timeline animations */
.timeline-item {
  will-change: transform, opacity;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.timeline-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.text-type {
  display: inline-block;
  white-space: pre-wrap;
}

.text-type__content {
  display: inline-block;
}

.text-type__cursor {
  margin-left: 0.25rem;
  display: inline-block;
  opacity: 1;
  transition: opacity 0.1s ease;
}

.text-type__cursor--hidden {
  display: none;
}

.intro-position {
  display: block;
  min-height: 2em;
  font-size: 2rem !important;
}

.intro-position::before,
.intro-position::after,
.intro-position span::before,
.intro-position span::after {
  content: none !important;
  display: none !important;
}

.intro-position .text-type__content {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.intro-position .text-type__cursor {
  color: #ff0077;
  font-weight: bold;
  font-size: inherit;
}

/* Mobile Responsive - Override main.css breakpoints */
@media only screen and (max-width: 768px) {
  .intro-position {
    font-size: 1.8rem !important;
  }
}

@media only screen and (max-width: 600px) {
  .intro-position {
    font-size: 1.5rem !important;
  }
}

@media only screen and (max-width: 480px) {
  .intro-position {
    font-size: 1.3rem !important;
  }
}

@media only screen and (max-width: 400px) {
  .intro-position {
    font-size: 1.1rem !important;
  }
}

@media only screen and (max-width: 280px) {
  .intro-position {
    font-size: 1rem !important;
    word-break: break-word;
  }
}

/* ===================================================================
 * Minimal Scroll Animations CSS
 * Clean, subtle sliding with fading effects
 * ================================================================ */

.animate-slide-left,
.animate-slide-right,
.animate-fade-up,
.animate-fade-in {
  opacity: 0;
  transition: none;
}

.animate-slide-left {
  transform: translateX(-60px);
}

.animate-slide-left.animated {
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-right {
  transform: translateX(60px);
}

.animate-slide-right.animated {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  transform: translateY(40px);
}

.animate-fade-up.animated {
  animation: fadeInUp 0.7s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.animate-fade-in {
  transform: none;
}

.animate-fade-in.animated {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animated {
  opacity: 1 !important;
}

.folio-item.animated {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.folio-item.animated:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-card.animated {
  transition: transform 0.3s ease;
}

.tech-card.animated:hover {
  transform: translateY(-5px);
}

.stat.animated {
  transition: transform 0.3s ease;
}

.stat.animated:hover {
  transform: scale(1.05);
}

.timeline-block.animated {
  transition: transform 0.3s ease;
}

.timeline-block.animated:hover {
  transform: translateX(5px);
}

.service.animated {
  transition: transform 0.3s ease;
}

.service.animated:hover {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {

  .animate-slide-left,
  .animate-slide-right,
  .animate-fade-up,
  .animate-fade-in {
    animation: none !important;
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }

  .animate-slide-left.animated,
  .animate-slide-right.animated,
  .animate-fade-up.animated,
  .animate-fade-in.animated {
    opacity: 1;
    transform: none;
  }
}

@media only screen and (max-width: 768px) {
  .animate-slide-left {
    transform: translateX(-40px);
  }

  .animate-slide-right {
    transform: translateX(40px);
  }

  .animate-fade-up {
    transform: translateY(30px);
  }

  .animate-slide-left.animated,
  .animate-slide-right.animated,
  .animate-fade-up.animated {
    animation-duration: 0.6s;
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

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

.animate-slide-left,
.animate-slide-right,
.animate-fade-up,
.animate-fade-in {
  will-change: transform, opacity;
}

.animated {
  will-change: auto;
}

html {
  scroll-behavior: smooth;
}

/**
 * More About Me - Clean & Simple Full Page View
 * Minimalist design inspired by modern portfolios
 */

.about-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #0a0a0a;
  animation: fadeIn 0.3s ease-in-out;
}

.about-modal.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.about-modal-content {
  position: relative;
  background: #0a0a0a;
  min-height: 100vh;
  padding-top: 4rem;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

.about-modal-close {
  position: fixed;
  right: 5rem;
  top: 4rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-modal-close:hover,
.about-modal-close:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.about-modal-header {
  text-align: center;
  padding: 0 2rem 4rem;
  max-width: 1200px;
}

.about-modal-header h2 {
  margin-bottom: 0px !important;
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-modal-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffffff;
  margin: 2rem auto 0;
}

.about-modal-body {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 8rem;
  align-items: start;
}

.about-modal-photo {
  text-align: center;
}

.about-modal-photo img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-modal-photo img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.about-info-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.info-item {
  display: grid;
  grid-template-columns: 100px 2fr;
  gap: 1rem;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(231, 230, 230, 0.819);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
}

.about-modal-text h3 {
  font-size: 2rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.about-modal-tagline {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4rem;
  font-weight: 300;
}

.about-modal-section {
  margin-bottom: 4rem;
}

.about-modal-section h4 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.about-modal-section h4 i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.about-modal-section p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}

.about-modal-cta {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
  justify-content: flex-start;
}

.about-modal-cta .button {
  padding: 1.8rem 4rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 2px solid transparent;
}

.about-modal-cta .button-primary {
  background: linear-gradient(135deg, #ff0077 0%, #0077ff 100%);
  color: #ffffff;
  border-color: transparent;
}

.about-modal-cta .button.stroke {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-modal-cta .button.stroke:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

html:not(.dark-mode) .about-modal {
  background: #ffffff;
}

html:not(.dark-mode) .about-modal-content {
  background: #ffffff;
}

html:not(.dark-mode) .about-modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .about-modal-header h2 {
  color: #1a1a1a;
}

html:not(.dark-mode) .about-modal-header::after {
  background: #1a1a1a;
}

html:not(.dark-mode) .about-modal-text h3,
html:not(.dark-mode) .stat-number,
html:not(.dark-mode) .info-value {
  color: #1a1a1a;
}

html:not(.dark-mode) .about-modal-tagline,
html:not(.dark-mode) .about-modal-section p {
  color: rgba(0, 0, 0, 0.6);
}

html:not(.dark-mode) .about-modal-section h4 {
  color: #1a1a1a;
}

html:not(.dark-mode) .about-modal-section h4 i,
html:not(.dark-mode) .modal-stat i,
html:not(.dark-mode) .info-label,
html:not(.dark-mode) .stat-label {
  color: rgba(0, 0, 0, 0.5);
}

html:not(.dark-mode) .about-modal-close {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.2);
}

html:not(.dark-mode) .about-modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

html:not(.dark-mode) .modal-stat {
  border-color: rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .modal-stat:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.2);
}

html:not(.dark-mode) .about-modal-photo img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .about-modal-photo img:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

html:not(.dark-mode) .info-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .about-modal-cta .button.stroke {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.3);
}

html:not(.dark-mode) .about-modal-cta .button.stroke:hover {
  border-color: #1a1a1a;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
  .about-modal-body {
    grid-template-columns: 300px 1fr;
    gap: 5rem;
  }
}

@media only screen and (max-width: 900px) {
  .about-modal-body {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0 3rem;
  }

  .about-modal-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-modal-stats,
  .about-info-grid {
    grid-template-columns: 1fr;
  }

  .about-modal-header h2 {
    font-size: 3.5rem;
  }

  .about-modal-close {
    right: 2rem;
    top: 2rem;
  }

  .about-modal-cta {
    justify-content: center;
  }
}

@media only screen and (max-width: 600px) {
  .about-modal-content {
    padding: 8rem 0 4rem;
  }

  .about-modal-header {
    padding: 0 2rem 3rem;
  }

  .about-modal-header h2 {
    font-size: 3rem;
  }

  .about-modal-body {
    padding: 0 2rem;
    gap: 3rem;
  }

  .about-modal-close {
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  .about-modal-text h3 {
    font-size: 2.5rem;
  }

  .about-modal-cta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-modal-cta .button {
    width: 100%;
    text-align: center;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .modal-stat {
    padding: 2.5rem 2rem;
  }
}

.about-modal {
  scroll-behavior: smooth;
}

.about-modal a.smoothscroll {
  scroll-behavior: smooth;
}

/**
 * Skills Visualization Section
 * Interactive skill bars, radar chart, and learning timeline
 */

/* Skills Visualization Section */
.skills-visualization-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.skills-visualization-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 0, 119, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 119, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.skills-viz-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.skills-viz-header h3 {
  color: var(--color-primary, #ff0077);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-bottom: 1rem;
}

.skills-viz-header h2 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.skills-viz-header p {
  font-size: 4.2rem;
  color: rgb(255, 255, 255);
  max-width: 70rem;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Skills Grid Layout */
.skills-viz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

/* Animated Skill Bars */
.skill-bars-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.skill-bars-container h3 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.skill-bars-container h3 i {
  color: var(--color-primary, #ff0077);
  font-size: 2.8rem;
}

.skill-bar {
  margin-bottom: 3rem;
}

.skill-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.skill-name {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.skill-name i {
  font-size: 2rem;
  color: var(--color-primary, #ff0077);
}

.skill-percentage {
  font-size: 1.8rem;
  color: var(--color-primary, #ff0077);
  font-weight: 700;
  min-width: 4.5rem;
  text-align: right;
}

.skill-bar-bg {
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary, #ff0077) 0%, #ff3399 100%);
  border-radius: 1rem;
  width: 0;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.skill-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.skill-bar.animate .skill-bar-fill {
  width: var(--skill-width);
}

/* Radar Chart Container */
.radar-chart-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.radar-chart-container h3 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radar-chart-container h3 i {
  color: var(--color-primary, #ff0077);
  font-size: 2.8rem;
}

#radarChart {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 0, 119, 0.3));
}

/* Learning Timeline */
.learning-timeline-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.learning-timeline-container h3 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.learning-timeline-container h3 i {
  color: var(--color-primary, #ff0077);
  font-size: 2.8rem;
}

.timeline-wrapper {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
      transparent 0%,
      var(--color-primary, #ff0077) 10%,
      var(--color-primary, #ff0077) 90%,
      transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: calc(50% + 4rem);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 4rem);
  text-align: left;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 119, 0.2);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--color-primary, #ff0077);
  border-radius: 50%;
  border: 4px solid rgba(15, 15, 15, 1);
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 0, 119, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 119, 0.5);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 0, 119, 0.8);
  }
}

.timeline-year {
  font-size: 1.4rem;
  color: var(--color-primary, #ff0077);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.timeline-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-desc {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.timeline-item:nth-child(odd) .timeline-skills {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-skills {
  justify-content: flex-start;
}

.timeline-skill-tag {
  background: rgba(255, 0, 119, 0.2);
  color: var(--color-primary, #ff0077);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid var(--color-primary, #ff0077);
}

/* Light Mode Styles */
html:not(.dark-mode) .skills-visualization-section {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(240, 242, 245, 0.95) 100%);
}

html:not(.dark-mode) .skills-visualization-section::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 0, 119, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 119, 255, 0.05) 0%, transparent 50%);
}

html:not(.dark-mode) .skills-viz-header h2 {
  color: #1a1a1a;
}

html:not(.dark-mode) .skills-viz-header p {
  color: rgba(0, 0, 0, 0.7);
}

html:not(.dark-mode) .skill-bars-container,
html:not(.dark-mode) .radar-chart-container,
html:not(.dark-mode) .learning-timeline-container {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

html:not(.dark-mode) .skill-bars-container h3,
html:not(.dark-mode) .radar-chart-container h3,
html:not(.dark-mode) .learning-timeline-container h3 {
  color: #1a1a1a;
}

html:not(.dark-mode) .skill-name {
  color: #2c2c2c;
}

html:not(.dark-mode) .skill-bar-bg {
  background: rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .timeline-content {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

html:not(.dark-mode) .timeline-content:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(255, 0, 119, 0.15);
}

html:not(.dark-mode) .timeline-title {
  color: #1a1a1a;
}

html:not(.dark-mode) .timeline-desc {
  color: rgba(0, 0, 0, 0.7);
}

html:not(.dark-mode) .timeline-dot {
  border-color: rgba(248, 249, 250, 1);
}

html:not(.dark-mode) .timeline-skill-tag {
  background: rgba(255, 0, 119, 0.1);
  border: 1px solid rgba(255, 0, 119, 0.3);
}

html:not(.dark-mode) #radarChart {
  filter: drop-shadow(0 0 20px rgba(255, 0, 119, 0.2));
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
  .skills-viz-grid {
    gap: 3rem;
  }

  .skill-bars-container,
  .radar-chart-container,
  .learning-timeline-container {
    padding: 3rem;
  }
}

@media only screen and (max-width: 900px) {
  .skills-viz-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .skills-viz-header h2 {
    font-size: 3.2rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 6rem;
    margin-right: 0;
    text-align: left;
  }

  .timeline-line {
    left: 2rem;
  }

  .timeline-dot {
    left: 2rem;
  }

  .timeline-item:nth-child(odd) .timeline-skills,
  .timeline-item:nth-child(even) .timeline-skills {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 600px) {
  .skills-visualization-section {
    padding: 4rem 0;
  }

  .skills-viz-header {
    margin-bottom: 3rem;
  }

  .skills-viz-header h2 {
    font-size: 2.8rem;
  }

  .skill-bars-container,
  .radar-chart-container,
  .learning-timeline-container {
    padding: 2rem;
  }

  .skill-bars-container h3,
  .radar-chart-container h3,
  .learning-timeline-container h3 {
    font-size: 2rem;
  }

  .timeline-content {
    padding: 2rem;
  }

  .timeline-title {
    font-size: 1.8rem;
  }
}

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  user-select: none;
}

.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

.owl-origin {
  perspective: 1200px;
}

.owl-fade-out {
  z-index: 10;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  animation: fadeIn 0.7s both ease;
}

.owl-backSlide-out {
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  animation: goDown 0.6s ease both;
}

.owl-fadeUp-in {
  animation: scaleUpFrom 0.5s ease both;
}

.owl-fadeUp-out {
  animation: scaleUpTo 0.5s ease both;
}

@keyframes empty {
  0% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes backSlideOut {
  25% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
}

@keyframes backSlideIn {

  0%,
  25% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}

@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}

@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}