* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  color: #e2e8f0;
  font-f.tool-item span {
  color: #e2e8f0;
  font-size: 1rem;
  padding-top: 70px;
}

.tool-item i {
  font-size: 24px;
  width: 24px;
  text-align: center;
  margin-right: 12px;
  color: #a78bfa;
}ly: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
}

/* Glassmorphism Navbar */
.navbar {
  background: rgba(18, 18, 18, 0.85) !important; /* black glassmorphism */
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
  color: #e2e8f0 !important;
}

.navbar-nav .nav-link {
  color: #cbd5e0 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease, width 0.4s ease;
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #a78bfa, #c084fc);
  transition: width 0.4s ease;
}

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

.navbar-nav .nav-link:hover {
  color: #a78bfa !important;
}

/* Make nav links white */
.glass-nav .nav-link {
  color: white !important;
  font-size: 1.1rem; /* slightly bigger text */
  font-weight: 500;
  transition: color 0.3s ease;
}

.glass-nav .nav-link:hover {
  color: #a78bfa !important; /* example hover color (gold-ish) */
}

/* White hamburger icon */
.glass-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* White close (X) icon when expanded */
.glass-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M7 7 L23 23 M23 7 L7 23'/%3E%3C/svg%3E");
}
.glass-nav {
  padding-top: 0.5rem;   /* increase top spacing */
  padding-bottom: 0.5rem; /* increase bottom spacing */
  min-height: 65px;     /* force a minimum height */
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: center;   /* center horizontally */
    justify-content: center; /* center vertically */
    text-align: center;
    padding: 20px 0;
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center items horizontally */
    margin-left: 0 !important; /* override ms-auto on mobile */
  }

  .navbar-collapse .nav-link {
    font-size: 1.3rem; 
    margin: 12px 0;
    font-weight: 500;
    text-align: center; /* center text */
  }

  .navbar-collapse .nav-link:hover {
    color: #ff9800; 
  }
}





/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.polaroid-photo {
  /* Applied glassmorphism properties as requested */
  position: relative;
  width: 260px;
  height: 350px;
  margin: 0px auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 21px 20px 60px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.polaroid-photo:hover {
  transform: rotate(0deg);
}

.polaroid-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

.polaroid-caption {
  text-align: center;
  color: #c7dcff;
  font-family: "Courier New", monospace;
  margin-top: 6px;
  font-size: 14px;
}

/* Skills & Tools Section */
.skills-section {
  padding: 80px 0;
  background: #0d0d0d;
}

.skills-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.skills-section .section-subtitle {
  text-align: center;
  color: #a0aec0;
  margin-bottom: 50px;
}

.skills-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
}

.skills-category h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.tool-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  
}

.tool-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.tool-item img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.tool-item span {
  color: #e2e8f0;
  font-size: 1rem;
}


.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content .name-highlight {
  /* Updated name color to bright cyan/teal */
  color: #c084fc;
  background: linear-gradient(45deg, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cbd5e0;
}

.cta-buttons .btn {
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #a78bfa, #c084fc);
  border: none;
}

.btn-outline-light {
  border: 2px solid #cbd5e0;
  color: #cbd5e0;
}

.btn-outline-light:hover {
  background: #cbd5e0;
  color: #2d3748;
}

/* What I Do Section */
.what-i-do {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: #cbd5e0;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.skill-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.skill-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #a78bfa;
}

.skill-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #e2e8f0;
}

.skill-card p {
  color: #cbd5e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Skills & Tools Section */
.skills-section {
  padding: 80px 0;
  position: relative;
}

.skills-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px; /* Add padding for navigation arrows */
}

.skills-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px; /* Reduced gap for better fit */
  width: 100%;
}

.skill-category-card {
  flex: 0 0 calc((100% - 40px) / 3); /* Exact calculation for 3 cards with gaps */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid;
  border-image: linear-gradient(45deg, #a78bfa, #c084fc, #8b5cf6) 1;
  border-radius: 20px;
  padding: 30px 25px;
  min-height: 300px;
  transition: all 0.3s ease;
  position: relative;
}

.skill-category-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(167, 139, 250, 0.2);
}

