html{
    scroll-behavior: smooth;
}

.project-img {
  width: 100%;
  max-width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
  margin-bottom: 8px;
  background: #f3f4f6;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
  padding: 0 0 18px 0;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}
.project-card h3 {
  color: #6366f1;
  margin: 12px 0 6px 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.project-card p {
  color: #64748b;
  font-size: 1rem;
  text-align: center;
  margin: 0 12px;
}
.project-card:hover {
  box-shadow: 0 8px 32px rgba(99,102,241,0.22);
  transform: scale(1.05) translateY(-4px);
}

@media (max-width: 700px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-img {
    max-width: 100%;
    height: 140px;
  }
  .project-card {
    min-height: 220px;
    padding-bottom: 10px;
  }
}

.tech-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 24px;
  margin: 32px 0 0 0;
  justify-items: center;
}
.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
  padding: 18px 8px 10px 8px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 90px;
}
.tech-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 6px #6366f1aa);
}
.tech-icon span {
  font-size: 0.95rem;
  color: #6366f1;
  font-weight: 500;
  text-align: center;
}
.tech-icon:hover {
  box-shadow: 0 6px 24px rgba(99,102,241,0.18);
  transform: scale(1.08) translateY(-4px);
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-link:hover {
  box-shadow: 0 6px 24px rgba(99,102,241,0.18);
  transform: scale(1.05) translateY(-2px);
}
.project-icon {
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .tech-icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
  }
  .tech-icon img {
    width: 32px;
    height: 32px;
  }
  .tech-icon {
    padding: 10px 2px 6px 2px;
    min-width: 70px;
  }
}

body {
  background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
  color: #1a202c;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
}

.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: #6366f1;
  letter-spacing: 1px;
}


/* Bootstrap Navbar Customization */
.navbar-brand.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: #6366f1 !important;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.08rem;
  color: #1a202c;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  padding: 8px 18px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  background: linear-gradient(90deg, #6366f1 0%, #a78bfa 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(99,102,241,0.12);
}

.nav-icon {
  font-size: 1.3em;
  margin-right: 2px;
  transition: transform 0.2s;
}
.navbar-nav .nav-link:hover .nav-icon {
  transform: scale(1.2) rotate(-8deg);
}
.nav-text {
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

main {
  padding-top: 90px;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.highlight {
  color: #6366f1;
}
.subtitle {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-block;
  background: #6366f1;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(99,102,241,0.12);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #4338ca;
}

.about-section, .projects-section, .contact-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 92px 24px;
  margin-bottom: 32px;
}
.about-section h2, .projects-section h2, .contact-section h2 {
  color: #6366f1;
  font-size: 2rem;
  margin-bottom: 16px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.project-card {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.08);
  transition: box-shadow 0.2s;
}
.project-card:hover {
  box-shadow: 0 4px 16px rgba(99,102,241,0.18);
}
.project-card h3 {
  color: #6366f1;
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9fafb;
  resize: none;
}
.contact-form button {
  background: #6366f1;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #4338ca;
}
  .navbar-nav{
    background-color: rgba(230, 108, 38, 0.938);
    border-radius: 25px;
    padding: 25px;
}
@media (min-width: 700px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
.navbar-nav{
    background-color: transparent;
    padding: 0;
}
}
