* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  background: rgb(83, 1, 39);
  font-family: sans-serif;

}
.header {
  width: 90%;
  margin: auto;
  border: 1px solid rgb(135, 3, 16);
  border-radius: 40px;
  box-shadow: 0px 0px 15px 1px rgb(147, 2, 2);
  background: rgb(83, 1, 39);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.header ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}
.header ul li {
  padding: 8px 0px;
}
.header ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: white;
  padding: 10px 15px;
  letter-spacing: 0.5px;
}
.header ul li i {
  margin-right: 5px;
  color: rgb(188, 2, 49);
}
.header ul li:nth-child(1) span {
  display: inline-block;
  padding: 10px 9px;
  border-radius: 10px;
  background: linear-gradient(to right, rgb(233, 24, 59), rgb(154, 44, 44));
  margin-right: 5px;
  color: rgb(255, 170, 22);
  font-size: 18px;
  font-weight: 900;
  font-family: orbitron;
  letter-spacing: 1px;
}
.header ul li:nth-child(7) a i {
  color: white;
}
.header ul li a.current i {
  color: white;
}
.current {
  background: linear-gradient(
    to left,
    rgba(132, 15, 56, 0.734),
    rgba(252, 29, 62, 0.762)
  );
  border-radius: 50px;
  color: white;
}
.header ul li a:hover {
  background: linear-gradient(to left, rgba(167, 20, 62, 0.518));
  border-radius: 50px;
}
.bars-details {
  padding: 20px 30px;
  /* background: linear-gradient(to left,rgb(183, 36, 36),rgb(184, 123, 11)); */
  background: rgb(83, 1, 39);
  border: 1px solid rgb(135, 3, 16);
  box-shadow: 0px 0px 15px 1px rgb(147, 2, 2);
  border-radius: 20px;
  position: absolute;
  top: 65px;
  right: 30px;
  display: none;
}
.bars-details button {
  padding: 8px 15px;
  background: linear-gradient(
    to left,
    rgba(132, 15, 56, 0.734),
    rgba(252, 29, 62, 0.762)
  );
  color: rgb(212, 4, 91);
  font-size: 18px;
  border: 1px solid rgb(241, 5, 5);
  outline: none;
  border-radius: 10px;
  text-align: center;
  transition:200ms;
}
.bars-details button:hover{
  box-shadow: 0px 0px 10px 2px rgba(233, 4, 4, 0.668);
}
.bars-details button a {
  color: rgb(247, 215, 220);
  text-decoration: none;
}
.show {
  display: block;
  position: fixed;
}
.btn-container button a {
  color: rgb(212, 4, 91);
  font-size: 18px;
  text-decoration: none;
}
.social1 {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.social1 span:hover{
   box-shadow: 0px 0px 10px 2px rgba(233, 4, 4, 0.668);
}
.social1 a {
  text-decoration: none;
}
.social1 a span {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: linear-gradient(
    to left,
    rgba(132, 15, 56, 0.734),
    rgba(252, 29, 62, 0.762)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 200ms;
}
.social1 a span i {
  display: inline-block;
  font-size: 18px;
  color: rgb(247, 215, 220);
}
section {
  width: 60%;
  margin: 150px auto;
  scroll-margin-top: 100px;
}
#Rinku,#about{
  scroll-margin-top: 150px;
}
#contact{
   scroll-margin-top: 170px;
}
.home-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left-container {
  width: 45%;
}
.availabe {
  display: inline-block;
  padding: 10px 15px;
  background: linear-gradient(rgba(167, 20, 62, 0.518));
  border-radius: 50px;
  color: white;
  letter-spacing: 0.5px;
  font-family: sans-serif;
}
.name {
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid rgb(177, 1, 69);
}
.name h1 {
  font-size: 45px;
  color: white;
  margin-bottom: 20px;
}
.name h4 {
  font-size: 30px;
  color: rgb(249, 169, 182);
  font-family: 'Courier New', Courier, monospace;
}
.name p {
  font-size: 16px;
  color: rgb(224, 205, 209);
  margin: 20px 0px;
}
.location {
  margin-top: 20px;
}
.location span {
  display: inline-block;
  font-size: 16px;
  color: rgb(224, 205, 209);
  margin-right: 15px;
}
.location span i {
  position: relative;
  left: -3px;
}
.btn-container {
  margin: 20px 0px;
}
.btn-container button {
  padding: 10px 20px;
  background: transparent;
  color: rgb(212, 4, 91);
  font-size: 18px;
  border: 2px solid rgb(212, 4, 91);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.btn-container button a {
  color: rgb(212, 4, 91);
  font-size: 18px;
  text-decoration: none;
}
.btn-container .btn1 {
  margin-right: 10px;
}
.btn-container button:hover {
  background: linear-gradient(
    to left,
    rgba(188, 5, 69, 0.734),
    rgba(252, 29, 62, 0.951)
  );
  /* background: rgba(218, 48, 73, 0.951); */
  color: white;
  box-shadow: 0px 0px 10px 1px rgba(180, 1, 1, 0.805);
}
.btn-container button:hover a {
  color: white;
}
.social-links {
  margin-top: 30px;
}
.social-links p {
  color: rgb(244, 214, 214);
  display: inline-block;
}
.social-links a {
  display: inline-block;
  color: rgb(237, 178, 178);
  font-size: 20px;
}
.social-links i {
  position: relative;
  top: 2px;
}
.right-container {
  width: 45%;
  display: flex;
  justify-content: end;
}
.right-container img {
  width: 300px;
  height: 400px;
  border: 2px solid white;
  border-radius: 30px;
  box-shadow: -5px 5px 10px 0.5px rgba(236, 83, 83, 0.408);
}
.about-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left-about {
  width: 60%;
}
.left-about h1 {
  font-family: orbitron;
  font-size: 40px;
  color: rgb(253, 47, 112);
  margin-bottom: 20px;
}
.left-about p {
  font-size: 16px;
  color: rgb(224, 205, 209);
  margin: 20px 0px;
  line-height: 25px;
}
.right-about {
  width: 35%;
}
.project-container {
  width: 100%;
  text-align: center;
}
.project-container h4 {
  font-size: 25px;
  text-transform: uppercase;
  color: rgb(252, 166, 184);
  margin-bottom: 20px;
  font-family: 'Courier New', Courier, monospace;
}
.project-container h1 {
  font-family: orbitron;
  font-size: 40px;
  color: rgb(253, 47, 112);
  margin-bottom: 30px;
}
.project-container p {
  font-size: 16px;
  color: rgb(248, 183, 197);
  margin: 20px 0px;
  line-height: 35px;
}
.project-slider {
  width: 750px;
  height:380px;
  padding:30px;
  position:relative;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px rgb(226, 8, 8);
  background: rgb(245, 245, 245);
}
.wrapper{
  width: 600px;
  height:300px;
  border-radius: 10px;
  border: 1px solid rgb(168, 2, 77);
  overflow: hidden;
  position: relative;
}
.gallery{
  width:600px;
  height:100%;
  display:flex;
  /* justify-content:flex-start; */
  align-items: center;
  border-radius: 10px;
  transition: 400ms;
}
.gallery img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 400ms;
}
.gallery img:hover{
  transform: scale(1.05,1.05);
}
.prevbtn, .nextbtn{
  position:absolute;
  top:45%;
  color:pink;
  font-size: 14px;
  padding: 7px;
  border-radius: 50%;
  background:linear-gradient(to left, rgb(95, 12, 25), rgb(250, 4, 99)) ;
  cursor: pointer;
}
.prevbtn:hover, .nextbtn:hover{
  box-shadow: 0px 0px 10px 1px rgba(133, 2, 24, 0.384);
}
.prevbtn:active, .nextbtn:active{
  transform: scale(0.94) translateY(-1px);
  box-shadow: 0px 0px 10px 1px rgba(133, 2, 24, 0.674);
}
.prevbtn{
  left: 25px;
}
.nextbtn{
  right:25px;
}
.dots{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform:translateX(-50%);
}
.dot{
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  background:#a9a6a6;
  border-radius: 50%;
  cursor: pointer;
}
.dots-dark{
  background:#4e4d4d;
}
.view-project{
  padding: 8px 15px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50% );
  color: pink;
  text-decoration: none;
  background:linear-gradient(
    to left,
    rgb(132, 15, 56),
    rgb(252, 29, 62)
  );
  box-shadow: 0px 0px 10px 2px rgb(106, 3, 20);
  border-radius:10px;
  font-size: 16px;
  color: white;
  font-family:monospace;
  font-weight: 600;
  opacity: 0;
  transition: 500ms;
}
.wrapper:hover .view-project{
  opacity: 1;
}
.skills-container {
  width: 100%;
}
.skill-content{
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 40px;
  align-items: center;
}
.skills-container h1 {
  text-align: center;
  margin-bottom: 50px;
  font-family: orbitron;
  font-size: 40px;
  color: rgb(253, 47, 112);
}
.skills-card {
  width: 30%;
  height: 418px;
  padding: 30px 20px;
  background: linear-gradient(to left, rgb(54, 8, 15), rgb(80, 13, 39));
  border-radius: 10px;
  box-shadow: 0px 0px 15px 2px rgb(144, 2, 26);
  transition: 500ms;
  cursor: pointer;
 
}
.skills-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(to left, rgb(56, 4, 12), rgb(82, 4, 33));
   box-shadow: 0px 0px 20px 5px rgb(158, 2, 28);
}
.skills-card > span {
  display: inline-block;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:linear-gradient(to left, rgb(104, 3, 20), rgb(200, 13, 13));
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 2px rgb(80, 9, 9);
}
.skills-card span i {
  font-size: 25px;
  color: rgb(250, 192, 201);
}
.skills-card-content {
  margin-top: 20px;
  text-align: center;
}
.skills-card-content h4 {
  color: rgb(251, 112, 128);
}
.skills-card-content p {
  color: rgb(248, 145, 157);
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
}
.skills-card-content span {
  display: inline-block;
}
.skills-card-content span p {
  background: linear-gradient(to left, rgb(142, 6, 26), rgb(127, 2, 50));
  padding: 5px 10px;
  border-radius: 15px;
}
.feedback-content{
  width: 100%;
}
.feedback-content h4 {
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  color: rgb(252, 166, 184);
  margin-bottom: 20px;
  font-family: 'Courier New', Courier, monospace;
}
.feedback-content h1{
  text-align: center;
  margin-bottom: 50px;
  font-family: orbitron;
  font-size: 40px;
  color: rgb(253, 47, 112);
}
.feedback-container{
  width:100%;
  padding: 40px 28px 45px;
  /* border: 2px solid white; */
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px rgb(226, 8, 8);
  background: rgb(87, 2, 39);
  position: relative;
 
}
.feedback-inner-container{
  width:100%;
  border-radius: 10px;
   overflow: hidden;
}
.feedback-track{
  display: flex;
  gap: 50px;
  align-items: center;
  transition:800ms;
}
.feedback-card{
  width:400px;
  height: 270px;
  padding:20px;
  background: rgb(236, 229, 229);
  border-radius: 10px;
  flex-shrink:0;
  transition: 500ms;
}
.rating-container i{
  color:rgb(221, 144, 1);
  font-size: 15px
}
.rating-container i:nth-child(5){
  color:rgb(140, 139, 137);
}
.rating-content{
  margin-top: 15px;
}
.rating-content span{
  font-family: "Lexend Deca", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom:10px;
  display: inline-block;
  color: rgb(74, 3, 47);
}
.rating-content p{
  font-family:Arial;
  font-size: 15px;
  font-weight:500;
  line-height: 20px;
  display: inline-block;
  color: rgb(74, 3, 47);
}
.user-profile{
  margin-top: 15px;
  display: flex;
  gap:20px;
  align-items: center;
}
.user-profile span img{
  display: inline-block;
  width:50px;
  height: 50px;
  border-radius:50%;
}
.user-profile span:nth-child(2){
  display: inline-block;
  font-weight: 700;
color: rgb(98, 2, 45);
}
.dots1{
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}
.show1{
  background:pink;
}
.layer{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.active{
  opacity: 1;
  visibility:visible;
}
.modal{
  width: 500px;
  height:90%;
  border-radius: 10px;
  background: rgb(250, 250, 250);
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.modal-div{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closebtn{
  outline: none;
  background: transparent;
  position: absolute;
  top: 2px;
  right: 10px;
  font-size: 30px;
  color: rgb(66, 2, 2);
  border: none;
  cursor: pointer;
}
.contact-container{
  width: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 50px;
  padding-bottom:70px;
}
.left-contact{
  width: 55%;
}
.contact-heading h2{
  margin-bottom: 20px;
  color: rgb(250, 240, 241);
  font-size: 30px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.contact-heading p{
  margin-bottom: 20px;
  color: rgb(224, 205, 209);
  line-height: 25px;
}
.touch-datails span{
  display: flex;
  align-items: center;
  line-height: 30px;
}
.touch-datails a{
 display: inline-block;
 font-size: 15px;
 color: rgb(245, 211, 218);
 text-decoration: none;
}
.touch-datails i{
  margin-right:8px;
  color: rgb(188, 2, 49);
}
.touch-links{
  margin-top: 25px;
}
.touch-links a{
  display:inline-block;
  margin-right:10px;
  width:30px;
  height:30px;
  border-radius: 50%;
  background: rgb(109, 6, 56);
  box-shadow: 0px 0px 3px 1px rgb(172, 3, 45);
  text-decoration:none;
  color: pink;
  position: relative;
  transition:200ms;
}
.touch-links a:hover{
  background: rgb(109, 6, 56);
  box-shadow: 0px 0px 10px 1px rgb(172, 3, 45);
}
.touch-links a i{
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.right-contact{
  width:42%;
  padding-top: 60px;
}
.right-contact form{
  width: 100%;
  padding:30px 25px;
  background:rgb(80, 9, 43) ;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 2px rgba(226, 8, 8, 0.512);
}
.right-contact form input,textarea{
  width: 100%;
  height: 30px;
  padding-left: 10px;
  border-radius:5px;
  margin-bottom: 25px;
  outline: none;
  border: none;
  background:rgb(56, 1, 31);
  box-shadow: 0px 0px 2px 1px rgb(200, 2, 81);
  color: rgb(242, 224, 227);
  font-size: 15px;
}
.right-contact form textarea{
  height: 80px;
  padding-top: 10px;
}
.right-contact form button{
  border: none;
  outline: none;
  padding: 6px 12px;
  background:rgb(131, 7, 81) ;
  border-radius:15px;
  box-shadow: 0px 0px 2px 1px rgb(141, 3, 3);
  cursor: pointer;
  font-size: 14px;
  transition: 200ms;
}
.right-contact form button:hover{
  box-shadow: 0px 0px 5px 1px rgb(226, 3, 92);
}
.right-contact form button:active{
  transform: scale(0.97);
}
 .footer {
  background: linear-gradient(180deg, #6b033c, #1a1a1a9c);
  padding: 40px 10% 30px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2 {
  color:rgb(251, 233, 236) ;
  font-size: 28px;
  font-weight: 700;
}

.footer-brand p {
  margin-top: 16px;
  color:pink;
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav,
.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h4,
.footer-connect h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color:rgb(251, 233, 236);
}

.footer-nav a {
  text-decoration: none;
  color:pink;
  transition: 0.3s;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icons a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(136, 6, 82);
  color: pink;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-icons a:hover {
  background: #c80466;
}

.footer-bottom {
  margin: 30px 9% 0px;
  font-size: 14px;
  color: #d2cece;
  /* padding-top: 20px; */
  display: flex;
  justify-content: space-between;
}
.copyright p{
  font-size: 15px;
  display: inline-block;
}
.copyright i{
  font-size: 15px;
  display: inline-block;
}
.time{
 font-size: 14px;
}