* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #111827;
  color: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
}
.font {
  font-family: "Silkscreen", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

/* Navigation Styles */
.navbar {
  padding: 1.5rem 0;
  background: transparent;
}

.nav-container {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-items {
  display: flex;
  gap: 1rem;
}


.nav-link {
  background: transparent;
  border: none;
  color: #9ca3af;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-link:hover {
  background-color: #374151;
  color: #ffffff;
}

/* Hero Card Styles */
.hero-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.pattern-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.pattern-1 {
  top: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  background-color: #10b981;
  animation-delay: 0s;
}

.pattern-2 {
  bottom: -3rem;
  left: -3rem;
  width: 10rem;
  height: 10rem;
  background-color: #3b82f6;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.card-content {
  position: relative;
  z-index: 1;
}



.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 70px;
}


.d-flex.gap-3 {
  gap: 0.75rem !important;
}

.heading{
  background: #05966887;
  border-radius: 10px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: #059669;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: #059669;
  transform: scale(1.05);
}

.btn-info {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-info:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.typing-container {
  height: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

#typed-text {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 600;
  min-height: 1.5rem;
}


.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #374151;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
}


/* Projects Section */
.projects-section {
  margin-top: 2rem;
}

.section-title {
  color: #9ca3af;
  font-size: 1.125rem;
}

/* Project Cards */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.project-card:hover {
  border-color: #4b5563;
  transform: translateY(-2px);
}

.project-card:hover .project-arrow {
  color: #d1d5db;
  transform: translateX(4px);
}

.project-icon {
  background-color: #10b981;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}


/* Contact Modal */
.modal-content {
  background-color: #1f2937;
  border: 1px solid #374151;
  color: #ffffff;
}

.modal-header {
  border-bottom: 1px solid #374151;
}

.modal-footer {
  border-top: 1px solid #374151;
}

.btn-close {
  filter: invert(1);
}

.btn-primary {
  background-color: #10b981;
  border-color: #10b981;
}

.btn-primary:hover {
  background-color: #059669;
  border-color: #059669;
}

.btn-outline-primary {
  color: white;
  border-color: #10b981;
}
.btn-outline-primary:hover {
  background-color: #059669;
  border-color: #059669;
}


.btn-secondary {
  background-color: #374151;
  border-color: #374151;
}

.btn-secondary:hover {
  background-color: #4b5563;
  border-color: #4b5563;
}

/* Page Styles */
.page-header {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-subtitle {
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.icon-circle{
  border-radius: 100%;
  padding: 10px;
}
/* Navigation Active State */
.nav-link.active {
  background-color: #10b981;
  color: #ffffff;
}

/* About Page Styles */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.blog-post{
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
}

.card{
  background-color: #1f2937;
  color: white;
  border-radius: 2rem;
  border-color: #6b7280;
}

.card-metric{
  color: white;
  border-radius: 2rem;
  border: 2px solid #374151;;
  border-color: #6b7280;
}

.card-metric:hover{
  color: white;
  border-radius: 2rem;
  border: 2px solid #10b981; 
  background-color: hsla(160, 84%, 39%, 0.357);
}


.section-heading {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.section-heading i {
  color: #10b981;
}

.content-text {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Timeline Styles */
.experience-timeline {
  position: relative;
  padding-left: 2rem;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #374151;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #10b981;
  border-radius: 50%;
  border: 3px solid #1f2937;
}

.timeline-content h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-date {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #9ca3af;
  margin-bottom: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-card {
  background-color: #374151;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background-color: #4b5563;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.value-card h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Interests Tags */
.interests-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.interest-tag {
  background-color: #374151;
  color: #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.interest-tag:hover {
  background-color: #10b981;
  color: white;
  transform: translateY(-2px);
}

/* Projects Page Styles */
.project-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-btn {
  background-color: #374151;
  color: #9ca3af;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
  background-color: #10b981;
  color: white;
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.project-card-detailed {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card-detailed:hover {
  transform: translateY(-5px);
  border-color: #4b5563;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card-detailed:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card-detailed:hover .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  width: 3rem;
  height: 3rem;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.project-link:hover {
  background-color: #059669;
  color: white;
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.project-meta {
  margin-left: 1rem;
}

.project-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.project-category {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
}

.project-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background-color: #374151;
  color: #d1d5db;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Contact Page Styles */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-method {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #10b981;
  transform: translateY(-2px);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #059669;
}

.contact-note {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
}

/* Social Links Contact */
.contact-social {
  margin-bottom: 3rem;
}

.social-links-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link-contact {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-contact:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link-contact.linkedin:hover {
  border-color: #0077b5;
  background-color: rgba(0, 119, 181, 0.1);
}

.social-link-contact.github:hover {
  border-color: #333;
  background-color: rgba(51, 51, 51, 0.1);
}
.social-link-contact.instagram:hover {
  border-color: #e4405f;
  background-color: rgba(228, 64, 95, 0.1);
}

.social-link-contact i {
  font-size: 1.5rem;
  color: #10b981;
}

.social-link-contact span {
  color: #ffffff;
  font-weight: 500;
}

/* Response Info */
.response-info {
  margin-bottom: 2rem;
}

.response-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.response-icon {
  width: 3rem;
  height: 3rem;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.response-content h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.response-content p {
  color: #9ca3af;
  margin-bottom: 0;
}

/* Footer Styles */
.footer-section {
  background-color: #111827;
  border-top: 1px solid #374151;
  margin-top: 4rem;
  padding: 4rem 0 2rem;
}

.footer-cta {
  text-align: center;
  margin-bottom: 4rem;
}

.footer-subtitle {
  color: #9ca3af;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.footer-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-follow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-follow-text {
  color: #9ca3af;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.footer-follow-text::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #6b7280;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 3rem;
  height: 3rem;
  background-color: #374151;
  color: #9ca3af;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.25rem;
}

.footer-social-link:hover {
  background-color: #10b981;
  color: white;
  transform: translateY(-2px);
}

.footer-attribution {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-attribution a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

.footer-attribution a:hover {
  color: #059669;
  text-decoration: underline;
}


/* Bootstrap Dark Theme Overrides */

/* Forms */
.form-control {
  background-color: #374151;
  border: 1px solid #4b5563;
  color: #ffffff;
  border-radius: 0.5rem;
}

.form-control:focus {
  background-color: #374151;
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  color: #ffffff;
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-select {
  background-color: #374151;
  border: 1px solid #4b5563;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

.form-select:focus {
  background-color: #374151;
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  color: #ffffff;
}

.form-label {
  color: #d1d5db;
  font-weight: 500;
}

.form-check-input {
  background-color: #374151;
  border: 1px solid #4b5563;
}

.form-check-input:checked {
  background-color: #10b981;
  border-color: #10b981;
}

.form-check-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.form-check-label {
  color: #d1d5db;
}

/* Accordion */
.accordion {
  --bs-accordion-bg: #1f2937;
  --bs-accordion-border-color: #374151;
  --bs-accordion-color: #ffffff;
}

.accordion-item {
  background-color: #1f2937;
  border: 1px solid #374151;
}

.accordion-button {
  background-color: #1f2937;
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #374151;
  color: #ffffff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  border-color: #10b981;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background-color: #1f2937;
  color: #d1d5db;
  border-top: 1px solid #374151;
}

/* Badges */
.badge {
  font-weight: 500;
}

.badge.bg-light {
  background-color: #374151 !important;
  color: #d1d5db !important;
  border: 1px solid #4b5563;
}

.badge.bg-secondary {
  background-color: #6b7280 !important;
  color: #ffffff !important;
}

.badge.bg-success {
  background-color: #10b981 !important;
  color: #ffffff !important;
}

.badge.bg-primary {
  background-color: #10b981 !important;
  color: #ffffff !important;
}

.badge.bg-warning {
  background-color: #f59e0b !important;
  color: #1f2937 !important;
}

.badge.bg-info {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}

.badge.bg-danger {
  background-color: #ef4444 !important;
  color: #ffffff !important;
}

/* Buttons - Enhanced */
.btn-primary {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #059669;
  border-color: #059669;
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background-color: #374151;
  border-color: #374151;
  color: #ffffff;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #4b5563;
  border-color: #4b5563;
  color: #ffffff;
}

.btn-outline-primary {
  color: #10b981;
  border-color: #10b981;
  background-color: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.btn-outline-secondary {
  color: #9ca3af;
  border-color: #374151;
  background-color: transparent;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background-color: #374151;
  border-color: #374151;
  color: #ffffff;
}

.btn-success {
  background-color: #10b981;
  border-color: #10b981;
}

.btn-success:hover, .btn-success:focus {
  background-color: #059669;
  border-color: #059669;
}

.btn-info {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.btn-info:hover, .btn-info:focus {
  background-color: #2563eb;
  border-color: #2563eb;
}

.btn-light {
  background-color: #d1d5db;
  border-color: #d1d5db;
  color: #1f2937;
}

.btn-light:hover, .btn-light:focus {
  background-color: #9ca3af;
  border-color: #9ca3af;
  color: #1f2937;
}

.btn-link {
  color: #10b981;
}

.btn-link:hover, .btn-link:focus {
  color: #059669;
}

/* Alerts */
.alert {
  border-radius: 0.75rem;
  border: none;
}

.alert-primary {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Pagination */
.pagination .page-link {
  background-color: #374151;
  border: 1px solid #4b5563;
  color: #d1d5db;
}

.pagination .page-link:hover {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.pagination .page-item.active .page-link {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

/* Dropdown */
.dropdown-menu {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  color: #d1d5db;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: #374151;
  color: #ffffff;
}

.dropdown-divider {
  border-color: #374151;
}

/* Modal */
.modal-content {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  color: #ffffff;
}

.modal-header {
  border-bottom: 1px solid #374151;
}

.modal-footer {
  border-top: 1px solid #374151;
}

.modal-title {
  color: #ffffff;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/* Navbar Toggler */
.navbar-toggler {
  border-color: #374151;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Tables */
.table {
  --bs-table-bg: #1f2937;
  --bs-table-color: #ffffff;
  --bs-table-border-color: #374151;
  --bs-table-striped-bg: rgba(55, 65, 81, 0.5);
  --bs-table-hover-bg: #374151;
}

.table-dark {
  --bs-table-bg: #1f2937;
  --bs-table-color: #ffffff;
  --bs-table-border-color: #374151;
}

/* Progress */
.progress {
  background-color: #374151;
}

.progress-bar {
  background-color: #10b981;
}

/* List Group */
.list-group-item {
  background-color: #1f2937;
  border: 1px solid #374151;
  color: #ffffff;
}

.list-group-item:hover {
  background-color: #374151;
}

.list-group-item.active {
  background-color: #10b981;
  border-color: #10b981;
}

/* Toast */
.toast {
  background-color: #1f2937;
  border: 1px solid #374151;
  color: #ffffff;
}

.toast-header {
  background-color: #374151;
  border-bottom: 1px solid #4b5563;
  color: #ffffff;
}

/* Carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(55, 65, 81, 0.8);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  backdrop-filter: blur(4px);
}

.carousel-indicators button {
  background-color: #9ca3af;
}

.carousel-indicators button.active {
  background-color: #10b981;
}

.carousel-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  border-radius: 0.75rem;
}

/* Offcanvas */
.offcanvas {
  background-color: #1f2937;
  color: #ffffff;
}

.offcanvas-header {
  border-bottom: 1px solid #374151;
}

/* Tabs */
.nav-tabs {
  border-bottom: 1px solid #374151;
}

.nav-tabs .nav-link {
  color: #9ca3af;
  border: 1px solid transparent;
  background-color: transparent;
}

.nav-tabs .nav-link:hover {
  border-color: #374151;
  color: #d1d5db;
}

.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #1f2937;
  border-color: #374151 #374151 #1f2937;
}

.tab-content {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #374151;
  border-radius: 0.75rem;
}

.breadcrumb-item a {
  color: #10b981;
}

.breadcrumb-item.active {
  color: #d1d5db;
}

/* Spinners */
.spinner-border {
  color: #10b981;
}

.spinner-grow {
  color: #10b981;
}

/* Improved hover effects for cards */
.card:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced footer link styles */
.footer-link {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.hover-secondary:hover {
  color: #10b981 !important;
}

/* Text color utilities override */
.text-primary {
  color: #10b981 !important;
}

.text-secondary {
  color: #6b7280 !important;
}

.text-success {
  color: #10b981 !important;
}

.text-info {
  color: #3b82f6 !important;
}

.text-warning {
  color: #f59e0b !important;
}

.text-danger {
  color: #ef4444 !important;
}

.text-light {
  color: #d1d5db !important;
}

.text-dark {
  color: #111827 !important;
}

.text-muted {
  color: #9ca3af !important;
}

/* Background utilities override */
.bg-primary {
  background-color: #10b981 !important;
}

.bg-secondary {
  background-color: #374151 !important;
}

.bg-success {
  background-color: #10b981 !important;
}

.bg-info {
  background-color: #3b82f6 !important;
}

.bg-warning {
  background-color: #f59e0b !important;
}

.bg-danger {
  background-color: #ef4444 !important;
}

.bg-light {
  background-color: #374151 !important;
  color: #ffffff !important;
}

.bg-dark {
  background-color: #111827 !important;
}

/* Border utilities */
.border {
  border-color: #374151 !important;
}

.border-primary {
  border-color: #10b981 !important;
}

.border-secondary {
  border-color: #374151 !important;
}

/* Additional Bootstrap Component Overrides */

/* Input Groups */
.input-group-text {
  background-color: #374151;
  border: 1px solid #4b5563;
  color: #d1d5db;
}

/* Close Button */
.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

/* Card Footer */
.card-footer {
  background-color: #374151;
  border-top: 1px solid #4b5563;
}

/* Button Group */
.btn-group .btn {
  border-color: #4b5563;
}

.btn-group .btn:not(:first-child) {
  border-left-color: #4b5563;
}

.btn-group .btn.active,
.btn-group .btn:active {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

/* Enhanced Login/Auth Forms */
.auth-form {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(55, 65, 81, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid #374151;
}

.auth-form .form-control {
  background-color: rgba(55, 65, 81, 0.8);
  border: 1px solid #4b5563;
  color: #ffffff;
  transition: all 0.3s ease;
}

.auth-form .form-control:focus {
  background-color: #374151;
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  transform: translateY(-1px);
}

/* Enhanced Product Cards */
.product-card {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: #10b981;
}

.product-card .card-img-top {
  transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
  transform: scale(1.02);
}

/* Enhanced Project Cards */
.project-card-featured {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 2px solid #10b981;
  position: relative;
  overflow: hidden;
}

.project-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

.project-card-featured:hover::before {
  left: 100%;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  position: relative;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #10b981, #3b82f6, #10b981);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
}

/* Enhanced Star Ratings */
.star-rating {
  display: flex;
  gap: 0.25rem;
}

.star-rating .fa-star {
  transition: all 0.2s ease;
  cursor: pointer;
}

.star-rating .fa-star.text-warning {
  color: #fbbf24 !important;
  text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.star-rating:hover .fa-star {
  transform: scale(1.1);
}

/* Enhanced Badges */
.badge-gradient {
  background: linear-gradient(45deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.badge-outline {
  background: transparent;
  border: 1px solid #10b981;
  color: #10b981;
}

/* Enhanced Code Blocks */
pre, code {
  background-color: #1f2937;
  color: #d1d5db;
  border: 1px solid #374151;
  border-radius: 0.5rem;
}

pre {
  padding: 1rem;
  position: relative;
}

.copy-btn {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.copy-btn:hover {
  opacity: 1;
}

/* Enhanced Loading States */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.loading-spinner {
  width: 3rem;
  height: 3rem;
  border: 0.25em solid rgba(16, 185, 129, 0.25);
  border-top-color: #10b981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  border-color: #10b981;
}

/* Enhanced Focus States */
*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

/* Enhanced Selection */
::selection {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}

/* Enhanced Placeholder Animations */
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite alternate;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

.placeholder-wave {
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}

/* Enhanced animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Animation classes */
.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Auth/Login Page Styles */
.login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid #374151;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.login-card .form-control {
  background-color: rgba(55, 65, 81, 0.8);
  border: 1px solid #4b5563;
  color: #ffffff;
  padding: 0.75rem 1rem;
}

.login-card .form-control:focus {
  background-color: #374151;
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  transform: translateY(-1px);
}

/* Enhanced Filter Buttons (Store Page) */
.filter-buttons .btn-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}

.filter-buttons .btn {
  border: none;
  background-color: #374151;
  color: #9ca3af;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.filter-buttons .btn:hover {
  background-color: #4b5563;
  color: #ffffff;
  transform: translateY(-1px);
}

.filter-buttons .btn.active {
  background-color: #10b981;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Enhanced Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-item {
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: scale(1.02);
}

/* Enhanced Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #10b981;
}

.portfolio-item .card-img-top {
  transition: transform 0.4s ease;
}

.portfolio-item:hover .card-img-top {
  transform: scale(1.1);
}

/* Enhanced Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: #10b981;
}

.blog-featured {
  border: 2px solid #10b981;
  background: linear-gradient(135deg, #1f2937, #059669);
}

/* Enhanced Contact Form */
.contact-form {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
}

.contact-method-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  border-color: #10b981;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Service Cards */
.service-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: #10b981;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced About Page Timeline */
.timeline-enhanced {
  position: relative;
  padding: 2rem 0;
}

.timeline-enhanced::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #10b981, #374151);
}

.timeline-item-enhanced {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item-enhanced:nth-child(odd) .timeline-content-enhanced {
  margin-left: calc(50% + 2rem);
}

.timeline-item-enhanced:nth-child(even) .timeline-content-enhanced {
  margin-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-marker-enhanced {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(45deg, #10b981, #059669);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #1f2937, 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Enhanced Statistics/Metrics */
.stat-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #10b981;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #10b981, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Enhanced Footer */
.footer-enhanced {
  background: linear-gradient(135deg, #111827, #1f2937);
  border-top: 1px solid #374151;
  position: relative;
  overflow: hidden;
}

.footer-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}

/* Loading Spinner */
.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 0.2em solid rgba(16, 185, 129, 0.2);
  border-top-color: #10b981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Enhanced Text Selection */
::selection {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}

/* Enhanced Focus Indicators */
*:focus-visible {
  outline: 2px solid #10b981 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
}

/* Responsive utilities for better mobile experience */
@media (max-width: 768px) {
  .hero-card {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .nav-container {
    gap: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .content-section {
    padding: 1.5rem;
  }

  .timeline-enhanced::before {
    left: 2rem;
  }

  .timeline-item-enhanced:nth-child(odd) .timeline-content-enhanced,
  .timeline-item-enhanced:nth-child(even) .timeline-content-enhanced {
    margin-left: 4rem;
    margin-right: 0;
    text-align: left;
  }

  .timeline-marker-enhanced {
    left: 2rem;
  }

  .product-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
