* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "poppins", sans-serif;
}
body {
  font-family: 'Cormorant Garamond', serif;
}
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}


body {
  background: url("download.jpeg") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* ====== NAVIGATION ====== */
.navigation {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  gap:10px;
}

.navigation a {
  font-size: 0.9rem;
  color:whitesmoke;
  font-weight: 500;
  transition: 0.3s ease;
  padding: 8px 12px;
  text-align: center;
  display: block;
  border-radius: 8px;
  margin: 5px 0;
  background: rgba(255, 255, 255, 0.2);
  
}

.navigation a:hover {
  color: #ff4d4d;
  background: rgba(255, 255, 255, 0.3);
}

/* ====== PROFILE CONTAINER ====== */
.profile-container {
  position: fixed;
  left: 0px;
  top: 10px;
  background:transparent;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  height: auto;
 
}

#photo{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid lightblue;
  margin-bottom: 10px;
}

.profile-container h2 {
  color: white;
  font-size: 1rem;
  text-align: center;
}

/* ====== SOCIAL ICONS ====== */
.icons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 30px;
  align-items: center;
  margin-top: 40px;
  margin-left: 0px;
}

.icons i {
  color: white;
  transition: 0.3s ease;
}

.icons i:hover {
  color: cyan;
  transform: scale(1.1);
}

/* ====== INTRO SECTION ====== */
.Home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 100px;
  width: 90%;
}

.intro {
  max-width: 80%;
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 20px;
  margin-right: 30%;
  margin-top: 10%
}

.introduction {
  max-width: 60%;
  text-align: center;
  color: white;
  font-size: 2rem;
  line-height: 2rem;
  padding: 20px;
  margin-left: 20%;
}

.dikshit {
  color: white;
  font-weight: bold,;
  align-items: center;
  font-size: 60px;
  margin-top:50%;
  margin-left: 0px;
}

.typing-text {
  color: cyan;
}
h1{
  font-size: 10px;
  color:whitesmoke;
}

/* ====== RESPONSIVE FIXES ====== */
@media screen and (max-width: 768px) {
  
  .Home {
    padding-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; 
    flex-wrap: wrap;
  }
  

  .introduction {
    max-width: 100%;
    font-size: 1.5rem; 
    line-height: 1.6rem;
    text-align: center;
    padding: 10px;
    margin-right: 40px;
    margin-top: 40px;
  }


.dikshit {
  font-size: 2rem; 
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-left: 40%;
}


.typing-text {
  font-size: 0.85rem;
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: right;
}


 
  .social-icons {
    position: absolute;
    left: 10px; 
    top: 50%; 
    transform: translateY(-50%);
  }
  h3{
    font-size: 1rem;
    justify-content: right;

  }






