
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background-color: #040404;
  color: #fff;
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  background: #040404 url("../img/bg.jpg") top right no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  body::before {
    background-position: 70% top;
  }
}

a {
  color: #18d26e;
  text-decoration: none;
}

a:hover {
  color: #35e888;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a,
#header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid #18d26e;
  padding-bottom: 0px;
  margin: 0px;
}

#header img {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Modern Social Links
--------------------------------------------------------------*/
#header .social-links-container {
  margin-top: 40px;
}

#header .social-links-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

#header .social-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#header .social-link:hover {
  color: #fff;
  background: rgba(24, 210, 110, 0.15);
  transform: translateY(-3px);
}

#header .social-link:hover i {
  color: #18d26e;
}

/* Tooltip */
#header .social-link::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(24, 210, 110, 0.9);
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#header .social-link::after {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(24, 210, 110, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#header .social-link:hover::before,
#header .social-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #header .social-links-container {
    margin-top: 20px;
  }

  #header .social-links-wrapper {
    padding: 8px 12px;
    gap: 4px;
  }

  #header .social-link {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
}

#header.header-top .social-links-container,
#header.header-top h2 {
  display: none;
}

#header.header-top h1 {
  display: none;
}

#header.header-top img {
  max-height: 60px;
  margin-right: 20px !important;
}

#header.header-top .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header.header-top .navbar {
  margin: 0;
}

#header.header-top .navbar-modern .nav-container {
  padding: 6px 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

#header.header-top .navbar-modern .nav-link {
  padding: 8px 14px;
  font-size: 13px;
}

#header.header-top .navbar-modern .nav-link i {
  font-size: 14px;
}

@media (max-width: 768px) {
  #header.header-top {
    height: 60px;
  }

  #header.header-top h1 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/*--------------------------------------------------------------
# Modern Navbar
--------------------------------------------------------------*/
.navbar-modern {
  padding: 0;
  margin-top: 35px;
}

.navbar-modern .nav-container {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 12px;
}

.navbar-modern .nav-menu {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar-modern li {
  position: relative;
}

.navbar-modern .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 30px;
  text-decoration: none;
}

.navbar-modern .nav-link i {
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}

.navbar-modern .nav-link span {
  transition: all 0.3s ease;
}

.navbar-modern .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-modern .nav-link:hover i {
  color: #18d26e;
}

.navbar-modern .nav-link.active {
  color: #fff;
  background: rgba(24, 210, 110, 0.15);
}

.navbar-modern .nav-link.active i {
  color: #18d26e;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.mobile-nav-toggle:hover {
  background: rgba(24, 210, 110, 0.15);
  border-color: rgba(24, 210, 110, 0.3);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .navbar-modern .nav-container {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 998;
  margin-top: 0;
  animation: fadeInBackdrop 0.25s ease-out;
}

@keyframes fadeInBackdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
}

.navbar-mobile .nav-container {
  display: block !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px 20px;
  animation: slideInMenu 0.3s ease-out;
}

