*{
  padding: 0%;
  margin: 0%;
}

body {
    font-family: 'Times New Roman', Times, serif, 'Courier New', Courier, monospace, cursive; 
    color: white;
    margin: 0;
    padding: 0;
    width: 100%;
  }

 
  
  /* Header */
  header {
    background-color: rgba(58, 5, 58, 0.762);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(50px);
  }
  
  .anenih{
    display: flex;
    align-items: center;
    width: 100%;
  }

  .anenih h1{
   font-family: Arial, Helvetica, sans-serif;
  }
  
  #logo {
      width: 70px;
      height: auto;
  }

  .logo {
    text-decoration: none;
    color: moccasin;
    font-size: 27px;
    font-weight: bold;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    font-family: cursive;
    text-align: center;
    text-shadow: #111 10px 10px 10px ;
  }
  
  .logo img {
    margin-right: 10px;
  }

  #remover{
    display: none;
  }

  .remover-container{
    display: none;
  }

  #stack{
    display: none;
  }

  .hamburger-menu{
    display: none;
  }

  #side{
    display: none;
  }

  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    margin-right: 2rem;
    position: absolute;
    right: 1%;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  nav li {
    margin: 0 1rem;
    transition: 0.3s ease-in-out;
  }

  nav li:hover {
    color: #D8BFD8;
    border-bottom: #D8BFD8 1px solid;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  nav a:hover {
    color: #D8BFD8;
    border-bottom: white;
  }
  
  
  .nav-toggle {
    display: none;
    cursor: pointer;
    margin-right: 2rem;
  }
 
  
  /* Hero Section */
  .back-vid{
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    mix-blend-mode: overlay;

}


  .hero {
    display: flex;
    padding: 2rem;
    min-height: 400px;
    padding-top: 10%;
  }
  
  .hero-content {
    position: absolute;
    left: 2%;
    padding: 2%;
    width: 50%;
    color: purple;
    font-size: 3.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-shadow: 0 0 15px purple;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .hero-content p {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5%;
    color: violet;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    

  }


  .hero-video{
    position: absolute;
    right: 3%;
    z-index: -25;
    mix-blend-mode: lighten;
}

.hero-video video{
  width: 400px;
 
}


  .cursor{
    display: inline-block;
    width: 3px;
    height: 1em;
    background: #f1f5f9;
    margin-left: 5px;
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink{
    0%, 50%{opacity: 1;}
  51%, 100%{opacity: 0;}
  }

  .gradient{
    background: linear-gradient(to right, #008baa, #7e42a7, #6600c5, #6070fd, #2a46ff, #0099ff, #008ead);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to{
        background-position: 200%;
    }
}
  
  .profile-picture {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: #111 12px 12px 12px 12px;
  }
  
   .button {
    background-color: transparent;
    color: white;
    padding: 2%;
    border: rgba(58, 5, 58, 0.762) 2px solid;
    border-radius: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: rgba(58, 5, 58, 0.762) 0 0 25px;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: none;
  }
  
   .button:hover {
    background-color: rgba(58, 5, 58, 0.762); 
    transform: scale(0.95);
    box-shadow: rgba(58, 5, 58, 0.762) 0 0 40px;
    color: white;
}
.button-animated{
    background-color: purple; /* Blue */
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-top: 40%;
    box-shadow: #111 12px 12px 12px 0px;
    margin-left: 43%;
  }
  
  .button-animated:hover {
    background-color: violet; /* Darker Blue for hover */
    transform: scale(1.1);
}

/* Services Section */
.slider {
    position: relative;
    width: 80%;
    height: 600px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 200px;
    margin-left: 10%;
    margin-top: 5%;
    box-sizing: border-box;
    box-shadow: violet 0 0 10px;
  }

  .slider:hover{
    box-shadow: violet 0 0 15px;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide:nth-child(1) {
    background-image: url("img/image\ \(2\).gif");
    background-position: center;
    background-size: cover;
  }
  
  .slide:nth-child(2) {
    background-image: url("img/image\ \(2\).gif");
    background-position: center;
    background-size: cover;
  }
  
  .slide:nth-child(3) {
    background-image: url("img/image\ \(2\).gif");
    background-position: center;
    background-size: cover;
  }
  .slide:nth-child(4) {
    background-image: url("img/image\ \(2\).gif");
    background-position: center;
    background-size: cover;
  }
  
  .slide:nth-child(5) {
    background-image: url("img/image\ \(2\).gif");
    background-position: center;
    background-size: cover;
  }
 
  .browse1{
    padding: 1%;
    background-color: transparent;
    border-radius: 20px;
    border: 2px solid purple;
    color: purple;
    margin-top: 5%;
    margin-left: 45%;
    transition: 0.3s ease;
    animation: none;
    box-shadow: purple 0 0 15px;
  }
  .browse1:hover{
    transform: scale(1.1);
    animation: view 2s linear infinite;
    background-color: rgba(54, 4, 54, 0.95);
    color: black;
  }




  
.services-page {
    padding-top: 10%;
    padding-right: 2rem;
    padding-left: 2rem;
    
}
.services-page h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.services-page p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.foot{
    margin-top: 5%;
}
.services {
    padding: 2rem;
    margin-top: 5%;
}

.services-h1 {
    margin-top: 15%;
    text-align: center;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif ;
    color: purple;
}


.services h2 {
    color: black;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.services h3 {
    text-align: center;
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.service-card h3 {
    text-align: center;
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #7e42a7;
    text-shadow: 0 0 15px purple;
}

.service-card p {
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 25%;
  font-size: 20px;
  text-shadow: 0 0 15px purple;
  color: violet;
  
}

.service-card {
    background-color: rgba(58, 5, 58, 0.462) ;
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin: 1rem;
    text-align: center;
    border-radius: 10px;
    width: 25%;
    height: 60% ;
    box-shadow: purple 0 0 10px;
}

.service-card:hover {
  box-shadow: purple 0 0 20px;
}

.service-card img {
    width: 50%;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 2px solid purple;
    box-shadow: purple 0 0 10px;
}

/* About Me Page */
.about-me {
    padding: 2rem;
    padding-top: 5%;
    text-align: center;
}

.about-me h2 {
    margin-bottom: 2rem;
    font-family: cursive;
    margin-top: 5%;
    font-size: 50px;
    color: purple;
    text-shadow: 0 0 15px purple;
}

.about-content {
  width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    background-image: url('img/round.gif');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 2%;
    border: 2px solid purple;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 15px purple;
}


.about-text {
    width: 100%;
   background-color: rgba(128, 0, 128, 0.6);
    padding: 3% ;
    box-sizing: border-box;
    border-radius: 20px;
    backdrop-filter: blur(10px);


}

.about-text p {
    margin-bottom: 1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    color: white;
    font-weight: 100;
    text-shadow: 0 0 2px violet;
}

/* Portfolio Page */

.fadeInRight {
  will-change: transform, opacity, filter;
  opacity: 0;
  transform: translateX(-500px) scale(0.2);
  filter: blur(20px);
}

.portfolio {
    padding: 2rem;
    padding-top: 5%;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 5%;
    font-family: cursive;
    font-size: 50px;
    color: purple;
    text-shadow: 0 0 15px purple;
}

.portfolio p {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: violet;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    margin-top: 5%;
    padding: 2%;
    padding-top: 5%;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-overlay h3 {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
}
.portfolio-overlay p {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

.portfolio-image {
    width: 50%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-left: 25%;
    margin-bottom: 10%;
    border:  2px solid purple;
    box-shadow: 0 0 35px purple;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 47%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 25%;
    margin-top: 6%;
    box-shadow: 0 0 15px purple;
    z-index: 20;
}



.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: scale(1.05);
}

.portfolio-item h3 {
    margin-bottom: 0.5rem;
}

.portfolio-item p {
    margin-bottom: 1rem;
}

    

.view1{
    padding: 1.5%;
    width: 25%;
    margin-left: 38%;
    margin-top: 10%;
    position: relative;
    bottom: 50px;
    border-radius: 20px;
    border: 1px solid purple;
    transition: 0.3s ease;
    box-shadow: 0 0 15px purple;
    background-color: transparent;
    color: purple;
    font-size: large;
}

.view1:hover{
    transform: scale(1.1);
    background-color: purple;
    box-shadow: 0 0 25px purple;
    color: black;
}
.view2{
    padding: 1.5%;
    width: 25%;
    margin-left: 38%;
    margin-top: 10%;
    border-radius: 20px;
    position: relative;
    bottom: 50px;
    border: 1px solid purple;
    transition: 0.3s ease;
    box-shadow: 0 0 15px purple;
    background-color: transparent;
    color: purple;
    font-size: large;
}

.view2:hover{
    transform: scale(1.1);
    background-color: purple;
    box-shadow: 0 0 25px purple;
    color: black;
}
.view3{
    padding: 1.5%;
    width: 25%;
    margin-left: 38%;
    margin-top: 10%;
    border-radius: 20px;
    position: relative;
    bottom: 50px;
    border: 1px solid purple;
    transition: 0.3s ease;
    box-shadow: 0 0 15px purple;
    background-color: transparent;
    color: purple;
    font-size: large;
}

.view3:hover{
    transform: scale(1.1);
    background-color: purple;
    box-shadow: 0 0 25px purple;
    color: black;
}
.view4{
    padding: 1.5%;
    width: 25%;
    margin-left: 38%;
    margin-top: 10%;
    border-radius: 20px;
    position: relative;
    bottom: 50px;
    border: 1px solid purple;
    transition: 0.3s ease;
    box-shadow: 0 0 15px purple;
    background-color: transparent;
    color: purple;
    font-size: large;
}

.view4:hover{
    transform: scale(1.1);
    background-color: purple;
    box-shadow: 0 0 25px purple;
    color: black;
}
.view5{
    padding: 1.5%;
    width: 25%;
    margin-left: 38%;
    margin-top: 10%;
    border-radius: 20px;
    position: relative;
    bottom: 50px;
    border: 1px solid purple;
    transition: 0.3s ease;
    box-shadow: 0 0 15px purple;
    background-color: transparent;
    color: purple;
    font-size: large;
}

.view5:hover{
    transform: scale(1.1);
    background-color: purple;
    box-shadow: 0 0 25px purple;
    color: black;
}

.contact-btn{
    background-color: purple;
    box-shadow: 0 0 30px purple;
    border-radius: 20px;
    border: 1px solid purple;
    padding: 1%;
    width: 20%;
    margin-top: 10%; 
    margin-left: 40%; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px; 
    transition: 0.3s ease; 
}

.contact-btn:hover{
    transform: scale(1.1);   
}



.client-feedback {
    background-image: url('img/fold.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2rem;
    margin-top: 10rem;
    border-radius: 50px;
    border:  2px solid purple;
    box-shadow: 0 0 15px purple;
}

.client-feedback h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    color: purple;
    text-shadow: 0 0 35px black;
}

.feedback-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feedback-item {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin: 1rem;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 0 15px purple;
    transition: 0.3s ease;
}

.feedback-item:hover{
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(0.94);
  box-shadow: 0 0 25px purple;
}


.feedback-item p {
    margin-bottom: 0.5rem;
    color: purple;
}

/* Contact Me Page */
#contact {
    padding: 5%;
    display: flex;
    margin-top: 10%;
   
   }
   .contact-image{
    background-image: url('img/mylogo.jpg');
    background-position: center;
    background-size: cover;
    width: 50%;
    border: 1px solid purple;
    border-radius: 10px;
    border-top-left-radius: 100px;
    box-shadow: 0 0 15px purple;
    border-bottom-right-radius: 0%;
    border-top-right-radius: 0px;
   }

   #con{
    background-color: rgba(34, 3, 34, 0.6);
    border: 1px solid purple;
    box-shadow: 0 0 15px purple;
     border-radius: 10px;
     border-top-left-radius: 0px;
     border-bottom-left-radius: 0px;
     width: 50%;
     height: 500px;
     padding-top: 2%;
     border-bottom-right-radius: 100px;
     backdrop-filter: blur(10px);
     
   }
   
   .contact-info {
    margin-bottom: 30px;
    margin-top: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
   }
   #contact h2{
     text-align: center;
     font-size: 50px;
     font-family: cursive;
    color: purple;
    text-shadow: 0 0 15px purple;
    }
   
   
   #contact-form {
    width: 60%;
    margin: 0 auto;
    box-sizing: border-box;
   }
   
   #contact-form label {
    display: block;
    margin-bottom: 5px;
   }
   
   #contact-form input{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: white;
    color: #000;
   }
   #contact-form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: white;
    color: #000;
   }
   
   #contact-form button {
    padding: 10px 20px;
    background-color: transparent;
    color: purple;
    border: 1px solid purple;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 15px purple;
   }
   
   #contact-form button:hover {
    box-shadow: 0 0 25px purple;
    color: #000;
    background-color: purple;
    transform: scale(0.95);
   }
   
   
