* 
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    scroll-behavior:smooth;
    font-family:"poppins", sans-serif;
}


:root{
    --bg-color: #080808;
    --second-bg-color: #242420;
    --text-color:white;
    --main-color:#e89ee1;
    --main-color-hover: #8b3d69; /* optional hover color */
}

body {
    background-color: black;
    color: aliceblue;
}


.header {

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--second-bg-color);
    backdrop-filter: blur(10px);
    display: flex;
    z-index: 1000;
    padding: 4rem 15%;
}

.logo{
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor:pointer;
    transition: 0.3s ease-in-out;    
}

.logo:hover {
    transform: scale(1.1);
}

span{
    background: linear-gradient(270deg, 
    #242420 10%, 
    #8b3d69 100%);
    background-clip: text;
    color: transparent;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.navbar a{
    font-size: 2rem;
    color: rgb(252, 250, 250);
    margin-left: 3rem;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    margin: 0%;
    padding: 0%;

}
.navbar a:hover {
    color: red;
    transform: scale(1.1);
}
nav{
    display: flex;
    justify-content: flex-end;
}

.menu-icon{
  font-size: 3rem;
  color:var(--text-color);
  display: none;
}



section {
    min-height: 100vh;
    padding:10rem 15%;
    margin-top: 10rem;
}

.home {
display: flex;
align-items: center; 
justify-content: center;
gap: 15rem;

}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: inline;
    text-align: left;

}


::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--bg-color);
}

.home-content h1 {
    font-size: 8rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}



.home-content h3 {
    margin: 1rem 0;
    font-size: 4rem;
}


.home-video video {
    width: 30vw;
  
    
}

.social a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--white);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;
}


.about {
  display: flex;  
  justify-content: center;
  align-items: center;
  gap: 5rem;
  background: var(--second-bg-color);
  margin-top: 5rem;
}

.about p{
    font-weight: 
    font-family: impect;
}

.about-img img{
    width:32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}

.about-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}

.about-content h2 {
    font-size: 7rem;
    text-align: left;

}
.about-content video{
    font-size: 1.8rem;
}   

.about-content .btn {
  font-size: 1.8rem 0;
}

.heading {
    text-align: center;
    font-size: 3rem;
    margin: 5rem 0;
}

 
}

.Testimonials-box {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: var(--main-color);
    height: 600px;
    border-radius: 3rem;
    cursor: pointer;
    border: 5px solid transparent;
    transition: 0.4s ease-in-out;
}


.two-clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, 
    minmax(300px, 1fr));
    align-items: center;
    gap: 2.5rem;
}





.contact {
  background-color: var(--bg-color);  
}
.contact h2 {
   margin-bottom: 3rem;
   color: var(--text-color);
}

.contact form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 5rem 0;
    text-align: center;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;  
  padding: 2.5rem;
  font-size: 1.8rem;
  color: var(--main-color);
  background-color: var(--bg-color);
  border-radius: 2rem;
  border: 2px solid var(--main-color);
  margin: 1.5rem 0;
  resize: none;
}


.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  background-color: var(--main-color);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: var(--main-color-hover); /* optional */
  transform: scale(1.05);
}



.footer {
  background-color: var(--bg-color);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-color);
  border-top: 2px solid var(--main-color);
}

.footer .social {
  margin-bottom: 2rem;
}

.footer .social a {
  color: var(--main-color);
  font-size: 2.5rem;
  margin: 0 1rem;
  transition: color 0.3s;
}

.footer .social a:hover {
  color: var(--text-color);
}

.footer .list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer .list a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.6rem;
  transition: color 0.3s;
}

.footer .list a:hover {
  color: var(--main-color);
}

.footer .copyright {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: var(--text-color);
}

@media (max-width: 1285px){
  #menu-icon {
    display: block; 
    
}

    .navbar {
      position: absolute;
      top: 100%;
      right: 0;
      width: 50%;
      padding: 1rem 3rem;
      background-color: rgba(0, 0, 0, 0.8);
      border-bottom-left-radius: 2rem;
      border-left:2px solid var(--main-color);
      border-bottom: 2px solid var(--main-color);
      display: none;
    }

    .navbar a {
     display: block;
     font-size: 2rem;
     margin: 3rem 0;
     color: var(--text-color);
    }

    .navbar.active {
      display: block;
    }
    .gradient-btn {
      display: none;
    }

    .home {
        flex-direction: column-reverse;
        margin: 5rem 0;
        gap: 5rem;
    }

    .home-content {
        align-items: center;
        text-align: center;
    }

    .home-img img {
        width: 56vw;
    }

    .about {
      flex-direction: column-reverse;  
      text-align: center;
    }

    .about h2{
        text-align: center;
        margin: 2rem 0;
    }

    .about img {
        width: 52vw;
    }

    .contact form{
        flex-direction: column;
    }








    

