/*
Tooplate 2136 Kool Form Pack
https://www.tooplate.com/view/2136-kool-form-pack
Bootstrap 5 Form Pack Template
*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  /* Enhanced Background Colors - Stable dark for better contrast */
  --body-bg-color: #0A0E27;
  --section-bg-overlay: rgba(10, 14, 39, 0.95);

  /* Enhanced Text Colors - High contrast for readability */
  --white-color: #F8FAFC;
  --p-color: #E2E8F0;

  /* Refined Color Palette - Subtle neon accents */
  --primary-color: #22D3EE;
  /* Refined Cyan - Subtle accent for borders and highlights */
  --secondary-color: #8B5CF6;
  /* Refined Purple - Muted secondary accent */
  --tertiary-color: #1E3A8A;
  /* Deep Blue - Supporting color */
  --accent-warm: #F472B6;
  /* Soft Pink - For subtle highlights */

  /* Legacy color mappings for compatibility */
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #22D3EE;
  --custom-btn-bg-hover-color: #8B5CF6;
  --dark-color: #000000;
  --link-hover-color: #22D3EE;

  --body-font-family: 'Poppins', sans-serif;
  --heading-font-family: 'Unbounded', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --p-font-size: 18px;
  --menu-font-size: 16px;
  --btn-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background-color: var(--body-bg-color);
  font-family: var(--body-font-family);
  color: var(--white-color);
}

html {
  scroll-behavior: smooth;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
  color: var(--white-color);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.8;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  GLASSMORPHISM & CARDS
-----------------------------------------*/
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-top: 2px solid rgba(0, 217, 255, 0.4);
  border-left: 2px solid rgba(0, 217, 255, 0.4);
  border-radius: 24px;
  padding: 40px;

  transition: all 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 15px 50px 0 rgba(0, 217, 255, 0.3), 0 0 40px rgba(0, 217, 255, 0.2); */
  border-color: rgba(0, 217, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 24px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--dark-color);
  transform: translateY(-2px);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--dark-color);
}

/*---------------------------------------
  SITE HEADER        
-----------------------------------------*/
.site-header {
  position: fixed;
  /* Fixed header */
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.3s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header .container {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius-large);
  padding: 10px 25px;
  backdrop-filter: blur(5px);
}

.site-header-text {
  color: var(--white-color);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
}

.site-header-text span {
  margin-left: 10px;
}

.nav-link {
  color: var(--white-color);
  margin: 0 15px;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* .nav-link:hover {
  color: var(--secondary-color);
} */


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
}

.video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Overlay to make text readable */
  z-index: 1;
}

.custom-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-title {
  color: var(--white-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-medium);
  color: var(--white-color);
  margin-bottom: 20px;
  padding: 15px;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(224, 122, 95, 0.3);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--heading-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  padding: 12px 30px;
  margin-top: 10px;
}

.custom-form button[type="submit"]:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--dark-color);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 45px;
  height: 45px;
  transition: all 0.3s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .site-header .container {
    padding: 10px;
  }

  .nav-link {
    margin: 5px 0;
    display: block;
  }
}

/*---------------------------------------
  PROFILE IMAGE
-----------------------------------------*/
/* .profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
} */

/* .profile-image:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
} */

/*---------------------------------------
  CONTACT SOCIAL ICONS
-----------------------------------------*/
.contact-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-social-icons .social-icon-link {
  width: 80px;
  height: 80px;
}

/* .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
} */

/* .nav-link:hover {
  color: var(--secondary-color);
} */

/*---------------------------------------
  ENHANCED HERO SECTION
-----------------------------------------*/
/* Enhanced Profile Image */


@keyframes float {

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

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

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #E07A5F 0%, #00FFFF 50%, #A972FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(169, 114, 255, 0.5);
  animation: fadeInUp 1s ease;
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

/* Professional Title */
.professional-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Card Container */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-top: 2px solid rgba(0, 217, 255, 0.4);
  border-left: 2px solid rgba(0, 217, 255, 0.4);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2), 0 0 40px rgba(0, 217, 255, 0.1);
  animation: fadeIn 1.5s ease;
  transition: all 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: 0 25px 70px rgba(0, 217, 255, 0.3), 0 0 60px rgba(0, 217, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .gradient-text {
    font-size: 2.5rem;
  }

  .professional-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .profile-image-enhanced {
    width: 150px;
    height: 150px;
  }

  .hero-card {
    padding: 40px 30px;
  }
}

/*---------------------------------------
  PROFESSIONAL OFFCANVAS MENU
-----------------------------------------*/
.offcanvas {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 2px solid rgba(224, 122, 95, 0.3) !important;
}

.offcanvas-body {
  background: transparent !important;
}

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

.offcanvas-body ul li {
  margin: 20px 0;
}

