:root{
  --gradient:linear-gradient(135deg,#6a5acd,#00c9ff,#00ff99,#ff4d4d);
  --dark:#ffffff;
  --card:rgba(121,127,205,0.7);
  --text:#070b37;
  --primary:#6a5acd;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:var(--dark);
  color:var(--text);
}

/* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:15px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(121,127,205,0.7);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.logo{
  font-size:22px;
  font-weight:700;
  color:#09120e;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:25px;
}

.nav-links a{
  color:#050202;
  text-decoration:none;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#0a110e;
  bottom:-5px;
  left:0;
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.hamburger{
  display:none;
  font-size:24px;
  cursor:pointer;
  color:#09120e;
}

/* ================= MOBILE NAVBAR ================= */
@media(max-width:900px){
  .hamburger{
    display:block;
    z-index:1200;
  }

  .nav-links{
    position:fixed;
    top:65px;
    right:-100%;
    width:260px;
    height:calc(100vh - 65px);
    background:rgba(121,127,205,0.95);
    backdrop-filter:blur(16px);
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
    gap:20px;
    transition:.4s ease;
    z-index:1100;
  }

  .nav-links.active{
    right:0;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links a{
    width:100%;
    display:block;
    font-size:16px;
  }

  .hamburger.active{
    transform:rotate(90deg);
    transition:.3s;
  }
}

/* ================= HERO ================= */
.hero{
  height:100vh;
  background:url("back.png") center/cover no-repeat;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(114, 98, 98, 0.65);
}

.hero-content{
  position:relative;
  text-align:center;
  max-width:700px;
}

.profile-pic{
  width:140px;
  height:140px;
  border-radius:50%;
  border:4px solid #485eb4;
  margin-bottom:20px;
}

.hero h1{
  font-size:52px;
}

.hero h3{
  color:#112a23;
  margin:10px 0;
}

blockquote{
  margin:20px 0;
  font-style:italic;
  font-weight:700;          /* bold */
  font-size:20px;           /* increased size */
  opacity:1;                /* fully visible */
  color:#050707;            /* darker shade */
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn{
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:700;                 /* bold font */
  color:#0a110e;
  border:3px solid transparent;    /* thick border */
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--gradient) border-box;     /* gradient border */
  transition:0.3s ease;
}


.outline{
  border:(135deg,#6a5acd,#00c9ff,#00ff99,#ff4d4d);
}

@media(max-width:768px){
  .hero h1{font-size:36px}
  .hero h3{font-size:18px}
}

/* ================= SECTIONS ================= */
.section{
  padding:80px 8%;
}

.section h2{
  text-align:center;
  margin-bottom:20px;
}

.section-desc{
  text-align:center;
  opacity:.8;
  margin-bottom:40px;
}

/* ================= ABOUT ================= */
.about-grid{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:30px;
}

.laptop{
  background:#8694c7;
  border-radius:20px;
  width:600px;
  max-width:90%;
  padding:15px;
  animation:float 4s ease-in-out infinite;
  box-shadow:0 15px 35px rgba(0,0,0,.5);
}

.laptop-screen{
  background:#0f111a;
  color:#e2ebe7;
  font-size:16px;
  line-height:1.6;
  padding:25px;
  border-radius:12px;
  min-height:200px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

@media(max-width:768px){
  .laptop-screen{
    font-size:14px;
  }
}

/* ================= SKILLS ================= */
.skills-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin-top:25px;
}

.skill-card{
  padding:12px 22px;
  border-radius:28px;
  font-weight:600;
  font-size:14px;
  background:linear-gradient(135deg,#6a5acd,#00c9ff,#6bb2db,#a448be);
  color:#fff;
  box-shadow:0 6px 15px rgba(0,0,0,.15);
  transition:.3s;
}

.skill-card:hover{
  transform:translateY(-6px) scale(1.05);
  background:linear-gradient(135deg,#ff4d4d,#00ff99,#00c9ff,#6a5acd);
}

/* ================= PROJECTS ================= */
.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
  margin-top:35px;
}

.project-card{
  background:var(--card);
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  transition:.4s;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.project-card:hover{
  transform:translateY(-10px);
}

.project-card img{
  width:100%;
  height:400px;
  object-fit:cover;
}

.project-card h3{
  padding:18px;
  font-size:18px;
}

/* ================= AWARDS ================= */
.award-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:30px;
}

.award-card{
  background:var(--card);
  border-radius:18px;
  padding:15px;
  text-align:center;
  transition:.4s;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.award-card:hover{
  transform:translateY(-8px);
}

.award-card img{
  width:100%;
  height:400px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}

/* ================= CONTACT ================= */
.contact-container{
  max-width:700px;
  margin:40px auto 0;
  padding:30px;
  border-radius:20px;
  backdrop-filter:blur(15px);
  box-shadow:0 20px 50px rgba(0,0,0,.3);
  border:2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--gradient) border-box;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:12px;
  border:2px solid #000;
  background:rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}

.contact-form button{
  padding:14px;
  background:var(--gradient);
  border:none;
  color:#fff;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  transform:scale(1.05);
}

/* ================= SOCIALS ================= */
.socials{
  text-align:center;
  margin:30px 0;
}

.socials a{
  margin:0 12px;
  font-size:22px;
  color:var(--primary);
  transition:.3s;
}

.socials a:hover{
  color:#00ff99;
}

.copyright{
  text-align:center;
  font-size:14px;
}

/* ================= WHATSAPP ================= */
.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  background:#25D366;
  color:#fff;
  padding:16px;
  border-radius:50%;
  font-size:26px;
}

/* ================= REVEAL ANIMATION ================= */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .8s ease, transform .8s cubic-bezier(.19,1,.22,1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ================= FLOAT ================= */
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-15px)}
}

/* ================= TYPING CURSOR ================= */
#typing::after{
  content:"|";
  margin-left:5px;
  animation:blink 1s infinite;
}

@keyframes blink{
  0%,50%,100%{opacity:1}
  25%,75%{opacity:0}
}