/* Footer */
footer {
    background-color: rgba(58, 5, 58, 0.762);
    color: #fff;
    padding-top:5% ;
    margin-top: 50px;
    backdrop-filter: blur(40px);
    width: 100%;
   }
   
   .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 4%;

   }
   
   .footer-col {
    margin-bottom: 20px;
    text-align: left;
   }

   .footer-col p{
    text-align: left;
    max-width: 300px;
    color: white;
    text-shadow: 0 0 10px violet;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px; 
   }

   .footer-col ul{
     list-style: none;
     padding: 0%;
     text-align: center;
     line-height: 30px; 
    }
    .footer-col a{
     text-decoration: none;
     color: white;
     font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
     text-shadow: 0 0 10px violet;
    }
    .footer-col a:hover{
     text-decoration: none;
     color: darkviolet;
     text-shadow: 0 0 35px violet;
    }
   
   .footer-col h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0 0 2px violet;
    transition: 0.3s;
   }
   
   .footer-col h3:hover{
     transform: scale(1.05);
     text-shadow: 0 0 25px violet;
    }
   
   .social-links {
    list-style: none;
    padding: 0;
    display: block;
   }
   
   .social-links li {
    margin-right: 10px;
    text-align: center;
    line-height: 30px;  
   }
   

   .social-links a {
    text-decoration: none;
    color: white;
     font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
     text-shadow: 0 0 10px violet;   
   }
   
   
   .copyright {
    text-align: center;
    background-color: black;
    width: 100%;
    padding: 1%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    backdrop-filter: blur(30px);
    text-shadow: 0 0 15px violet;
   }
   




