body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

/* HERO SECTION */

.hero-section {
  min-height: 100vh;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* BADGE */

.hero-badge {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* TITLE */

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111;
}

/* ROLE */

.hero-role {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 25px;
  font-weight: 700;
}

/* DESCRIPTION */

.hero-description {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  max-width: 600px;
  margin-bottom: 35px;
}

/* TECH STACK */

.hero-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-tech-stack span {
  background: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* BUTTON */

.hero-buttons {
  margin-bottom: 45px;
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.hero-stat-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 5px;
}

.hero-stat-item p {
  color: #666;
  margin: 0;
}

/* SOCIAL */

.hero-social {
  display: flex;
  gap: 25px;
}

.hero-social a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

.hero-social a:hover {
  color: #0d6efd;
}

/* IMAGE */

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image {
  width: 420px;
  border-radius: 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: floating 4s ease-in-out infinite;
}

/* GLOW */

.hero-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(13, 110, 253, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* FLOATING */

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* DARK MODE */

body.dark-mode .hero-section {
  background: #121212;
}

body.dark-mode .hero-title {
  color: white;
}

body.dark-mode .hero-description,
body.dark-mode .hero-stat-item p {
  color: #ccc;
}

body.dark-mode .hero-tech-stack span {
  background: #1e1e1e;
  color: white;
}

body.dark-mode .hero-social a {
  color: white;
}

body.dark-mode .hero-social a:hover {
  color: #0d6efd;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-role {
    font-size: 26px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tech-stack,
  .hero-buttons,
  .hero-stats,
  .hero-social {
    justify-content: center;
  }

  .hero-image {
    width: 320px;
    margin-top: 60px;
  }

  .hero-glow {
    width: 320px;
    height: 320px;
  }
}

.profile-image {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.skill-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.skill-box:hover {
  transform: translateY(-5px);
}

.card {
  border-radius: 20px;
}

/* DARK MODE */

body.dark-mode {
  background: #121212;
  color: white;
}

body.dark-mode .hero-section {
  background: #121212;
}

body.dark-mode .navbar {
  background: #000 !important;
}

body.dark-mode .skill-box {
  background: #1e1e1e;
  color: white;
}

body.dark-mode .card {
  background: #1e1e1e;
  color: white;
}

body.dark-mode .bg-light {
  background: #181818 !important;
}

body.dark-mode p {
  color: #d1d1d1;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5 {
  color: white;
}

/* PROJECT SECTION */

.project-section {
  min-height: 100vh;
}

.project-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
  transition: 0.4s;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */

.project-image {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 10px;
}

.carousel-inner {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
}

/* DESCRIPTION */

.project-description {
  color: #666;
  line-height: 1.8;
}

/* TECH STACK */

.tech-info-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px;
}

.tech-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.tech-item:last-child {
  border-bottom: none;
}

.tech-label {
  font-weight: 700;
  color: #0d6efd;
}

.tech-value {
  color: #555;
}

/* FEATURES */

.feature-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 20px;
}

.feature-list {
  padding-left: 20px;
}

.feature-list li {
  line-height: 1.8;
}

/* STATUS */

.project-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-item {
  background: #0d6efd;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
}

/* DARK MODE */

body.dark-mode .project-card,
body.dark-mode .tech-info-box,
body.dark-mode .feature-box,
body.dark-mode .carousel-inner {
  background: #1e1e1e;
  color: white;
}

body.dark-mode .project-description,
body.dark-mode .tech-value {
  color: #ccc;
}

body.dark-mode .tech-item {
  border-color: #333;
}

body.dark-mode .project-image {
  background: #181818;
}

/* CAROUSEL IMAGE */

.project-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 10px;
}

.carousel-inner {
  border-radius: 20px;
  overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
}

.carousel-inner {
  background: #f1f3f5;
  border-radius: 20px;
}

/* TECH INFO */

.tech-info-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.tech-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.tech-item:last-child {
  border-bottom: none;
}

.tech-label {
  font-weight: 700;
  color: #0d6efd;
}

.tech-value {
  color: #555;
  text-align: right;
}

/* DARK MODE */

body.dark-mode .tech-info-box {
  background: #1e1e1e;
}

body.dark-mode .tech-item {
  border-color: #333;
}

body.dark-mode .tech-value {
  color: #ddd;
}

/* PROJECT INFO */

.project-info-box {
  margin-top: 25px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 20px;
}

.project-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.project-info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 700;
  color: #0d6efd;
}

.info-value {
  color: #555;
}

/* DARK MODE */

body.dark-mode .project-info-box {
  background: #1e1e1e;
}

body.dark-mode .project-info-item {
  border-color: #333;
}

body.dark-mode .info-value {
  color: #ddd;
}

/* ABOUT SECTION */

.about-section {
  min-height: 100vh;
}

/* IMAGE */