@keyframes slideInMenu {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.navbar-mobile .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.navbar-mobile .nav-link {
  justify-content: flex-start;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 16px;
}

.navbar-mobile .nav-link i {
  font-size: 20px;
  width: 24px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 100px;
  bottom: 100%;
  visibility: hidden;
  transform: translateY(40px);
  will-change: transform;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
  z-index: 2;
}

section.section-show {
  bottom: auto;
  visibility: visible;
  padding-bottom: 45px;
  transform: translateY(0);
  transition: transform 0.4s ease-in-out, visibility 0s 0s;
}

section .container {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
}

section.section-show .container {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 80px;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #4ceb95;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/*--------------------------------------------------------------
# About - Modern Design
--------------------------------------------------------------*/
.about-modern {
  padding: 60px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

/* Profile Card */
.about-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.profile-image-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
}

.profile-image-border {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #18d26e;
  padding: 4px;
}

.profile-image {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: cover;
  border-radius: 24px;
  z-index: 2;
}

.profile-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(24, 210, 110, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.about-profile-card:hover .profile-glow {
  opacity: 1;
}

.profile-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, rgba(24, 210, 110, 0.15), rgba(24, 210, 110, 0.05));
  border: 1px solid rgba(24, 210, 110, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: #18d26e;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #18d26e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Content Card */
.about-content-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.about-header {
  margin-bottom: 25px;
}

.about-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #18d26e, #0d6efd);
  border-radius: 2px;
}

.about-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-intro strong {
  color: #18d26e;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(24, 210, 110, 0.3);
  transform: translateX(5px);
}

.info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 18px;
  color: #18d26e;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.info-link {
  color: #18d26e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #0d6efd;
}

.status-available {
  color: #18d26e;
}

.about-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-description strong {
  color: #18d26e;
}

/* CTA Section */
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #18d26e, #0fb85a);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  color: #fff;
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-profile-card {
    justify-content: center;
  }

  .profile-image-wrapper {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .about-content-card {
    padding: 25px;
  }

  .about-cta {
    flex-direction: column;
    text-align: center;
  }

  .about-header h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Counts - Modern Design
--------------------------------------------------------------*/
.counts-modern {
  padding: 50px 0 40px;
}

.count-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.count-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 210, 110, 0.4);
  background: linear-gradient(145deg, rgba(24, 210, 110, 0.08), rgba(255, 255, 255, 0.03));
}

.count-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(24, 210, 110, 0.15), rgba(24, 210, 110, 0.05));
  border: 2px solid rgba(24, 210, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.count-card:hover .count-icon-wrap {
  background: linear-gradient(135deg, #18d26e, #0fb85a);
  border-color: #18d26e;
  transform: scale(1.1);
}

.count-icon-wrap i {
  font-size: 28px;
  color: #18d26e;
  transition: all 0.4s ease;
}

.count-card:hover .count-icon-wrap i {
  color: #fff;
}

.count-content {
  position: relative;
  z-index: 2;
}

.count-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  display: block;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fff, #18d26e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.count-card p {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.count-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(24, 210, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.count-card:hover .count-decoration {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(24, 210, 110, 0.2) 0%, transparent 70%);
}

/* Old counts styles (keeping for backwards compatibility) */
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: #18d26e;
  border-radius: 50px;
  line-height: 0;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills - Modern Card Design
--------------------------------------------------------------*/
.skills-modern {
  padding: 20px 0;
}

.skill-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #18d26e, #4ceb95, #18d26e);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 210, 110, 0.3);
  box-shadow: 0 20px 40px rgba(24, 210, 110, 0.15);
}

.skill-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon i {
  font-size: 24px;
  color: #18d26e;
}

.skill-card-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  cursor: default;
}

.skill-tag:hover {
  background: linear-gradient(135deg, rgba(24, 210, 110, 0.2), rgba(76, 235, 149, 0.2));
  border-color: #18d26e;
  color: #18d26e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(24, 210, 110, 0.2);
}

/* Old skills styles (keeping for backwards compatibility) */
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: rgba(255, 255, 255, 0.2);
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #18d26e;
}

