/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar Styles */
header {
  background-color: black;
  color: white;
  padding: 20px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #ff0000;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff0000;
}

/* Responsive Styles */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 3px 0;
}



/* main content */
body{
  background-color: rgb(12, 12, 12);
}

.firstSection{
  display: flex;
  justify-content: space-around;
  margin: 60px 0;
}



.leftSection{
  font-size: 2rem;
  color: white;
  margin: 30px;
}

.rightSection{
 
  border: solid 4px   black;
  border-top-right-radius: 35%;
  border-bottom-left-radius: 10%;
  background-color: rgb(12, 12, 12);
  overflow: hidden;
  box-shadow: 25px 25px 5px black;
}
.rightSection :hover{
  border: solid 2px  #ff0000;
  border-top-right-radius: 35%;
  border-bottom-left-radius: 10%;

}


.rightSection img{

  width: 300px;
  height: 300px;
}


.purple{
  color: #ff0000;
}

#element{
  color:#ff0000;
}

main hr{
border: 0;
background: #9c97f1;
height: 1.2px;
margin: 40px 80px;
}

.secondSection{
  max-width: 80vw;
  margin: auto;
  height: 60vh;
}

.secondSection h1{
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  text-align: center;
}
.projects{
  margin-top: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.Netflix{
  height: 100px;
  width: 100px;
  border: 1px solid red;
}
.Netflix a{
  color: white;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}
.Amazon a{
  color: white;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}

.Amazon{
  height: 100px;
  width: 100px;
  border: 1px solid red;
  border-radius: 50%;
}

.text-gray{
  color: gray;
}

footer{
  background-color:  rgb(7, 7, 7);
}
footer a{
  color:red;
  text-decoration: none;
}
.footer{
  display: flex;
  padding: 25px 25px ;
  justify-content: space-between;
  color: white;
  font-size: 1.2rem;
}

.footer ul {
  list-style: none;
}

.footer > div {
  width: 125px;

}
.instalogo{
  border: 2px solid red ;
  border-radius: 10px;
  height: 50px;
  width: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta{
  height: 80px;
  width: 80px;
}

footer .footer-rights{
  text-align: center;
  color: gray;
}

.leftSection buttons{
  padding: 50px 0;

}

.leftSection .btn{
  padding: 10px;
  background-color: black;
  color:white;
  border: 1px solid #ff0000;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .logo{
      font-size: 1.5rem;
  }
  
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1.3s ease;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }
  
  .nav-links.open {
    max-height: 300px; /* Adjust according to the number of items */
  }

  .firstSection{
      display: flex;
      justify-content: space-evenly;
  }

  .leftSection{
  font-size: 1.3rem;
  margin: 0px;
  margin-left: 15px;
  margin-left: 10px;
 
  }
  .rightSection{
      height: 150px;
      width: 150px;
      margin-right: 10px;
      display: flex;
      justify-content: center;
      box-shadow: 10px 10px 10px black;
    
  }
  .rightSection img{
      
      height: 160px;
      width: 150px;
  }
  
  .leftSection .btn{
      padding: 5px;
      font-size: small;
  }
  .footer-rights{
      font-size: 0.8rem;
  }
  .footer{
   display: flex;
   justify-content: space-around;
   font-size: small;
  }
  .footer-first{
    margin-left: 5px;
  }
  .instalogo{
    height: 35px;
    width: 35px;
  }
  .intsa{
    height: 10px;
    width: 10px;
  }
}