* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Gugi';
  background-image: url('https://www.shutterstock.com/image-vector/dark-abstract-background-glowing-wave-600nw-2475302899.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  width: auto;
  height: auto;
  margin: 0;
  box-sizing: border-box;
  flex-wrap: wrap;

}



.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1e133373;
  z-index: 2000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  transition: transform 0.5s;
}

.logo img:hover {
  transform: scale(1.2);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap; 
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
}

nav ul li a:hover {
  color: #00c7f9;
  transform: translateY(-3px);
}
nav ul li i{
  color: #ffffff;
  margin-right: 5px;
  transition: color 0.3s;
}
nav ul li i:hover {
  color: #00c7f9;
  transform: translateY(-5px);
  transition: transform 0.3s, color 0.3s;
}

nav ul li a:hover {
  color: #00c7f9;
  transform: translateY(-5px);
  transition: transform 0.3s, color 0.3s;
}

.main-container {
  margin-top: 120px;
  max-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}

.left {
  text-align: left;
  padding: 25px;
  color: rgb(1, 255, 247);
  font-family: "Gugi", sans-serif;
  margin-left: auto;
  overflow: hidden;
  max-width: 800px;
}

.left h1 {
  font-size: 50px;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.left p {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  animation: fadeInUp 5s ease forwards;
}
.left .p .i{
  margin-top: 20px;
}

.resume-container {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin-top: 20px;
}

.fa-file-text {
    font-size: 24px;
    color: rgb(0, 255, 242);
}

.resume-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00a2ff;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(125, 151, 222, 0.485);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.resume-button:hover {
    box-shadow: 0px 4px 10px rgba(125, 151, 222, 0.7);
    transform: translateY(-2px);
}
.left .highlight {
  color: #00c7f9;
  font-weight: bold;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.right {
  display: flex;
  justify-content: flex-end;
  /* Align content to the right */
  margin: 10px;
  padding: 30px;
  animation: fadeInUp 1.5s ease forwards;
  width: 100%;
}

.right img {
  max-width: 400px;
  max-height: 500px;
  margin-left: auto;
  /* Push image to the right */

}


.card-container {
  animation: fadeInUp 3s ease forwards;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  justify-content: center;
  margin-top: 50px;
  margin: 15px auto 20px auto;
  max-width: 1200px;
  padding: 0 20px;
}





.card {
  animation: fadeInUp 5s ease forwards;
  width: 325px;
  background-color: rgb(92, 217, 221);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 50px rgba(214, 188, 81, 0.2);
  margin: 20px;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.card:hover {
  box-shadow: 0px 20px 40px rgba(8, 173, 162, 0.559);
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-top: 0px;
  font-size: 28px;
  margin-bottom: 8px;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
}

.card-content p {
  font-size: 20px;
  color: black;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
}

.card-content .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #333;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 16px;
  color: white;
}

.card-content .btn:hover {
  background-color: #555;
  transition: background-color 0.3s ease;
}

.skill-container h2 {
  animation: fadeInUp 5s ease forwards;
  margin-top: 100px;
  text-align: center;
  color: rgb(1, 255, 247);
  margin-top: 50px;
  margin: 150px 0 50px 20px;
  font-size: 50px;
}

.certifications {
  animation: fadeInUp 3s ease forwards;
  margin-top: 100px;
  padding: 50px 20px;
}

.certification-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}
.certification-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}
.certification-card {
  animation: fadeInUp 5s ease forwards;
  background-color: rgba(0, 0, 0, 0.438);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 500px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.114);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}


.certifications h2 {
  text-align: center;
  color: rgb(1, 255, 247);
  margin: 50px 0 20px 0;
  font-size: 50px;
}

.certifications p {
  text-align: center;
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}

.certifications h3 {
  text-align: center;
  color: #c4ab08;
  font-size: 20px;
  margin-bottom: 10px;
}

.cert-button {
  margin: 20px auto 0;
  margin-top: auto;
  width: 180px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #00a2ff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(125, 151, 222, 0.485);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.cert-button a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.cert-button:hover {
  background-color: #756ae0;
  transition: background-color 0.3s ease;
}

.project {
  animation: fadeInUp 5s ease up forwards;
  margin-top: 100px;
  text-align: center;
  padding: 50px 20px;
}

.project h2 {
  color: rgb(1, 255, 247);
  font-size: 50px;
  margin-bottom: 20px;
}

.project-container {
  animation: fadeInUp 5s ease forwards;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.114);
  backdrop-filter: blur(10px);
}

.project-card {
  background: rgba(0, 0, 0, 0.114);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.project-card h3 {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 10px;
}

.project-card p {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
}

.project-card .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: cyan;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.project-card .btn:hover {
  background-color: #00a3a3;
}

footer {
  margin-top: 100px;
  ;
}

.footer-container {
  width: 100%;
  padding: 70px 30px 20px;
}

.socialIcons {
  display: flex;
  justify-content: center;
}

.socialIcons a {
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;

}

.socialIcons a i {
  font-size: 2em;
  color: black;
  opacity: 0.9;
}

.socialIcons a:hover i {
  color: #14737f;
  transform: translateY(-5px);
  transition: color 0.5s ease, transform 0.5s ease;
}

.socialIcons a i:hover {
  color: rgb(0, 0, 0);
  transition: 0.5s ease;
}

.footer-item {

  color: white;
  padding: 20px;
  text-align: center;
  font-size: 20px;
}

.author {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

.mail {
  opacity: 0.7;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}

.education {
  animation: fadeInUp 5s ease forwards;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
}

.education h2 {
  color: rgb(1, 255, 247);
  font-size: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.education-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.education-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  width: 100%;
  margin: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 255, 247, 0.3);
}

.education-card h3 {
  color: #c4ab08;
  font-size: 20px;
  margin-bottom: 10px;
}

.education-card p {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}



@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }
}

.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


@media (max-width: 1024px) {
  nav ul {
    gap: 15px;
  }

  .logo img {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    width: 200px;
    text-align: center;
    padding: 15px 0;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li a {
    font-size: 18px;
  }

  nav.show {
    display: block;
  }
}
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }

  .left h1 {
    font-size: 40px;
  }

  .left p {
    font-size: 18px;
  }

  .right img {
    max-width: 300px;
    max-height: 400px;
  }

  .card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .project-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .certification-container {
    flex-direction: column;
    align-items: center;
  }

  .education-container {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    margin-top: 80px;
    padding: 30px 10px;
  }

  .left h1 {
    font-size: 32px;
  }

  .left p {
    font-size: 16px;
  }

  .resume-button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .right img {
    max-width: 250px;
    max-height: 350px;
    justify-content: center;
    align-items: center;
    margin-right: 50%;
  }

  .card-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certification-card {
    width: 100%;
    min-height: auto;
  }

  .education-container {
    flex-direction: column;
    align-items: center;
  }

  .education-card {
    width: 100%;
  }

  footer .footer-container {
    padding: 40px 15px 15px;
  }

  .footer-item {
    font-size: 16px;
  }
}

/* Small Mobiles (up to 480px) */
@media (max-width: 480px) {
  .left h1 {
    font-size: 26px;
  }

  .left p {
    font-size: 14px;
  }

  .resume-button {
    font-size: 12px;
    padding: 6px 12px;
  }

  .right img {
    max-width: 200px;
    max-height: 300px;
  }

  .skill-container h2,
  .certifications h2,
  .project h2,
  .education h2 {
    font-size: 32px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 14px;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card p {
    font-size: 14px;
  }
}