/**
* Template Name: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #272829;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #149ddd;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #a8a9b4;
  /* 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: #040b14;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff;
  /* 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: #f4fafd;
  --surface-color: #ffffff;
}

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

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: rgba(4, 11, 20, 0.85);
  backdrop-filter: blur(15px);
  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;
  border-right: 1px solid rgba(20, 157, 221, 0.3);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 4px solid rgba(20, 157, 221, 0.5);
  box-shadow: 0 0 20px rgba(20, 157, 221, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.header .profile-img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 30px rgba(20, 157, 221, 0.5);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .social-links {
  margin: 0 0 20px 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 {
    left: -300px;
  }

  .sidebar-active .header {
    left: 0;
  }

  main,
  #footer {
    margin-left: 0 !important;
    transition: margin-left 0.3s ease-in-out;
  }

  .sidebar-active main,
  .sidebar-active #footer {
    margin-left: 300px !important;
  }
}

/* Sidebar Expand Bubble */
.sidebar-expand-bubble {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 998;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-expand-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-expand-bubble:hover img {
  transform: scale(1.1);
}

.sidebar-expand-bubble.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5) translateY(50px);
}

/* Soft Bounce Animation */
@keyframes soft-bounce {

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

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

.sidebar-expand-bubble {
  animation: soft-bounce 3s infinite ease-in-out;
}

/* Resume Skills List */
.resume-skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.resume-skills-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.resume-skills-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.resume-skill-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Collapsible Skills */
.skill-hidden {
  display: none !important;
}

.resume-skills-list.expanded .skill-hidden {
  display: flex !important;
}

.skills-toggle-wrapper {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.skills-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skills-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.skills-toggle-btn i {
  transition: transform 0.3s ease;
}

.skills-toggle-btn.active i {
  transform: rotate(180deg);
}

/* Close Button for Desktop Sidebar */
.header-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--default-color);
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s;
  display: none;
}

@media (min-width: 1200px) {
  .header-close-btn {
    display: block;
  }
}

@media (max-width: 1199px) {
  .sidebar-expand-bubble {
    display: none;
  }
}

.header-close-btn:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

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

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

.mobile-nav-active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 996;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(20, 157, 221, 0.4);
}

.header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  box-shadow: 0 0 25px rgba(20, 157, 221, 0.7);
  transform: scale(1.1);
}

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

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

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

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 12px 15px;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: calc(100% - 10px);
  margin: 0 5px 5px 5px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.navmenu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 157, 221, 0.1), transparent);
  transition: left 0.6s ease;
}

.navmenu a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 15px var(--accent-color);
  transition: width 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.navmenu a:hover::after,
.navmenu .active::after {
  width: 5px;
}

.navmenu a:hover::before {
  left: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.navmenu a:hover .navicon {
  transform: scale(1.2) rotate(-10deg);
  color: var(--accent-color);
}

.navmenu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 20px;
}

.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
  background: rgba(20, 157, 221, 0.15);
  box-shadow: inset 0 0 10px rgba(20, 157, 221, 0.2);
}

.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 .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
  text-shadow: 0 0 10px 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: 40px 0;
  position: relative;
  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;
  z-index: 1000001;
}

#preloader-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}

#preloader-text-rings {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.text-ring-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  pointer-events: none;
  animation: grow-spin-blur-svg 10s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  opacity: 0;
}

.text-ring-svg text {
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  fill: currentColor;
  filter: drop-shadow(0 0 5px currentColor);
}

@keyframes grow-spin-blur-svg {
  0% {
    transform: translate(-50%, -50%) scale(0.05) rotate(0deg);
    opacity: 0;
    filter: blur(2px);
  }

  15% {
    opacity: 0.4;
    filter: blur(0px);
  }

  70% {
    opacity: 0.4;
    filter: blur(0px);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5) rotate(90deg);
    opacity: 0;
    filter: blur(15px);
  }
}

/* Marquee/Ticker effect around the circle */
.text-ring-svg textPath {
  animation: circular-ticker 30s linear infinite;
}

@keyframes circular-ticker {
  from {
    startOffset: 0%;
  }

  to {
    startOffset: 100%;
  }
}

#preloader-quotes {
  position: absolute;
  bottom: 20%;
  width: 80%;
  max-width: 600px;
  text-align: center;
  color: var(--default-color);
  font-style: italic;
  font-family: var(--default-font);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.8s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#preloader-quotes.show {
  opacity: 1;
}

