body {
  font-family: 'Montserrat', 'Poppins', 'Inter', Arial, sans-serif;
  background: #0f0f0f;
  color: #f5f6fa;
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 72px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.98);
  box-shadow: 0 4px 24px 0 #00ffff22;
  border-bottom: 1.5px solid #00ffff33;
  backdrop-filter: blur(8px);
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 8vw;
  position: relative;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00FFFF;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #00ffff99;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links li a {
  color: #e0f7fa;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, text-shadow 0.2s;
  background: transparent;
}
.nav-links li a:hover, .nav-links li a.active {
  background: rgba(0,255,255,0.08);
  color: #00FFFF;
  box-shadow: 0 2px 12px 0 #00ffff99;
  text-shadow: 0 0 8px #00ffff;
}
.cv-btn {
  background: linear-gradient(90deg, #00FFFF 60%, #00FF99 100%);
  color: #0f0f0f;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.08rem;
  margin-left: 2rem;
  box-shadow: 0 2px 24px 0 #00ffff33, 0 1.5px 8px 0 #00ff9977;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
}
.cv-btn:hover {
  background: linear-gradient(90deg, #00FF99 60%, #00FFFF 100%);
  color: #fff;
  box-shadow: 0 6px 32px 0 #00ffff99, 0 2px 16px 0 #00ff99cc;
  transform: translateY(-2px) scale(1.04);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  margin-left: 1.5rem;
}
.hamburger span {
  height: 4px;
  width: 100%;
  background: #00FFFF;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Section Glass Card */
.section-glass-card {
  background: rgba(18, 26, 28, 0.92);
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 #00ffff22, 0 2px 16px 0 #00ff9977;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  max-width: 700px;
  margin: 3rem auto 3rem auto;
  border: 1.5px solid #00FFFF;
  backdrop-filter: blur(8px);
  z-index: 2;
  width: 100%;
  position: relative;
}
.section-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Home Section */
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 18px #00ffffcc, 0 2px 12px #00ffff99;
  margin-bottom: 0.7rem;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: #00FFFF;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-shadow: 0 0 8px #00ffff99;
  text-align: center;
}
.hero-desc {
  color: #bfc9d1;
  font-size: 1.08rem;
  margin-bottom: 2rem;
  text-align: center;
}
.hero-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.hero-socials a img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px #00ffff99);
  transition: filter 0.2s, transform 0.2s;
}
.hero-socials a:hover img {
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(140deg) saturate(2) drop-shadow(0 0 18px #00FF99);
  transform: scale(1.15);
}

/* About Section */
.about-section h2 {
  font-size: 2rem;
  color: #00FFFF;
  margin-bottom: 1.2rem;
  text-align: center;
}
.about-section p {
  font-size: 1.1rem;
  color: #bfc9d1;
  text-align: center;
}

/* Skills Section */
.skills-section h2 {
  font-size: 2rem;
  color: #00FFFF;
  margin-bottom: 1.2rem;
  text-align: center;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.skill-badge {
  background: rgba(18, 26, 28, 0.98);
  border-radius: 16px;
  padding: 1.5rem 1rem 1rem 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 2px 16px 0 #00ffff22;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid #00FFFF;
  opacity: 0;
  transform: scale(0.95) translateY(40px);
}
.skill-badge.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: bounceIn 0.8s cubic-bezier(.4,0,.2,1);
}
.skill-badge img {
  width: 38px;
  height: 38px;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 0 12px #00ffff99);
  transition: filter 0.2s, transform 0.2s;
}
.skill-badge:hover {
  background: #101c1c;
  color: #00FF99;
  box-shadow: 0 6px 32px 0 #00ffff99, 0 2px 16px 0 #00ff99cc;
  border: 1.5px solid #00FF99;
  transform: translateY(-8px) scale(1.08);
}
.skill-badge:hover img {
  filter: drop-shadow(0 0 24px #00FF99);
}
.learning {
  margin-top: 2.5rem;
}
.learning h3 {
  color: #00FF99;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}
.learning-grid .skill-badge {
  background: #181a1b;
  border: 1.5px dashed #00FF99;
}

/* Skills Row (Horizontal) */
.skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  max-width: 100vw;
  overflow-x: auto;
}
.skills-row::-webkit-scrollbar {
  height: 8px;
}
.skills-row::-webkit-scrollbar-thumb {
  background: #00FFFF;
  border-radius: 4px;
}
.skills-row::-webkit-scrollbar-track {
  background: #181a1b;
}
.skill-badge {
  min-width: 110px;
  max-width: 140px;
  flex: 1 1 120px;
  box-sizing: border-box;
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Contact Section */
.contact-section h2 {
  font-size: 2rem;
  color: #00FFFF;
  margin-bottom: 1.2rem;
  text-align: center;
}
.contact-info-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 1.1rem;
  color: #00FF99;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.contact-info-item {
  color: #00FF99;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(0,255,153,0.07);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  margin: 0.2rem 0;
  box-shadow: 0 2px 12px 0 #00ff9944;
}
.contact-social-group {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.contact-social-group a svg,
.contact-social-group a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px #00ffff99);
  transition: filter 0.2s, transform 0.2s;
}
.contact-social-group a:hover svg,
.contact-social-group a:hover img {
  filter: drop-shadow(0 0 18px #00FF99);
  transform: scale(1.15);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  background: rgba(18, 26, 28, 0.92);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #00ffff22;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
}
.contact-form input,
.contact-form textarea {
  background: #181a1b;
  border: 1.5px solid #00FFFF;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-size: 1rem;
  resize: none;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 #00ffff22;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00FF99;
  box-shadow: 0 4px 24px 0 #00ff99cc;
}
.contact-form button {
  background: linear-gradient(90deg, #00FFFF 60%, #00FF99 100%);
  color: #0f0f0f;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 24px 0 #00ffff33, 0 1.5px 8px 0 #00ff9977;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #00FF99 60%, #00FFFF 100%);
  color: #fff;
  box-shadow: 0 6px 32px 0 #00ffff99, 0 2px 16px 0 #00ff99cc;
  transform: translateY(-2px) scale(1.04);
}

/* Footer Glassy, Neon, Responsive */
.footer.top-footer {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}
.footer-glass {
  background: rgba(18, 26, 28, 0.96);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 48px 0 #00ffff22, 0 -2px 16px 0 #00ff9977;
  border-top: 2px solid #00FFFF;
  margin: 0 auto;
  max-width: 1100px;
  padding: 2.5rem 4vw 1.2rem 4vw;
  position: relative;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00FFFF;
  text-shadow: 0 0 18px #00ffffcc, 0 2px 12px #00ffff99;
  letter-spacing: 1px;
}
.footer-tagline {
  color: #bfc9d1;
  font-size: 1.02rem;
  font-weight: 500;
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}
.footer-link {
  color: #e0f7fa;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: transparent;
  text-decoration: none;
}
.footer-link:hover, .footer-link.active {
  background: rgba(0,255,255,0.08);
  color: #00FFFF;
  box-shadow: 0 2px 12px 0 #00ffff99;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px #00ffff99);
  transition: filter 0.2s, transform 0.2s;
}
.footer-social a:hover img {
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(140deg) saturate(2) drop-shadow(0 0 18px #00FF99);
  transform: scale(1.15);
}
.footer-cv-btn {
  margin-top: 1.5rem;
  font-size: 1.08rem;
  border: 2px solid #00FFFF;
  background: linear-gradient(120deg, rgba(0,255,255,0.12) 0%, rgba(0,255,153,0.10) 100%);
  color: #00FFFF;
  box-shadow: 0 2px 24px 0 #00ffff33, 0 1.5px 8px 0 #00ff9977;
  text-align: center;
  text-shadow: 0 2px 12px #00ffff99;
  display: inline-block;
  border-radius: 30px;
  padding: 0.7rem 2.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.footer-cv-btn:hover {
  background: linear-gradient(90deg, #00FF99 60%, #00FFFF 100%);
  color: #0f0f0f;
  border-color: #00FF99;
  box-shadow: 0 8px 32px 0 #00ffff99, 0 2px 16px 0 #00ff99cc;
}
.footer-bottom {
  border-top: 1.5px solid #00ffff33;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #bfc9d1;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
  animation: fadeSlideBounce 0.9s cubic-bezier(.4,0,.2,1);
}

/* Bounce-in animation for skills */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(60px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  80% {
    transform: scale(0.97) translateY(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.skill-badge.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: bounceIn 0.8s cubic-bezier(.4,0,.2,1);
}

/* Bounce/slide/fade for sections */
@keyframes fadeSlideBounce {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  80% {
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade-in.visible {
  opacity: 1;
  transform: none;
  animation: fadeSlideBounce 0.9s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 900px) {
  .section-glass-card {
    padding: 2rem 2vw 1.5rem 2vw;
    max-width: 100vw;
  }
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-links {
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .skills-row {
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 0.5rem;
    max-width: 100vw;
  }
  .section-content {
    padding: 0 1vw;
  }
}
@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #181a1b;
    flex-direction: column;
    width: 180px;
    gap: 0.5rem;
    padding: 1.2rem 0.5rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px 0 #00ffff22;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .cv-btn.nav-cv-btn {
    display: none;
  }
  .section-glass-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 99vw;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .footer-glass {
    padding: 1.5rem 2vw 0.7rem 2vw;
    border-radius: 18px 18px 0 0;
  }
  .footer-main {
    gap: 1rem;
  }
  .footer-social a img {
    width: 26px;
    height: 26px;
  }
  .skills-row {
    gap: 0.7rem;
    padding-bottom: 0.3rem;
    flex-wrap: wrap;
    max-width: 100vw;
  }
  .contact-form {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .section-content {
    padding: 0 2vw;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .about-section h2, .skills-section h2, .contact-section h2 {
    font-size: 1.2rem;
  }
  .footer-glass {
    padding: 1rem 1vw 0.5rem 1vw;
    border-radius: 12px 12px 0 0;
  }
  .section-glass-card {
    padding: 1rem 0.5vw 0.5rem 0.5vw;
    border-radius: 12px 12px 0 0;
    max-width: 100vw;
  }
  .skills-row {
    gap: 0.5rem;
    padding-bottom: 0.2rem;
    flex-wrap: wrap;
    max-width: 100vw;
  }
  .skill-badge {
    min-width: 90px;
    max-width: 120px;
    font-size: 0.95rem;
  }
  .section-content {
    padding: 0 2vw;
  }
}

.skill-badge.bootstrap img {
  width: 38px;
  height: 38px;
  margin-bottom: 0.7rem;
  object-fit: contain;
  padding: 0;
}
.skill-badge.bootstrap span {
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
}
.skill-badge.bootstrap {
  min-width: 110px;
  max-width: 140px;
  padding: 1.5rem 1rem 1rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Modal Popup Styles */
.modal-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 15, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeInModalBg 0.3s;
}
.modal-content {
  background: linear-gradient(120deg, #181a1b 80%, #00FF99 100%);
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 #00ffff55, 0 2px 16px 0 #00ff9977;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 350px;
  width: 90vw;
  text-align: center;
  color: #fff;
  position: relative;
  border: 2px solid #00FFFF;
  animation: popInModal 0.4s cubic-bezier(.4,0,.2,1);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.7rem;
  color: #00FFFF;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #00FF99;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popInModal {
  0% { transform: scale(0.8) translateY(40px); opacity: 0; }
  60% { transform: scale(1.05) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Add this CSS to your existing style.css file */

/* Projects Section */
.projects-section h2 {
  font-size: 2rem;
  color: #00FFFF;
  margin-bottom: 1.2rem;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.project-card {
  background: rgba(18, 26, 28, 0.98);
  border-radius: 16px;
  padding: 2rem;
  border: 1.5px solid #00FFFF;
  box-shadow: 0 4px 24px 0 #00ffff22;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px 0 #00ffff44, 0 4px 16px 0 #00ff9977;
  border-color: #00FF99;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF 0%, #00FF99 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 8px #00ffff99;
}

.project-status {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-completed {
  background: rgba(0, 255, 153, 0.15);
  color: #00FF99;
  border: 1px solid #00FF99;
}

.status-in-progress {
  background: rgba(0, 255, 255, 0.15);
  color: #00FFFF;
  border: 1px solid #00FFFF;
}

.status-planned {
  background: rgba(255, 255, 255, 0.1);
  color: #bfc9d1;
  border: 1px solid #bfc9d1;
}

.project-description {
  color: #bfc9d1;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background: rgba(0, 255, 255, 0.1);
  color: #00FFFF;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.project-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-link {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-primary {
  background: linear-gradient(90deg, #00FFFF 60%, #00FF99 100%);
  color: #0f0f0f;
  box-shadow: 0 2px 12px 0 #00ffff33;
}

.link-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 #00ffff55;
}

.link-secondary {
  background: transparent;
  color: #00FFFF;
  border: 1.5px solid #00FFFF;
}

.link-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Project Estimator */
.estimator-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1.5px solid #00ffff33;
}

.estimator-section h3 {
  font-size: 1.5rem;
  color: #00FF99;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 0 8px #00ff9999;
}

.estimator-form {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: #00FFFF;
  font-weight: 600;
  font-size: 1rem;
}

.form-input, .form-select {
  background: #181a1b;
  border: 1.5px solid #00FFFF;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: #00FF99;
  box-shadow: 0 2px 12px 0 #00ff99cc;
}

.estimate-btn {
  background: linear-gradient(90deg, #00FF99 60%, #00FFFF 100%);
  color: #0f0f0f;
  border: none;
  border-radius: 30px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.estimate-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px 0 #00ff99cc;
}

.estimate-result {
  background: rgba(0, 255, 153, 0.1);
  border: 1.5px solid #00FF99;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  display: none;
}

.estimate-result.show {
  display: block;
  animation: slideInUp 0.5s ease;
}

.estimate-title {
  color: #00FF99;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.estimate-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.estimate-item {
  background: rgba(0, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.estimate-item-label {
  color: #00FFFF;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.estimate-item-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles for Projects */
@media (max-width: 900px) {
  .projects-grid {
    gap: 1.5rem;
  }
  
  .project-card {
    padding: 1.5rem;
  }
  
  .estimate-breakdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .project-links {
    flex-direction: column;
  }
  
  .project-link {
    text-align: center;
    justify-content: center;
  }
}