/* জেনারেল স্টাইলস */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 10px; /* ফিক্সড নেভবারের জন্য */
  background-color: lightskyblue;
}

section {
  padding: 100px 0;
}

/* হিরো সেকশন */
.hero-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  background-color: rgb(0, 3, 25);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


/* টাইপড টেক্সট অ্যানিমেশন */
.typed-text {
  color: #0d6efd;
  font-weight: 600;
}

/* কার্সর স্টাইল */
.typed-cursor {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}



/* স্কিলস প্রগ্রেস বার */
.progress {
  height: 10px;
  margin-bottom: 20px;
}

.progress-bar {
  background-color: #0d6efd;
}

/* প্রজেক্ট কার্ড */
.project-card {
  transition: transform 0.3s;
  margin-bottom: 30px;
}

.project-card:hover {
  transform: translateY(-10px);
}

/* রেস্পন্সিভ অ্যাডজাস্টমেন্ট */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    text-align: center;
    padding-top: 80px;
  }

  .hero-section img {
    width: 350px;
  }
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #f8f9fa;
}

.dark-mode .navbar,
.dark-mode .card,
.dark-mode .testimonial-item {
  background-color: #1e1e1e !important;
  color: #f8f9fa;
}

.dark-mode .bg-light {
  background-color: #1e1e1e !important;
}

.dark-mode .text-muted {
  color: #adb5bd !important;
}

.dark-mode .btn-outline-primary {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

/* About Section Styles */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  height: 100%;
  width: 2px;
  background: #0d6efd;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0d6efd;
  border: 2px solid white;
}

/* Skills Section Styling */
.skill-category {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: #f0f0f0;
}

.progress-bar {
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

/* Different colors for each category */
.frontend .progress-bar {
  background-color: #0d6efd; /* Blue */
}

.android .progress-bar {
  background-color: #198754; /* Green */
}

.backend .progress-bar {
  background-color: #dc3545; /* Red */
}

/* Projects Section */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-card img {
  height: 200px;
  object-fit: cover;
}

.badges .badge {
  margin-right: 5px;
  margin-bottom: 5px;
}

/* Contact Form */
.form-control {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ced4da;
}

.form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer a {
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #adb5bd !important;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
