@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
      font-family: "Poppins", sans-serif;
      background: black;
      
}
:root{
    --primary-color:red;
    --secondary-color:white;
}
/* common class */

a{
    display: inline-block;
    text-decoration: none;
}
ul{
    list-style-type: none;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-50{
    width: 50%;
    padding: 0 15px;
}
.col-33{
    width: 33.33%;
    padding: 0 15px;
}
.col-20{
    width: 20%;
    padding: 0 15px;
}
.navbar-toggler{
    background:var(--primary-color);
}
.navbar-toggler-icon{
    font-size: 20px;
}
/* header section */
.hdr-sec{
    padding: 20px 0;
    width: 100%; 
    z-index: 1; 
}
.navbar-brand>img{
    width: 250px;
    height: 110px;
}
.nav-link{
    color: var(--secondary-color);
    margin-left: 30px;
    position: relative;
}
.nav-link:hover{
    color:var(--primary-color)
}
 .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.6s ease-in-out;
}
 .nav-link:hover::after {
  width: 100%;
}
.primary-btn{
    padding: 15px 35px;
        border-radius: 15px;
        background: var(--primary-color);
        color:var(--secondary-color);
        font-size: 17px;
        font-weight: 900;
        border: none;
        box-shadow: 2px 2px 10px rgb(213, 210, 210);
        position: relative;
        z-index: 1;
        margin-left: 20px;
}
.primary-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        border-radius: 15px;
        background-color: var(--secondary-color);
        z-index: -1;
        transition: all 250ms;
      }
      .primary-btn:hover {
        color:var(--primary-color);
      }

      .primary-btn:hover::before {
        width: 100%;
      }

/* banner section */

.banner-sec{
    padding: 70px ;
    position: relative; 
}
.banner-img >img{
    max-width: 650px;
    max-height: 500px;
    margin-left: 100px;
    border-radius: 50%;
    box-shadow: 10px 20px 80px red ;
}
 .banner-row{
    display: flex;
    justify-content: center;
    align-items: center;
 }