.loading-container {
  position: absolute;
  bottom: 10%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.loading-bubble {
  background: rgba(20, 157, 221, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid rgba(20, 157, 221, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.loading-text {
  font-family: var(--nav-font);
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-color), #00d4ff);
  box-shadow: 0 0 10px var(--accent-color);
  transition: width 0.3s ease;
}

@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: 990;
  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);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.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: 30px 0;
  overflow: clip;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  background: linear-gradient(90deg, var(--accent-color), #00d4ff, #9b51e0, var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: h-shine 4s linear infinite;
}

@keyframes h-shine {
  to {
    background-position: 200% center;
  }
}

.section-title h2:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  border-radius: 2px;
  box-shadow: 0 0 15px var(--accent-color);
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background: #00d4ff;
  bottom: 0;
  left: 65px;
  border-radius: 2px;
  box-shadow: 0 0 10px #00d4ff;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

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

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: auto;
  display: block;
  background: none;
  border-radius: 0;
  margin-bottom: 25px;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-family: var(--heading-font);
  width: 100%;
  overflow: visible;
}

.skills .progress .skill .val {
  font-style: normal;
  margin-left: auto;
  margin-right: 10px;
  /* Reduced margin to make room for info button */
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.skills .know-more-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin-right: 5px;
  /* Prevent cutting on the right edge */
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
}

.skills .know-more-btn:hover {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
  text-shadow: 0 0 10px var(--accent-color);
}

.skills .related-skills {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
  font-style: italic;
}

.skills .progress-bar-wrap {
  background: rgba(0, 0, 0, 0.1);
  height: 12px;
  border-radius: 10px;
  overflow: visible;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skills .progress-bar {
  width: 0;
  height: 100%;
  transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
  background: linear-gradient(90deg, var(--accent-color), #fff, var(--accent-color));
  background-size: 200% 100%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px var(--accent-color), 0 0 5px #fff;
  animation: shimmer 2s linear infinite;
}

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

  100% {
    background-position: -200% 0;
  }
}

/* 3D Effect for progress bar */
.skills .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 10px;
}

/* Popup Styles */
.skill-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.skill-popup.active {
  display: flex;
  opacity: 1;
}

.skill-popup-content {
  background: rgba(21, 31, 43, 0.95);
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  color: #fff;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.skill-popup-content::-webkit-scrollbar {
  width: 6px;
}

.skill-popup-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.skill-popup.active .skill-popup-content {
  transform: translateY(0) scale(1);
}

.close-popup {
  position: absolute;
  top: 15px;
  /* Moved up from 30px */
  right: 15px;
  /* Moved right from 30px */
  font-size: 2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  line-height: 1;
  z-index: 10;
  /* Ensure it's above other elements */
}

.close-popup:hover {
  color: #fff;
  transform: rotate(90deg);
}

.skill-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  padding-right: 50px;
  /* Space for the close button */
}

.skill-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

#popup-skill-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.skill-popup-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  /* Glowing shimmer effect - Brightened for readability */
  background: linear-gradient(to right,
      color-mix(in srgb, currentColor, white 40%) 0%,
      #fff 30%,
      #fff 70%,
      color-mix(in srgb, currentColor, white 40%) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 3s linear infinite;
  /* Ensure a minimum brightness */
  filter: brightness(1.2);
}

@keyframes shimmer-text {
  to {
    background-position: 200% center;
  }
}

.skill-popup-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.skill-popup-badge span {
  background-size: 200% auto;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

.skill-popup-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  color: #fff;
}

/* Mobile Responsiveness for Popup */
@media (max-width: 768px) {
  .skill-popup-content {
    padding: 30px 20px 25px 20px;
    width: 95%;
    max-height: 90vh;
  }

  .skill-popup-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-right: 30px;
  }

  .skill-title-wrapper {
    gap: 15px;
  }

  #popup-skill-img {
    width: 45px;
    height: 45px;
  }

  .skill-popup-header h2 {
    font-size: 1.5rem;
  }

  .skill-popup-badge {
    padding: 6px 15px;
    font-size: 1rem;
    align-self: flex-start;
  }

  .skill-popup-body p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .close-popup {
    top: 10px;
    right: 10px;
    font-size: 1.8rem;
  }
}

