* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-color: black;
    color: rgb(255, 255, 255);
}
html{
  scroll-behavior: smooth;
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 10%;
   
}

.navbar .nav-links ul {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 30px;
    text-transform: uppercase;
    font-family: "Montserrat", "Poppins", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
}

.navbar .nav-links ul .active {
    text-decoration: underline;
    color: rgb(255, 179, 0);
    font-weight: 700;
    border-bottom: 2px solid #ffb300;
    padding-bottom: 4px;
    text-decoration: none;
}

.navbar .nav-links ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;

}

.navbar .nav-links ul li a:hover {
    color: rgb(255, 179, 0);

}
.navbar .logo{
    width: 20%;
    display: flex;
    justify-content: center;
}
.navbar .nav-links{
    /* width: 50%; */
    justify-content: start;
}

.navbar .logo img {
width: 50%;
}



.navbar .nav-links ul li {
    font-weight: 600;
    cursor: pointer;
}




.hero-wrapper {
    display: flex;
    width: 100%;
    height: 90%;
}

.hero-wrapper .left {
    width: 50%;
    height: 90%;
}

.hero-wrapper .right {
    width: 50%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-wrapper .right img {
    width: 100%;
    
}





.profile-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 30px rgba(0,200,255,0.25),
              0 0 60px rgba(100,0,255,0.15);
}

.hi-text {
  font-size: 20px;
  color: #837f7f;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-text {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  color: #a89a9a;
  text-shadow: 0 0 35px rgba(0,200,255,0.15);
}
.bd{
    color: #115d72;
}

/* Buttons Wrapper */
.hero-buttons{
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

/* Base Button */
.btn{
  padding: 15px 34px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: inset 0 0 0 rgba(255,255,255,0.2);
}
.btn a{
  color: rgb(220, 213, 213);
  text-decoration: none;
}

/* Shine Effect */
.btn::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -40%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent);
  transform: rotate(25deg);
  transition: 0.6s;
}

.btn:hover::before{
  left: 120%;
}
.btn_p a{
  color: white;
  text-decoration: none;
}

/* Hover Lift */
.btn:hover{
  transform: translateY(-4px) scale(1.03);
}

/* Connect Button */
.connect-btn{
  border-color: #00c9ff;
  color: #115d72;
}

