/* Hero Section Custom Styles */

:root {
  --color-bg-dark: #0a0b10;
  --color-primary: #3e64ff;
  --color-accent: #a0f669;
  --color-violet: #718dff;
  --color-text-white: #ffffff;
  --color-text-gray: #999999;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
}

/* Base modifications for the Hero Section */
.hero-wrap.js-fullheight {
  position: relative;
  background-color: var(--color-bg-dark) !important;
  background-image: none !important; /* Remove any default bg */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Canvas styling */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Ambient glow effect */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(62, 100, 255, 0.25) 0%, rgba(62, 100, 255, 0) 70%);
  top: 10%;
  left: 10%;
  animation: drift1 25s infinite alternate ease-in-out;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160, 246, 105, 0.2) 0%, rgba(160, 246, 105, 0) 70%);
  bottom: 10%;
  right: 10%;
  animation: drift2 30s infinite alternate ease-in-out;
}

.glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(113, 141, 255, 0.15) 0%, rgba(113, 141, 255, 0) 70%);
  top: 40%;
  left: 50%;
  animation: drift3 28s infinite alternate ease-in-out;
}

@keyframes drift1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 50px) scale(1.1); }
  100% { transform: translate(-40px, 90px) scale(0.9); }
}

@keyframes drift2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, -60px) scale(0.95); }
  100% { transform: translate(50px, -100px) scale(1.05); }
}

@keyframes drift3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-60px, 30px) scale(0.85); }
}

/* Ensure container sits above canvas & glows */
.hero-wrap .container {
  position: relative;
  z-index: 10;
}

/* Main Text Center Styling */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpHero 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 0.2s;
}

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

.hero-subheading {
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--color-accent) !important;
  letter-spacing: 5px !important;
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
  animation: fadeInDownHero 1s forwards ease-out;
  animation-delay: 0.5s;
}

@keyframes fadeInDownHero {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 80px !important;
  font-weight: 900 !important;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 10%, #718dff 50%, #3e64ff 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  color: transparent;
  letter-spacing: -2px;
  position: relative;
  animation: titlePulse 10s infinite alternate ease-in-out;
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 60px !important;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 45px !important;
    letter-spacing: -1px;
  }
}

.hero-role-title {
  font-size: 26px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 35px !important;
}

.hero-role-title .txt-rotate {
  color: var(--color-accent) !important;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(160, 246, 105, 0.3);
}

/* Call to Action (CTA) Buttons */
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  opacity: 0;
  animation: fadeInUpHero 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 0.8s;
}

@media (max-width: 575.98px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
  z-index: 10;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
  color: var(--color-text-white) !important;
  border: 1px solid transparent !important;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(62, 100, 255, 0.4) !important;
  color: var(--color-text-white) !important;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.hero-btn-primary:hover::after {
  left: 125%;
  opacity: 1;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(5px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05) !important;
}

/* Floating Tech Cards / Badges */
.floating-cards-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-card {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05) !important;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(62, 100, 255, 0.15);
}

.floating-card .card-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.floating-card span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Custom Floating Card Placements & Animations */
/* Left Side Cards */
.card-react {
  top: 20%;
  left: 8%;
  animation: bob1 7s infinite ease-in-out;
}

.card-node {
  top: 58%;
  left: 10%;
  animation: bob2 9s infinite ease-in-out;
}

.card-ts {
  top: 38%;
  left: 16%;
  animation: bob3 8s infinite ease-in-out;
}

.card-tailwind {
  top: 76%;
  left: 18%;
  animation: bob4 10s infinite ease-in-out;
}

.card-html {
  top: 12%;
  left: 22%;
  animation: bob5 6s infinite ease-in-out;
}

/* Right Side Cards */
.card-mongo {
  top: 18%;
  right: 8%;
  animation: bob6 8s infinite ease-in-out;
}

.card-express {
  top: 56%;
  right: 10%;
  animation: bob7 10s infinite ease-in-out;
}

.card-next {
  top: 36%;
  right: 16%;
  animation: bob8 9s infinite ease-in-out;
}

