body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
.nav_bar {
  background-color: #FDCFFA;
  padding: 20px;
  display: flex;
  gap: 20px;
  margin-left: 5%;
  justify-content: center; 
  border-radius: 10px;
  width: 90%;
  border: 1px solid #D78FEE;
  margin-top: 10px;
}

.nav_link a{
  color: #9B5DE0;
  text-decoration: none;
  font-size: 20px;
  padding: 10px;
}

.nav_link a:hover {
  border: 2px dashed #D78FEE;
  border-radius: 10px;
}
.nav_link1 a{
   color: #9B5DE0;
   text-decoration: none;
   font-size: 20px;
   padding: 10px;
   margin-right: 100px;
   border: 2px groove #D78FEE;
   border-radius: 10px;
}
.footer1{
    background-color: #FDCFFA;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #D78FEE;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 10px;
}
.footer-text{
    margin-top: 10px;
    color: #9B5DE0;
    font-size: 15px;
}
.navbar{
    color: #9B5DE0;
    font-size: 30px;
    display: flex;
    width: 30%;
    gap: 15px;
    cursor: pointer;
}
.linkf a{
    color: #9B5DE0;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
.linkf a:hover{
    color: #D78FEE;
}
.icons{
    margin-top: 10px;
    color: #9B5DE0;
    font-size: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}
.icons a{
    color: #9B5DE0;
    text-decoration: none;
}
.icons a:hover{
    color: #D78FEE;
}
.txt1{
  color: #9B5DE0;
  text-align: center;
}
.contact_form{
  padding: 20px;
  justify-content: center; 
  border-radius: 10px;
  width: 90%;
  margin-left: 5%;
  border: 1px solid #D78FEE;
  margin-top: 10px;
  align-items: center;

}
.formtxt{
  margin: 10px;
  font-size: 40px;
  color: #9B5DE0;
  text-align: center;
}
.formin{
  display: block;
  width: 50%;
  padding: 10px;
  margin: 10px auto;
  border: 1px solid #D78FEE;
  border-radius: 5px;
}
.btn1{
    background-color: #FDCFFA;
    color: #9B5DE0;
    padding: 8px 30px;
    font-size: 20px;
    border-radius: 10px;
    border: 2px dotted #D78FEE;
    text-decoration: none;  
    transition: background-color 0.3s ease;
}
.btn1:hover{
    background-color: #FFFCFB;
    color: #000;
    border: 2px dotted #000;
    padding: 8px 30px;
    font-size: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.btn2{
    background-color: #fff;
    color: #000;
    padding: 7px 30px;
    font-size: 20px;
    border-radius: 10px;
    border: 2px dotted #000;
    text-decoration: none;   
    transition: background-color 0.3s ease;
}
.btn2:hover{
    background-color: #FDCFFA;
    color: #9B5DE0;
    border: 2px dotted #D78FEE;
    padding: 7px 30px;
    font-size: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.btn_align{
  display: flex;
  justify-content: center; 
  align-items: center;     
  margin-top: 20px;     
  gap: 10px;  
}
.bi-arrow-up-circle{
    font-size: 30px;
    color: #9B5DE0;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.about-creator {
  margin-top: 20px;
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: 20px;
    width: 90%;
    margin-left: 5%;
}

.about-creator h2 {
    font-size: 36px;
    color: #9B5DE0;
    margin-bottom: 30px;
}

.creator-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.creator-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.creator-text {
    max-width: 500px;
    text-align: left;
    font-size: 18px;
    color: #333;
}
.menu {
    display: none;
    font-size: 25px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 12px;
}
@media (max-width: 768px) {

   .nav_bar {
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    margin-left: 5%;
    padding: 20px;
    gap: 10px;
    position: relative;
    }
  .nav_link, .nav_link1 {
    display: none;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    margin: 2px 0;
    }
  .nav_link a, .nav_link1 a {
    font-size: 16px;
    width: 100%;
    display: block;
    }
  .menu {
    display: block;
    color: #9B5DE0;
    margin-left: auto;
  }
  .nav_bar.active .nav_link,
  .nav_bar.active .nav_link1 {
    display: block;
  }
    .footer1 {
        width: 95%;
        margin-left: 2.5%;
        padding: 15px;
    }
    .footer-text {
        font-size: 14px;
    }
    .icons {
        font-size: 24px;
        gap: 10px;
    }
}
.popup {
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center; 
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: popupFade 0.3s ease;
}
.popup-content h2 {
  color: #9B5DE0;
  margin-bottom: 10px;
}
.popup-content button {
  background: #9B5DE0;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  cursor: pointer;
}
.popup-content button:hover {
  background: #D78FEE;
}
@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 768px) {
    .navbar {
        width: 80%;
        font-size: 24px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .linkf a {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        width: 100%;
        font-size: 22px;
        gap: 8px;
    }

    .linkf a {
        display: block;
        font-size: 16px;
        margin: 5px 0;
        text-align: center;
    }
}