.banner-sub-title{
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 400;
    font-style: italic;
}
.banner-wrpr {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}
h1{
    margin-top: 30px;
    font-size: 50px;
    color: var(--secondary-color);
}
span{
    font-size: 49px;
    color: var(--primary-color);
    font-style: italic;
    
}
.secondary-btn{
    color: var(--secondary-color);
    padding: 15px 36px;
    background: var(--primary-color);
    border-radius: 40px;
    margin-top: 20px;
    transition: 0.6s linear;
}
.secondary-btn:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* about section */
.about-sec{
    padding: 70px 0;
}
.about-sec-img img{
    height: 600px;
    border-radius: 40px;
       box-shadow: 10px 10px 50px blue;
}
h2{
    font-size: 50px;
    color: var(--primary-color);
    font-style: italic;
}
.about-cntn>p{
    max-width: 600px;
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 30px;
}
.link-hdr{
    background: linear-gradient(90deg, #ff4d4d, #ffcc00, #f53bdf);
    font-size: 30px;
    font-weight: bold;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}
.btn{
    font-size: 24px;
    margin-right: 20px;
}
/*skill section */
.skill-sec{
    padding: 40px 0;
}
.skill-hdr{
    color: var(--primary-color);
    font-size: 40px;
    /* margin-bottom: 20px; */
    font-style: italic;
}
.skill-img>a> img{
    max-width: 100px;
    max-height: 120px;
    margin-top: 45px;
}
.skill-img>a> img:hover{
    transform: scale(1.5);
    transition: 0.5s linear;
}
.skill-row{
    margin-right: 60px;
}
.skill-sub-para{
    max-width: 1200px;
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 20px;
}
.skill-img-hdr{
    background: linear-gradient(90deg, #ff4d4d, #ffcc00, #f53bdf);
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
.hdr-1{
    margin-left: 20px;
    margin-top: 45px;

}
/* service section */
.service-sec{
    padding: 150px 0 0 0;
}
.service-wrpr{
    text-align: center;
}
.service-hdr{
    color: var(--primary-color);
    font-size: 50px;
    font-style: italic;
    margin-bottom: 25px;
}
.service-sub-hdr{
    color: var(--secondary-color);
    font-size: 24px;
    background: linear-gradient(90deg, #ff4d4d, #ffcc00, #f53bdf);
    background-clip: text;
    color: transparent;
    font-weight: bold;
   margin-bottom: 25px;
}
.service-wrpr>p{
      color: var(--secondary-color);
      max-width: 900px;
      margin: 0 auto;
      font-size: 18px;
      margin-bottom: 35px;
}
.service-img img{
    height: 70px;
    width: 80px;
    margin-bottom: 10px;
}
.service-img img:hover{
    transform: translateY(10px);
    transition: 0.4s linear;
}
.service-card{
    width: 400px;
    height: 300px;
    margin-bottom: 10px;
}





/* project section */
.project-sec{
    padding: 130px 0 0 0;
}
.project-hdr{
    color: var(--primary-color);
    font-size: 50px;
    text-align: center;
    font-style: italic;
    margin-bottom: 25px;
}

.project-sub-hdr {
    font-weight: bold;
    background: linear-gradient(90deg, #ff4d4d, #e6d40d, #f53bdf);
    background-clip: text;
    color: transparent;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 25px;
    font-size: 30px;
    
}

.project-wrpr>p{
    color: var(--secondary-color);
    font-size: 20px;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}
.project-img img{
    height: 200px;
    width: 380px;
}
.card{
    cursor: pointer;
}
.project-img img:hover{
    transform: translate(10px,10px);
    transition: 0.4s linear;
}
.project-card{
    width: 410px;
    height: 500px;
}

/* contact section */
.contact-sec{
    padding: 100px 0;
}
.contact-hdr{
    color: var(--primary-color);
    /* text-align: center; */
    font-size: 50px;
    margin-bottom: 40px;
    font-style: italic;
}
.card>a >img{
    width: 60px;
    height: 60px;
    text-align: center;
    margin:0 auto;
}
.card>a >img:hover{
    transform: translateY(10px);
    transition: 0.3s linear;
}
.card{
    background: linear-gradient(90deg, #ff4d4d, #d2b513, #f53bdf);
    padding: 25px 0;
    text-align: center;
}
.form-control{
    background: linear-gradient(90deg, #ff4d4d, #d2b513, #f53bdf);
}
.form-label{
    margin-top: 25px;
    background: linear-gradient(90deg, #ff4d4d, #d2b513, #f53bdf);
    background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 20px;
}

/* media header section */

@media screen and (max-width: 1200px){
  .nav-logo{
    max-width: 180px;
}
}


/* media banner section */
@media screen and (max-width: 1200px){
    .banner-row .col-50 {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .banner-img>img{
        margin: 0 auto;
        text-align: center;
        margin-top: 60px;
    }
      .banner-row {
        flex-direction: column-reverse;
        text-align: center; 
    }

    .banner-wrpr {
        margin-top: 40px;
    }
    .banner-sub-title,h1,span{
        text-align: center;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .secondary-btn{
        text-align: center;
        margin: 0 auto;
    }

}
@media screen and (max-width: 992px) {
    h1,span{
        font-size: 40px;
    }
}
@media screen and (max-width: 746px) {
    h1,span{
        font-size: 30px;
    }
}
@media screen and (max-width: 576px) {
  .banner-sec {
    padding: 40px 15px; 
  }

  .banner-wrpr h1 {
    font-size: 28px; 
  }

  .banner-wrpr h2 {
    font-size: 16px; 
  }

  .banner-wrpr h3 {
    font-size: 22px; 
  }

  .banner-wrpr a.secondary-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .banner-img img {
    max-width: 270px;
    height: auto;
    margin-top: 30px;
  }
}
/* about media */
@media screen and (max-width: 1200px){
    .col-50{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .about-cntn>p{
        text-align: center;
        margin: 0 auto;
    }
    .link-hdr{
        margin: 30px 0;
    }
    .about-hdr{
        margin: 20px 0;
    }
}
@media screen and (max-width: 1400px){
    .btn{
        width: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
  .about-sec {
    padding: 40px 20px;
    text-align: center;
  }
  .about-sec-img img {
    max-width: 270px;
    height: auto;
    margin-bottom: 20px;
  }

  .about-cntn {
    max-width: 90%;
    margin: 0 auto;
  }

  .about-hdr {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-cntn > p {
    font-size: 16px;

  }

  .link-hdr {
    font-size: 22px;
  }

  .about-links .btn {
    font-size: 14px;
    padding: 6px 14px;
    margin: 5px;
  }
}

/* project section */
@media screen and (max-width: 434px){
    .col-33{
        max-width: 100%;
    }
    .project-card{
        padding: 20px;
    }
}
@media screen and (max-width: 434px) {
  .project-sec {
    padding-left: 10px;
    padding-right: 10px;
  }

  .project-card {
    width: 100%;
  }

  .project-img img {
    width: 100%;
    height: auto;
  }

  .project-wrpr > p {
    font-size: 16px;
  }

  .project-hdr {
    font-size: 32px;
  }

  .project-sub-hdr {
    font-size: 22px;
  }
}

/* contact section */
@media screen and (max-width: 1200px){
    .col-33{
        width: 100%;
        margin-bottom: 20px;
    }
     .card{
        width: 100%;
    }
    img {
        max-width: 100%; 
        height: auto;
    }
    .form-label{
        display: flex;
        align-self: flex-start;
    }
}
@media screen and (max-width: 576px){
    .contact-hdr{
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
}
/* service section */
@media screen and (max-width: 1399px){
    .col-33 {
        width: 100%;
    }
    .card{
        margin: 0 auto;
        margin-bottom: 8px;
        width: 100%;
    }
}
@media screen and (max-width: 991px){
    .nav-btn{
        text-align: center;
    }
}
@media screen and (max-width: 576px){
    .service-hdr{
        font-size: 30px;
    }
}




/* skill media */
@media screen and (max-width: 1400px){
    .col-20 {
        width: 40%;
        text-align: center;
        margin: 0 auto;
    }
    .skill-img img{
        margin-bottom: 40px;
    }
    .submit-btn{
        margin-top: 20px;
    }
    .skill-img img{
        margin-bottom: 15px;
    }
    .skill-img-hdr {
        margin-top: 10px; 
        font-size: 18px;  
    }


}
@media screen and (max-width: 576px){
    .col-20{
        width: 100%;
    }
    .skill-sub-para{
        font-size: 18px;
        margin: 0 auto;
        text-align: center;
        margin-top: 25px;
    }
}
@media screen and (max-width: 993px){
    .skill-hdr{
        text-align: center;
        margin: 0 auto;
    }

}






/* footer section */

.footer-sec{
    padding:50px 0;
    border-top: 1px solid rgb(70, 69, 69);
}
.footer-top{
    padding: 30px 0;
}
.footer-logo>a>img{
    max-width: 280px;
    max-height: 100px;
}
.footer-hdr{
    font-size: 25px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-left: 25px;
    font-style: italic;
}
.footer-links{
    color: var(--secondary-color);

}

ul>li>a>img{
    max-width: 50px;
    max-height: 30px;
    margin-right: 20px;
}
.footer-icon-sec{
    display: flex;
}
.footer-links{
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff4d4d, #d2b513, #f53bdf);
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.footer-links:hover{
    transform: scale(1.2);
}
.footer-icon:hover {
  transform: translateY(6px) ;
  transition: 0.3s linear;

}

.footer-bottom-hdr{
    font-size: 20px;
    color: var(--primary-color);
    display:flex ;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    font-style: italic;
    background: linear-gradient(90deg, #ff4d4d, #d28613, #f53bdf);
    background-clip: text;
    color: transparent;
    border-top: 1px solid rgb(70, 69, 69);


}


/* footer media section */
@media screen and (max-width: 1400px){
    .footer-top .row .col-33{
        width: 33%;
    }
}
@media screen and (max-width: 992px){
    .footer-top .row .col-33{
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .footer-hdr{
        margin: 30px 0 ;
        text-align: center;
    }
     .footer-icon-sec {
        justify-content: center; 
     }
     .footer-bottom-hdr{
        font-size: 13px;
     }

}
@media screen and (max-width: 992px){
    .footer-logo>a>img{
        max-width: 200px;
        margin-bottom: 10px;
}
}






