body {
  margin: 0;
  padding-left: 0px;
  
}
h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.7;
}
.section {
  padding: 80px 0;
}
.hero-text,
.about-text {
  max-width: 600px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background-color: #f5f5f5;
  list-style: none;
  margin-left: 0px;

}

.headerleft ul {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headertext{
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 25px;
  font-style: italic;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}
.about-content {
  display: flex;
  justify-content: space-between;
 
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 2;
  text-align: justify;
 
}

.skill {
  flex: 1;
  padding: 20px 10px;
  border: 5px solid #ddd;
  box-shadow: #666 0px 4px 8px;
  border-radius: 5px;
  margin-right: 100px;
  background-color: #f5f5f5;
  transition: box-shadow 0.3s ease;
}

/* Glow only on hover */
.skill:hover{
  animation: glow 1s ease-in-out infinite alternate;
}
.skill-list ul{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  margin-left: 30px;

}



@keyframes glow {
  from {
    box-shadow: 0 0 10px #8e8b88;
  }
  to {
    box-shadow: 0 0 20px #ededeb;
  }
}



@media (max-width: 768px) {
  .hero,
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}
footer {
  padding: 60px 0;
  background-color: #f5f5f5; /* change to your warm neutral */
  margin-top: 60px;
  
 
  
}

.footer {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer a {
  text-decoration: none;
  color: black;
}

.footer a:hover {
  text-decoration: underline;
}
.footer p {
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}
footer {
  border-top: 1px solid #ddd;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .headerleft {
    display: none;
    flex-direction: row;
  }

  .headerleft.active {
    display: flex;
    }  }
.GuestWriting{
  margin:0px;
align-items: center;

}


/* hide popup by default */
.hidden{
    display:none;
}

/* popup background */
#guest-writing{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #f5f5f5;;
    padding: 30px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* form box */
.box{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

/* inputs */
.box input{
    padding:10px;
    border:1px solid #1b1919;
    border-radius:5px;
}

/* submit button */
.box button{
    padding:10px;
    border:none;
    background :black;
    color:white;
    border:2px solid black;
    border-radius:5px;
    cursor:pointer;
}

/* close button */
.close{
    position:absolute;
    top:10px;
    right:10px;
    border:none;
    background:none;
    font-size:18px;
    cursor:pointer;
}

/* subscribe button */
.button{
    padding:5px 10px;
    background: #f5f5f5;
    color:black;
    cursor:pointer;
    border-radius:2px;
    border: 2px solid #f5f5f5;
    display:inline-block;
    margin-top:20px;
}
.close{
   position:absolute;
   top:10px;
   right:10px;
}
.blank{
  height:100vh;
  background-color: aqua;
}