.offcanvas-body ul li a {
  color: var(--white-color) !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
}

.offcanvas-body ul li a:hover {
  background: rgba(0, 217, 255, 0.6);
  color: var(--secondary-color) !important;
  transform: translateX(10px);
}

/*---------------------------------------
  CONTACT SOCIAL ICONS
-----------------------------------------*/
.contact-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-social-icons .social-icon-link {
  width: 80px;
  height: 80px;
}

/* .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
} */

/* .nav-link:hover {
  color: var(--secondary-color);
} */

/*---------------------------------------
  ENHANCED HERO SECTION
-----------------------------------------*/
/* Enhanced Profile Image */
.profile-image-enhanced {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  /* box-shadow: 0 0 40px rgba(0, 217, 255, 0.6),
    0 0 80px rgba(0, 217, 255, 0.3); */
  transition: all 0.5s ease;
  animation: float 3s ease-in-out infinite;
}

.profile-image-enhanced:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 217, 255, 0.8),
    0 0 120px rgba(0, 217, 255, 0.3);
}

@keyframes float {

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

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

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #E07A5F 0%, #00FFFF 50%, #A972FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(169, 114, 255, 0.5);
  animation: fadeInUp 1s ease;
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

/* Professional Title */
.professional-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Card Container */
.hero-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2), 0 0 40px rgba(0, 217, 255, 0.1);
  animation: fadeIn 1.5s ease;
  transition: all 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: 0 25px 70px rgba(0, 217, 255, 0.3), 0 0 60px rgba(0, 217, 255, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .gradient-text {
    font-size: 2.5rem;
  }

  .professional-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .profile-image-enhanced {
    width: 150px;
    height: 150px;
  }

  .hero-card {
    padding: 40px 30px;
  }
}

/*---------------------------------------
  PROFESSIONAL OFFCANVAS MENU
-----------------------------------------*/
.offcanvas {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 2px solid rgba(224, 122, 95, 0.3) !important;
}

.offcanvas-body {
  background: transparent !important;
}

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

.offcanvas-body ul li {
  margin: 20px 0;
}

.offcanvas-body ul li a {
  color: var(--white-color) !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
}

.offcanvas-body ul li a:hover {
  background: rgba(0, 217, 255, 0.6);
  color: var(--secondary-color) !important;
  transform: translateX(10px);
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
/* .site-footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}

.copyright-text {
  color: var(--p-color);
  font-size: 14px;
  margin: 0;
} */

/* .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
} */

/* .nav-link:hover {
  color: var(--secondary-color);
} */

/*---------------------------------------
  ENHANCED HERO SECTION
-----------------------------------------*/
/* Enhanced Profile Image */


@keyframes float {

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

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

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #E07A5F 0%, #00FFFF 50%, #A972FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(169, 114, 255, 0.5);
  animation: fadeInUp 1s ease;
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

/* Professional Title */
.professional-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Card Container */
.hero-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 217, 255, 0.6);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease;
  transition: all 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .gradient-text {
    font-size: 2.5rem;
  }

  .professional-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .profile-image-enhanced {
    width: 150px;
    height: 150px;
  }

  .hero-card {
    padding: 40px 30px;
  }
}

/*---------------------------------------
  PROFESSIONAL OFFCANVAS MENU
-----------------------------------------*/
.offcanvas {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 2px solid rgba(224, 122, 95, 0.3) !important;
}

.offcanvas-body {
  background: transparent !important;
}

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

.offcanvas-body ul li {
  margin: 20px 0;
}

.offcanvas-body ul li a {
  color: var(--white-color) !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
}

.offcanvas-body ul li a:hover {
  background: rgba(0, 217, 255, 0.6);
  color: var(--secondary-color) !important;
  transform: translateX(10px);
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}

.copyright-text {
  color: var(--p-color);
  font-size: 14px;
  margin: 0;
}

.site-footer .social-icon-link {
  background: rgba(255, 255, 255, 0.05);
}

.site-footer .social-icon-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/*---------------------------------------
  CUSTOM CURSOR EFFECT
-----------------------------------------*/
* {
  cursor: none !important;
}

.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  transition: transform 0.2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary-color);
  opacity: 0.5;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

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

.offcanvas-body ul li {
  margin: 20px 0;
}

.offcanvas-body ul li a {
  color: var(--white-color) !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
}

.offcanvas-body ul li a:hover {
  background: rgba(0, 217, 255, 0.6);
  color: var(--secondary-color) !important;
  transform: translateX(10px);
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}

.copyright-text {
  color: var(--p-color);
  font-size: 14px;
  margin: 0;
}

.site-footer .social-icon-link {
  background: rgba(255, 255, 255, 0.05);
}

.site-footer .social-icon-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/*---------------------------------------
  CUSTOM CURSOR EFFECT
-----------------------------------------*/
* {
  cursor: none !important;
}

