@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap");

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section p {
  animation-delay: 0.2s;
}

.hero-section .btn:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-section .btn:nth-child(2) {
  animation-delay: 0.5s;
}

/* Glassmorphism effect */
.glass-nav {
  background: rgba(26, 26, 26, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0d6efd;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0b5ed7;
}

/* Micro-interactions */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* Section transitions */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
.footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 25px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* About Section Styles */
.about-img-wrapper img {
  border: 10px solid white;
}

.icon-box-sm {
  width: 35px;
  height: 35px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.experience-badge {
  min-width: 150px;
  z-index: 2;
}