.card-js {
  top: 74%;
  right: 18%;
  animation: bob9 7s infinite ease-in-out;
}

.card-bootstrap {
  top: 10%;
  right: 22%;
  animation: bob10 6s infinite ease-in-out;
}

/* Bobbing Animations (Staggered Offsets) */
@keyframes bob1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes bob2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@keyframes bob3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bob4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bob5 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bob6 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes bob7 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes bob8 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes bob9 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-21px); }
}

@keyframes bob10 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Hide floating cards on mobile for cleaner layout */
@media (max-width: 991.98px) {
  .floating-card {
    display: none;
  }
}

/* Custom scroll wheel */
.mouse-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.mouse-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  display: block;
  margin: 0 auto;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 1.6s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% {
    top: 6px;
    opacity: 1;
    height: 6px;
  }
  50% {
    top: 15px;
    opacity: 0.5;
    height: 10px;
  }
  100% {
    top: 22px;
    opacity: 0;
    height: 6px;
  }
}

/* Fix navbar styling when transparent (not scrolled) and when scrolled */
#ftco-navbar {
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

/* 1. Transparent Navbar Over Dark Hero (Not Scrolled) */
.ftco-navbar-light:not(.scrolled) .navbar-brand {
  color: #ffffff !important;
}

.ftco-navbar-light:not(.scrolled) .navbar-brand span {
  color: var(--color-accent) !important;
}

.ftco-navbar-light:not(.scrolled) .navbar-nav > .nav-item > .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.ftco-navbar-light:not(.scrolled) .navbar-nav > .nav-item > .nav-link:hover {
  color: var(--color-accent) !important;
}

.ftco-navbar-light:not(.scrolled) .navbar-nav > .nav-item.active > .nav-link,
.ftco-navbar-light:not(.scrolled) .navbar-nav > .nav-item .nav-link.active {
  color: var(--color-accent) !important;
}

.ftco-navbar-light:not(.scrolled) .navbar-toggler {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* 2. Scrolled Navbar Over Content (Scrolled) */
#ftco-navbar.scrolled {
  background: var(--color-bg-dark) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#ftco-navbar.scrolled .navbar-brand {
  color: #ffffff !important;
}

#ftco-navbar.scrolled .navbar-brand span {
  color: var(--color-accent) !important;
}

#ftco-navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
}

#ftco-navbar.scrolled .nav-link:hover {
  color: var(--color-accent) !important;
}

#ftco-navbar.scrolled .nav-item.active .nav-link,
#ftco-navbar.scrolled .nav-link.active {
  color: var(--color-accent) !important;
}

#ftco-navbar.scrolled .navbar-toggler {
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* 3. About Section Matching Styles */
#about-section {
  background-color: var(--color-bg-dark) !important;
  position: relative;
  overflow: hidden;
  padding-top: 7em !important;
  padding-bottom: 7em !important;
}

#about-section .heading-section h2 {
  color: var(--color-text-white) !important;
  font-weight: 800;
  letter-spacing: -1px;
}

#about-section .heading-section .big {
  color: rgba(255, 255, 255, 0.03) !important;
}

#about-section p {
  color: var(--color-text-gray) !important;
  font-size: 16px;
  line-height: 1.8;
}

/* Glassmorphic card for info list */
.about-info-card {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  margin-top: 25px;
  margin-bottom: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-info-card ul.about-info {
  margin: 0 !important;
  padding: 0 !important;
}

.about-info-card ul.about-info li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  list-style: none;
  display: flex !important;
}

.about-info-card ul.about-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-info-card ul.about-info li:first-child {
  padding-top: 0;
}

.about-info-card ul.about-info li span:first-child {
  color: var(--color-text-white) !important;
  font-weight: 700;
  min-width: 120px;
}

.about-info-card ul.about-info li span:last-child {
  color: var(--color-text-gray) !important;
}

/* Counter & Resume CTA matching styles */
#about-section .counter-wrap .text p {
  color: var(--color-text-white) !important;
}