.about-image {
  width: 350px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* DESCRIPTION */

.about-description {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* INFO BOX */

.about-info-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 20px;
  margin-top: 35px;
}

.about-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.about-info-item:last-child {
  border-bottom: none;
}

.about-label {
  font-weight: 700;
  color: #0d6efd;
}

.about-value {
  color: #555;
}

/* SKILLS */

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-skills span {
  background: #0d6efd;
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* STRENGTH */

.strength-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.strength-item {
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

/* DARK MODE */

body.dark-mode .about-info-box,
body.dark-mode .strength-item {
  background: #1e1e1e;
  color: white;
}

body.dark-mode .about-description,
body.dark-mode .about-value {
  color: #ccc;
}

body.dark-mode .about-info-item {
  border-color: #333;
}

/* UPDATES SECTION */

.updates-section {
  min-height: 100vh;
}

/* HEADER */

.updates-badge {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

/* TIMELINE */

.timeline {
  max-width: 950px;
  margin: auto;
}

/* DIVIDER */

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* LAST ITEM */

.timeline-item:last-child::after {
  display: none;
}

/* DARK MODE */

body.dark-mode .timeline-item::after {
  background: rgba(255, 255, 255, 0.08);
}

/* ITEM */

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

/* CARD */

.timeline-card {
  background: white;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.timeline-card:hover {
  transform: translateY(-6px);
}

/* TOP */

.timeline-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

/* TAG */

.timeline-tag {
  background: #f1f3f5;
  color: #555;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.latest-tag {
  background: rgba(102, 16, 242, 0.1);
  color: #6610f2;
}

/* DATE */

.timeline-date {
  background: #0d6efd;
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

/* DESC */

.timeline-description {
  color: #666;
  line-height: 1.9;
  margin-top: 20px;
  margin-bottom: 25px;
}

/* FEATURE */

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-item {
  background: #f8f9fa;
  padding: 12px 18px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.feature-item:hover {
  transform: translateY(-3px);
}

/* TEXT */

.timeline-top-text,
.timeline-bottom-text {
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 30px;
}

.timeline-bottom-text {
  color: #666;
}

/* DARK MODE */

body.dark-mode .timeline-card {
  background: #1e1e1e;
  color: white;
}

body.dark-mode .timeline-description,
body.dark-mode .timeline-bottom-text {
  color: #ccc;
}

body.dark-mode .feature-item {
  background: #2c2c2c;
  color: white;
}

body.dark-mode .timeline-dot {
  border-color: #121212;
}

body.dark-mode .timeline-tag {
  background: #2c2c2c;
  color: white;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-dot {
    left: -20px;
  }

  .timeline-card {
    padding: 25px;
  }
}

/* NAVBAR */

.custom-navbar {
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* LOGO */

.custom-logo {
  font-size: 26px;
  font-weight: 800;
  color: white !important;
  letter-spacing: -0.5px;
}

/* MENU */

.custom-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  margin-left: 22px;
  transition: 0.3s;
  position: relative;
  font-size: 15px;
}

/* HOVER */

.custom-link:hover {
  color: white !important;
}

/* UNDERLINE */

.custom-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #0d6efd;
  transition: 0.3s;
  border-radius: 50px;
}

.custom-link:hover::after {
  width: 100%;
}

/* DARK BUTTON */

.dark-toggle-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-size: 17px;
  transition: 0.3s;
}

.dark-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 992px) {
  .custom-navbar {
    padding: 14px 0;
  }

  .custom-logo {
    font-size: 22px;
  }

  .custom-link {
    margin-left: 0;
    margin-top: 12px;
  }
}
/* FIX NAVBAR OVERLAP */

body {
  padding-top: 90px;
}

/* ACTIVE NAVBAR */

.active-nav {
  color: white !important;
}

.active-nav::after {
  width: 100% !important;
}

/* SIMPLE FOOTER */

.simple-footer {
  padding: 30px 0;
  text-align: center;
}

.footer-copy {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* DARK MODE */

body.dark-mode .footer-copy {
  color: #bbb;
}

/* OPEN TO WORK */

.open-work-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}

/* DOT */

.work-dot {
  width: 10px;
  height: 10px;
  background: #198754;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* PULSE */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
}

/* IMAGE PREVIEW */

.preview-image {
  cursor: pointer;
  transition: 0.3s;
}

.preview-image:hover {
  transform: scale(1.02);
}

/* MODAL */

.custom-modal {
  background: transparent;
  border: none;
  position: relative;
}

/* CLOSE BUTTON */

.custom-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px;
}

/* FLOATING GRADIENT BACKGROUND */

.bg-gradient-1,
.bg-gradient-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* GRADIENT 1 */

.bg-gradient-1 {
  width: 350px;
  height: 350px;
  background: #0d6efd;
  top: 100px;
  left: -120px;
  animation: floatGradient1 8s ease-in-out infinite;
}

/* GRADIENT 2 */

.bg-gradient-2 {
  width: 400px;
  height: 400px;
  background: #6610f2;
  bottom: 0;
  right: -150px;
  animation: floatGradient2 10s ease-in-out infinite;
}

/* ANIMATION */

@keyframes floatGradient1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatGradient2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* FIX CONTENT */

.hero-section,
.about-section,
.project-section,
.updates-section {
  position: relative;
  overflow: hidden;
}

/* CONTENT ABOVE BACKGROUND */

.hero-section .container,
.about-section .container,
.project-section .container,
.updates-section .container {
  position: relative;
  z-index: 2;
}

/* DARK MODE */

body.dark-mode .bg-gradient-1 {
  opacity: 0.12;
}

body.dark-mode .bg-gradient-2 {
  opacity: 0.12;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

/* ACTIVE */

.reveal.active-reveal {
  opacity: 1;
  transform: translateY(0);
}