/*--------------------------------------------------------------
# Interests - Modern Design
--------------------------------------------------------------*/
.interests-modern {
  padding: 30px 0;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

@media (max-width: 480px) {
  .interests-grid {
    grid-template-columns: 1fr;
  }
}

.interest-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.interest-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-color, #18d26e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.interest-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.interest-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.interest-card:hover .interest-icon-wrap {
  transform: scale(1.15);
  border-color: var(--card-color, #18d26e);
  background: rgba(255, 255, 255, 0.1);
}

.interest-icon-wrap i {
  font-size: 26px;
  color: var(--card-color, #18d26e);
  transition: all 0.4s ease;
}

.interest-card:hover .interest-icon-wrap i {
  transform: scale(1.1);
}

.interest-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.interest-card:hover h3 {
  color: var(--card-color, #18d26e);
}

.interest-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--card-color, #18d26e) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(30px);
  z-index: 1;
}

.interest-card:hover .interest-glow {
  opacity: 0.3;
  bottom: -30%;
}

/* Set individual card colors using CSS custom properties */
.interest-card[data-color="#ffbb2c"] { --card-color: #ffbb2c; }
.interest-card[data-color="#5578ff"] { --card-color: #5578ff; }
.interest-card[data-color="#e80368"] { --card-color: #e80368; }
.interest-card[data-color="#e361ff"] { --card-color: #e361ff; }
.interest-card[data-color="#47aeff"] { --card-color: #47aeff; }
.interest-card[data-color="#ffa76e"] { --card-color: #ffa76e; }
.interest-card[data-color="#11dbcf"] { --card-color: #11dbcf; }
.interest-card[data-color="#4233ff"] { --card-color: #4233ff; }
.interest-card[data-color="#b20969"] { --card-color: #b20969; }
.interest-card[data-color="#ff5828"] { --card-color: #ff5828; }
.interest-card[data-color="#18d26e"] { --card-color: #18d26e; }
.interest-card[data-color="#f5a623"] { --card-color: #f5a623; }

/*--------------------------------------------------------------
# Days I Code - Contribution Graph
--------------------------------------------------------------*/
.days-i-code-section {
  padding: 30px 0;
}

.days-i-code-wrapper {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.days-i-code-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #18d26e, #4ceb95, #18d26e);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.days-i-code-wrapper:hover {
  border-color: rgba(24, 210, 110, 0.3);
  box-shadow: 0 20px 40px rgba(24, 210, 110, 0.08);
}

.days-i-code-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
}

.days-i-code-title span {
  color: #18d26e;
  font-style: italic;
  font-weight: 700;
}

.contribution-graph {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
}

.contribution-graph::-webkit-scrollbar {
  height: 6px;
}

.contribution-graph::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
}

.contribution-graph::-webkit-scrollbar-thumb {
  background: rgba(24, 210, 110, 0.25);
  border-radius: 3px;
}

.graph-months {
  position: relative;
  height: 22px;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  min-width: fit-content;
}

.graph-months span {
  position: absolute;
  white-space: nowrap;
}

.graph-grid {
  display: flex;
  gap: 4px;
  min-width: fit-content;
}

.graph-week {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.graph-cell {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  transition: transform 0.15s ease;
  cursor: pointer;
}

.graph-cell:hover {
  transform: scale(1.4);
  outline: 2px solid rgba(24, 210, 110, 0.5);
  outline-offset: 1px;
  z-index: 10;
  position: relative;
}

.graph-cell[data-level="0"] { background-color: rgba(255, 255, 255, 0.08); }
.graph-cell[data-level="1"] { background-color: #0a3d22; }
.graph-cell[data-level="2"] { background-color: #0f6b35; }
.graph-cell[data-level="3"] { background-color: #15a54a; }
.graph-cell[data-level="4"] { background-color: #18d26e; }

.graph-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.contribution-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.graph-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.legend-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.legend-box[data-level="0"] { background-color: rgba(255, 255, 255, 0.08); }
.legend-box[data-level="1"] { background-color: #0a3d22; }
.legend-box[data-level="2"] { background-color: #0f6b35; }
.legend-box[data-level="3"] { background-color: #15a54a; }
.legend-box[data-level="4"] { background-color: #18d26e; }

@media (max-width: 768px) {
  .days-i-code-wrapper {
    padding: 25px 20px 20px;
  }

  .days-i-code-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .graph-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Old interests styles (keeping for backwards compatibility) */
.interests .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.interests .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.interests .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.interests .icon-box:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.12);
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.25);
  font-size: 26px;
}

.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;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #18d26e;
}

/*--------------------------------------------------------------
# Resume - Modern Design
--------------------------------------------------------------*/

/* Hero Card */
.resume-hero {
  background: rgba(24, 210, 110, 0.1);
  border: 1px solid rgba(24, 210, 110, 0.2);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.resume-hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}

.resume-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.resume-contact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.contact-chip:hover {
  background: rgba(24, 210, 110, 0.1);
  border-color: rgba(24, 210, 110, 0.3);
}

.contact-chip i {
  color: #18d26e;
  font-size: 14px;
}

/* Section Styling */
.resume-section {
  margin-bottom: 40px;
}

.resume-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.resume-section-header .section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-section-header .section-icon i {
  font-size: 22px;
  color: #18d26e;
}

.resume-section-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #18d26e, rgba(24, 210, 110, 0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

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

.timeline-marker {
  position: absolute;
  left: -27px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #18d26e;
  border-radius: 50%;
  border: 3px solid #040b14;
  z-index: 1;
}

.timeline-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: rgba(24, 210, 110, 0.3);
  transform: translateX(5px);
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.timeline-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.timeline-company {
  font-size: 15px;
  color: #18d26e;
  font-weight: 500;
}

.timeline-badge {
  background: rgba(24, 210, 110, 0.15);
  color: #18d26e;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-left: auto;
}

.timeline-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.timeline-location i {
  margin-right: 5px;
}

.education-major {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.education-major strong {
  color: #18d26e;
}

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

.timeline-list li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.timeline-list li:last-child {
  padding-bottom: 0;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #18d26e;
  border-radius: 50%;
}

/* Resume Grid */
.resume-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Skills List */
.skills-list {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
}

.skill-category {
  margin-bottom: 20px;
}

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

.skill-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #18d26e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-items span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.skill-items span:hover {
  background: rgba(24, 210, 110, 0.1);
  border-color: rgba(24, 210, 110, 0.3);
  color: #fff;
}

/* Awards List */
.awards-list {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
}

.award-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.award-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.award-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-icon i {
  font-size: 18px;
  color: #18d26e;
}

.award-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px;
  font-family: "Poppins", sans-serif;
}

.award-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: rgba(24, 210, 110, 0.3);
  transform: translateY(-5px);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.project-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.project-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.project-link:hover {
  background: #18d26e;
  border-color: #18d26e;
  color: #fff;
}

.project-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  background: rgba(24, 210, 110, 0.1);
  border: 1px solid rgba(24, 210, 110, 0.2);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  color: #18d26e;
}

/* Responsive */
@media (max-width: 992px) {
  .resume-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-badge {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .resume-hero {
    padding: 25px;
  }

  .resume-hero h1 {
    font-size: 24px;
  }

  .contact-chip {
    font-size: 13px;
    padding: 8px 14px;
  }

  .timeline-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Services - Modern Design
--------------------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(24, 210, 110, 0.4);
  transform: translateY(-8px);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Poppins", sans-serif;
  line-height: 1;
  transition: all 0.4s ease;
}

.service-card:hover .service-number {
  color: rgba(24, 210, 110, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-icon i {
  font-size: 36px;
  color: #18d26e;
  transition: all 0.4s ease;
}

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

.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.service-card:hover h4 {
  color: #18d26e;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #18d26e, #0d6efd);
  transition: width 0.4s ease;
}

.service-card:hover .service-hover-line {
  width: 100%;
}

/* Services Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .service-card {
    padding: 30px 25px;
  }

  .service-number {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Portfolio - Modern Design
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

/* Modern Filter Pills */
.portfolio-filters-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.portfolio-filters-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio-filters-modern li {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.portfolio-filters-modern li:hover {
  color: #fff;
  border-color: rgba(24, 210, 110, 0.3);
  transform: translateY(-2px);
}

.portfolio-filters-modern li.filter-active {
  color: #fff;
  background: rgba(24, 210, 110, 0.15);
  border-color: #18d26e;
}

/* Modern Project Cards */
.project-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: rgba(24, 210, 110, 0.3);
  transform: translateY(-5px);
}

.project-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image-wrap img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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-card:hover .project-overlay {
  opacity: 1;
}

.project-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project-card:hover .project-btn {
  transform: translateY(0);
}

.project-btn:hover {
  background: #18d26e;
  border-color: #18d26e;
  color: #fff;
}

.project-content {
  padding: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.project-tag {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #18d26e;
  background: rgba(24, 210, 110, 0.1);
  border-radius: 20px;
}

.project-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
}

.project-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-filters-modern {
    gap: 8px;
  }

  .portfolio-filters-modern li {
    padding: 8px 14px;
    font-size: 11px;
  }

  .project-content {
    padding: 16px;
  }

  .project-title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}

.portfolio-details .container {
  padding-top: 20px;
  padding-bottom: 40px;
}

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

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.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-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

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

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #18d26e;
}

/*--------------------------------------------------------------
# Contact - Modern Design
--------------------------------------------------------------*/

/* Contact Hero */
.contact-hero {
  text-align: center;
  margin-bottom: 50px;
}

.contact-hero h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.contact-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

/* Contact Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(24, 210, 110, 0.3);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 24px;
  color: #18d26e;
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 5px;
}

.contact-info-content p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

/* Social Links */
.contact-social {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  margin-top: 10px;
}

.contact-social h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
}

.social-links-modern {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #18d26e;
  border-color: #18d26e;
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Form Side */
.contact-form-side {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-header {
  margin-bottom: 10px;
}

.form-header h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
}

.form-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-modern label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.form-group-modern input,
.form-group-modern textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  border-color: #18d26e;
  background: rgba(24, 210, 110, 0.05);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 140px;
}

/* Form Messages */
.form-messages {
  margin-top: 5px;
}

.form-messages .loading,
.form-messages .error-message,
.form-messages .sent-message {
  display: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
}

.form-messages .loading {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.form-messages .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 10px -4px 0;
  border: 2px solid #18d26e;
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

.form-messages .error-message {
  background: rgba(237, 60, 13, 0.1);
  border: 1px solid rgba(237, 60, 13, 0.3);
  color: #ff6b6b;
}

.form-messages .sent-message {
  background: rgba(24, 210, 110, 0.1);
  border: 1px solid rgba(24, 210, 110, 0.3);
  color: #18d26e;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #18d26e, #0fb85a);
  color: #fff;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0fb85a, #18d26e);
}

.submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Contact Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    order: 2;
  }

  .contact-form-side {
    order: 1;
  }
}

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

  .contact-form-side {
    padding: 25px;
  }

  .contact-hero h3 {
    font-size: 26px;
  }

  .social-links-modern {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Credits
--------------------------------------------------------------*/
.credits {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 15px;
  text-align: right;
  font-size: 13px;
  color: #fff;
  z-index: 999999;
}

@media (max-width: 992px) {
  .credits {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
  }
}

.credits a {
  color: #18d26e;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# GLightbox Modern Overrides
--------------------------------------------------------------*/

/* Overlay - frosted dark glass */
.goverlay {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
}

/* Image container - glass card */
.glightbox-clean .gslide-media {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
  border-radius: 20px !important;
  overflow: hidden;
}

.gslide-image img {
  border-radius: 20px !important;
  max-height: 70vh !important;
  max-width: 75vw !important;
}

/* Description panel */
.glightbox-clean .gslide-description {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  margin-top: 16px;
}

.glightbox-clean .gdesc-inner {
  padding: 24px 28px !important;
}

.glightbox-clean .gslide-title {
  font-size: 1.1em !important;
  font-weight: 600 !important;
  color: #fff !important;
  font-family: inherit !important;
  margin-bottom: 12px !important;
}

.glightbox-clean .gslide-desc {
  font-size: 0.92em !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: inherit !important;
  line-height: 1.6em !important;
}

/* Close button */
.glightbox-clean .gclose {
  width: 44px !important;
  height: 44px !important;
  top: 20px !important;
  right: 20px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.glightbox-clean .gclose:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.glightbox-clean .gclose svg {
  width: 16px !important;
}

/* Nav arrows */
.glightbox-clean .gprev,
.glightbox-clean .gnext {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.glightbox-clean .gprev {
  left: 24px !important;
}

.glightbox-clean .gnext {
  right: 24px !important;
}

/* Mobile description */
.glightbox-mobile .glightbox-container .gslide-description {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px 20px 0 0 !important;
  padding: 24px 20px 40px !important;
}