.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  transition: transform 0.2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary-color);
  opacity: 0.5;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/*---------------------------------------
  PROFESSIONAL NAVIGATION
-----------------------------------------*/
.navbar {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  color: var(--white-color);
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1px;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-brand i {
  color: var(--primary-color);
}

.nav-item {
  margin: 0 5px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 217, 255, 0.6);
}

.navbar-toggler {
  border: none;
  padding: 0;
  color: var(--white-color);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Adjustments */
@media screen and (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    display: block;
    margin: 5px 0;
    text-align: center;
  }

  /* Mobile specific padding for sections */
  .section-padding {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}

/*---------------------------------------
  ENHANCED NAVIGATION BUTTONS
-----------------------------------------*/

/* Enhanced Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  padding: 12px 0 !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Enhanced Brand */
.navbar-brand {
  transition: all 0.3s ease !important;
}

.navbar-brand:hover {
  transform: scale(1.05) !important;
}

.navbar-brand i {
  transition: transform 0.5s ease !important;
}

/* .navbar-brand:hover i {
  transform: rotate(360deg) !important;
} */

/* Enhanced Nav Items */
.nav-item {
  margin: 0 8px !important;
}

/* Beautiful Nav Links */
.nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  letter-spacing: 0.5px !important;
}

/* Ripple Effect */
/* .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
} */

/* .nav-link:hover::before {
  width: 300px;
  height: 300px;
} */

/* Hover State */
/* .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(0, 217, 255, 0.6) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.35) !important;
} */

/* Active State */
/* .nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.4), rgba(255, 255, 255, 0.25)) !important;
  border-color: rgba(0, 217, 255, 0.7) !important;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.45),
    inset 0 1px 3px rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
} */

/* Enhanced Toggler */
/* .navbar-toggler {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  transition: transform 0.3s ease !important;
}

.navbar-toggler:hover {
  background: transparent !important;
  transform: scale(1.1) !important;
} */

/* .navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon {
  width: 26px !important;
  height: 26px !important;
} */

/* Mobile Menu */
@media screen and (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.96) !important;
    backdrop-filter: blur(30px) !important;
    border-radius: 20px !important;
    padding: 25px 20px !important;
    margin-top: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
  }

  .nav-link {
    display: block !important;
    margin: 8px 0 !important;
    text-align: center !important;
    font-size: 16px !important;
    padding: 14px 24px !important;
  }

  .nav-item {
    margin: 0 !important;
  }
}

/* Tablet Adjustments */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .nav-link {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}

/* Offcanvas Styles (Mobile Only) */
@media screen and (max-width: 991px) {
  .offcanvas {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 100vh !important;
    top: 0 !important;
    bottom: 0 !important;
    position: fixed !important;
    z-index: 9999 !important;
    width: 70% !important;
    max-width: 300px !important;
  }

  .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px !important;
  }

  .offcanvas-title {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: all 0.3s ease;
  }

  .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
  }

  .offcanvas-body {
    padding: 20px !important;
  }

  .offcanvas-body .nav-link {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 15px !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    margin: 10px 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
  }

  .offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(0, 217, 255, 0.5) !important;
    transform: translateY(-2px) scale(1.02) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2) !important;
  }

  .offcanvas-body .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.4), rgba(255, 255, 255, 0.25)) !important;
    border-color: rgba(0, 217, 255, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3) !important;
  }
}

/* Desktop Navbar Reset */
@media screen and (min-width: 992px) {
  .navbar-expand-lg .offcanvas {
    position: static !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .navbar-expand-lg .offcanvas-header {
    display: none !important;
  }

  .navbar-expand-lg .offcanvas-body {
    padding: 0 !important;
    overflow: visible !important;
    display: flex !important;
    flex-grow: 1 !important;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    justify-content: flex-end !important;
  }

  .navbar-expand-lg .nav-link {
    margin: 0 5px !important;
    padding: 10px 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    display: inline-block !important;
    width: auto !important;
  }

  .navbar-expand-lg .nav-link:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6) !important;
  }
}

/*---------------------------------------
  SKILLS SECTION
-----------------------------------------*/
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.skill-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.skill-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary-color);
  opacity: 0.9;
}

.skill-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.skill-level {
  font-size: 11px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--primary-color);
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
  box-shadow: none;
}

.progress-bar.animate {
  width: var(--progress-width);
}

/*---------------------------------------
  STATISTICS COUNTER
-----------------------------------------*/
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.9;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--heading-font-family);
}

.stat-label {
  font-size: 14px;
  color: var(--p-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/*---------------------------------------
  CERTIFICATIONS SECTION
-----------------------------------------*/
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-card::after {
  content: '✓';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: var(--secondary-color);
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 0.5s ease;
}

.cert-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.6);
  /* box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3), 0 0 30px rgba(0, 217, 255, 0.2); */
  background: rgba(255, 255, 255, 0.08);
}