.skill-category-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #e2e8f0;
}

.skill-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

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

.skill-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #a78bfa;
  width: 24px;
  text-align: center;
}

.skill-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(167, 139, 250, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: -25px;
}

.carousel-nav.next {
  right: -25px;
}

.carousel-nav i {
  font-size: 1.2rem;
  color: #e2e8f0;
}

/* Dot Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(45deg, #a78bfa, #c084fc);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(167, 139, 250, 0.6);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background:#0d0d0d;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-subsection {
  margin-bottom: 40px;
}



.unified-card {
  background-color: rgba(255, 255, 255, 0.05); /* dark card color */
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  color: #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unified-card .about-subsection {
  margin-bottom: 25px;
}

.unified-card .about-subsection h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff; /* card title color */
}

.unified-card .about-subsection p {
  color: #cbd5e0;
  line-height: 1.6;
}

.unified-card .highlight-link {
  color: #a78bfa;
  text-decoration: none;
}

.unified-card .highlight-link:hover {
  color: #c084fc;
  text-decoration: underline;
}

.unified-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
}


/* Responsive Design */
@media (max-width: 992px) {
  .skill-category-card {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 cards on medium screens */
  }

  .skills-carousel-container {
    padding: 0 50px;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-section {
    text-align: center;
    padding: 100px 0 60px;
  }

  .polaroid-photo {
    margin-bottom: 30px;
    max-width: 250px;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .skill-category-card {
    flex: 0 0 100%; /* 1 card on mobile */
    margin-bottom: 20px;
  }

  .skills-carousel {
    gap: 15px;
  }

  .skills-carousel-container {
    padding: 0 40px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav.prev {
    left: -10px;
  }

  .carousel-nav.next {
    right: -10px;
  }

  .carousel-nav i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .skills-section {
    padding: 60px 0;
  }

  .skill-category-card {
    padding: 25px 20px;
    min-height: 250px;
  }

  .skill-item {
    padding: 12px 15px;
  }

  .skill-item i {
    font-size: 1.3rem;
    margin-right: 12px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #2d3748;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #c084fc;
}

.projects-section {
    background-color: #0d0d0d;
  }

  .section-subtitle {
    color: #b3b3b3;
  }

  .highlight {
    color: #9d4edd;
  }

  .custom-card {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    border-top: 2px solid #9d4edd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .custom-card:hover {
    transform: translateY(-5px);
    
  }

  .custom-badge {
    background-color: #9d4edd;
    border-radius: 15px;
    padding: 6px 12px;
    margin-right: 5px;
    font-size: 0.8rem;
  }

  .outcome-text {
    color: #b3b3b3;
    font-size: 0.9rem;
  }

  .view-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .view-link:hover {
    color: #9d4edd;
  }

  .btn-view {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background-color: #9d4edd;
  border-color: #9d4edd;
  color: #ffffff;
  
}

.resume-container {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.5);
  }

  .resume-iframe {
    width: 100%;
    height: 900px; /* A4-like tall view */
    border-radius: 8px;
    border: none;
  }

  .resume-btn {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }

  .resume-btn:hover {
    background: linear-gradient(90deg,#9f62e6,#7f40c5);
    border-color: transparent;
    color: #fff;
  }


.footer-link {
    margin: 0 15px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(45deg, #a78bfa, #c084fc);
    transition: width 0.3s ease;
    
  }

  .footer-link:hover {
    color: #ddd;
  }

  .footer-link:hover::after {
    width: 100%;
  }
 
.skills-category {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #e2e8f0;
}

.tool-item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  margin: 10px 0;
  font-size: 1.1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  background-size: 100%, 100%;
}

.carousel-indicators button {
  background-color: #a78bfa;
}

.carousel-indicators .active {
  background-color: #c084fc;
}

/* Move arrows to bottom */
.controls-bottom {
  gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.medium-link {
  color: #a78bfa; /* Medium’s green */
  font-weight: 600;
  text-decoration: none;
}

.medium-link:hover {
  color: #a78bfa; /* your accent color */
  text-decoration: underline;
}



