/* Global Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* Circle Image */
.circle-image-container {
    position: fixed;
    top: 10px;
    right: 10px;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

/* Header */
header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("taj.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%; /* Changed from cover to contain */
  background-position: center center;
  margin: 0;
  padding: 0;
}

/* Navigation */
nav {
  width: 100%;
  height: 15vh;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

nav .logo {
  width: 25%;
  text-align: center;
}

nav .menu {
  width: 40%;
  display: flex;
  justify-content: space-around;
}

nav .menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Intro Section */
.intro {
  margin-top: 5rem;
  text-align: center;
}

.intro h3 {
  font-size: 2em;
  letter-spacing: 3px;
  text-shadow: 1px 1px 2px green;
  color: white;
}

.intro p {
  font-size: 25px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 1px #000;
  color: white;
}

.intro a {
  padding: 10px 25px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9em;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

.intro .btnone {
  background: #fff;
  color: #000;
}

.btnone:hover {
  background: #00b894;
  color: white;
}

.intro .btntwo {
  background: #00b894;
  color: white;
}

.btntwo:hover {
  background: #fff;
  color: #000;
}

/* Icon List */
.icon-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: #fff;
  margin: 10px;
  text-align: center;
  font-size: 50px;
  line-height: 100px;
  transition: all 0.3s ease-out;
}

.icon:hover {
  width: 300px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
}

.icon a {
  text-decoration: none;
  color: white;
}

.icon .fa-facebook-f {
  color: #1A6ED8;
}

.fb:hover {
  background: #1A6ED8;
}

.icon .fa-linkedin-in {
  color: #0077B5;
}

.lnk:hover {
  background: #0077B5;
}

.icon .fa-github {
  color: #000;
}

.git:hover {
  background: #000;
}

.icon .fa-youtube {
  color: #FE0000;
}

.yt:hover {
  background: #FE0000;
}

/* Certification Image */
.certification-image {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.certification-image img {
  max-width: 100%;
  height: auto;
}



/* Responsive Design */
@media only screen and (max-width: 768px) {
  .intro h3 {
    font-size: 1.5em;
  }

  .intro p {
    font-size: 1em;
  }

  .intro a {
    padding: 8px 15px;
  }

  .circle-image-container {
    width: 100px;
    height: 100px;
  }

  .icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
    line-height: 80px;
  }
}

@media only screen and (max-width: 480px) {
  .intro h3 {
    font-size: 1.2em;
  }

  .intro p {
    font-size: 0.9em;
  }

  .intro a {
    padding: 5px 10px;
  }

  .circle-image-container {
    width: 80px;
    height: 80px;
  }

  .icon {
    width: 70px;
    height: 70px;
    font-size: 35px;
    line-height: 70px;
  }
}