#about-section .counter-wrap .text p span {
  color: var(--color-text-white) !important;
}

#about-section .counter-wrap .text p span.number {
  color: var(--color-accent) !important;
  text-shadow: 0 0 15px rgba(160, 246, 105, 0.3);
  font-weight: 800;
}

#about-section .img-about {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  max-width: 480px; /* Limit size so it remains sharp and clear (native is 540px) */
  width: 100%;
  aspect-ratio: 1 / 1; /* Match the original square image aspect ratio */
  margin: auto; /* Center it horizontally and vertically inside the column */
  display: block !important;
}

#about-section .img-about .img {
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

#about-section .img-about:hover .img {
  transform: scale(1.04);
}

@media (max-width: 767.98px) {
  #about-section .img-about {
    max-width: 320px;
    margin-bottom: 30px;
  }
}



#about-section .btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%) !important;
  border: 1px solid transparent !important;
  color: var(--color-text-white) !important;
  padding: 14px 38px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: none !important;
}

#about-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(62, 100, 255, 0.35) !important;
}

/* 4. Partner Logos Section Matching Styles */
.ftco-partner {
  background-color: var(--color-bg-dark) !important;
  padding-top: 2.5em !important;
  padding-bottom: 4.5em !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 5;
}

.logo-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px;
  width: 100%;
}

.logo-item .logo-svg {
  height: 75px;
  width: auto;
  max-width: 150px;
  color: rgba(255, 255, 255, 0.35) !important; /* Soft white/gray */
  fill: currentColor;
  stroke: none;
  transition: all 0.4s ease;
}

/* Specific stroke vs fill handling */
.logo-item .logo-svg[stroke="currentColor"] {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35) !important;
}

/* Express Text SVG */
.logo-item .logo-svg text {
  fill: rgba(255, 255, 255, 0.35) !important;
  transition: all 0.4s ease;
}

.logo-item .logo-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  transition: all 0.4s ease;
}

/* Hover glow effects (Brand Specific Colors) */
.logo-item:hover {
  transform: translateY(-5px);
}

/* MongoDB: Green */
.logo-item[title="MongoDB"]:hover .logo-svg {
  color: #13aa52 !important;
  filter: drop-shadow(0 0 12px rgba(19, 170, 82, 0.5));
}
.logo-item[title="MongoDB"]:hover .logo-name {
  color: #13aa52 !important;
  letter-spacing: 2px;
}

/* ExpressJS: White */
.logo-item[title="Express.js"]:hover .logo-svg text {
  fill: #ffffff !important;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}
.logo-item[title="Express.js"]:hover .logo-name {
  color: #ffffff !important;
  letter-spacing: 2px;
}

/* React: Blue */
.logo-item[title="React.js"]:hover .logo-svg {
  color: #61dafb !important;
  filter: drop-shadow(0 0 12px rgba(97, 218, 251, 0.55));
}
.logo-item[title="React.js"]:hover .logo-svg g {
  stroke: #61dafb !important;
}
.logo-item[title="React.js"]:hover .logo-svg circle {
  fill: #61dafb !important;
}
.logo-item[title="React.js"]:hover .logo-name {
  color: #61dafb !important;
  letter-spacing: 2px;
}

/* NodeJS: Node Green */
.logo-item[title="Node.js"]:hover .logo-svg {
  color: #68a063 !important;
  stroke: #68a063 !important;
  filter: drop-shadow(0 0 12px rgba(104, 160, 99, 0.55));
}
.logo-item[title="Node.js"]:hover .logo-name {
  color: #68a063 !important;
  letter-spacing: 2px;
}

@media (max-width: 767.98px) {
  .logo-item .logo-svg {
    height: 50px;
  }
  .logo-item .logo-name {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* 5. Resume Section Matching Styles (Dark Cyber Theme) */
#resume-section {
  background-color: var(--color-bg-dark) !important;
  color: var(--color-text-gray) !important;
  position: relative;
  overflow: hidden;
  padding-top: 7em !important;
  padding-bottom: 7em !important;
}

#resume-section .heading {
  color: var(--color-text-white) !important;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

/* Sidebar Navigation (#navi) styling */
#navi ul {
  border-left: 2px solid rgba(255, 255, 255, 0.05) !important;
  padding-left: 15px !important;
}

#navi li a {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 700;
}