.connect-btn:hover{
  color: white;
  background: linear-gradient(120deg, #6a5cff, #00c9ff);
  box-shadow: 0 12px 35px rgba(0,200,255,0.45);
}

/* Resume Button */
.resume-btn{
  border-color: #ffb300;
  color: #ffb30080;
}

.resume-btn:hover{
  background: linear-gradient(120deg, #ffb300, #ff6a00);
  color: black;
  box-shadow: 0 12px 35px rgba(255,180,0,0.45);
}


/* Social Links */
.social-links{
  margin-top: 20px;
  display: flex;
  gap: 18px;
}

.social-icon{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: rgba(255,255,255,0.03);
}

.social-icon img{
  width: 18px;
  filter: invert(1);
  opacity: 0.8;
}

.social-icon:hover{
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 0 20px rgba(0,200,255,0.4);
  border-color: #00c9ff;
}

.social-icon:hover img{
  opacity: 1;
}









.stats-section{
  margin:120px 0;
  display:flex;
  justify-content:center;
  width: 100%;
}

.stats-container{
  width:800px;
  display:flex;
  justify-content:space-between;
  gap:80px;
}

.stat-card{
  flex:1;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:40px 20px;
  text-align:center;
  backdrop-filter: blur(10px);
  transition:0.4s;
  box-shadow:0 0 30px rgba(0,200,255,0.08);
}

.stat-card:hover{
  transform: translateY(-10px) scale(1.05);
  box-shadow:0 0 40px rgba(0,200,255,0.25);
}

.stat-card h2{
  font-size:56px;
  font-weight:900;
  margin-bottom:10px;
  color: #d4dbdd;
}

.stat-card p{
  color:#10718c;
  font-size:16px;
  letter-spacing:1px;
  text-transform:uppercase;
}






.quote-section{
  margin:160px 0;
  display:flex;
  justify-content:center;
}

.quote-box{
  width:700px;
  text-align:center;
  opacity:0;
  transform: translateY(60px) scale(0.95);
  transition:1s ease;
}

.quote-box.show{
  opacity:1;
  transform: translateY(0) scale(1);
}

.quote-line{
  font-size:20px;
  color:#888;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.quote-main{
  font-size:48px;
  font-weight:900;
  margin:10px 0;
 color: #cdd7da;
}



.quote-sub{
  color:#aaa;
  font-size:18px;
  margin-top:10px;
}








.simple-boxes{
  width:900px;
  margin:140px auto;
  display:flex;
  gap:30px;
  perspective:1200px;
}

.simple-box{
  flex:1;
  padding:45px 30px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  backdrop-filter: blur(14px);
  text-align:center;
  transform: rotateX(70deg) scale(0.85);
  opacity:0;
  filter: blur(6px);
  transition:1s ease;
}

.simple-box.show{
  transform: rotateX(0deg) scale(1);
  opacity:1;
  filter: blur(0);
}

.simple-box:hover{
  box-shadow:0 0 40px rgba(0,200,255,0.35);
  transform: translateY(-10px) scale(1.05);
}

.simple-box h3{
  font-size:26px;
  margin-bottom:10px;
 color: #e3e9eb;
}

.simple-box p{
  color:#146983;
  font-size:17px;
  line-height:1.6;
}

/* Mobile */
@media(max-width:768px){
  .simple-boxes{
    width:90%;
    flex-direction:column;
  }
}
.what-i-do-section{
  margin:160px 0;
  text-align:center;
}

.what-title{
  font-size:48px;
  font-weight:900;
  margin-bottom:60px;
    color: #146983;
  position:relative;
}

/* Underline */
.what-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:120px;
  height:4px;
  background: linear-gradient(90deg,#433e7b,#116881,#146d4a);
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,200,255,0.5);
}







.about-stack{
  margin:160px 0;
  display:flex;
  justify-content:center;
}

.stack-wrapper{
  display:flex;
  align-items:center;
  gap:80px;
}

/* Photo stack */
.photo-stack{
  position:relative;
  width:260px;
  height:320px;
}

.layer{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 0 40px rgba(0,200,255,0.25);
  transition:0.5s ease;
}

/* Offsets */
.l1{ transform: rotate(-6deg) translate(-20px,20px); opacity:0.4; filter:blur(2px);}
.l2{ transform: rotate(4deg) translate(20px,-10px); opacity:0.6; filter:blur(1px);}
.l3{ transform: rotate(0deg); z-index:3; }

/* Hover effect */
.photo-stack:hover .l1{
  transform: rotate(-10deg) translate(-40px,40px);
}
.photo-stack:hover .l2{
  transform: rotate(8deg) translate(40px,-20px);
}
.photo-stack:hover .l3{
  transform: scale(1.05);
}

/* Text */
.stack-text h2{
  font-size:42px;
  margin-bottom:14px;
  color: #146983;
}

.stack-text p{
  color:#aaa;
  font-size:18px;
  max-width:420px;
  line-height:1.7;
}


.about-stack{
  margin:180px 0;
  position:relative;
  display:flex;
  justify-content:center;
  overflow:hidden;
}


/* Foreground content */
.stack-wrapper{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:80px;
}









.tech-used{
  margin:180px 0;
  text-align:center;
}

.tech-heading{
  font-size:44px;
  font-weight:900;
  margin-bottom:50px;
 color: #146983;
  position:relative;
}

.tech-heading::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:140px;
  height:4px;
background: linear-gradient(90deg,#433e7b,#116881,#146d4a);
  border-radius:10px;
}

.tech-list{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

.tech-list span{
  padding:14px 26px;
  border-radius:40px;
  font-size:15px;
  letter-spacing:1px;
  color:#eee;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition:0.35s ease;
  cursor:default;
}

.tech-list span:hover{
  transform: translateY(-6px) scale(1.08);
  box-shadow:0 0 30px rgba(0,200,255,0.4);
  background: rgb(1, 13, 22);
  cursor: pointer;
  color:white;
}

/* Mobile */
@media(max-width:600px){
  .tech-heading{
    font-size:32px;
  }
  .tech-list span{
    padding:12px 20px;
    font-size:14px;
  }
}








.projects-section{
  margin:180px 0;
  text-align:center;
}


.projects-title{
  font-size:46px;
  font-weight:900;
  margin-bottom:60px;
background: linear-gradient(90deg,#433e7b,#116881,#146d4a);  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

/* Underline */
.projects-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:140px;
  height:4px;
background: linear-gradient(90deg,#433e7b,#116881,#146d4a);  border-radius:10px;
  box-shadow:0 0 15px rgba(0,200,255,0.5);
}


.projects-grid{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:40px;
}

.project-card{
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  overflow:hidden;
  backdrop-filter: blur(12px);
  transition:0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.project-card:hover{
  transform: translateY(-10px) scale(1.04);
  box-shadow:0 0 40px rgba(0,200,255,0.35);
}

.project-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.project-body{
  padding:24px;
  text-align:left;
}

.project-body h3{
  font-size:22px;
  margin-bottom:8px;
  color:white;
}

.project-body .desc{
  color:#aaa;
  font-size:15px;
  line-height:1.6;
  margin-bottom:16px;
}

/* Tech pills (same style as before) */
.tech-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tech-pills span{
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  color:#eee;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition:0.3s;
}

.tech-pills span:hover{
  background: linear-gradient(120deg,#6a5cff,#00c9ff);
  box-shadow:0 0 20px rgba(0,200,255,0.4);
  transform: scale(1.05);
}

/* Mobile */
@media(max-width:768px){
  .projects-grid{
    grid-template-columns:1fr;
  }
}
.view-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin-top:18px;
  width:100%;
  padding:14px 0;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  color:white;
  text-decoration:none;
  background: linear-gradient(120deg,#6a5cff,#00c9ff);
  transition:0.3s ease;
}

.view-btn .arrow{
  transition:0.3s ease;
  font-size:18px;
}

.view-btn:hover{
  transform: translateY(-3px) scale(1.03);
  box-shadow:0 0 25px rgba(0,200,255,0.5);
}

.view-btn:hover .arrow{
  transform: translateX(6px);
}


/* Buttons Wrapper */
.project-buttons{
  margin-top: 25px;
  width: 100%;
}

/* Base Button */
.btn_p{
    width: 100%;
  padding: 15px 34px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: inset 0 0 0 rgba(255,255,255,0.2);
}













.achievement-section{
  margin:180px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.achievement-title{
  font-size:44px;
  font-weight:900;
  margin-bottom:60px;
color: #00c8ff78;
  position:relative;
}

.achievement-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:140px;
  height:4px;
 background: linear-gradient(90deg,#433e7b,#116881,#146d4a);  border-radius:10px;
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,200,255,0.5);
}

.achievement-card{
  max-width:900px;
  display:flex;
  gap:40px;
  padding:40px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  backdrop-filter: blur(12px);
}

.achievement-card img{
  width:300px;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 0 25px rgba(0,200,255,0.3);
}

.achievement-text{
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.achievement-text h3{
  font-size:26px;
  color:white;
  margin-bottom:10px;
}

.achievement-text p{
  color:#aaa;
  font-size:16px;
  line-height:1.6;
  margin-bottom:16px;
}

.tag{
  display:inline-block;
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  color:#eee;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  width:fit-content;
}

/* Mobile */
@media(max-width:768px){
  .achievement-card{
    flex-direction:column;
    text-align:center;
  }
  .achievement-text{
    text-align:center;
  }
  .achievement-card img{
    width:100%;
  }
}
.tag{
  display:inline-block;
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  color:#eee;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  width:fit-content;
  text-decoration:none;
  cursor:pointer;
  transition:0.3s;
}

.tag:hover{
  background: linear-gradient(120deg,#6a5cff,#00c9ff);
  box-shadow:0 0 20px rgba(0,200,255,0.4);
}





/* acadmic journy  */

.timeline{
  position:relative;
  max-width:800px;
  margin:0 auto;
}

.timeline-item{
  position:relative;
  margin:70px 0;
  display:flex;
}

.timeline-item.left{
  justify-content:flex-start;
}

.timeline-item.right{
  justify-content:flex-end;
}

.content{
  width:45%;
  padding:20px 25px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  backdrop-filter: blur(12px);
  text-align:left;
  opacity:0;
  transition:0.8s ease;
}

.timeline-item.left .content{
  transform: translateX(-80px);
}
.timeline-item.right .content{
  transform: translateX(80px);
}

.timeline-item.show .content{
  opacity:1;
  transform: translateX(0);
}

.dot{
  position:absolute;
  left:50%;
  top:30px;
  width:16px;
  height:16px;
  background:#00c8ff87;
  border-radius:50%;
  transform:translateX(-50%) scale(0);
  box-shadow:0 0 15px rgba(0, 200, 255, 0.553);
  transition:0.6s;
}

.timeline-item.show .dot{
  transform:translateX(-50%) scale(1);
}

.line{
  position:absolute;
  left:50%;
  top:0;
  width:4px;
  height:0;
  background: linear-gradient(#6a5cffc3,#00c8ff9d,#7cffcbaa);
  transform:translateX(-50%);
}

.timeline-title{
  font-size:46px;
  font-weight:900;
  margin-bottom:90px;
  text-align:center;
 color: #00c8ff78;
  position:relative;
  letter-spacing:2px;
}

.timeline-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-14px;
  transform:translateX(-50%);
  width:160px;
  height:4px;
   background: linear-gradient(90deg,#433e7b,#116881,#146d4a);
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,200,255,0.6);
}


.content{
  width:45%;
  padding:24px 28px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  backdrop-filter: blur(14px);
  text-align:left;
  opacity:0;
  transition:0.9s ease;
  box-shadow:0 0 25px rgba(0,200,255,0.08);
}

.content h3{
  font-size:20px;
  margin-bottom:6px;
  color:white;
}

.content p{
  color:#bbb;
  font-size:15px;
}
.dot{
  position:absolute;
  left:50%;
  top:32px;
  width:18px;
  height:18px;
  background: linear-gradient(120deg,#6a5cff,#00c9ff);
  border-radius:50%;
  transform:translateX(-50%) scale(0);
  box-shadow:0 0 18px rgba(0,200,255,0.9);
  transition:0.6s;
}
.line{
  position:absolute;
  left:50%;
  top:0;
  width:4px;
  height:0;
  background: linear-gradient(#6a5cff,#00c9ff,#7cffcb);
  transform:translateX(-50%);
  box-shadow:0 0 20px rgba(0,200,255,0.5);
}









.contact-section{
  margin:180px 0;
  text-align:center;
}

.contact-title{
  font-size:46px;
  font-weight:900;
  margin-bottom:80px;
  background: linear-gradient(120deg,#6a5cff,#00c9ff,#7cffcb);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

.contact-title::after{
  content:"";
  position:absolute;
  bottom:-14px;
  left:50%;
  transform:translateX(-50%);
  width:160px;
  height:4px;
  background: linear-gradient(90deg,#6a5cff,#00c9ff,#7cffcb);
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,200,255,0.6);
}

.contact-wrapper{
  max-width:900px;
  margin:0 auto;
  display:flex;
  gap:60px;
  align-items:center;
  justify-content:center;
}

.contact-left{
  flex:1;
  text-align:left;
}

.contact-left h3{
  font-size:32px;
  color:white;
  margin-bottom:10px;
}

.contact-left p{
  color:#aaa;
  font-size:16px;
  line-height:1.6;
}

.contact-form{
  flex:1;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:22px;
  padding:40px 35px;
  backdrop-filter: blur(14px);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  background: transparent;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;
  padding:14px 16px;
  color:white;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#777;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#00c9ff;
  box-shadow:0 0 15px rgba(0,200,255,0.4);
}

.contact-form button{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  cursor:pointer;
  color:white;
  background: linear-gradient(120deg,#6a5cff,#00c9ff);
  transition:0.3s;
}

.contact-form button:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow:0 0 25px rgba(0,200,255,0.6);
}

/* Mobile */
@media(max-width:768px){
  .contact-wrapper{
    flex-direction:column;
    text-align:center;
  }
  .contact-left{
    text-align:center;
  }
}

.image{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image img{
    width: 100%;
}







.site-footer{
  background: #0c0f1a;
  color: #ddd;
  padding: 60px 8% 25px;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
}

.footer-brand h2{
  font-size: 26px;
  color: white;
  margin-bottom: 8px;
}

.footer-brand p{
  color: #aaa;
  font-size: 14px;
}

.footer-links h4,
.footer-social h4{
  margin-bottom: 14px;
  color: white;
  font-size: 16px;
}

.footer-links a{
    
  display: block;
  color: #aaa;
  text-decoration: none;
  margin: 8px 0;
  transition: 0.3s;
}
.footer-links .links{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a:hover{
  color: #00c9ff;
  transform: translateX(4px);
}

.social-icons{
  display: flex;
  gap: 14px;
}

.social-icons a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 18px;
  transition: 0.4s;
}

.social-icons a:hover{
  background: linear-gradient(120deg,#6a5cff,#00c9ff);
  box-shadow: 0 0 18px rgba(0,200,255,0.5);
  transform: translateY(-4px);
}

.footer-bottom{
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #888;
  font-size: 13px;
}