.cert-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.cert-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 10px;
}

.cert-org {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.cert-date {
  font-size: 14px;
  color: var(--p-color);
  margin-bottom: 15px;
}

.cert-link {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(224, 122, 95, 0.2);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--white-color);
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cert-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 122, 95, 0.4);
}

/*---------------------------------------
  CONTACT FORM ENHANCED
-----------------------------------------*/
.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--white-color);
  font-size: 16px;
  font-family: var(--body-font-family);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(224, 122, 95, 0.3);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-input.error,
.form-textarea.error {
  border-color: #ff6b6b;
}

.form-input.error~.form-error,
.form-textarea.error~.form-error {
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(224, 122, 95, 0.5);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  background: rgba(76, 175, 80, 0.2);
  border: 2px solid #4caf50;
  border-radius: 15px;
  padding: 20px;
  color: #4caf50;
  text-align: center;
  margin-top: 20px;
  display: none;
}

.form-success.show {
  display: block;
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------
  LOADING ANIMATION (LEGACY - HIDDEN)
-----------------------------------------*/
.loading-screen {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--primary-color);
  border-right: 5px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

.loading-text {
  position: absolute;
  margin-top: 120px;
  font-size: 18px;
  color: var(--white-color);
  font-weight: 500;
  letter-spacing: 2px;
}

/*---------------------------------------
  PROGRESSIVE LOADING - TOP PROGRESS BAR
-----------------------------------------*/
.progress-bar-top {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 99999;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(224, 122, 95, 0.6),
    0 0 20px rgba(224, 122, 95, 0.4);
  opacity: 0;
}

.progress-bar-top.active {
  opacity: 1;
}

.progress-bar-top.complete {
  width: 100% !important;
  transition: width 0.2s ease;
}

.progress-bar-top.hide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Pulse animation for progress bar */
@keyframes progressPulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(224, 122, 95, 0.6),
      0 0 20px rgba(224, 122, 95, 0.4);
  }

  50% {
    box-shadow: 0 0 15px rgba(224, 122, 95, 0.8),
      0 0 30px rgba(224, 122, 95, 0.6);
  }
}

.progress-bar-top.active {
  animation: progressPulse 1.5s ease-in-out infinite;
}

/*---------------------------------------
  SCROLL ANIMATIONS
-----------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/*---------------------------------------
  PROJECT FILTERS
-----------------------------------------*/
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 217, 255, 0.6);
  border-radius: 50px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.filter-btn:hover {
  border-color: rgba(0, 217, 255, 0.6);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(224, 122, 95, 0.4);
}

.project-item {
  transition: all 0.5s ease;
}

.project-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.8);
}

/*---------------------------------------
  PROJECT CARD ENHANCEMENTS
-----------------------------------------*/
.project-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-image-container:hover .project-overlay {
  opacity: 1;
}

.project-btn {
  padding: 10px 20px;
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-2px);
}

/*---------------------------------------
  DOWNLOAD CV BUTTON
-----------------------------------------*/
.download-cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.6);
}

.download-cv-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.6);
  color: var(--white-color);
}

.download-cv-btn i {
  font-size: 22px;
}

/*---------------------------------------
  FOOTER ENHANCEMENT
-----------------------------------------*/
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(0, 217, 255, 0.6);
}

.copyright-text {
  color: var(--p-color);
  font-size: 14px;
  margin: 0;
}

/*---------------------------------------
  CUSTOM CURSOR STYLES
-----------------------------------------*/
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/*---------------------------------------
  INTERACTIVE PARTICLE NETWORK BACKGROUND
-----------------------------------------*/
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0D1117, #1C1E26);
}

/*---------------------------------------
  CTA BUTTONS
-----------------------------------------*/
.cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(34, 211, 238, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button:hover {
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

.cta-button.secondary {
  background: transparent;
  border-color: rgba(139, 92, 246, 0.5);
}

.cta-button.secondary::before {
  background: var(--secondary-color);
}

.cta-button i {
  font-size: 18px;
}

/*---------------------------------------
  TECHNOLOGY BADGES & TAGS
-----------------------------------------*/
.tech-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 12px;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 3px;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-1px);
}

.tech-tag.solid {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--secondary-color);
}

.tech-tag.solid:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
}

.tech-tag.optimization {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  color: #22C55E;
}

.tech-tag.optimization:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
}

.tech-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/*---------------------------------------
  MOBILE RESPONSIVE ADJUSTMENTS
-----------------------------------------*/
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.7;
  }

  .text-white-50 {
    font-size: 15px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .skill-name {
    font-size: 16px;
  }
}