/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    display: none;
    background-color: purple; /* Blue */
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid purple;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px violet;
    z-index: 20;
}

.scroll-to-top:hover {
    transform: scale(1.3);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

.sidebar{
  display:none;
}




/* Mobile Sidebar */
/* Hamburger Menu Animation */
.nav-toggle {
    display: none;
    cursor: pointer;
    margin-right: 2rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white; /* Blue */
    margin: 5px 0;
    transition: transform 0.3s ease;
    margin-left: 2%;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 600px) {

  .anenih{
    display: flex;
    align-items: center;
  }

  .anenih h1{
   font-family: Arial, Helvetica, sans-serif;
   display: flex;
   align-items: center;
   gap: 3px;
  }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: none;
        position: absolute;
        right: 2px;

    }
    .back-vid{
      top: 0;
      height: 100%;
    }
    

    .hero-content {
        margin-bottom: 2rem;
        padding-top: 20%;
        width: 80%;
        
    }

    .hero-video{
      display: none;
    }

    .button{
      padding: 3%;
    }

    .services-h1{
      margin-top: 70%;
    }

    .service-cards {
        flex-direction: column;
        width: 100%;
        margin-bottom: 10%;
    }

    .service-card {
        width: 80%;
        height: 90%;
    }
    
    .service-card img {
        width: 80%;
        height: 200px;
    }

    .button-animated{
        margin-top: 2%;
        margin-left: 80px;
        margin-bottom: 10%;
    }
   
    .about-me{
        padding-top: 10%;
    }
    
    .about-me h2{
      margin-top: 15%;
    }

    .about-content {
        flex-direction: column;
        width: 90%;
    }

    .about-image {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-text {
        width: 90%;
        height: 90%;
    }
    .about-text p {
        width: 100%;
        font-size: 20px;
    }

    .portfolio-item{
      width: 90%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-image{
      width: 90%;
      height: 350px;
      margin-left: 5%;
    }
    .portfolio-overlay{
      margin-left: 10%;
      width: 70%;
      height: 60%;
    }



    .client-feedback {
        flex-direction: column;
    }

    .feedback-item {
        width: 100%;
    }

    .contact-image{
      display: none;
    }

    #contact {
        padding: 5%;
        padding-top: 40%;
        height: 700px;
       
       }
       
      #contact-form input,
      #contact-form textarea {
        width: 90%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 15px;
        background-color: white;
    }
    
    .social-links {
        margin-bottom: 1%;
        gap: 2px;
        
    }
    .footer-content{
        display: block;
    }

    .footer-col {
      margin-bottom: 20px;
      text-align: center;
      text-shadow: none;
     }

     .footer-col p{
      text-align: left;
      text-shadow: none;
      max-width: 95%;
      margin-left: 5%;
     }

     .footer-col a{
      text-shadow: none;
     }

     
     .social-links a{
      text-shadow: none;
     }

     .copyright{
      text-shadow: none;
     }


    .services-page{
        padding-top: 30%;
    }
    .portfolio{
        padding-top: 20%;
    }
    
    .logo{
        background-color: none;
    }

    .logo img {
      margin-right: 10px;
    }

    #opacity {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        color: #D8BFD8;
        padding-top: 2rem;
        padding-left: 1px;
        padding-right: 15px;
        box-sizing: border-box;
        z-index: 100;
        cursor: pointer;
        display: none;  
      }
      
      #stack{
        display: block;
        transform: scale(0.08);
          
      }
      .hamburger-menu{
        display: block;
        height: 20px;
        box-sizing: border-box;
        position: absolute;
        bottom: 265px;
        left: 23%;
      }
      .remover-container{
        display: block;
      }


