/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0d0d0d, #102a43);
  color: #e0e0e0;
}

/* Navbar */
.navbar {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand, .nav-link {
  color: #e0e0e0 !important;
}

.nav-link:hover {
  color: #00bfa6 !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* offset for navbar */
}

/* Blended image */
.profile-image-blend {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%;
  background: url('../images/nimmy.jpeg') center/cover no-repeat;
  mix-blend-mode: lighten;
  opacity: 0.85;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.profile-image-blend:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Make text stand out */
.hero-section h1, 
.hero-section p {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}


.highlight {
  color: #00e5ff;
}

/* Social icons in hero section */
/* Social icons with brand colors */
.social-icons a {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* LinkedIn blue */
.social-icons a.linkedin i {
  color: #0A66C2;
}

/* GitHub black/white */
.social-icons a.github i {
  color: white;
}

/* Hover effect: slight scale */
.social-icons a:hover {
  transform: scale(1.2);
}



/* Section backgrounds */
.bg-dark {
  background-color: #181818 !important;
}

.bg-gradient {
  background: linear-gradient(135deg, #181818, #1f1b24);
}
#about {
  padding-top: 120px; /* top & bottom */
}
@media (max-width: 768px) {
  #about {
    padding-top: 80px;
  }
}
.skills{
    padding-top:30px;
}
.skills .badge {
  background-color: #2a2a2a;
  color: #e0e0e0;
  font-weight: 500;
  padding: 0.5em 0.8em;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.skills .badge:hover {
  background-color: #00bfa6; /* or your accent color */
  color: #000;
  cursor: default;
}
#projects{
    padding-top: 80px;
}
@media (max-width: 768px) {
  #projects {
    padding-top: 60px;
  }
}
/* Project Cards */
.project-card {
  background-color: #2a2a2a !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(187, 134, 252, 0.2);
}

.project-card .card-title {
  color: #00bfa6;
}
.card-text{
    color:gray;
    font-size:small;

}

#experience{
    padding-top: 120px;
}
@media (max-width: 768px) {
  #experience {
    padding-top: 80px;
  }
}

/* Forms */
/* Inputs and textareas */
input,
textarea {
  background-color: #1a1a1a !important; /* slightly darker for contrast */
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #e0e0e0 !important;
}

/* Placeholders */
input::placeholder,
textarea::placeholder {
  color: #c0c0c0 !important;  /* bright enough to read */
  opacity: 1;
}

/* Disabled inputs look readable too */
input:disabled,
textarea:disabled {
  color: #d0d0d0 !important;  /* visible even when disabled */
  background-color: #1a1a1a !important;
}

/* Optional focus effect */
input:focus,
textarea:focus {
  border-color: #00bfa6;
  box-shadow: 0 0 8px rgba(0, 191, 166, 0.5);
  outline: none;
}


/* Buttons */
.btn-primary {
  background-color: #00bfa6;
  border: none;
}

.btn-primary:hover {
  background-color: #a569ff;
}



/* Footer */
footer {
  background: #111;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px;
  }
}
.skills i {
  transition: all 0.3s ease;
}
.skills i:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}
.text-purple {
  color: #a66cff;
}
.text-orange {
  color: #ff8c00;
}
/* Timeline line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #00bfa6, #5dd4f0);
  opacity: 0.5;
}

/* Timeline icons */
.timeline-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.9);
}

/* Text and cards */
.timeline-item h5 {
  color: #00bfa6;
}

.timeline-item p {
  color: #e0e0e0;
}

.section-dark {
  background: linear-gradient(135deg, #0d0d0d, #102a43);
  padding: 80px 0;
  color: #e0e0e0;
}
.text-muted {
  color: #89c2d9 !important;
}