.skill-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Skills List Logo Styling */
.skills .skill span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skills .skill-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.skills .skill-name {
  font-size: 1.1rem;
  background: linear-gradient(90deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.progress:hover .skill-name {
  filter: brightness(1.2);
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--surface-color);
  transition: transform 0.2s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Metallic Border Effect */
.portfolio .portfolio-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  /* Border thickness */
  background: linear-gradient(135deg,
      #888 0%,
      #fff 20%,
      #888 40%,
      #fff 60%,
      #888 80%,
      #fff 100%);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease, background-position 0.6s ease;
  pointer-events: none;
  z-index: 5;
}

/* Gloss/Light Sweep Effect */
.portfolio .portfolio-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg) translateX(calc(var(--tilt-x, 0) * 100%));
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s ease-out;
}

.portfolio .portfolio-content:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(1.02) rotateX(calc(var(--tilt-y, 0) * 15deg)) rotateY(calc(var(--tilt-x, 0) * 15deg));
}

.portfolio .portfolio-content:hover::before {
  opacity: 1;
  background-position: 100% 100%;
}

.portfolio .portfolio-content:hover::after {
  opacity: 1;
}

.portfolio .portfolio-content img {
  transition: transform 0.5s ease;
  transform: translateZ(20px);
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1) translateZ(30px);
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Dark Tech Section Styling (Technical & Achievements)
--------------------------------------------------------------*/
.dark-tech-section {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Individual Card Gradient Patterns */
.tech-bg-hex {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(100, 255, 218, 0.3) !important;
}

.tech-bg-circuit {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
  border: 1px solid rgba(129, 140, 248, 0.3) !important;
}

.tech-bg-data {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%) !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
}

.tech-bg-blueprint {
  background: linear-gradient(135deg, #451a03 0%, #78350f 100%) !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
}

.tech-bg-waves {
  background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%) !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
}

.tech-bg-glow {
  background: linear-gradient(135deg, #831843 0%, #9d174d 100%) !important;
  border: 1px solid rgba(244, 114, 182, 0.3) !important;
}

.tech-bg-education {
  background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%) !important;
  border: 1px solid rgba(187, 225, 250, 0.3) !important;
}

.tech-bg-sales {
  background: linear-gradient(135deg, #1b1a17 0%, #a35709 100%) !important;
  border: 1px solid rgba(255, 131, 3, 0.3) !important;
}

.tech-bg-management {
  background: linear-gradient(135deg, #2b2e4a 0%, #903749 100%) !important;
  border: 1px solid rgba(232, 69, 69, 0.3) !important;
}

.tech-bg-photography {
  background: linear-gradient(135deg, #142850 0%, #27496d 100%) !important;
  border: 1px solid rgba(0, 168, 204, 0.3) !important;
}

.tech-bg-productivity {
  background: linear-gradient(135deg, #2d4059 0%, #ea5455 100%) !important;
  border: 1px solid rgba(255, 212, 96, 0.3) !important;
}

/* Shared Fancy Card Styles */
#technical .service-item,
#instruction .service-item {
  border-radius: 25px !important;
  padding: 40px;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#technical .service-item:hover,
#instruction .service-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

#technical .service-item h3,
#instruction .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  /* Glowing shimmer effect */
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.7) 40%, #fff 50%, rgba(255, 255, 255, 0.7) 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 4s linear infinite;
}

#technical .service-item p,
#instruction .service-item p {
  color: rgba(255, 255, 255, 0.9) !important;
}

#technical .service-item .icon,
#instruction .service-item .icon {
  background: rgba(255, 255, 255, 0.15);
  width: 65px;
  height: 65px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff !important;
  font-size: 30px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#instruction .service-item:hover .icon {
  background: #fff;
  color: #333 !important;
  transform: scale(1.1) rotate(5deg);
}

/* Glossy Sweep Effect for Instruction */
#instruction .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.7s;
  pointer-events: none;
}

#instruction .service-item:hover::after {
  left: 150%;
}

#instruction .service-item p strong {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.know-more-btn-instruction {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.know-more-btn-instruction:hover {
  background: #fff;
  color: #333;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

#skill-popup #popup-skill-val {
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 5px 15px;
  border-radius: 20px;
}

#achievements .stats-item {
  border-radius: 20px;
  padding: 45px 25px;
  transition: all 0.3s ease;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.achievement-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
}