#side {
    position: absolute;
    top: 10%;
    left: 10%;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 70vh;
    background: rgba(128, 0, 128, 0.6);
    color: black;
    padding-top: 2rem;
    padding-left: 1px;
    padding-right: 15px;
    box-sizing: border-box;
    z-index: 100;
    cursor: pointer;
    display: block;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px purple;
  }
  #remover:hover{
    cursor: pointer;
    transform: scale(1.2);
  }
  #remover{
    cursor: pointer;
    display: block;
    float: right;
  }
  
  #side ul {
    list-style: none;
    padding: 5%;
    margin-top: 2rem;
    display: block;
    width: 80%;
    position: absolute;
    left: 5%;
    height: 60%;
  }
  
  #side li {
    margin-bottom: 1rem;
    list-style-type: none;
    text-align: center;
    line-height: 60px;
   
  }
  #side li:hover{
    color: purple;
  }
  
  #side a {
    text-decoration: none;
    color: black;
    text-shadow: 0 0 5px black;
    font-size: 2.2rem;
    transition: color 0.3s ease;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }


  
  #side a:hover {
    color: purple;
    cursor: pointer;
  }
  
  #side a:active {
    color: darkslategray;
  
  }

  .socials-side{
    position: absolute;
    bottom: 10%;
    left: 15%;
    width: 70%;
  }
  .socials-side img{
    margin-left: 15%;
    transform: scale(1.6);
    box-shadow: 0 0 55px rgb(29, 2, 29);
  }

  .browse1{
    margin-top: 15%;
    margin-left: 30%;
    padding: 3%;
    border-radius: 30px;

  }
  .contact-btn{
    width: 40%; 
    margin-left: 30%;  
}
.view1{
  padding: 1.7%;
  width: 50%;
  animation: view 2s linear infinite;
  margin-left: 25%;
  margin-top: 15%;
}
.view2{
  padding: 1.7%;
  width: 50%;
  animation: view 2s linear infinite;
  margin-left: 25%;
  margin-top: 15%;
}
.view3{
  padding: 1.7%;
  width: 50%;
  animation: view 2s linear infinite;
  margin-left: 25%;
  margin-top: 15%;
}
.view4{
  padding: 1.7%;
  width: 50%;
  animation: view 2s linear infinite;
  margin-left: 25%;
  margin-top: 15%;
}
.view5{
  padding: 1.7%;
  width: 50%;
  animation: view 2s linear infinite;
  margin-left: 25%;
  margin-top: 15%;
}

#contact {
  padding: 5%;
  padding-top: 10%;

 
 }
 #con{
    width: 98%;
    background-color: rgba(34, 3, 34, 0.6);
    border: 1px solid purple;
    box-shadow: 0 0 15px purple;
     border-radius: 20px;
     border-top-left-radius: 20px;
     border-bottom-left-radius:20px;
     height: 600px;
     padding-top: 10%;
     border-bottom-right-radius: 20px;
     backdrop-filter: blur(10px);
     margin-top: 10%;
     
 }

 .slider{
  height: 600px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 15%;
 }



 #contact-form {
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
 }

 #contact-form textarea {
  width: 90%;
  height: 200px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  background-color: white;
  color: #000;
 }
 
 #contact-form button {
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 1px solid purple;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 15px purple;
 }

}
