/* Custom Dark Theme Overrides & Enhancements */

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color:rgb(30, 29, 29);
}

.bg-darker {
  background-color: rgb(50, 49, 49);
}
.img-hero:hover{
    transform: scale(1.05);
    box-shadow:0 6px 10px #7d1b7a;
}
/* .hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  
} */

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.project-card img {
  transition: transform 0.3s ease;
  height: 200px;
  object-fit: cover;
}

.project-card:hover img {
  transform: scale(1.03);
}

.btn-outline-primary {
  border-color: #6c63ff;
  color: #6c63ff;
}

.btn-outline-primary:hover {
  background-color: #6c63ff;
  color: white;
}

.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero .display-4 {
    font-size: 2.5rem;
  }

  .hero img {
    width: 150px;
    height: 150px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}
.navbar-nav .nav-link {
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  background: rgba(147, 71, 144, 0.2);
  border-radius: 5px;
}
#download-btn{
    color: #934790;
    border: 1px solid #934790;
    border-radius: 16px;
}
#download-btn:hover{
    color: black;
    background-color: #934790;
}
.card-edu{
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.card-edu:hover{
   box-shadow:0 8px 20px rgba(121, 23, 121, 0.4);
    transform: translateY(-5px) !important;
}

.btn-project{
    border: 1px solid #934790;
    color: #934790;
}
.btn-project:hover{
    background-color: #934790;
    color: white;
}
/* Purple Progress Bar */
.bg-purple {
  background-color: #934790 !important;
}

/* Skill Item Styling */
.skill-item {
  margin-bottom: 1rem;
}

.skill-item span {
  font-size: 0.9rem;
  color: #f5f5f5;
  display: block;
  margin-bottom: 0.3rem;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-bar {
  border-radius: 5px;
  transition: width 0.6s ease;
}

/* Card Enhancements */
.card-skill {
  background-color: rgba(30, 30, 30, 0.8) !important;
  backdrop-filter: blur(5px); 
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card h4 {
  color: #934790;
  font-weight: 600;
}

/* Section Background */
/* #skills {
  background-color: #000 !important;
} */


 /* Service Item Styling */
.service-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  /* margin-bottom: 1rem; */
}

.service-item i {
  font-size: 1.2rem;
  min-width: 20px;
}

.service-item strong {
  color: #934790;
  font-weight: 600;
}

.service-item p {
  /* margin-top: 0.25rem; */
  font-size: 0.9rem;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.tool-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tool-card:hover {
  background-color: rgba(147, 71, 144, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(130, 42, 101, 0.2);
}

.tool-card i {
  color: #934790;
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.tool-card span {
  color: #f5f5f5;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Card Styling */
.card.bg-secondary {
  background-color: #1e1e1e !important;
  color: #f5f5f5;
  border: none;
  border-radius: 12px;
}

.card h4 {
  color: #934790;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Contact Section Styling */
.bg-darker {
  background-color: #000 !important;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(147, 71, 144, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-circle i {
  color: #934790;
}

.card.bg-secondary {
  background-color: rgb(50, 49, 49) !important;
  color: #f5f5f5;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.bg-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #3e203d;
}

.card h5 {
  color: #934790;
  font-weight: 600;
}

.btn-outline-primary {
  border-color: #934790;
  color: #934790;
}

.btn-outline-primary:hover {
  background-color: #934790;
  color: white;
}

.form-control {
  background-color: #2a2a2a !important;
  border: 1px solid #3a3a3a !important;
  color: #f5f5f5 !important;
}

.form-control:focus {
  background-color: #2a2a2a !important;
  border-color: #934790 !important;
  box-shadow: 0 0 0 0.2rem rgba(147, 71, 144, 0.25) !important;
}