/* CSS Reset */
/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  color: #F2F5F7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #000000;
  color: #F2F5F7;
}
/* Header Section */
.header {
  background: rgba(10, 15, 36, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.logo {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1A73FF;
}

.menu-bar a {
  font-size: 1.5rem;
  margin-left: 3.5rem;
  transition: 0.4s ease;
}

.menu-bar a:hover {
  color: #1A73FF;
}

#menu-btn {
  font-size: 3rem;
  display: none;
}

section {
  padding: 10rem 10%;
  min-height: 100vh;
}

/* Home Section */
.home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-bio h3 {
  font-size: 2.5rem;
}

span {
  color: #1A73FF;
}

.home-bio h1 {
  font-size: 3.5rem;
  line-height: 1.4;
}

.home-bio p {
  font-size: 1.5rem;
  padding: 1rem 0;
}

.profile-pic img {
  width: 20vw;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2.5rem);
  }
  100% {
    transform: translateY(0);
  }
}

.social-media a {
  width: 3.8rem;
  height: 3.8rem;
  font-size: 2.2rem;
  margin: 1rem 1rem 2rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s ease;
}

.social-media a:hover {
  color: #1A73FF;
  box-shadow: 0 0 1rem #1A73FF;
}

.btn {
  display: inline-block;
  background: #FF007A;
  margin: 2rem 0;
  padding: 1rem 2.5rem;
  border-radius: 1.3rem;
  font-size: 1.3rem;
  color: #F2F5F7;
  font-weight: 600;
  transform: 0.5s ease;
}

.btn:hover {
  color: #1A73FF;
  background: #0A0F24;
  box-shadow: 0 0 1rem #1A73FF;
}
/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.heading {
  font-size: 3.3rem;
  text-align: center;
  margin: 4rem 0;
}

.about-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.about-resume h3 {
  font-size: 2.4rem;
}

.about-resume h4 {
  font-size: 1.8rem;
  color: #FF007A;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.8rem;
}

/* Skills Section */
.skills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.skills-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.skills-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transform: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.skills-card:hover {
  border-radius: 1rem solid;
  transform: scale(1.05);
}

.skills-card .bx {
  font-size: 8rem;
  transition: 0.4s ease;
}

.skills-card .bx:hover {
  color: #0A0F24;
}

.skills-card h3 {
  font-size: 2.5rem;
  font-weight: 200;
}

.skills-card p {
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.5;
}

/* Accomplishments Section */
.accomplishments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 8rem 10%;
}

.accomplishments-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(26, 115, 255, 0.1), rgba(255, 0, 122, 0.1));
  border: 2px solid #1A73FF;
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(26, 115, 255, 0.3);
}

.feature-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #FF007A;
  color: #F2F5F7;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-badge i {
  font-size: 1.6rem;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 2.8rem;
  color: #1A73FF;
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1A73FF;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: #FF007A;
  gap: 1rem;
}

.feature-link i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(0.5rem);
}

.feature-image {
  font-size: 8rem;
  color: #1A73FF;
  opacity: 0.3;
}

.accomplishment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.accomplishment-item {
  background: rgba(10, 15, 36, 0.5);
  border: 1px solid rgba(26, 115, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.accomplishment-item:hover {
  background: rgba(26, 115, 255, 0.1);
  border-color: #1A73FF;
  transform: translateY(-0.3rem);
}

.accomplishment-item i {
  font-size: 4rem;
  color: #FF007A;
  margin-bottom: 1rem;
}

.accomplishment-item h4 {
  font-size: 1.8rem;
  color: #1A73FF;
  margin-bottom: 0.5rem;
}

.accomplishment-item p {
  font-size: 1.3rem;
  opacity: 0.7;
}

/* Project Section */
.projects {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.projects-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
}
.project-card {
  position: relative;
  height: 25rem;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.project-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Certifications: reuse projects styles but allow single-column display when only one cert */
.certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.certifications .projects-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
}
.certifications .project-card {
  height: 25rem;
}

.cert-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.5rem 1.5rem;
  background: rgba(10, 15, 36, 0.95);
  text-align: left;
  z-index: 3;
  transition: all 0.3s ease;
}

.projects .cert-caption h3 {
  font-size: 1.8rem;
  color: #1A73FF;
  margin: 0 0 0.5rem 0;
}

.projects .cert-caption p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

.certifications .cert-caption h3 {
  font-size: 1.8rem;
  color: #1A73FF;
  margin: 0 0 0.2rem 0;
}
.certifications .cert-caption p {
  font-size: 1.4rem;
  opacity: 0.9;
  margin: 0;
}

.card-overlay {
  background: rgba(10, 15, 36, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.card-overlay:hover {
  background: rgba(10, 15, 36, 0);
  color: #0A0F24;
  transition: 0.4s all linear;
}

.card-overlay .bx {
  color: #F2F5F7;
  font-size: 1.8rem;
  padding: 1.1rem;
  background: rgba(10, 15, 36, 0.8);
  border-radius: 0.8rem;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.card-overlay .bx:hover {
  transform: scale(1.2);
  color: #1A73FF;
  background: #0A0F24;
  box-shadow: 0 0 2rem #1A73FF;
}

/* Contact Section */
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

form {
  display: grid;
  row-gap: 1rem;
}

form input,
textarea {
  width: 100%;
  height: 50px;
  padding: 1rem;
  font-size: 1.5rem;
  color: #F2F5F7;
  background: rgba(10, 15, 36, 0.5);
  border-radius: 1rem;
  resize: none;
}
textarea {
  height: 150px;
}

/* Footer Section */
.footer {
  padding: 3rem 10%;
  text-align: center;
  font-size: 1rem;
}

.footer-copyright {
  font-size: 1.2rem;
  opacity: 0.7;
  margin: 0;
}

hr {
  margin: 1rem;
  border-bottom: thin solid #F2F5F7;
}
/* Responsive Section */
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 2rem 4%;
  }
  .home img {
    width: 40vw;
  }
}
@media (max-width: 767px) {
  #menu-btn {
    display: block;
  }
  .menu-bar {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(10, 15, 36, 0.9);
    display: none;
  }
  .menu-bar.active {
    display: block;
  }
  .menu-bar a {
    display: block;
    margin: 2rem;
    font-size: 2rem;
  }
  .home,
  .about-items {
    flex-direction: column;
  }
  .home img {
    width: 80vw;
  }
  .heading {
    font-size: 3rem;
  }
  .skills-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .accomplishment-cards {
    grid-template-columns: 1fr;
  }
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  .feature-badge {
    position: static;
    margin-bottom: 1rem;
  }
  .feature-image {
    font-size: 5rem;
  }
}

@media (max-width: 620px) {
  .skills-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .projects-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .accomplishment-cards {
    grid-template-columns: 1fr;
  }
  .heading {
    font-size: 2.7rem;
  }
  .feature-content h3 {
    font-size: 2.2rem;
  }
  .feature-content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 450px) {
}

