@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

/* =====================================================
   DESIGN TOKENS (V2 — unified palette)
   Direction: Vercel-dark base + Linear motion + Stripe glow.
   One accent (purple #7C3AED). Gold reserved for primary CTAs only.
   ===================================================== */
:root{
  /* dark surfaces (hero, projects, skills, achievements, devzonex, footer) */
  --bg:          #0a0a0f;
  --bg-soft:     #111119;
  --bg-card:     #16161f;
  --border-dark: rgba(255,255,255,.09);
  --border-dark-2: rgba(255,255,255,.16);

  /* light surfaces (services, about, education, experience, contact) */
  --light:        #ffffff;
  --light-soft:   #f6f7f9;
  --light-border: #ececf1;

  /* accent — purple */
  --accent:      #7C3AED;
  --accent-2:    #9d5cff;
  --accent-soft: rgba(124,58,237,.12);
  --accent-glow: rgba(124,58,237,.45);

  /* CTA gold — use sparingly */
  --gold:        #ffd900;

  /* text */
  --text-light:  #f4f4f7;   /* on dark */
  --text-mute-d: #a2a2b5;   /* muted on dark */
  --text-dark:   #0b0b12;   /* on light */
  --text-mute-l: #56565f;   /* muted on light */
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none; border: none;
  text-transform:capitalize;
  transition: all .2s linear;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body{
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
}

*::selection{
  background: #2b3dda;
  color: #fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar{
  width: .8rem;
}
html::-webkit-scrollbar-track{
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb{
  background: #420177;
}

/* pre loader start */
.loader-container{
  position: fixed;
  top: 0; left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out{
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146,161,176,.3);
}
section{
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading{
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span{
  color: rgb(115, 3, 167);
}
header .logo{
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0E2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li{
  margin-left: 2.5rem;
}
header .navbar ul li a{
  font-size: 1.57rem;
  color: #0E2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: .2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
  color: #011aff;
  border-bottom: .2rem solid #011aff;
  padding: .5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu{
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media(max-width:768px){
  #menu{
      display: block;
  }
  header .navbar{
    position: fixed;
    top: 6.5rem; right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul{
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li{
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: .5rem;
    width: 26rem;
  }
  header .navbar ul li a{
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover{
    padding: 1rem;
    color: #fff;
    border-radius: .5rem;
    border-bottom: .5rem solid #011aff;
  }
  .fa-times{
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle{
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}
.home #particles-js{
  position: absolute;
  top: 0;left: 0;
  height: 100%;
  width: 100%;
}
.home::before{
  content: '';
  position: absolute;
  top: 0;left: 0;
  height: 100%;
  width: 100%;
}
.home .content{
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image{
  flex: 1 1 40rem;
  z-index: 1;
}
.home .image img{
  width: 70%;
  margin-left: 6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.home .image img:hover{
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content :is(h1,h3){
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
}
.home .content :is(h1,h3) span{
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}
.home .content p{
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span{
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #ffe600;
  box-shadow: 0px 5px 18px rgba(145, 136, 12, 0.6);
  font-family: 'Nunito', sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover{
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials{
  position: relative;
  margin-top: 3rem;
}
.socials .social-icons {
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.socials .social-icons li {
  display:inline-block;
  margin-bottom:14px
}
.social-icons a {
  font-size:2rem;
  display:inline-block;
  line-height:44px;
  color: #ffe600;
  background-color:#09011b;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover {
  color:#fff;
  background-color:#0685da
}
.social-icons a.github:hover {
  background-color:#0e0e0e
}
.social-icons a.twitter:hover {
  background-color:#00aced
}
.social-icons a.linkedin:hover {
  background-color:#007bb6
}
.social-icons a.dev:hover {
    background-color:#070707
}
.social-icons a.instagram:hover {
    background-color:#ee00da
}
/* social icons end */

/* hero media queries starts*/
@media(max-width:450px){
  .home .btn{
    margin: 4rem 0;
  }
  .socials{
    margin-top: 3rem;
  }
  .home .image img{
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span{
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: rgb(255, 255, 255);
}
.about .row{
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img{
  margin: 4rem;
  width: 36rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  mix-blend-mode:luminosity;
  transition: .3s;
  cursor: pointer;
}
.about .row .image img:hover{
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3{
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag{
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p{
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: 'Nunito';
  font-weight: 600;
}
.about .row .content .box-container{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: 'Nunito';
  font-weight: 600;
}
.about .row .content .box-container .box p{
  text-transform: none;
}
.about .row .content .box-container .box p span{
  color:#424fc9;
}
.resumebtn{
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: .5em;
  transition: 0.3s;
  color: #fff;
  background: #f8e004;
  box-shadow: 0px 5px 10px rgba(200, 219, 30, 0.6);
  font-family: 'Nunito', sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover{
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px){
  .about .row .image{
    margin-top: 2rem;
  }
  .about .row .image img{
    margin: 0 auto;
    width: 80%;
    mix-blend-mode:normal;
  }
  .about .row{
    padding: .5rem;
    margin-bottom: 7rem;
  }
  .about .row .content{
    padding: 1rem;
  }
  .about .row .content .box-container{
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */


/* skills section starts */
.skills{
  background: linear-gradient(to bottom, #57059e, #4a00e0);
}
.skills h2{
  color: #fff;
}
.skills .heading span{
  color: rgb(255, 230, 0);
}
.skills .container{
  background: rgba( 0, 0, 22, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem;
}
.skills .container .row{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  flex-wrap: wrap;
}
.skills .container .row .col{
  display: grid;
}
.skills .container .col{
  position: relative;
  width: 90%;
  color: #fff;
  margin-top: .5rem;
}
.skills .container .col .bar{
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  background: rgba( 0, 0, 22, 0.9);
  transition: .2s;
}
.skills .container .col .bar:hover{
  transform: translateX(12px);
  box-shadow: 0 5px 8px rgba(0, 2, 68, 0.4);
}
.skills .container .col .bar .info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.skills .container .col .bar .info i{
  font-size: 2rem;
}
.skills .container .col .bar .info span{
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Poppins';
  margin-left: .5rem;
}
.skills .container .col .bar .line{
  position: relative;
  width: 100%;
  height: 10px;
  background: rgb(212, 211, 211);
  border-radius: 6px;
}
.skills .container .col .bar .line:before{
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
}
.skills .container .col .bar .html:before{
  width: 90%;
  background: #e03d0b;
}
.skills .container .col .bar .css:before{
  width: 82%;
  background: #2962ff;
}
.skills .container .col .bar .javascript:before{
  width: 82%;
  background: #ffd900;
}
.skills .container .col .bar .jquery:before{
  width: 73%;
  background: #3d10dd;
}
.skills .container .col .bar .php:before{
  width: 84%;
  background: #8054c7;
}
.skills .container .col .bar .mysql:before{
  width: 80%;
  background: #f38b03;
}
.skills .container .col .bar .reactjs:before{
  width: 55%;
  background: #2962ff;
}
.skills .container .col .bar .java:before{
  width: 80%;
  background: #ce0505;
}
.skills .container .col .bar .python:before{
  width: 90%;
  background: #f7d203;
}
.skills .container .col .bar .android:before{
  width: 70%;
  background: #2fdf7e;
}
.skills .container .col .bar .nodejs:before{
  width: 70%;
  background: #298521;
}
.skills .container .col .bar .vcs:before{
  width: 88%;
  background: #f14e32;
}
.skills .container .col .bar .cms:before{
  width: 85%;
  background: #1771e7;
}
.skills .container .col .bar .firebase:before{
  width: 90%;
  background: #ffae00;
}

/* skills media queries starts*/
@media screen and (max-width: 600px){
  .skills .container{
    padding: 0;
    margin: 0;
  }
  .skills .container .row{
    grid-template-columns: repeat(1,1fr);
    margin: 1rem;
    padding-top: 2rem;
  }
  .skills .container .col{
    margin-top: 5px;
    width: 100%;
  }
  .skills .container .col .bar{
    margin-bottom: 10px;
    padding: 10px;
  }
  .skills .container .col .bar .line{
    height: .8rem;
  }
}
/* skills media queries ends*/
/* skills section ends */


/* education section starts */
.education{
  background: #e5ecfb;
  min-height: 80vh;
}
.education .qoute{
  font-size: 1.5rem;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  margin-top: .5rem;
}
.education .box-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.education .box-container .box{
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: .5rem;
  box-shadow: .2rem .5rem 1rem rgba(0, 0, 0, .2);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: .3s;
  background: rgb(252, 252, 252);
}
.education .box-container .box:hover{
  transform: scale(1.03);
  box-shadow: 1rem .5rem 1.2rem rgba(0, 0, 0, .3);
}
.education .box-container .box .image{
  flex: 1 1 20rem;
  width: 100%;
}
.education .box-container .box img{
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
}
.education .box-container .box .content{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3{
  font-size: 2.5rem;
  color: #012970;
  padding: .5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p{
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
}
.education h4{
  font-size: 2rem;
  color: rgb(34, 109, 0);
  text-align: left;
  margin: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

/* education media queries starts*/
@media screen and (max-width: 600px){
  .education .box-container .box{
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image{
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img{
    width: 100%;
  }
  .education .box-container .box .content{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns{
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
/* education section ends */


/* work section starts */
.work{
  /* background: #010124; */
  background: linear-gradient(to bottom, #000031, #00002c);
}
.work h2{
  color: #fff;
  padding: 1rem;
}
.work .heading span{
  color: rgb(255, 230, 0);
}
.work .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  margin: 2rem;
}
.work .box-container .box{
  flex:1 1 30rem;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  position: relative;
  overflow:hidden;
  height:30rem;
}
.work .box-container .box img{
  height: 100%;
  width:100%;
  object-fit: cover;
}
.work .box-container .box .content{
  height: 100%;
  width:100%;
  position: absolute;
  top:85%; left:0;
  background:rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.work .box-container .box .content .tag{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  width: 100%;
  padding-left: 1rem;
  background: #ffd900;
}
.work .box-container .box .content .tag h3{
  font-size: 2rem;
}
.work .box-container .box:hover .content{
  top: 25%;
}
.work .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work .desc p{
  font-size: 1.5rem;
}
.work .desc .btns{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}
.work .desc .btns .btn{
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 2rem;
}
.work .desc .btns .btn:hover{
  background: #310ae0f5;
}
.work .viewall{
  display: flex;
  justify-content: center;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: 'Nunito', sans-serif;
}
.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.work .viewall .btn:hover{
  background: #fff;
  color: #000;
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}
/* work section ends */


/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
.experience .container::after {    
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color:#02094b;
  font-family: 'Font Awesome\ 5 Free';
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #f68c09;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag{
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc{
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3{
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p{
  font-size: 1.2rem;
}
/* view all button */
.morebtn{
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, .6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: 'Nunito', sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover{
  background: #1a047e;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience{
    min-height: 80vh;
  }
  .experience .timeline{
    margin-top: 2rem;
  }
  .experience .timeline::after {
  left: 31px;
  }
  .experience .container {
  width: 100%;
  padding-left: 8rem;
  padding-right: 2rem;
  }
  .experience .container::after {   
    font-size: 2.2rem;
  }
  .experience .container::before {
  left: 61px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
  left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
.contact{
  background: #e5ecfb;
  min-height: 60vh;
}
.contact .container{
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box{
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img{
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form{
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field{
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder{
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: rgb(115, 3, 167);
}
form .message{
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i{
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
form .button-area{
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, .6);
  transition: 0.3s ease;
  font-family: 'Nunito',sans-serif;
}
.button-area button:hover{
  background: #421cecf5;
}
.button-area span{
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i{
  position: relative;
  top: 6px; left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i{
  left: 8px;
}
/* contact section media queries starts */
@media (max-width:900px) {
  .contact{
    min-height: 70vh;
  }
  .contact .container{
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content{
    padding: 18px 12px;
  }
  .contact .content .image-box{
    display: none;
  }
  .contact .content form{
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */


/* footer section starts */
.footer{
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box{
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3{
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p{
  font-size: 1.5rem;
  color: #ccc;
  padding: .7rem 0;
  text-transform: none;
}
.footer .box-container .box p i{
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a{
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: .3rem 0;
  display: block;
}
.footer .box-container .box a:hover{
  color: #ffae00;
}
.footer .box-container .box .share{
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a{
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: .2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover{
  background: transparent;
  transform: scale(0.98);
  border: .1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit{
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Nunito',sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: .1rem solid #fff3;
}
.footer .credit a{
  color: #ffae00;
}
.footer .fa{
    color: #E90606;
    margin: 0 .3rem;
    font-size: 1.5rem;
    animation: pound .35s infinite alternate;
}
@-webkit-keyframes pound{
  to{
    transform: scale(1.1);
  }
}
@keyframes pound{
  to{
    transform: scale(1.1);
}
}
@media(max-width:450px){
  .footer .box-container .box{
    margin: 1.5rem;
  }
  .footer .box-container .box p{
    padding: 0.7rem;
  }
  .footer .box-container .box .share a{
    padding: 1.2rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media(max-width:450px){
  html{
    font-size: 55%;
  }
  body{
    padding-right: 0;
  }
  section{
    padding: 2rem;
  }
}
/* common media queries ends*/


/* scroll top starts */
#scroll-top{
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active{
  top: calc(100% - 12rem);
}
/* scroll top ends */


/* =====================================================
   PORTFOLIO UPGRADE — new components (2026 refresh)
   Palette kept consistent: navy #000031, purple #7303a7,
   gold #ffe600 / #ffd900, orange #ff7b00
   ===================================================== */

/* accessibility helper */
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* shared section intro */
.services-intro{
  text-align: center;
  font-size: 1.6rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: #333;
  max-width: 70rem;
  margin: 1rem auto 3rem auto;
  text-transform: none;
}

/* ---------- HERO upgrades ---------- */
.home .content :is(h1,h3){
  font-size: 4.2rem;
  line-height: 1.15;
}
.home .content :is(h1,h3) span{ font-size: 4.2rem; }
.home .content .hero-sub{
  font-size: 1.9rem;
  font-weight: 600;
  color: #0b1b3a;
  text-transform: none;
  font-family: 'Nunito', sans-serif;
  max-width: 48rem;
  padding: 1.2rem 0 .4rem 0;
}
.home .content .hero-name{
  font-size: 2.2rem;
  font-weight: 800;
  color: #7303a7;
  padding: .6rem 0 0 0;
}
.home .content .hero-roles{
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
  padding: .2rem 0 0 0;
}
.home .content .hero-roles span{
  color: rgb(148, 8, 8);
  font-size: 1.9rem;
}
.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.hero-badges .badge{
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  background: #fff;
  color: #0b1b3a;
  padding: .7rem 1.2rem;
  border-radius: 3em;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
  border: 1px solid rgba(115,3,167,.15);
}
/* hero CTA buttons (override the old absolute .home .btn) */
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.home .hero-cta .btn{
  position: relative;
  margin: 0;
  line-height: 1;
  padding: 1.4rem 2.6rem;
  border-radius: 3em;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.home .hero-cta .btn i{ margin-left: .2rem; font-size: 1.4rem; }
.btn-primary{ background: #2506ad; color: #fff; }
.btn-primary:hover{ background: #1a047e; transform: translateY(-2px); }
.btn-accent{ background: #ffd900; color: #1a1a1a; }
.btn-accent:hover{ background: #ff7b00; color: #fff; transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: #0b1b3a; border: 2px solid #0b1b3a !important; box-shadow: none; }
.btn-ghost:hover{ background: #0b1b3a; color: #fff; transform: translateY(-2px); }
.home .hero-cta .btn:hover i{ transform: translateX(4px); }

.home .image img.hero-photo{
  width: 60%;
  border-radius: 50%;
  border: .6rem solid #fff;
  box-shadow: 0 10px 30px rgba(11,27,58,.35);
  object-fit: cover;
  aspect-ratio: 1/1;
}
.social-icons a.whatsapp:hover{ background-color:#25D366; color:#fff; }
.social-icons a.email:hover{ background-color:#ea4335; color:#fff; }

/* ---------- SERVICES ---------- */
.services{ background: #f4f6fc; }
.services .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.services .box{
  background: #fff;
  border-radius: 1.2rem;
  padding: 2.6rem 2rem;
  box-shadow: 0 6px 18px rgba(11,27,58,.08);
  border: 1px solid #eceffb;
  transition: .25s;
  position: relative;
  overflow: hidden;
}
.services .box::before{
  content:'';
  position:absolute; top:0; left:0;
  height: .5rem; width: 100%;
  background: linear-gradient(to right, #7303a7, #ffd900);
  transform: scaleX(0); transform-origin: left;
  transition: .3s;
}
.services .box:hover{ transform: translateY(-8px); box-shadow: 0 14px 30px rgba(11,27,58,.18); }
.services .box:hover::before{ transform: scaleX(1); }
.services .box i{
  font-size: 3.2rem;
  color: #7303a7;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.services .box:hover i{ color: #ff7b00; transform: scale(1.08); }
.services .box h3{
  font-size: 1.9rem;
  color: #0b1b3a;
  margin-bottom: .8rem;
}
.services .box p{
  font-size: 1.45rem;
  line-height: 1.6;
  color: #444;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  text-transform: none;
}
.services-cta{ display:flex; justify-content:center; margin-top: 3.5rem; }
.services-cta .btn{
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1.5rem 3rem;
  border-radius: 3em;
  background: #2506ad; color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.7rem;
  box-shadow: 0 6px 16px rgba(48,68,247,.4);
}
.services-cta .btn:hover{ background:#1a047e; transform: translateY(-2px); }
.services-cta .btn:hover i{ transform: translateX(4px); }

/* ---------- SKILLS (card layout) ---------- */
.skills-intro{ color: #f0e9ff !important; }
.skills-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.skill-card{
  background: rgba(0,0,22,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.2rem;
  padding: 2.2rem;
  transition: .25s;
}
.skill-card:hover{ transform: translateY(-6px); box-shadow: 0 12px 26px rgba(0,0,0,.4); }
.skill-card h3{
  font-size: 2rem;
  color: #ffd900;
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .8rem;
}
.skill-card h3 i{ font-size: 2rem; }
.skill-chips{ display: flex; flex-wrap: wrap; gap: .8rem; }
.skill-chips span{
  font-size: 1.35rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .6rem 1.1rem;
  border-radius: 3em;
  transition: .2s;
}
.skill-chips span:hover{ background: #ffd900; color: #1a1a1a; border-color:#ffd900; }

/* ---------- PROJECTS (card + filter) ---------- */
.work-intro{ color: #dfe4ff !important; }
.work-filters{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 3rem 0;
}
.work-filters .filter-btn{
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,.4) !important;
  padding: .9rem 2rem;
  border-radius: 3em;
  cursor: pointer;
  transition: .2s;
}
.work-filters .filter-btn:hover{ border-color:#ffd900 !important; color:#ffd900; }
.work-filters .filter-btn.active{ background:#ffd900; color:#1a1a1a; border-color:#ffd900 !important; }

.work .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2.2rem;
  margin: 2rem 0;
}
.work .project-card{
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  height: auto;
  transition: .25s;
}
.work .project-card.hide{ display: none; }
.work .project-card:hover{ transform: translateY(-8px); }
.work .project-img{
  position: relative;
  height: 19rem;
  overflow: hidden;
}
.work .project-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .4s;
}
.work .project-card:hover .project-img img{ transform: scale(1.06); }
.work .cat-badge{
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(11,27,58,.9);
  color: #fff;
  font-size: 1.15rem; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: .4rem 1rem; border-radius: 3em;
  text-transform: none;
}
.work .flag-badge{
  position: absolute; top: 1rem; right: 1rem;
  background: #ffd900; color: #1a1a1a;
  font-size: 1.15rem; font-weight: 800;
  font-family: 'Nunito', sans-serif;
  padding: .4rem 1rem; border-radius: 3em;
  text-transform: none;
}
.work .concept-badge{
  position: absolute; bottom: 1rem; right: 1rem;
  background: #ff7b00; color: #fff;
  font-size: 1.15rem; font-weight: 800;
  font-family: 'Nunito', sans-serif;
  padding: .4rem 1rem; border-radius: 3em;
  text-transform: none;
  box-shadow: 0 3px 8px rgba(0,0,0,.3);
}
.work .project-body{
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.work .project-body h3{
  color: #0b1b3a;
  font-size: 2rem;
  padding: 0;
  margin-bottom: .6rem;
}
.work .project-body p{
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  text-transform: none;
  flex: 1;
}
.work .tech-tags{
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 1.2rem 0;
}
.work .tech-tags span{
  font-size: 1.15rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #7303a7;
  background: #f3e9fb;
  padding: .4rem .9rem;
  border-radius: .5rem;
  text-transform: none;
}
.work .project-btns{
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: auto;
}
.work .project-btns .btn{
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1.4rem;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: .6rem;
  background: #0b1b3a; color: #fff;
  margin: 0;
}
.work .project-btns .btn:hover{ background: #2506ad; }
.work .project-btns .btn-outline{
  background: transparent;
  color: #0b1b3a;
  border: 2px solid #0b1b3a !important;
}
.work .project-btns .btn-outline:hover{ background:#0b1b3a; color:#fff; }
.work .project-btns .btn-disabled{
  background: #e3e3e3; color: #888; cursor: not-allowed;
}

/* ---------- ACHIEVEMENTS (stat cards) ---------- */
.achievements .ach-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}
.ach-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.2rem;
  padding: 2.4rem 1.6rem;
  text-align: center;
  transition: .25s;
}
.ach-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,.1); box-shadow: 0 12px 26px rgba(0,0,0,.4); }
.ach-card .ach-icon{ font-size: 3.4rem; margin-bottom: .8rem; }
.ach-card h3{ color:#ffd900; font-size: 2.4rem; padding: 0; margin-bottom: .4rem; }
.ach-card p{
  color: #e9ecff; font-size: 1.4rem;
  font-family: 'Nunito', sans-serif; font-weight: 600;
  text-transform: none;
}

/* ---------- AVAILABILITY / TESTIMONIAL ---------- */
.availability{
  min-height: auto;
  background: linear-gradient(135deg, #57059e, #2506ad);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 9%;
}
.avail-card{ text-align: center; max-width: 70rem; }
.avail-dot{
  display: inline-block;
  width: 1.1rem; height: 1.1rem;
  background: #2ecc71; border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 0 rgba(46,204,113,.7);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(46,204,113,.7); }
  70%{ box-shadow: 0 0 0 1.2rem rgba(46,204,113,0); }
  100%{ box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.avail-card h2{
  color: #fff; font-size: 2.8rem; font-weight: 800;
  margin-bottom: 1.2rem; text-transform: none;
}
.avail-card p{
  color: #e9e3ff; font-size: 1.6rem;
  font-family: 'Nunito', sans-serif; font-weight: 600;
  text-transform: none; margin-bottom: 2.5rem;
}
.avail-cta{ display:flex; flex-wrap:wrap; gap:1.2rem; justify-content:center; }
.avail-cta .btn, .btn-whatsapp{
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.4rem 2.8rem; border-radius: 3em;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.6rem;
}
.avail-cta .btn{ background:#ffd900; color:#1a1a1a; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.avail-cta .btn:hover{ background:#fff; transform: translateY(-2px); }
.btn-whatsapp{ background:#25D366; color:#fff; box-shadow: 0 6px 16px rgba(37,211,102,.4); }
.btn-whatsapp:hover{ background:#1da851; transform: translateY(-2px); }

/* ---------- ABOUT hire-me button ---------- */
.resumebtn{ display:flex; flex-wrap:wrap; gap:1.2rem; }
.btn-hireme{ background:#2506ad !important; box-shadow:0 5px 10px rgba(48,68,247,.5) !important; }
.btn-hireme:hover{ background:#1a047e !important; }

/* ---------- CONTACT methods ---------- */
.contact-intro{ margin-bottom: 1rem; }
.contact .content{ flex-wrap: wrap; align-items: stretch; gap: 2rem; }
.contact-info{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 45%;
  margin-left: 2rem;
  justify-content: center;
}
.contact-method{
  display: flex; align-items: center; gap: 1.4rem;
  background: #f4f6fc;
  border: 1px solid #e4e8f5;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  transition: .2s;
}
.contact-method:hover{ transform: translateX(6px); box-shadow: 0 6px 16px rgba(11,27,58,.12); }
.contact-method i{
  position: static;
  font-size: 2.6rem;
  width: 5rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  pointer-events: none;
  transform: none;
}
.contact-method.whatsapp i{ background:#25D366; }
.contact-method.email i{ background:#ea4335; }
.contact-method.linkedin i{ background:#0a66c2; }
.contact-method.github i{ background:#181717; }
.contact-method h4{ font-size: 1.6rem; color:#0b1b3a; text-transform:none; }
.contact-method span{ font-size: 1.3rem; color:#555; font-family:'Nunito',sans-serif; text-transform:none; }

/* ---------- FLOATING WHATSAPP ---------- */
#whatsapp-float{
  position: fixed;
  bottom: 2.5rem; left: 2rem;
  width: 5.6rem; height: 5.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: 0 6px 18px rgba(37,211,102,.5);
  z-index: 1000;
  animation: waFloat 2.6s ease-in-out infinite;
}
#whatsapp-float:hover{ background:#1da851; transform: scale(1.08); }
@keyframes waFloat{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }

/* =====================================================
   RESPONSIVE for new components
   ===================================================== */
@media (max-width: 768px){
  .home .content :is(h1,h3), .home .content :is(h1,h3) span{ font-size: 3.4rem; }
  .home .image img.hero-photo{ width: 70%; }
  .contact-info{ width: 100%; margin-left: 0; }
  .contact .content form{ width: 100%; margin-right: 0; }
  .avail-card h2{ font-size: 2.2rem; }
}
@media (max-width: 600px){
  .home .image img.hero-photo{ width: 75%; margin-top: 0; margin-left: 0; }
  .hero-cta .btn{ flex: 1 1 100%; justify-content: center; }
  .hero-badges .badge{ font-size: 1.15rem; }
  .work .box-container, .services .box-container, .skills-container{ grid-template-columns: 1fr; }
  #whatsapp-float{ width: 5rem; height: 5rem; font-size: 2.6rem; bottom: 2rem; }
}

/* =====================================================
   V2 HYBRID THEME (overrides) — dark hero/projects/skills/
   achievements/devzonex/footer · light services/about/
   education/experience/contact · one purple accent.
   ===================================================== */

/* ---- globals ---- */
*::selection{ background: var(--accent); color:#fff; }
html::-webkit-scrollbar-track{ background:#15151c; }
html::-webkit-scrollbar-thumb{ background: var(--accent); }
.loader-container{ background: var(--bg); }
.heading span{ color: var(--accent); }
#scroll-top{ background: var(--accent); color:#fff; }

/* premium minimal preloader — purple ring + brand wordmark */
.loader-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.loader-ring{
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.10);
  border-top-color: var(--accent-2);
  animation: loaderSpin .8s linear infinite;
}
@keyframes loaderSpin{ to{ transform: rotate(360deg); } }
.loader-brand{
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--text-light);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-brand i{ color: var(--accent-2); }
@keyframes loaderPulse{
  0%,100%{ opacity: .45; }
  50%{ opacity: 1; }
}

/* ---- NAV (dark glass) ---- */
header{
  background: rgba(10,10,15,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-dark);
}
header .logo{ color: var(--text-light); }
header .logo i{ color: var(--accent-2); }
header .logo:hover{ color: var(--accent-2); }
header .navbar ul li a{ color:#cfcfda; }
header .navbar ul li a.active,
header .navbar ul li a:hover{ color:#fff; border-bottom-color: var(--accent); }
#menu{ color: var(--text-light); }
@media(max-width:768px){
  header .navbar{ background: var(--bg-soft); }
  header .navbar ul li a.active,
  header .navbar ul li a:hover{ border-bottom-color: var(--accent); }
}

/* ---- HERO (dark + glow + photo) ---- */
.home{ background: var(--bg); overflow: hidden; }
.home::before{
  background:
    radial-gradient(55rem 55rem at 12% 8%, rgba(124,58,237,.28), transparent 60%),
    radial-gradient(45rem 45rem at 92% 85%, rgba(124,58,237,.16), transparent 60%);
  pointer-events: none;
}
.home .content :is(h1,h3){ color: var(--text-light); }
.home .content :is(h1,h3) span{ color: var(--accent-2); }
.home .content .hero-sub{ color:#c5c5d3; }
.home .content .hero-name{ color: var(--accent-2); }
.home .content .hero-roles{ color: var(--text-light); }
.home .content .hero-roles span{ color: var(--accent-2); }
.hero-badges .badge{
  background: rgba(255,255,255,.05);
  color:#e7e7ef;
  border:1px solid var(--border-dark-2);
  box-shadow:none;
}
.btn-primary{ background: var(--accent); }
.btn-primary:hover{ background: var(--accent-2); }
.btn-ghost{ color:#e7e7ef; border-color: var(--border-dark-2) !important; }
.btn-ghost:hover{ background:#fff; color:#0a0a0f; border-color:#fff !important; }

/* hero photo — circular, purple glow ring */
.home .image{ display:flex; justify-content:center; }
.hero-photo-wrap{ position:relative; display:inline-block; }
.hero-photo-wrap::before{
  content:'';
  position:absolute; inset:-2.4rem;
  border-radius:50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(10px);
  z-index:0;
}
.home .image img.hero-photo{
  position:relative; z-index:1;
  width:32rem; height:32rem; max-width:80%;
  margin:0;
  border:.5rem solid rgba(255,255,255,.08);
  box-shadow:0 0 0 1px var(--border-dark-2), 0 22px 55px rgba(0,0,0,.55);
  background: var(--bg-soft);
  aspect-ratio:1/1;
}

/* ---- SKILLS (dark) ---- */
.skills{ background: var(--bg); }
.skills .heading span{ color: var(--accent-2); }
.skills-intro{ color: var(--text-mute-d) !important; }
.skill-card{ background: var(--bg-card); border:1px solid var(--border-dark); }
.skill-card:hover{ box-shadow:0 14px 30px rgba(0,0,0,.5); border-color: var(--accent); }
.skill-card h3{ color: var(--text-light); }
.skill-card h3 i{ color: var(--accent-2); }
.skill-chips span{ background: rgba(255,255,255,.05); border-color: var(--border-dark-2); color:#dcdce6; }
.skill-chips span:hover{ background: var(--accent); color:#fff; border-color: var(--accent); }

/* ---- PROJECTS (dark cards) ---- */
.work{ background: var(--bg); }
.work .heading span{ color: var(--accent-2); }
.work-intro{ color: var(--text-mute-d) !important; }
.work-filters .filter-btn{ border-color: var(--border-dark-2) !important; color:#c9c9d6; }
.work-filters .filter-btn:hover{ border-color: var(--accent) !important; color:#fff; }
.work-filters .filter-btn.active{ background: var(--accent); color:#fff; border-color: var(--accent) !important; }
.work .project-card{ background: var(--bg-card); border:1px solid var(--border-dark); box-shadow:0 10px 30px rgba(0,0,0,.45); }
.work .project-card:hover{ border-color: var(--accent); }
.work .project-body h3{ color: var(--text-light); }
.work .project-body p{ color: var(--text-mute-d); }
.work .tech-tags span{ background: var(--accent-soft); color: var(--accent-2); }
.work .cat-badge{ background: rgba(0,0,0,.6); border:1px solid var(--border-dark-2); }
.work .flag-badge{ background: var(--accent); color:#fff; }
.work .concept-badge{ background: rgba(255,255,255,.16); color:#fff; border:1px solid var(--border-dark-2); box-shadow:none; }
.work .project-btns .btn{ background: var(--accent); }
.work .project-btns .btn:hover{ background: var(--accent-2); }
.work .project-btns .btn-outline{ background:transparent; color:#e7e7ef; border-color: var(--border-dark-2) !important; }
.work .project-btns .btn-outline:hover{ background:#fff; color:#0a0a0f; }
.work .project-btns .btn-disabled{ background: rgba(255,255,255,.08); color:#888; }

/* ---- ACHIEVEMENTS (dark) ---- */
.achievements .ach-card{ background: var(--bg-card); border:1px solid var(--border-dark); }
.achievements .ach-card:hover{ background: var(--bg-soft); border-color: var(--accent); }
.achievements .ach-card h3{ color: var(--accent-2); }

/* ---- AVAILABILITY band ---- */
.availability{ background: radial-gradient(60rem 40rem at 50% 0%, rgba(124,58,237,.4), transparent 60%), var(--bg); }

/* ---- DEVZONEX (dark) ---- */
.devzonex{ background: var(--bg); position:relative; overflow:hidden; }
.devzonex::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(50rem 40rem at 80% 10%, rgba(124,58,237,.18), transparent 60%);
  pointer-events:none;
}
.devzonex .heading{ color: var(--text-light); position:relative; z-index:1; }
.devzonex .heading span{ color: var(--accent-2); }
.dz-wrap{
  position:relative; z-index:1;
  max-width:90rem; margin:1rem auto 0;
  background: var(--bg-card);
  border:1px solid var(--border-dark);
  border-radius:1.6rem;
  padding:3.5rem;
  text-align:center;
}
.dz-label{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:1.3rem;
  text-transform:none;
  color: var(--accent-2);
  background: var(--accent-soft);
  border:1px solid var(--border-dark-2);
  padding:.5rem 1.2rem; border-radius:3em;
  margin-bottom:1.6rem;
}
.dz-wrap h3{
  color: var(--text-light); font-size:2.6rem; font-weight:800;
  text-transform:none; margin-bottom:1rem;
}
.dz-wrap p{
  color: var(--text-mute-d); font-size:1.6rem;
  font-family:'Nunito',sans-serif; font-weight:600; text-transform:none;
  max-width:60rem; margin:0 auto 2rem;
}
.dz-topics{ display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; margin-bottom:2.6rem; }
.dz-topics span{
  font-size:1.35rem; font-family:'Nunito',sans-serif; font-weight:700;
  text-transform:none; color:#dcdce6;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border-dark-2);
  padding:.6rem 1.2rem; border-radius:3em;
  transition:.2s;
}
.dz-topics span:hover{ background: var(--accent); color:#fff; border-color: var(--accent); }
.dz-cta{ display:flex; flex-wrap:wrap; gap:1.2rem; justify-content:center; }
.dz-cta a{
  display:inline-flex; align-items:center; gap:.7rem;
  font-family:'Nunito',sans-serif; font-weight:700; font-size:1.6rem;
  padding:1.4rem 2.6rem; border-radius:3em; color:#fff;
  transition:.25s;
}
.dz-cta a i{ font-size:2rem; }
.dz-site{ background:linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow:0 6px 16px rgba(124,58,237,.4); }
.dz-site:hover{ filter:brightness(1.08); transform:translateY(-2px); }
.dz-youtube{ background:#ff0000; box-shadow:0 6px 16px rgba(255,0,0,.35); }
.dz-youtube:hover{ background:#d90000; transform:translateY(-2px); }
.dz-insta{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow:0 6px 16px rgba(220,39,67,.35); }
.dz-insta:hover{ filter:brightness(1.08); transform:translateY(-2px); }

/* ---- FOOTER (dark) ---- */
.footer{ background: var(--bg); border-top:1px solid var(--border-dark); }
.footer .box-container .box p i{ color: var(--accent-2); }
.footer .box-container .box a:hover{ color: var(--accent-2); }
.footer .box-container .box .share a:hover{ color: var(--accent-2); border-color: var(--border-dark-2); }
.footer .credit a{ color: var(--accent-2); }

/* ---- SERVICES (light) ---- */
.services{ background: var(--light-soft); }
.services .box i{ color: var(--accent); }
.services .box:hover i{ color: var(--accent-2); }
.services .box::before{ background: linear-gradient(to right, var(--accent), var(--accent-2)); }
.services-cta .btn{ background: var(--accent); box-shadow:0 8px 22px rgba(124,58,237,.3); }
.services-cta .btn:hover{ background: var(--accent-2); }

/* ---- ABOUT (light) ---- */
.about .row .image img{ mix-blend-mode: normal; border-radius:1.4rem; }
.about .row .content .box-container .box p span{ color: var(--accent); }
.resumebtn .btn{ background: var(--text-dark); color:#fff; box-shadow:0 8px 20px rgba(11,11,18,.18); }
.resumebtn .btn:hover{ background:#000; }
.btn-hireme{ background: var(--gold) !important; color:#111 !important; box-shadow:0 8px 20px rgba(255,217,0,.4) !important; }
.btn-hireme:hover{ background:#ffcf00 !important; }

/* ---- EDUCATION (light) ---- */
.education{ background: var(--light-soft); }
.education .box-container .box .content h3{ color: var(--text-dark); }
.education h4{ color: var(--accent); }

/* ---- EXPERIENCE (dark, clean timeline) ---- */
.experience{ background: var(--bg); }
.experience .heading{ color: var(--text-light); }
.experience .timeline::after{ background: linear-gradient(var(--accent), var(--accent-2)); width:3px; margin-left:-1.5px; }
.experience .content{ background: var(--bg-card); border:1px solid var(--border-dark); box-shadow:0 8px 22px rgba(0,0,0,.45); }
.experience .content .tag h2{ color: var(--accent-2); }
.experience .content .desc h3{ color: var(--text-light); }
.experience .content .desc p{ color: var(--text-mute-d); }
.experience .container::after{ background:#16161f; border-color: var(--accent); color: var(--accent-2); }
.experience .left::before{ border-color: transparent transparent transparent #16161f; }
.experience .right::before{ border-color: transparent #16161f transparent transparent; }

/* ---- CONTACT (light) ---- */
.contact{ background: var(--light-soft); }
.contact .container{ background: var(--light); }
form .field input, form .message textarea{ background: var(--light-soft); border:1px solid var(--light-border); }
.field input:focus, .message textarea:focus{ border:2px solid var(--accent); }
.field input:focus ~ i, .message textarea:focus ~ i{ color: var(--accent); }
.button-area button{ background: var(--accent); box-shadow:0 8px 20px rgba(124,58,237,.3); }
.button-area button:hover{ background: var(--accent-2); }
.contact-method.youtube i{ background:#ff0000; }
.contact-method.instagram i{ background:linear-gradient(45deg,#f09433,#dc2743,#bc1888); }

/* ---- responsive for hero photo + devzonex ---- */
@media (max-width:600px){
  .home .image img.hero-photo{ width:24rem; height:24rem; margin-top:0; margin-left:0; }
  .dz-wrap{ padding:2.2rem 1.6rem; }
  .dz-wrap h3{ font-size:2.1rem; }
  .dz-cta a{ flex:1 1 100%; justify-content:center; }
}

/* =====================================================
   HERO CLEANUP — fix loud yellow buttons, top clipping
   under the navbar, and headline overflow on mobile.
   ===================================================== */

/* kill any stray horizontal overflow that crops content on phones */
html, body{ overflow-x: hidden; max-width: 100%; }

/* breathing room so the headline never hides under the fixed nav */
.home{ padding-top: 9rem; padding-bottom: 4rem; }

/* let the text column shrink instead of overflowing on phones */
.home .content{ flex: 1 1 42rem; min-width: 0; }
.home .content :is(h1,h3),
.home .content :is(h1,h3) span{ overflow-wrap: anywhere; }

/* distinct CTA hierarchy — purple primary · one yellow · outline ghost.
   These beat the old `.home .btn { background:#ffe600 }` on specificity. */
.home .hero-cta .btn-primary{ background: var(--accent); color:#fff; }
.home .hero-cta .btn-primary:hover{ background: var(--accent-2); }
.home .hero-cta .btn-accent{ background:#ffd400; color:#1a1a1a; }
.home .hero-cta .btn-accent:hover{ background:#ffc400; color:#1a1a1a; }
.home .hero-cta .btn-ghost{ background:transparent; color:#e7e7ef; border:2px solid var(--border-dark-2) !important; box-shadow:none; }
.home .hero-cta .btn-ghost:hover{ background:#fff; color:#0a0a0f; border-color:#fff !important; }

@media (max-width: 768px){
  .home{ padding-top: 8rem; }
  .home .content{ flex-basis: 100%; max-width: 100%; }
  .home .content :is(h1,h3), .home .content :is(h1,h3) span{ font-size: 3rem; line-height: 1.18; }
  .home .content .hero-sub{ max-width: 100%; }
  .home .hero-cta .btn{ flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 450px){
  .home .content :is(h1,h3), .home .content :is(h1,h3) span{ font-size: 2.6rem; }
  .home .content .hero-sub{ font-size: 1.6rem; }
}

/* =====================================================
   HERO POLISH — status pill, gradient photo ring,
   floating glass achievement cards (premium feel).
   ===================================================== */

/* "available for work" status pill */
.hero-status{
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #d7d7e3;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark-2);
  padding: .6rem 1.3rem;
  border-radius: 3em;
  margin-bottom: 1.6rem;
}
.hero-status .status-dot{
  width: .9rem; height: .9rem;
  border-radius: 50%;
  background: #2bd576;
  box-shadow: 0 0 0 0 rgba(43,213,118,.6);
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse{
  0%{ box-shadow: 0 0 0 0 rgba(43,213,118,.55); }
  70%{ box-shadow: 0 0 0 .8rem rgba(43,213,118,0); }
  100%{ box-shadow: 0 0 0 0 rgba(43,213,118,0); }
}

/* refined hero badges */
.hero-badges .badge{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease;
}
.hero-badges .badge:hover{
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* modern rounded-square profile card (Vercel/Linear/Framer style) */
.home .image img.hero-photo{
  width: 34rem;
  height: 34rem;
  max-width: 82%;
  border-radius: 2.4rem !important;        /* 24px rounded square */
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 8px 24px rgba(0,0,0,.35),
    0 0 0 1px rgba(124,58,237,.10) !important;
  object-fit: cover;
  object-position: 50% 18%;                /* center the face, trim empty background */
  aspect-ratio: 1 / 1;
}

/* single soft purple glow behind the card (no multicolor, no spin) */
.hero-photo-wrap::before{
  inset: -2rem !important;
  border-radius: 3rem !important;
  background: radial-gradient(closest-side, rgba(124,58,237,.40), transparent 72%) !important;
  filter: blur(22px) !important;
  opacity: 1;
  animation: none !important;
}

/* floating glass achievement cards on the photo */
.photo-badge{
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.3rem;
  border-radius: 1.4rem;
  background: rgba(20,20,28,.72);
  border: 1px solid var(--border-dark-2);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: floatCard 5s ease-in-out infinite;
}
.photo-badge .pb-emoji{ font-size: 2rem; line-height: 1; }
.photo-badge .pb-text{ display: flex; flex-direction: column; line-height: 1.2; }
.photo-badge .pb-text strong{ font-size: 1.5rem; color: #fff; font-family: 'Nunito', sans-serif; }
.photo-badge .pb-text span{ font-size: 1.15rem; color: #b9b9c8; }
.photo-badge-tl{ top: 1rem; left: -1.5rem; }
.photo-badge-br{ bottom: 1.5rem; right: -1.5rem; animation-delay: 2.5s; }
@keyframes floatCard{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-9px); }
}

@media (max-width: 768px){
  .photo-badge-tl{ left: 0; }
  .photo-badge-br{ right: 0; }
}
@media (max-width: 450px){
  .photo-badge{ padding: .7rem 1rem; }
  .photo-badge .pb-emoji{ font-size: 1.6rem; }
  .photo-badge .pb-text strong{ font-size: 1.3rem; }
  .photo-badge .pb-text span{ font-size: 1rem; }
}

/* =====================================================
   TESTIMONIALS — dark glass cards, initials avatars.
   ===================================================== */
.testimonials{ background: var(--bg); }
.testimonials .heading span{ color: var(--accent-2); }

.tm-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 2.8rem;
  max-width: 122rem;
  margin: 0 auto;
}
.tm-card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 2.2rem;
  padding: 3.4rem 3rem 3rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
/* subtle purple glow strip at the top of each card */
.tm-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity .3s ease;
}
.tm-card:hover{
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
}
.tm-card:hover::before{ opacity: 1; }

.tm-quote{
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-2);
  opacity: .9;
  margin-bottom: 1.6rem;
}
.tm-stars{
  color: #ffc400;
  font-size: 1.5rem;
  letter-spacing: .2rem;
  margin-bottom: 1.4rem;
}
.tm-text{
  font-size: 1.9rem;
  line-height: 1.65;
  color: #e9e9f1;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  margin-bottom: 2.6rem;
  flex: 1 1 auto;
}
.tm-person{
  display: flex;
  align-items: center;
  gap: 1.4rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
}
.tm-avatar{
  flex: 0 0 auto;
  width: 5.2rem; height: 5.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 14px rgba(124,58,237,.45);
}
.tm-meta{ display: flex; flex-direction: column; line-height: 1.4; }
.tm-meta strong{ font-size: 1.75rem; color: var(--text-light); }
.tm-meta span{ font-size: 1.4rem; color: var(--text-mute-d); }

@media (max-width: 450px){
  .tm-card{ padding: 2.8rem 2.2rem; }
  .tm-text{ font-size: 1.7rem; }
}
