:root {
  --bg-1: #060814;
  --bg-2: #0d1624;
  --accent-1: #00eaff;
  --accent-2: #ff4dd2;
  --glass: rgba(255, 255, 255, 0.03);
  /* --muted: rgba(255, 255, 255, 0.6); */
  --muted:rgba(255, 255, 255, 0.408);
}
.text-muted{
  color: var(--muted) !important;
}
html,
body {
  height: 100%;
}
body {
  background: radial-gradient(
      circle at 10% 10%,
      #071229 0%,
      #05060b 30%,
      #04040a 100%
    ),
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  color: #e6eef8;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
.navbar {
  background: linear-gradient(
    90deg,
    rgba(10, 14, 25, 0.6),
    rgba(10, 14, 25, 0.45)
  );
  backdrop-filter: blur(6px);
}
.navbar .nav-link {
  color: var(--muted) !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--accent-1) !important;
}
#hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
}
.hero-left {
  max-width: 640px;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}
.neon {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--muted);
  margin-top: 12px;
}
.pic-glow{
    box-shadow:0 0 15px #00eaff !important;
}
.tools img {
  width: 60px;
  height: 60px;
  padding: 8px;
  background: var(--glass);
  border-radius: 12px;
  margin: 12px;
  display: inline-block;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.tools img:hover {
  transform: translateY(-8px) rotate(-6deg);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.08);
}
.skills .progress {
  height: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}
.skills .progress-bar {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  width: 0;
}
.swiper {
  padding: 24px 0;
}
.swiper-slide {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 14px;
  padding: 24px;
  min-height: 160px;
}
.card.blog {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: none;
}
.social-float {
  position: fixed;
  left: 16px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 9999;
}
.social-float a {
  display: block;
  margin: 10px 0;
  color: var(--accent-1);
  background: rgba(255, 255, 255, 0.02);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  text-decoration: none;
}
.social-float a:hover {
  transform: translateX(6px);
  color: var(--accent-2);
}
#scrollTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #052225;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 9999;
}

.terminal {
  width: 100%;
  max-width: 780px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.r {
  background: #ff5f56;
}
.y {
  background: #ffbd2e;
}
.g {
  background: #27c93f;
}
.terminal-body {
  background: linear-gradient(180deg, #071018, #07111b);
  padding: 18px;
  color: var(--accent);
  font-family: "Fira Code", "Source Code Pro", monospace;
  min-height: 200px;
  font-size: 15px;
}

.typed-lines {
  white-space: pre-wrap;
}
.typing-line {
  display: block;
  color: var(--accent-1);
}

.cursor {
  display: inline-block;
  width: 10px;
  margin-left: 4px;
  color: var(--accent);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.section{
  margin-top:50px;
}
.section h3{
  padding: 20px 0px;
}
.social-mobile{
  display: none;
}
.social-links{
  display: flex;
  text-align: center;
  justify-content: center;
}
.social-links a {
  display: block;
  margin: 10px;
  color: var(--accent-1);
  background: rgba(255, 255, 255, 0.02);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  text-decoration: none;
}
.social-links a:hover {
  transform: translateY(-6px);
  color: var(--accent-2);
}

.services-section{
  margin:0 auto;
}


.section-header{
  text-align:center;
  margin-bottom:36px;
}
.section-header h2{
  font-weight:700;
  letter-spacing:0.4px;
  color: #e6eef8;
  margin-bottom:8px;
}
.section-header p{
  color:#9fb0c9;
  margin-bottom:0;
}


.service-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius:16px;
  padding:20px;
  transition: transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s;
  transform-origin:center;
  min-height:140px;
  position:relative;
  overflow:hidden;
}
.service-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 28px rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
}


.service-icon{
  width:120px;
  height:50px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(124,58,237,0.14), rgba(0,229,255,0.06));
  border:1px solid rgba(255,255,255,0.03);
  font-size:24px;
  color:var(--accent2);
  backdrop-filter: blur(6px);
}

