.container-fluid{
    position: relative;
    text-align: center;
    
}
.text_side{
    position: absolute;
    top: 8px;
    right: 16px;
}



body, html {
  margin: 0;
  padding: 0;
}
.navs{
  text-decoration: none;
  color:white;
  
}
.name {
  position: absolute;
  top: 500px;
  left: 150px;
  color: white;

}
.anandhu {
  font-size: 100px;
}
@media screen and (max-width: 900px) {
  .name{
    top: 200px;
    left: 10px;
  }
  .anandhu{
    font-size: 30px;
    top: 140px;
  }
  .genre {
    font-size: 10px;
  }
  
}

.nav{
  position: absolute;
  top: 8px;
  left: 20px;
}
@media screen and (max-width: 900px) {
  .nav{
    opacity: 0;
  }
  
}
.slide  a {

  text-decoration: none;
  color: white;
  list-style-type: none;
  

}
.slide{
  position: absolute;
  height: 30%;
  width: 190px;

  border-radius: 10px;
  top: 70px;
  transition: 0.5s ease;
  transform: translate(-190px);
  background: rgba(255, 255, 255, 255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);




}
.nav a:hover{
  color: rgb(223, 122, 28);
  background-color: transparent;
}

.slide ul {
  list-style-type: none;
}

.checkbox{
  position: absolute;
  top: 20px;
  left:10px ;
  z-index: 1;
  display: none;
}
.toggle{
  position: absolute;
  top: 30px;
  width: 30px;
  height: 30px;
  left: 15px;
  z-index: 1;
  cursor: pointer;
  border-radius: 2px;
  background-color: white;
  /* opacity: 0%; */
  visibility: hidden;



}
.toggle .common{
  position: absolute;
  height: 2px;
  width: 20px;
  background-color: blueviolet;
  border-radius: 50px;
  transition: 0.5s ease;
}
.toggle .top_line {
  top: 30%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.toggle .middle_line {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle .bottom_line {
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);
}
input:checked ~ .toggle .top_line {
  left: 2px;
  top: 15px;
  width: 25px;
  transform: rotate(45deg);
}
input:checked ~ .toggle .middle_line {
  opacity: 0;
  transform: translate(0);
}
input:checked ~ .toggle .bottom_line {
    left: 2px;
    top: 15px;
    width: 25px;
    transform: rotate(-45deg);
}
.checkbox:checked ~ .slide {
  transform: translate(0);
}

@media screen and (max-width :900px) {
  .toggle{
    /* opacity: 100%; */
    visibility: visible;

  }
  
}
@font-face {
  font-family: 'italics';
  src: url(./assets/fonts/SellenaBrush-x3JyK.ttf);
}
.aboutme{
  background-color: goldenrod;
  padding: 10px 5px 10px  ;
}
form{
  padding: 10px 10px ;
  background: linear-gradient(to right, #ff7e5f, #feb47b);

  border-radius: 10px;

}
input{
  border-radius: 10px;
  border-style: none;
  border-bottom: none;
}
.card-body {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4); /* Pink gradient */

}

.newone{
 background: linear-gradient(to right, #ff6a00, #ee0979);
}



.left{
    opacity: 0;
    filter: blur(5px);
    transform: translate(-100%);
    transition: all 1s ;
}

.show{
    opacity: 1;
    filter: blur(0px);
    transform: translate(0%);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


.aboutSession {
  max-width: 600px;
  margin: 30px auto;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  line-height: 1.7;
  text-align: justify;
  backdrop-filter: blur(5px);

}
.aboutSession strong {
  color: #004c6d;
}
.aboutSession p {
  margin-bottom: 1.5rem;
}

#successAlert {
 
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 255, 164, 0.7), rgba(0, 204, 255, 0.7));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.5s ease;
}

#successAlert h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Optional: Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