#navi li a:hover,
#navi li a.current {
  color: var(--color-accent) !important;
  text-shadow: 0 0 10px rgba(160, 246, 105, 0.3);
  padding-left: 5px;
}

/* Resume Timeline Items (Experience & Education) */
.resume-wrap {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px;
  padding: 30px !important;
  margin-bottom: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.resume-wrap:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(62, 100, 255, 0.25) !important;
  box-shadow: 0 20px 45px rgba(62, 100, 255, 0.15);
}

.resume-wrap .icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%) !important;
  color: #ffffff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(62, 100, 255, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-wrap .icon span {
  font-size: 20px;
}

.resume-wrap .text {
  width: 100%;
}

.resume-wrap .date {
  color: var(--color-accent) !important;
  font-weight: 700 !important;
  font-size: 14px;
  letter-spacing: 1px;
}

.resume-wrap h2 {
  color: var(--color-text-white) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  margin-top: 5px;
  margin-bottom: 5px;
}

.resume-wrap .position {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.resume-wrap p {
  color: var(--color-text-gray) !important;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Skills Sub-page (#page-3) Card overrides */
#resume-section .page.three .bg-white {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  border-radius: 20px !important;
}

#resume-section .page.three h2 {
  color: var(--color-text-white) !important;
  font-weight: 700;
  font-size: 18px !important;
}

#resume-section .page.three .text-gray {
  color: var(--color-text-gray) !important;
}

#resume-section .page.three .progress {
  background: rgba(255, 255, 255, 0.03) !important;
}

#resume-section .page.three .h4 {
  color: var(--color-text-white) !important;
}

#resume-section .page.three .progress-value div {
  color: var(--color-text-white) !important;
}

/* Traditional horizontal progress bar styling */
#resume-section .progress-wrap h3 {
  color: var(--color-text-white) !important;
  font-weight: 600;
}

#resume-section .progress-wrap .progress {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
  height: 8px !important;
}

#resume-section .progress-wrap .progress-bar {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-violet) 100%) !important;
  border-radius: 10px !important;
}

#resume-section .progress-wrap .progress-bar span {
  color: var(--color-text-white) !important;
  font-weight: 600;
}

/* ==========================================
   6. Services Section Matching Styles (Dark Cyber Theme)
   ========================================== */
#services-section {
  background-color: var(--color-bg-dark) !important;
  color: var(--color-text-gray) !important;
  position: relative;
  overflow: hidden;
  padding-top: 7em !important;
  padding-bottom: 7em !important;
}

#services-section .heading-section h2 {
  color: var(--color-text-white) !important;
}

#services-section .services-1 {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px;
  padding: 45px 30px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100%;
  margin-bottom: 30px;
}

#services-section .services-1:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(62, 100, 255, 0.3) !important;
  box-shadow: 0 20px 45px rgba(62, 100, 255, 0.15) !important;
}

#services-section .services-1 .icon {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: var(--color-accent) !important;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

#services-section .services-1:hover .icon {
  background: var(--color-accent) !important;
  color: #000000 !important;
  box-shadow: 0 0 20px rgba(160, 246, 105, 0.45);
}

#services-section .services-1 .desc h3 {
  color: var(--color-text-white) !important;
  font-weight: 700;
  font-size: 20px !important;
  transition: all 0.3s ease;
}

#services-section .services-1:hover .desc h3 {
  color: var(--color-accent) !important;
}

#services-section .services-1 .desc p {
  color: var(--color-text-gray) !important;
  font-size: 15px;
  line-height: 1.6;
}


/* ==========================================
   7. Projects Section Matching Styles (Dark Cyber Theme)
   ========================================== */
