/**
* Template Name: SnapFolio
* Template URL: https://bootstrapmade.com/snapfolio-bootstrap-portfolio-template/
* Updated: Jul 21 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Ubuntu", sans-serif;
  --nav-font: "Nunito", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #0a0808;   /* Background color for the entire website */
  --default-color:    #e0e0e0;   /* Default text color */
  --heading-color:    #ffffff;   /* Headings, subheadings, titles */
  --accent-color:     #55a222;   /* Brand accent (buttons, links, highlights) */
  --surface-color:    #1a1a1a;   /* Background for cards, boxes, sections */
  --contrast-color:   #310606;   /* Contrast text color for readability */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(236, 236, 236, 0.59);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #393939; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #393939; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ececec; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #2c2c2c;
  --surface-color: #323232;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #1b1b1b;
  --contrast-color: #444444;
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
}

.header .header-container {
  border-radius: 20px;
  padding: 15px;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.header .social-links {
  margin: 0 0 10px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 330px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
  .header-toggle {
    display: flex !important;
  }  
}

.header.header-show {
  left: 0;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
  width: 100%;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
  font-size: 12px;
  line-height: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 0 0 40px 0;
  position: relative;
}

.footer .copyright {
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  padding: 25px 0 0 0;
  position: relative;
}

.page-title .container {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 25px;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero .background-elements .bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  animation: float 6s ease-in-out infinite;
}

.hero .background-elements .bg-circle.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero .background-elements .bg-circle.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero .hero-content {
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .hero-text h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.hero .hero-text h1 .accent-text {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-text h1 .accent-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
}

.hero .hero-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.hero .hero-text .lead {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--default-color);
}

.hero .hero-text .lead span {
  color: var(--accent-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

.hero .hero-text .description {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.hero .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .social-links {
  display: flex;
  gap: 20px;
}

.hero .social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.hero .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero .hero-visual .profile-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero .hero-visual .profile-container .profile-background {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  /*background: color-mix(in srgb, var(--accent-color), transparent 90%);*/
  background: color-mix(in srgb, #0ecf2b, transparent 95%);
  border-radius: 30px;
  z-index: 1;
}

.hero .hero-visual .profile-container .profile-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  /*border: 0.1px solid white;*/
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@media (max-width: 992px) {
  .hero .hero-text {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero .hero-text h1 {
    font-size: 56px;
  }

  .hero .hero-text h2 {
    font-size: 28px;
  }

  .hero .hero-text .lead {
    font-size: 20px;
  }

  .hero .hero-visual .profile-container {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 42px;
  }

  .hero .hero-text h2 {
    font-size: 24px;
  }

  .hero .hero-text .lead {
    font-size: 18px;
  }

  .hero .hero-text .description {
    font-size: 16px;
  }

  .hero .hero-actions {
    justify-content: center;
  }

  .hero .hero-actions .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero .hero-visual .profile-container {
    width: 300px;
    height: 300px;
  }

  .hero .background-elements .bg-circle.circle-1 {
    width: 200px;
    height: 200px;
  }

  .hero .background-elements .bg-circle.circle-2 {
    width: 150px;
    height: 150px;
  }

  .hero .background-elements .bg-circle.circle-3 {
    width: 100px;
    height: 100px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .profile-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.about .profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}

@media (max-width: 991px) {
  .about .profile-card {
    margin-bottom: 3rem;
  }
}

.about .profile-header {
  position: relative;
  margin-bottom: 2rem;
}

.about .profile-header .profile-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about .profile-header .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .profile-header .profile-badge {
  position: absolute;
  bottom: 20px;
  right: calc(50% - 65px);
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--surface-color);
}

.about .profile-header .profile-badge i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .profile-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .profile-content .profession {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.about .contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about .contact-links .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .contact-links .contact-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .contact-links .contact-item i {
  font-size: 1rem;
  width: 18px;
}

.about .about-content {
  padding-left: 3rem;
}

@media (max-width: 991px) {
  .about .about-content {
    padding-left: 0;
  }
}

.about .about-content .section-header {
  margin-bottom: 2rem;
}

.about .about-content .section-header .badge-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.about .about-content .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
  .about .about-content .section-header h2 {
    font-size: 1.875rem;
  }
}

.about .about-content .description {
  margin-bottom: 2.5rem;
}

.about .about-content .description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}

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

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.about .stats-grid .stat-item {
  text-align: center;
}

.about .stats-grid .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.about .stats-grid .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .details-grid {
  margin-bottom: 2.5rem;
}

.about .details-grid .detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .details-grid .detail-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about .details-grid .detail-row:last-child {
  margin-bottom: 0;
}

.about .details-grid .detail-item .detail-label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about .details-grid .detail-item .detail-value {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about .cta-section .btn {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.about .cta-section .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-section .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .cta-section .btn.btn-outline {
  background-color: transparent;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.about .cta-section .btn.btn-outline:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 576px) {
  .stats .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

.stats .stats-item {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 5%), var(--surface-color));
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stats .stats-item:hover .icon-wrapper {
  transform: scale(1.1);
}

.stats .stats-item:nth-child(1) .icon-wrapper {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .stats-item:nth-child(1) .icon-wrapper i {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.stats .stats-item:nth-child(2) .icon-wrapper {
  background-color: color-mix(in srgb, #ff7e00, transparent 85%);
}

.stats .stats-item:nth-child(2) .icon-wrapper i {
  color: color-mix(in srgb, #ff7e00, transparent 10%);
}

.stats .stats-item:nth-child(3) .icon-wrapper {
  background-color: color-mix(in srgb, #00c875, transparent 85%);
}

.stats .stats-item:nth-child(3) .icon-wrapper i {
  color: color-mix(in srgb, #00c875, transparent 10%);
}

.stats .stats-item:nth-child(4) .icon-wrapper {
  background-color: color-mix(in srgb, #e83e8c, transparent 85%);
}

.stats .stats-item:nth-child(4) .icon-wrapper i {
  color: color-mix(in srgb, #e83e8c, transparent 10%);
}

.stats .stats-item .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.stats .stats-item .icon-wrapper i {
  font-size: 36px;
}

.stats .stats-item span {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1;
  font-family: var(--heading-font);
}

.stats .stats-item p {
  color: var(--default-color);
  font-size: 18px;
  margin: 0;
  font-weight: 500;
  font-family: var(--heading-font);
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skills-category {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}

.skills .skills-category:hover {
  transform: translateY(-5px);
}

.skills .skills-category h3 {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.skills .skills-category h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.skills .skill-item {
  margin-bottom: 25px;
}

.skills .skill-item:last-child {
  margin-bottom: 0;
}

.skills .skill-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.skills .skill-item .skill-percentage {
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.skills .skill-item .progress {
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.skills .skill-item .progress .progress-bar {
  background-color: var(--accent-color);
  transition: width 1.5s ease-in-out;
  width: 0;
  height: 100%;
  border-radius: 20px;
}

.skills .skill-item .skill-tooltip {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s;
}

.skills .skill-item:hover .skill-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.skills .skill-box {
  background-color: var(--surface-color);
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.skills .skill-box:hover {
  transform: translateY(-5px);
}

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

.skills .skill-box:hover .skill-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.skills .skill-box i {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.skills .skill-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.skills .skill-box .skill-tooltip {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s;
}

@media (max-width: 991.98px) {
  .skills .skills-category {
    margin-bottom: 30px;
  }

  .skills .skills-category:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .skills .skill-box {
    margin-bottom: 20px;
  }

  .skills .skill-box:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-side {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.resume .resume-side .profile-img {
  text-align: center;
}

.resume .resume-side .profile-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
}

.resume .resume-side h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume .resume-side .contact-info li {
  margin-bottom: 1rem;
  color: var(--default-color);
}

.resume .resume-side .contact-info li i {
  width: 25px;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.resume .resume-side .skill-item {
  margin-bottom: 1.5rem;
}

.resume .resume-side .skill-item span {
  font-size: 0.9rem;
  color: var(--default-color);
}

.resume .resume-side .skill-item .progress {
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.resume .resume-side .skill-item .progress .progress-bar {
  background-color: var(--accent-color);
  width: 0;
  transition: width 1s ease;
}

.resume .resume-section {
  margin-bottom: 3rem;
}

.resume .resume-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume .resume-section h3 i {
  color: var(--accent-color);
}

.resume .resume-section .resume-item {
  padding-left: 1.5rem;
  border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-bottom: 2rem;
  position: relative;
}

.resume .resume-section .resume-item:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -9px;
  top: 0;
  background: var(--accent-color);
}

.resume .resume-section .resume-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume .resume-section .resume-item h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.resume .resume-section .resume-item .company {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.resume .resume-section .resume-item .company i {
  margin-right: 0.5rem;
}

.resume .resume-section .resume-item ul {
  padding-left: 1.2rem;
}

.resume .resume-section .resume-item ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.resume .resume-section .resume-item p {
  color: var(--default-color);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .resume .resume-side {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .projects .filter-sidebar {
    margin-bottom: 30px;
  }
}

.projects .filters-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .projects .filters-wrapper {
    padding: 20px;
  }
}

.projects .projects-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .projects .projects-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.projects .projects-filters li {
  cursor: pointer;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  background: transparent;
  position: relative;
  border-left: 3px solid transparent;
}

@media (max-width: 991px) {
  .projects .projects-filters li {
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-left-width: 3px;
  }
}

.projects .projects-filters li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.projects .projects-filters li.filter-active {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left-color: var(--accent-color);
  font-weight: 600;
}

.projects .projects-wrap {
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.projects .projects-wrap img {
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.projects .projects-wrap .projects-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
  opacity: 0;
}

.projects .projects-wrap .projects-info .content {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
}

.projects .projects-wrap .projects-info .category {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.projects .projects-wrap .projects-info h4 {
  font-size: 20px;
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

.projects .projects-wrap .projects-info .projects-links {
  display: flex;
  gap: 12px;
}

.projects .projects-wrap .projects-info .projects-links a {
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.projects .projects-wrap .projects-info .projects-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.projects .projects-wrap:hover {
  transform: translateY(-5px);
}

.projects .projects-wrap:hover img {
  transform: scale(1.08);
}

.projects .projects-wrap:hover .projects-info {
  transform: translateY(0);
  opacity: 1;
}

.projects .projects-wrap:hover .projects-info .content {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.services .service-card h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-card h3 a span {
  display: block;
}

.services .service-card h3 a:hover {
  color: var(--accent-color);
}

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  border-color: transparent;
}

.services .service-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.services .service-card:hover h3 a {
  color: var(--accent-color);
}

.services .service-card:hover h3 a:hover {
  color: var(--accent-color);
}

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 150px 25px 25px;
  }

  .services .service-card h3 {
    font-size: 24px;
  }

  .services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.projects-details .projects-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.projects-details .projects-details-slider .swiper-wrapper {
  height: auto !important;
}

.projects-details .projects-details-slider img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.projects-details .projects-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.projects-details .projects-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

.projects-details .projects-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--accent-color);
}

.projects-details .projects-info {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.projects-details .projects-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects-details .projects-info ul {
  padding: 0;
  list-style: none;
}

.projects-details .projects-info ul li {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects-details .projects-info ul li:last-child {
  border-bottom: 0;
}

.projects-details .projects-info ul li strong {
  font-weight: 600;
  margin-right: 10px;
  color: var(--heading-color);
}

.projects-details .projects-info ul li a {
  color: var(--accent-color);
  transition: 0.3s;
}

.projects-details .projects-info ul li a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

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

.projects-details .projects-description p {
  padding: 0;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.projects-details .projects-description .features h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.projects-details .projects-description .features .feature-item {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.projects-details .projects-description .features .feature-item:hover {
  transform: translateY(-5px);
}

.projects-details .projects-description .features .feature-item i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
}

.projects-details .projects-description .features .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.projects-details .projects-description .features .feature-item p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 991px) {
  .projects-details .projects-info {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .projects-details .projects-description h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.service-details .service-details-slider .swiper-wrapper {
  height: auto !important;
}

.service-details .service-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: 0.3s;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

.service-details .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-details .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.service-details .content .features .feature-box {
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.service-details .content .features .feature-box:hover {
  transform: translateY(-5px);
}

.service-details .content .features .feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.service-details .content .features .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.service-details .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-info .info-item {
  margin-bottom: 25px;
}

.service-details .service-info .info-item:last-child {
  margin-bottom: 0;
}

.service-details .service-info .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .service-info .info-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-details .service-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.service-details .related-services {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .related-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .related-services .service-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .related-services .service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-details .related-services .service-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-details .related-services .service-item h5 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.service-details .related-services .service-item h5 a:hover {
  color: var(--accent-color);
}

.service-details .related-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 991px) {

  .service-details .service-info,
  .service-details .related-services {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
#typing-container {
  background: #2C3029;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  text-align: left;
  font-family: var(--default-font);
  font-size: 0.8rem;
}

.editable-wpm {
  position: relative;
  padding-right: 1.5em; /* space for arrows */  
  width: 70px; /* compact inline size */
  font-weight: bold;
  color: #c6ee42;
  border: none;
  border-bottom: 2px dashed #0d6efd;
  background: transparent;
  text-align: center;
}
/* Custom arrows using background */
.editable-wpm::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: block;
  width: 14px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpolygon points='5,0 10,5 0,5' fill='%230d6efd'/%3E%3Cpolygon points='0,5 10,5 5,10' fill='%230d6efd'/%3E%3C/svg%3E") no-repeat center;
}
#wpmEditable {
  font-weight: bold;
  padding: 4px;
}
.btn-group-vertical .btn {
  line-height: 1;
  font-size: 0.65rem;
}
#testCompleteMsg {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#testCompleteMsg.show {
  opacity: 1;
}
#testText{
  font-family: "Exo 2", "Heebo", "Rubik", sans-serif;
  font-weight: 500;
  color: #d8ecff;
  line-height: 1.6;
  letter-spacing: 0.3px;
  text-shadow: 0 0 4px rgba(93,200,255,0.25);
}
#testText, .passage-text {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  line-height: 1.6;
}
#typing-text, #textInput, #typingInput {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}
#navmenu ul li.playground-special {
  position: relative;
  overflow: visible !important;  
}

/* Canvas exactly overlays the text span */
.playground-label {
  position: relative;
  display: inline-block;
  z-index: 1;
  overflow: visible !important;
}

.playground-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 170%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
}

#status {
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.5s ease;
}
#status:empty {
  display: none;
}
.g-recaptcha {
  display: inline-block;
  margin: 10px;
}
.recaptcha-wrapper {
  text-align: center;

}

/* Preloader fade-out effect */
#preloader {
  transition: opacity 0.3s ease;
}
#preloader.fade-out {
  opacity: 0;
}

/* Thumbnails styling */
.projects-thumbs {
  max-height: 100px;
}

.projects-thumbs .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}

.projects-thumbs .swiper-slide:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.projects-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #1E6CA6; /* theme blue */
  box-shadow: 0 0 8px rgba(30,108,166,0.5);
}

/* Main slider images */
.projects-details-slider .swiper-slide img {
  border-radius: 8px;
  transition: transform 0.4s ease;
}
.projects-details-slider .swiper-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.projects-thumbs .swiper-slide img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Gallery image hover effects */
.projects-details-slider .swiper-slide img,
.projects-thumbs .swiper-slide img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* ===========================================================
   MindHive v2 — Unified Neon-Green Cyber Theme (Compact Edition)
   Matches MindPlay layout, font, and glow behavior
   =========================================================== */

/* --- Global Accent Update --- */
:root {
  --accent-color: #63ff5d; /* MindHive neon green */
  --surface-color: #0d1117;
  --background-color: #05070b;
  --heading-color: #eaf8ff;
  --default-color: #c8d5e1;
}

/* --- Navbar Glow Accent --- */
.header.dark-background {
  width: 250px;
  position: fixed;
  /* background: linear-gradient(180deg, rgba(99,255,93,0.03) 0%, rgba(99,255,93,0.06) 100%); */
  border-right: 1px solid rgba(99,255,93,0.12);
  box-shadow: 0 0 20px rgba(99,255,93,0.05);
  backdrop-filter: blur(8px);
  /* transition: all 0.3s ease; */
  z-index: 1000;
}

.header .header-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
}

.navmenu {
  width: 100%;
  margin-top: 10px;
  font-family: "Exo 2", "Nunito", sans-serif;
  letter-spacing: 0.3px;
}

.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navmenu ul li {
  margin: 3px 0;
}

.navmenu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(230, 230, 230, 0.85);
  text-decoration: none;
  padding: 9px 16px;
  border-left: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.navmenu a .navicon {
  font-size: 1.1rem;
  opacity: 0.9;
  transition: color 0.3s ease;
}

/* Hover */
.navmenu a:hover {
  color: var(--accent-color);
  background: linear-gradient(90deg, rgba(99,255,93,0.08) 0%, rgba(99,255,93,0.02) 100%);
  text-shadow: 0 0 6px rgba(99,255,93,0.4);
  border-left: 2px solid var(--accent-color);
}

.navmenu a:hover .navicon {
  color: var(--accent-color);
}

/* Active glowing bar */
.navmenu a.active::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--accent-color);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(99,255,93,0.7), 0 0 20px rgba(99,255,93,0.3);
  animation: active-glow 2.2s ease-in-out infinite;
}

@keyframes active-glow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(99,255,93,0.7), 0 0 20px rgba(99,255,93,0.3);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 6px rgba(99,255,93,0.4), 0 0 10px rgba(99,255,93,0.15);
  }
}

/* Social links */
.social-links {
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.social-links a {
  font-size: 1.25rem;
  margin: 0 5px;
  color: rgba(220, 220, 220, 0.8);
  transition: all 0.25s ease;
}

.social-links a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(99,255,93,0.5);
}

/* Mobile toggle */
/* Mobile toggle */
.header-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  background: var(--accent-color);
  color: #000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.header-toggle:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, white 10%);
  transform: rotate(10deg);
}


/* --- Hero Section Enhancement --- */
.hero {
  background: radial-gradient(circle at 20% 30%, rgba(99,255,93,0.06) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0,140,255,0.04) 0%, transparent 70%),
              #05070b;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,255,93,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,255,93,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
  pointer-events: none;
}

/* --- Typography & Fonts --- */
body {
  font-family: "Exo 2", "Roboto", sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Orbitron", "Ubuntu", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(99,255,93,0.15);
}

/* --- Buttons --- */
.hero .btn {
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.hero .btn-primary {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 20px rgba(99,255,93,0.3);
}

.hero .btn-primary:hover {
  background: #55e84f;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99,255,93,0.6);
}

.hero .btn-outline {
  border-color: rgba(99,255,93,0.6);
  color: var(--accent-color);
}

.hero .btn-outline:hover {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 20px rgba(99,255,93,0.4);
}

/* --- Footer Glow --- */
.footer {
  background: #060b10;
  border-top: 1px solid rgba(99,255,93,0.15);
  color: rgba(220,255,220,0.75);
  text-shadow: 0 0 4px rgba(99,255,93,0.25);
}
.footer .copyright {
  border-top: 1px solid rgba(99,255,93,0.1);
}

/* --- Layout Offset for Sidebar --- */
@media (min-width: 1200px) {
  .header ~ main,
  .header ~ #footer {
    margin-left: 270px;
  }
  .header-toggle {
    display: none !important;
  }  
}

/* Final MindPlay hover (soft breathing glow) */
@keyframes mindplay-soft-breath {
  0% {
    filter: drop-shadow(0 0 2px rgba(0,255,230,0.3))
            drop-shadow(0 0 6px rgba(0,255,230,0.2));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(0,255,230,0.6))
            drop-shadow(0 0 14px rgba(0,255,230,0.4));
  }
  100% {
    filter: drop-shadow(0 0 2px rgba(0,255,230,0.3))
            drop-shadow(0 0 6px rgba(0,255,230,0.2));
  }
}

.navmenu a[href*="mindplay.html"]:hover {
  color: #a5fffa !important;
  background: linear-gradient(270deg, rgba(0,255,204,0.1) 0%, rgba(0,140,255,0.07) 100%) !important;
  border-left: 2px solid #00ffee !important;
  animation: mindplay-soft-breath 2.8s ease-in-out infinite;
}

.navmenu a[href*="mindplay.html"]:hover .navicon {
  color: #00ffee !important;
  animation: mindplay-soft-breath 2.8s ease-in-out infinite;
}

body.mindplay-page .header {
  backdrop-filter: none;
}

/* --- FIX: restore hamburger visibility and clickability --- */
@media (max-width: 1199px) {
  .header-toggle {
    display: flex !important;
    position: fixed !important;
    top: 15px;
    right: 15px;
    z-index: 9999 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Ensure header starts hidden off-screen */
  .header {
    display: flex !important;    
    left: -100%;
    transition: left 0.3s ease-in-out;
  }

  .header.header-show {
    left: 0;
  }
}

/* Remove inner container padding/spacing since it's gone */
.header {
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Make sure nav fills width inside sidebar */
.navmenu {
  flex: 1;
  width: 100%;
}

/* Keep social icons at bottom neatly spaced */
.header .social-links {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

/* === FIX: Proper spacing between hamburger and navbar === */
.header-toggle {
  top: 25px !important; /* ensures clear gap from sidebar top */
  z-index: 10000 !important;
}

@media (max-width: 1199px) {
  .header {
    padding-top: 70px !important; /* pushes navmenu below hamburger */
  }
}
/* === FIX: Improve mobile navbar text readability === */
@media (max-width: 1199px) {
  .header.dark-background {
    /* background: rgba(10, 10, 10, 0.96) !important; */
    backdrop-filter: blur(6px) !important;
  }

  .navmenu a {
    color: rgba(255, 255, 255, 0.92) !important; /* crisper link text */
  }
}

/* === MindHive Project Details Theme === */
body.mindhive-themed {
  background: radial-gradient(circle at 25% 30%, rgba(107,200,240,0.08) 0%, transparent 60%),
              radial-gradient(circle at 75% 70%, rgba(15,66,125,0.05) 0%, transparent 60%),
              #0a1018;
  color: #d6e3f2;
  font-family: "Exo 2", "Heebo", sans-serif;
}

/* Headings */
body.mindhive-themed h1,
body.mindhive-themed h2,
body.mindhive-themed h3 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6BC8F0;
  text-shadow: 0 0 8px rgba(107,200,240,0.25);
}

/* Info + Description Boxes */
body.mindhive-themed .project-info,
body.mindhive-themed .project-description,
body.mindhive-themed .feature-item {
  background: rgba(20,30,45,0.9);
  border: 1px solid rgba(107,200,240,0.15);
  box-shadow: 0 0 15px rgba(107,200,240,0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}
body.mindhive-themed .feature-item:hover {
  border-color: rgba(107,200,240,0.35);
  box-shadow: 0 0 20px rgba(107,200,240,0.25);
  transform: translateY(-3px);
}

/* Icons + Links */
body.mindhive-themed .feature-item i {
  color: #6BC8F0;
}
body.mindhive-themed a {
  color: #6BC8F0;
  transition: color 0.2s, text-shadow 0.2s;
}
body.mindhive-themed a:hover {
  color: #A3E4FF;
  text-shadow: 0 0 8px rgba(107,200,240,0.4);
}

/* Swiper / gallery images */
body.mindhive-themed .swiper-slide img {
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
body.mindhive-themed .swiper-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(107,200,240,0.25);
}

/* === MindHive Project Pages — Navbar & Mobile Fix === */
body.mindhive-themed .header.dark-background {
  /* background: rgba(10, 12, 18, 0.97) !important; */
  border-right: 1px solid rgba(107,200,240,0.15);
  box-shadow: 0 0 20px rgba(107,200,240,0.05);
}

body.mindhive-themed .navmenu a {
  color: rgba(220, 235, 255, 0.88) !important;
}

body.mindhive-themed .navmenu a:hover,
body.mindhive-themed .navmenu .active {
  color: #6BC8F0 !important;
  background: linear-gradient(90deg, rgba(107,200,240,0.08), transparent);
  border-left: 2px solid #6BC8F0;
  text-shadow: 0 0 6px rgba(107,200,240,0.4);
}

@media (max-width: 1199px) {
  body.mindhive-themed .header {
    padding-top: 70px !important;
    background: rgba(10,12,18,0.98) !important;
    backdrop-filter: blur(6px);
  }
  body.mindhive-themed .header-toggle {
    top: 25px !important;
    right: 20px !important;
  }
}
/* === Portfolio Details Customizations (Ninja Cat) === */
.portfolio-details-page {
  background: #0d1117;
  color: #e6edf3;
}

.portfolio-description h2, 
.portfolio-description h3, 
.portfolio-info h3 {
  color: var(--accent, #58a6ff);
}

.feature-item {
  background: rgba(30,108,166,0.08);
  border: 1px solid rgba(107,200,240,0.25);
  border-radius: 12px;
  padding: 18px;
  text-align: left;
  transition: 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(107,200,240,0.5);
  box-shadow: 0 0 12px rgba(107,200,240,0.2);
}
.feature-item i {
  font-size: 1.8rem;
  color: var(--accent, #58a6ff);
  margin-bottom: 8px;
  display: block;
}
.project-details-slider {
  overflow: hidden;
  border-radius: 12px;
}

.project-details-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.project-details-slider img,
.portfolio-details-slider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
/* === Project Details tweaks === */
.feature-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.feature-item i {
  font-size: 2rem;
  color: var(--accent, #1e6ca6);
  margin-bottom: .5rem;
}

/* mini gallery */
.mini-thumb {
  width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mini-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(107,200,240,0.5);
}

.project-thumbs .thumb-img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all .25s ease;
}

.project-thumbs .thumb-img:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.project-thumbs .thumb-img.active {
  opacity: 1;
  border: 2px solid var(--accent-color, #1e6ca6);
  box-shadow: 0 0 10px rgba(30,108,166,0.7);
  transform: scale(1.12);
}

@media (max-width: 991.98px) {
  #project-details .row.gy-4.flex-column-reverse.flex-lg-row {
    flex-direction: column !important;
  }

  #project-details .project-info {
    order: 1 !important;
  }

  #project-details .project-details-slider {
    order: 2 !important;
  }

  #project-details .project-thumbs {
    order: 3 !important;
  }

  #project-details .project-description {
    order: 4 !important;
  }
}

/* === Cyber Select (Chevron + Glow Dynamic Behavior) === */
.theme-select {
  position: relative;
  display: inline-block;
}

.theme-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  color: #00eaff;
  border: 1px solid rgba(0, 255, 255, 0.4);
  padding-right: 28px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.theme-select::after {
  content: "\f282"; /* bootstrap chevron-down */
  font-family: "Bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
  color: currentColor;
  font-size: 0.8rem;
  pointer-events: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Flip chevron up when dropdown is open or focused */
.theme-select.open::after,
.theme-select:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
  color: #00ffff;
}

/* Hover glow */
.theme-select select:hover {
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
  color: #00ffff;
}

/* === MindHive Navbar — Final Stable Version === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  background: rgba(10,20,30,0.92);
  border-right: 1px solid rgba(107,200,240,0.15);
  box-shadow: 2px 0 15px rgba(107,200,240,0.05);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  z-index: 1000;
  transition: transform 0.35s ease;
}

/* Mobile hidden state */
@media (max-width: 1199px) {
  .header {
    transform: translateX(-100%);
  }
  .header.header-show {
    transform: translateX(0);
  }
}

.header-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1100;
  background: var(--accent-color, #6bc8f0);
  color: #000;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 12px rgba(107,200,240,0.3);
  cursor: pointer;
}

/* Navmenu */
.navmenu {
  width: 100%;
}
.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.navmenu li {
  width: 100%;
  margin-bottom: 6px;
}
.navmenu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 18px;
  border-radius: 6px;
  color: var(--default-color, #c9d8e3);
  text-decoration: none;
  font-family: var(--nav-font, "Nunito", sans-serif);
  transition: all 0.25s ease;
}
.navmenu a .navicon {
  color: var(--accent-color, #6bc8f0);
  margin-right: 10px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover + Active */
.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color, #6bc8f0);
  background: rgba(107,200,240,0.08);
  box-shadow: 0 0 10px rgba(107,200,240,0.15);
}
.navmenu a:hover .navicon,
.navmenu a.active .navicon {
  transform: scale(1.2);
  color: var(--accent-color, #6bc8f0);
}
.navmenu a.active::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--accent-color, #6bc8f0);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(107,200,240,0.6);
}

/* Social links */
.social-links {
  width: 100%;
  text-align: center;
}
.social-links a {
  color: var(--accent-color, #6bc8f0);
  margin: 0 6px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(107,200,240,0.4);
}

/* Content offset */
#main,
main,
.main-content {
  margin-left: 250px;
}
@media (max-width: 1199px) {
  #main,
  main,
  .main-content {
    margin-left: 0;
  }
}

#navmenu a {
  transition: none !important;
  transform: none !important;
  animation: none !important;
}
#navmenu a:focus,
#navmenu a:active {
  outline: none !important;
  transform: none !important;
}

.g-recaptcha iframe {
  display: block;
  width: 298px;
  height: 72px;
  border: 0;
  margin: 0;
  clip-path: inset(1px 1px round 0);
}

/* === FINAL FIX: lock navbar item box size === */
.navmenu a,
.navmenu a:hover,
.navmenu a:focus,
.navmenu a:active {
  transform: none !important;
  box-sizing: border-box !important;
  border-left-width: 2px !important;
  padding: 10px 18px !important;
}
.navmenu a .navicon,
.navmenu a .toggle-dropdown {
  transform: none !important;
}

.navmenu .dropdown > a.active .toggle-dropdown i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.navmenu .toggle-dropdown i {
  transition: transform 0.3s ease;
}

.breadcrumbs {
  display: inline-block;
  margin: 1rem 0 2rem 4rem;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(107,200,240,0.25);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding-left: 1rem;
  border-left: 2px solid var(--accent-color);
  margin-left: -2px;
  margin-bottom: 1rem;
  opacity: 0;
  pointer-events: none;
  
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.breadcrumbs a:hover {
  color: var(--heading-color);
  transform: translateX(-1px);
}

/* === GLightbox (Open Preview) — Themed Override === */
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  background: rgba(8, 12, 18, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(107, 200, 240, 0.15);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.06);
  color: var(--default-color);
  font-family: "Nunito", "Ubuntu", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 18px 20px;
  border-radius: 8px;
}

.glightbox-clean .gslide-title,
.glightbox-modern .gslide-title {
  color: var(--accent-color);
  font-family: "Ubuntu", "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.glightbox-container .goverlay {
  background: rgba(2, 4, 8, 0.92);
  backdrop-filter: blur(5px);
}

.gbtn svg path {
  fill: var(--accent-color);
  transition: fill 0.3s ease;
}

.gbtn:hover svg path {
  fill: #fff;
}

/* === Project Items — Unified Hover & Centered Layout === */
.projects-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.projects-wrap img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.projects-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.projects-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(8, 12, 18, 0.85);
  color: var(--default-color);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.projects-wrap:hover .projects-info {
  opacity: 1;
}

.projects-info .category {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects-info h4 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 5px;
  letter-spacing: 0.4px;
}

.projects-info .projects-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.projects-links a {
  color: var(--accent-color);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.projects-links a:hover {
  color: #fff;
}

/* === GLightbox — “Full Project Details” Link === */
.gslide-description .project-link {
  display: inline-block;
  color: var(--accent-color);
  font-family: "Nunito", "Ubuntu", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.gslide-description .project-link:hover {
  color: #fff;
  text-decoration: underline;
}
.gslide-description .project-link {
  display: inline-block;
  color: var(--accent-color);
  font-family: "Nunito", "Ubuntu", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.gslide-description .project-link:hover {
  color: #fff;
  text-decoration: none;
}

/* === Themed red title inside GLightbox preview === */
.glightbox-clean .gslide-title,
.glightbox-modern .gslide-title {
  color: #ff5555; /* or use var(--rose) if defined in your palette */
  font-family: "Ubuntu", "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}


/* chevron flip only when dropdown is actually open */
.navmenu .dropdown .toggle-dropdown i{transition:transform .3s ease;transform:none;}
.navmenu .dropdown > a.active .toggle-dropdown i{transform:none;}          /* neutralize scroll 'active' */
.navmenu .dropdown.is-open > a .toggle-dropdown i{transform:rotate(180deg);} /* flip only on open */

/* === Sticky "Back to Projects" button (all views) === */
.breadcrumbs {
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(8, 12, 18, 0.9);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-bottom: 1px solid rgba(107, 200, 240, 0.15);
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #fff;
}

/* === Performance Optimizations (MindHive Index / Projects) === */

/* remove heavy blur from fixed elements that repaint constantly */
.header.dark-background,
.breadcrumbs {
  backdrop-filter: none !important;
  background: rgba(8, 12, 18, 0.97) !important;
}

/* keep glow aesthetic without blur */
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  backdrop-filter: none !important;
}

/* prevent GPU thrashing during scroll & transforms */
.hero,
.section,
.projects-wrap img,
.gslide-description {
  transform: translateZ(0);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* stop AOS from stacking too many animations on mobile */
@media (max-width: 991px) {
  [data-aos] {
    transition-duration: 0.4s !important;
    transform: none !important;
  }
}

[data-aos],
.projects-wrap img,
.feature-item,
.glightbox,
.swiper {
  animation-play-state: running;
  transition: all 0.4s ease;
}

/* === GLightbox Visibility + Lag Fix (Verified Working) === */
.glightbox-container {
  transform: translateZ(0);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.glightbox-container .goverlay {
  background: rgba(2, 4, 8, 0.94) !important;
  transition: opacity 0.35s ease !important;
  backdrop-filter: none !important;
}

/* Critical: keep internal transitions intact */
.glightbox-slide,
.gslide-media img,
.gslide-description {
  opacity: 1;
  transform: none;
  transition: none !important;
  will-change: auto;
  visibility: visible !important;
}

/* Retain your theme visuals */
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  background: rgba(8, 12, 18, 0.92) !important;
  border: 1px solid rgba(107,200,240,0.15);
  color: var(--default-color);
  box-shadow: 0 0 25px rgba(0,255,255,0.06);
  padding: 18px 20px;
  text-align: center;
  border-radius: 8px;
  backdrop-filter: none !important;
}

/* Ensure overlay doesn’t hide content */
.glightbox-open .goverlay {
  opacity: 1 !important;
  visibility: visible !important;
}
/* === Center 'Back to Projects' link to avoid overlap with hamburger === */
.breadcrumbs {
  text-align: center !important;
  margin: 1rem auto 2rem auto !important;
  display: block !important;
  width: 100%;
  padding: 2px 0 !important;
}

.breadcrumbs a {
  justify-content: center !important;
}