.achievement-flair {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.flair-link:hover .achievement-flair {
  transform: scale(1.05);
}

/* Custom SWAG Badge */
.swag-badge-link {
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  width: 100%;
}

.swag-badge {
  width: 208px;
  height: 58px;
  margin: 0 auto;
  background: linear-gradient(135deg, #E95420 0%, #772953 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(233, 84, 32, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.swag-badge-link:hover .swag-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(233, 84, 32, 0.5);
  filter: brightness(1.1);
}

.stats-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.white-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) !important;
}

#achievements .stats-item:hover .achievement-logo {
  transform: scale(1.1) rotate(5deg);
}

#achievements .stats-item:hover {
  transform: translateY(-8px);
  filter: brightness(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

#achievements .stats-item .purecounter {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

#achievements .stats-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

#achievements .resume-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 35px;
  border-radius: 20px;
  border-left: 5px solid var(--accent-color);
  color: var(--default-color);
}

#achievements .resume-item h4 {
  color: var(--accent-color);
  font-size: 22px;
  margin-bottom: 20px;
}

#achievements .resume-item ul li {
  color: var(--default-color);
}

/* Service Themes - Vibrant Edition */
.service-theme-emerald {
  --service-color: #00f2fe;
  --service-color-2: #4facfe;
  --service-color-rgb: 0, 242, 254;
}

.service-theme-indigo {
  --service-color: #667eea;
  --service-color-2: #764ba2;
  --service-color-rgb: 102, 126, 234;
}

.service-theme-amber {
  --service-color: #f6d365;
  --service-color-2: #fda085;
  --service-color-rgb: 246, 211, 101;
}

.service-theme-purple {
  --service-color: #a18cd1;
  --service-color-2: #fbc2eb;
  --service-color-rgb: 161, 140, 209;
}

.service-theme-rose {
  --service-color: #ff0844;
  --service-color-2: #ffb199;
  --service-color-rgb: 255, 8, 68;
}

.service-theme-slate {
  --service-color: #243949;
  --service-color-2: #517fa4;
  --service-color-rgb: 36, 57, 73;
}

/*--------------------------------------------------------------
# Services Section - VIBRANT NEON
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--service-color) 0%, var(--service-color-2) 100%);
  border-radius: 30px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Glass Overlay */
.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(5px);
  z-index: -1;
  transition: 0.5s;
}

.services .service-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(var(--service-color-rgb), 0.4);
}

.services .service-item:hover::before {
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(2px);
}

.services .service-item .icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.5s;
  color: #fff;
  font-size: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover .icon {
  background: #fff;
  color: var(--service-color);
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.services .service-item h4 {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.services .service-item .read-more i {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.services .service-item:hover .read-more i {
  background: #fff;
  color: var(--service-color);
  transform: translateX(10px);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.services .service-item:hover .icon {
  animation: float 3s ease-in-out infinite;
}

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

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

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

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

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

.testimonials .swiper-wrapper {
  height: auto;
}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-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 85%);
}

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

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

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

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/* Service Popup Styles */
.service-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.service-popup.active {
  opacity: 1;
  visibility: visible;
}

.service-popup-content {
  background: linear-gradient(135deg, var(--service-color, #0f172a) 0%, var(--service-color-2, #1e293b) 100%);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 30px;
  position: relative;
  padding: 50px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(var(--service-color-rgb, 0, 0, 0), 0.3);
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  z-index: -1;
  border-radius: inherit;
}

.service-popup.active .service-popup-content {
  transform: translateY(0);
}

.close-service-popup {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.close-service-popup:hover {
  opacity: 1;
  color: var(--service-color, var(--accent-color));
  transform: rotate(90deg);
}

.service-popup-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(var(--service-color-rgb, 255, 255, 255), 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--service-color, var(--accent-color));
  font-size: 36px;
  border: 1px solid rgba(var(--service-color-rgb, 255, 255, 255), 0.1);
  box-shadow: 0 0 30px rgba(var(--service-color-rgb, 0, 0, 0), 0.1);
}

.service-popup-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.service-popup-body {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 16px;
}

.service-popup-body p {
  margin-bottom: 20px;
}

.service-popup-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-popup-footer h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.service-tag {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-tag i {
  color: var(--service-color, #fff);
  font-size: 16px;
}

.service-tag:hover {
  background: #fff;
  color: var(--service-color, #0f172a);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-tag:hover i {
  color: inherit;
}

.starter-section {
  /* Add your styles here */
}