/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
/* You can add global styles to this file, and also import other style files */

/* ===== Custom Portfolio Enhancements ===== */

/* Preloader theme color */
.preloader .lds-ellipsis div {
  background: #20c997 !important;
}

/* Smooth section transitions */
section {
  transition: all 0.3s ease;
}

/* Animate sections on scroll */
section .container {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Resume cards hover effect */
.resume-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  border-left: 4px solid transparent !important;
  position: relative;
  overflow: hidden;
}

.resume-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(32, 201, 151, 0.03), transparent);
  transition: width 0.4s ease;
}

.resume-card:hover::after {
  width: 100%;
}

.resume-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-left-color: #20c997 !important;
}

/* Resume list styling */
.resume-list {
  list-style: none;
  padding-left: 0;
}

.resume-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.resume-list li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #20c997;
  position: absolute;
  left: 0;
  top: 5px;
}

/* Achievement cards */
.achievement-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.achievement-card i {
  transition: transform 0.3s ease;
}

.achievement-card:hover i {
  transform: scale(1.15);
}

/* Contact cards */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card a {
  text-decoration: none;
  word-break: break-all;
}

.contact-card a:hover {
  color: #20c997 !important;
}

/* Progress bar animation */
.progress-bar {
  background-color: #20c997;
  transition: width 1.5s ease-in-out;
}

/* Tech badges */
.badge.bg-secondary {
  background-color: #343a40 !important;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.badge.bg-secondary:hover {
  background-color: #20c997 !important;
  transform: scale(1.05);
  cursor: default;
}

/* Section bg-light override */
section.bg-light {
  background-color: #f8f9fa !important;
}

/* Counter section separator */
.brands-grid.separator-border > .row > [class*="col"] {
  border-right: 1px solid #dee2e6;
}

.brands-grid.separator-border > .row > [class*="col"]:last-child {
  border-right: none;
}

/* Hero section improvements */
.hero-content .btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.hero-content .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3);
}

.hero-content .btn-primary {
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.hero-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
}

/* Hero typed text glow */
.hero-content h2 {
  text-shadow: 0 0 40px rgba(32, 201, 151, 0.2);
}

/* Heading separator animation */
.heading-separator-line {
  width: 40px;
  transition: width 0.5s ease;
}

section:hover .heading-separator-line {
  width: 60px;
}

/* Footer social icons */
footer .social-icons-light a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

footer .social-icons-light a:hover {
  color: #20c997;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #20c997;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #17a880;
}

/* Selection color */
::selection {
  background: #20c997;
  color: #fff;
}

/* Smooth scroll for entire page */
html {
  scroll-behavior: smooth;
}

/* About section list items */
.list-style-2 li {
  transition: padding-left 0.3s ease;
}

.list-style-2 li:hover {
  padding-left: 8px;
}

/* Counter stats - highlight number */
.counter {
  color: #20c997;
  font-weight: 700;
}

/* Stats featured box hover */
.featured-box {
  transition: transform 0.3s ease;
}

.featured-box:hover {
  transform: scale(1.05);
}

/* Sidebar header improvements */
#header .primary-menu {
  background: linear-gradient(180deg, #212529 0%, #1a1a2e 100%) !important;
}

/* Active nav link glow */
#header .navbar-nav .nav-link.active {
  position: relative;
}

#header .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #20c997;
  border-radius: 1px;
}

/* Certification card icons animation */
.resume-card .fa-microsoft,
.resume-card .fa-shield-alt {
  transition: transform 0.3s ease, color 0.3s ease;
}

.resume-card:hover .fa-microsoft,
.resume-card:hover .fa-shield-alt {
  transform: scale(1.1) rotate(5deg);
}

/* Badge styling for experience dates */
.badge.bg-primary {
  background: linear-gradient(135deg, #20c997, #17a880) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.5px;
}

/* Smooth font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Footer gradient */
footer.bg-dark {
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%) !important;
}


/*# sourceMappingURL=styles.css.map*/