* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0e0e0e;
  color: #eaeaea;
  line-height: 1.6;
}

.hero {
  min-height: 50vh;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
}

.hero h2 {
  margin: 10px 0;
  color: #4da3ff;
}

.hero p {
  max-width: 750px;
  margin: 20px auto;
  color: #bdbdbd;
  text-align: left;
}

.buttons {
  margin-top: 25px;
}

.btn {
  padding: 12px 22px;
  margin: 5px;
  background: #4da3ff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

.btn.outline {
  background: transparent;
  color: #4da3ff;
  border: 1px solid #4da3ff;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h3 {
  margin-bottom: 25px;
  color: #4da3ff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #161616;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card ul {
  margin-top: 10px;
  padding-left: 20px;
}

.card span {
  font-size: 14px;
  color: #aaa;
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, #1c1c1c, #0e0e0e);
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 44px;
}

.hero-left h2 {
  color: #4da3ff;
  margin: 10px 0 20px;
}

.hero-left p {
  color: #bdbdbd;
  max-width: 500px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.image-box {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, #4da3ff, #a0fbec);
  animation: glow 3s infinite alternate;
}

.image-box img {
  width: 275px;
  height: 275px;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
}

@keyframes glow {
  from {
    box-shadow: 0 0 15px rgba(77,163,255,0.4);
  }
  to {
    box-shadow: 0 0 35px rgba(0,255,213,0.6);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left p {
    margin: auto;
  }
}

.hero-right {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gray circular background */
.photo-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #2c2f33, #1a1a1a);
  border-radius: 50%;
  z-index: 1;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.6);
}

/* Actual photo */
.hero-photo {
  position: relative;
  z-index: 2;
  width: 310px;
  height: auto;
  filter: grayscale(100%) contrast(1.1);
  border-radius: 45%;
}

/* Soft shadow under photo */
.hero-photo::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: rgba(0,0,0,0.6);
  filter: blur(12px);
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-right {
    margin-top: 10px;
  }

  .photo-bg {
    width: 300px;
    height: 300px;
  }

  .hero-photo {
    width: 240px;
  }
}

.contact-link {
  color: #4da3ff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

.card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #dcdcdc;
}
.social-footer {
  background: #0b0b0b;
  padding: 30px 20px;
  text-align: center;
}

.social-icons a {
  color: #eaeaea;
  font-size: 20px;
  margin: 0 12px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #4da3ff;
  transform: translateY(-3px);
}
.footer-text {
  margin-top: 15px;
  font-size: 13px;
  color: #9a9a9a;
  letter-spacing: 0.5px;
}
.section .card {
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
a {
  text-decoration: none;
}
.resume-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  z-index: 99999;
}

.resume-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px 20px;
  background: #0e0e0e;
}

.resume-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #0e0e0e;
}


.download-btn {
  color: #4da3ff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 20px;
}

.close-btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
/* Resume modal base */
.resume-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  z-index: 99999;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When modal is active */
.resume-modal.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

/* Close animation state */
.resume-modal.closing {
  opacity: 0;
  transform: scale(0.96);
}
/* View Resume button clean border */
.btn {
  border: 1px solid #000;      /* only black border */
  box-shadow: none;            /* remove gray shadow */
  outline: none;               /* remove browser outline */
}

/* Remove focus ring (gray/blue) */
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
  border-color: #000;
}
.btn {
  font-weight: 600;      /* bold */
  font-style: italic;    /* italic */
}
.footer-social a:hover {
  transform: translateY(-3px);
  color: #4da3ff;
}