.service-title{
  font-weight:600;
  color:#e9f2ff;
  margin-top:8px;
  margin-bottom:6px;
  font-size:1.05rem
}
.service-desc{
  color:#9fb0c9;
  font-size:0.95rem
}

/* neon lines */
.service-card::before{
  content:'';
  position:absolute;left:-30%;top:-50%;width:200%;height:180%;

}

/* subtle pulse */
@keyframes pulseAccent{
  0%{box-shadow:0 0 0px rgba(124,58,237,0.06)}
  50%{box-shadow:0 0 28px rgba(124,58,237,0.06)}
  100%{box-shadow:0 0 0px rgba(124,58,237,0.06)}
}
.service-icon.pulse{
  animation: pulseAccent 3.6s infinite;
}


/* filter chips */
.chips{
  display:flex;
  gap:8px;flex-wrap:wrap;
  justify-content:center;
  margin-bottom:18px
}
.chip{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.04);
  padding:6px 12px;
  border-radius:999px;
  font-weight:600;
  color:#b8d0e8;
  cursor:pointer
}
.chip.active{
  background:linear-gradient(90deg,var(--accent-1),var(--accent-2));
  color:#00121a
}

/*about page*/

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-weight: 700;
  color: #f0f4ff;
}
.section-title p {
  color: #9fb0c9;
}

.about-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}
.profile-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.1);
}
.profile-img img {
  width: 100%;
  border-radius: 20px;
}
.about-text h3 {
  color: #00e5ff;
  font-weight: 700;
}
.about-text p {
  color: #b8c8df;
  line-height: 1.7;
  margin-bottom: 15px;
}
.highlight {
  color: #7c3aed;
  font-weight: 600;
}

.info-list li {
  margin-bottom: 10px;
  list-style: none;
}
.info-list strong {
  color: #fff;
}

.social-links a {
  font-size: 22px;
  margin-right: 12px;
  color: #b8c8df;
  transition: 0.3s;
}
.social-links a:hover {
  color: var(--accent-2);
}

/* Timeline */
.timeline-section {
  margin-top: 80px;
}
.timeline-title {
  text-align: center;
  margin-bottom: 40px;
}
.timeline-title h2 {
  color: #f0f4ff;
  font-weight: 700;
}
.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid rgba(0, 229, 255, 0.4);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}
.timeline-item h5 {
  color: #00e5ff;
  font-weight: 600;
}
.timeline-item small {
  color: #9fb0c9;
  display: block;
  margin-bottom: 5px;
}
.timeline-item p {
  color: #b8c8df;
}

/*end about page*/

/*contact page*/
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-header h2 {
  font-weight: 700;
  color: #f0f4ff;
  margin-bottom: 10px;
}
.contact-header p {
  color: #9fb0c9;
}

.contact-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 25px;
}
.contact-info i {
  font-size: 24px;
  color: var(--accent-1);
  margin-right: 10px;
}
.contact-info p {
  margin-bottom: 8px;
  color: #b8c8df;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-1) !important;
  box-shadow: none;
}
.contact-form button {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #00121a;
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 600;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 16px;
  filter: grayscale(0.2) brightness(0.8);
}


/*end contact page*/




/* responsive code */

@media(max-width: 768px){
  .section{
    margin-top:20px;
  }
  .social-float{
    display: none;
  }
  .social-mobile{
    display: block;
  }
  .terminal-body {
    font-size: 13px;
    padding: 14px;
  }
  h1 {
    font-size: 1.5rem;
  }
  .hero-left{
    text-align: center;
  }
  .mobile{
    justify-content: center;
  }
  .text-center-md{
    text-align: center;
  }
  .service-icon{
    width:70px;
    height:48px;
    font-size:20px
  }
  .service-card{
    padding:16px
  }
}



@media (max-width: 991px) {
  .hero-left {
    margin-bottom: 20px;
  }
  .terminal-window {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .tools img {
    width: 48px;
    height: 48px;
  }
}