#projects-section {
  background-color: var(--color-bg-dark) !important;
  padding-top: 7em !important;
  padding-bottom: 7em !important;
}

#projects-section .heading-section h2 {
  color: var(--color-text-white) !important;
}

#projects-section .row.no-gutters {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

#projects-section .project {
  border-radius: 24px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin: 15px !important;
  height: 320px !important;
  position: relative;
  background-size: cover !important;
  background-position: top center !important;
}

#projects-section .project .overlay {
  background: rgba(10, 11, 16, 0.4) !important;
  opacity: 1 !important;
  transition: all 0.4s ease;
}

#projects-section .project:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 100, 255, 0.35) !important;
  box-shadow: 0 20px 45px rgba(62, 100, 255, 0.25) !important;
}

#projects-section .project:hover .overlay {
  background: rgba(10, 11, 16, 0.88) !important;
}

#projects-section .project .text {
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#projects-section .project:hover .text {
  opacity: 1;
  transform: translateY(0);
}

#projects-section .project .text h3 a {
  color: var(--color-text-white) !important;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease;
}

#projects-section .project .text h3 a:hover {
  color: var(--color-accent) !important;
}

#projects-section .project .text span {
  color: var(--color-accent) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}


/* ==========================================
   8. Contact Section Matching Styles (Dark Cyber Theme)
   ========================================== */
#contact-section {
  background-color: var(--color-bg-dark) !important;
  padding-top: 7em !important;
  padding-bottom: 7em !important;
}

#contact-section .heading-section h2 {
  color: var(--color-text-white) !important;
}

#contact-section .contact-info .box {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.4s ease;
}

#contact-section .contact-info .box:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 100, 255, 0.25) !important;
}

#contact-section .contact-info .box .icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%) !important;
  color: #ffffff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(62, 100, 255, 0.3);
}

#contact-section .contact-info .box h3 {
  color: var(--color-text-white) !important;
  font-weight: 700;
}

#contact-section .contact-info .box p a {
  color: var(--color-text-gray) !important;
  transition: all 0.3s ease;
}

#contact-section .contact-info .box p a:hover {
  color: var(--color-accent) !important;
}

/* Contact Form Styling */
#contact-section .contact-form {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

#contact-section .contact-form .form-control {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--color-text-white) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  font-size: 15px;
}

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

#contact-section .contact-form .form-control:focus {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 12px rgba(160, 246, 105, 0.2) !important;
}

#contact-section .contact-form .btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%) !important;
  border: 1px solid transparent !important;
  color: var(--color-text-white) !important;
  font-weight: 700;
  border-radius: 12px !important;
  padding: 16px 36px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 5px 15px rgba(62, 100, 255, 0.2) !important;
}

#contact-section .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62, 100, 255, 0.35) !important;
}

/* Contact right image rounding */
#contact-section .col-md-6.d-flex .img {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}


/* ==========================================
   9. Footer Matching Styles (Dark Cyber Theme)
   ========================================== */
.ftco-footer {
  background: #07080b !important; /* Slightly darker than section background */
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--color-text-gray) !important;
  padding-top: 6em !important;
  padding-bottom: 4em !important;
}

.ftco-footer .ftco-heading-2 {
  color: var(--color-text-white) !important;
  font-weight: 700;
}

.ftco-footer p {
  color: var(--color-text-gray) !important;
}

.ftco-footer a {
  color: var(--color-text-gray) !important;
  transition: all 0.3s ease;
}

.ftco-footer a:hover {
  color: var(--color-accent) !important;
}

.ftco-footer .ftco-footer-social li a {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--color-text-white) !important;
  transition: all 0.3s ease;
}

.ftco-footer .ftco-footer-social li a:hover {
  background: var(--color-accent) !important;
  color: #000000 !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 15px rgba(160, 246, 105, 0.45);
}

.ftco-footer .block-23 ul li span.icon {
  color: var(--color-accent) !important;
}


/* ==========================================
   10. Loader Customization
   ========================================== */
#ftco-loader .path {
  stroke: var(--color-accent) !important;
}








