html{
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    overflow-x: hidden;
    color: white;
    background-color: black;
    font-family: 'Poppins', sans-serif;
    }
img{
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

/* --------navbar ------------ */
.navbar{
    width: 100%;
    margin: 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 10px 30px;
    background-color: black;
    border-radius: 10px;
    z-index: 9999;
    position: sticky;
    top: 0px;
}

.nav-links{
    display:flex;
    gap:45px;
    color: white;
}

.nav-links a{
    text-decoration:none;
    color:black;
}

.con{
    color: white;
    font-size: 17px;
    cursor: pointer;
}
.con:hover {
    transform: scale(1.1);
    transition: all .3s ease;
    border-bottom: 2px solid #f9bc07;
    color: #f9bc07;
}
.logo-img{
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}
.menu-icon{
    font-size:25px;
    cursor:pointer;
    display:none;
    color: white;
}
.menu-icon:hover {
    color: #f9bc07;
}


@media(max-width:768px){

    .menu-icon{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:20px;
        background:rgb(0, 0, 0);
        width:200px;
        padding:20px;
        border-radius:10px;
    }

    .nav-links.active{
        display:flex;
    }
}
.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgb(0, 0, 0);
    z-index: 1000;
}

.dropdown-content a{
    display: block;
    padding: 12px;
    text-decoration: none;
    color: white;
}

.dropdown-content a:hover{
    background: rgba(255, 255, 255, 0.867);
    color: black;
}

.show{
    display: block;
}

/* --------------page-1----------- */
.bgimg{
    min-height: 90vh;
    height: auto;
    width: 100%;
    background-image: url(../images/ak.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoomOut 10s linear infinite alternate;
}
@keyframes zoomOut {
  from{
    background-size: 100%;

  }
  to{
    background-size: 110%;

  }
}
.text{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text1{
    max-width: 700px;
    height: auto;
}
.text span{
  display: inline-block;
  opacity: 0;
  animation: slide 0.7s forwards;
}

.text span:nth-child(1){ animation-delay: 0.7s; }
.text span:nth-child(2){ animation-delay: 1.4s; }
.text span:nth-child(3){ animation-delay: 1.8s; }
.text span:nth-child(4){ animation-delay: 2.3s; }
.text span:nth-child(5){ animation-delay: 2.6s; }
.text span:nth-child(6){ animation-delay: 3s; }

@keyframes slide{
  from{
    opacity: 0;
    transform: translateX(60px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}
#head{
    color: #f9bc07;
    font-size: clamp(2rem,6vw,4.8rem);
    line-height: 1.1;
}
.points{
    color: white;
    font-size: 20px;
}
#circle{
    font-size: 8px;
    line-height: 30px;
}
#slogan{
    font-size: clamp(14px,2vw,20px);
    opacity: 0;
    animation: slide 1s forwards 3.3s;
}

#btn{
    display: flex;
    background-color: #f9bc07;
    color: black;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border: none;
    min-height: 45px;
    height: auto;
    width: 175px;
    font-size: 16px;
    border-radius: 5px;
    opacity: 0;
    animation: slide 1s forwards 3.5s;
}
#btn:active {
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #f9bc07;
    color: #f9bc07;
}


/*------------page2-------------- */

.head1{
    font-size: 38px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    text-shadow: 15px 5px 14px rgba(114, 112, 106, 0.984);

}
.divs{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.box{
    opacity: 0;
}
.box.active{
    animation: backInDown 0.3s forwards;
}

@keyframes backInDown {

    from{
        opacity: 0;
        transform: translateY(-160px);
    }

    to{
        opacity: 1;
    }
}

.box-in{
    min-height: 410px;
    height: auto;
    max-width: 100%;
    width: 300px;
    border-radius: 20px;
    background-color: black;
    border: 4px solid #f9bc07;
    text-align: center;
    padding: 10px;
}
.box-in:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.box-head{
    font-size: 23px;
    font-weight: bold;
}
.para{
    font-size: 18px;
}

/* --------------page 3------------- */

.pg3{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.photo{
    min-height: 500px;
    height: auto;
    max-width: 450px;
    width: 100%;
    border: 5px solid rgba(161, 157, 146, 0.96);
    border-radius: 35px;
    background-image: url(../images/girl-img.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.detail{
    min-height: 500px;
    width: 100%;
    max-width: 700px;
    height: auto;
    padding: 50px;
}
.d-head{
    color: #f9bc07;
    font-size: 30px;
}
.d-para{
    font-size: 19px;
}
/* ----in details ---- */
.skill{
  width: 100%;
  max-width: 600px;
  font-family: serif;
  line-height: 3;
}

.skill-top{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.progress-bar{
  width: 100%;
  height: 22px;
  background: #eee;   
  border-radius: 30px;
  overflow: hidden;
}

.progress-fill{
  width: 0%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right,#ecd89a,#f9c837,#f2bd1f,#f9bc07);
}

.progress-fill-seo{
    width: 0%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(to right,#ecd89a,#f9c837,#fcbd1f,#f9bc07);
}

.progress-fill-digital{
    width: 0%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(to right,#ecd89a,#f9c837,#f9bc07);
}
.progress-fill,.progress-fill-seo,.progress-fill-digital{
    transition: width 0s linear;
}


/* ------------------page4--------------- */

.pg-4{
  min-height: 700px;
  height: auto;
  width: 100%;
  background-image: url(../images/page4image.jpeg);
  background-size: cover;
  background-position: center;
}
.pg4-op{
  min-height: 700px;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.533);
}
.pg4-head{
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    text-shadow: 15px 5px 14px rgba(114, 112, 106, 0.76);
    padding-top: 60px; 
}
.boxes{
  min-height: 400px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.568);
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-top: 130px;
  position: static;
}
.pg4-box-ani{
    opacity: 0;
}
.pg4-box-ani.see{
    animation: backInUp 2s forwards;
}
@keyframes backInUp {
    from{
        opacity: 0;
        transform: translateY(80px);
    }

    to{
        opacity: 1;
    }  
    
}

.pg4-box{
  height: 350px;
  width: 270px;
  max-width: 100%;
  text-align: center;
}
.pg4-box:hover {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.box-img{
  height: 120px;
  width: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50px;
  position: absolute;
  z-index: 100;
  display: block;
  margin-left: 78px;
}
.box-content{
  min-height: 280px;
  height: auto;
  border: 2px solid #f9bc07;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  top: 70px;
}
.box-head{
    font-size: 26px;
    font-weight: bold;
    position: relative;
    top: 27px;
}
.box-para{
  font-size: 20px;
  position: relative;
    top: 20px;
}

/* ------------page 5 --------- */

.page5{
    position: relative;
    top: 40px;
    min-height: 650px;
    height: auto;
    width: 100%;
    background-image: url(../images/recent\ img.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pg5-op{
    background-color: rgba(0, 0, 0, 0.84);
    min-height: 650px;
    height: auto;
    width: 100%;
}

.pg5-head{
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    text-shadow: 15px 5px 14px rgba(114, 112, 106, 0.76);
    position: relative;
    top: 65px;
}

.line{
    width: 90%;
    max-width: 900px;
    margin: auto;
    display: flex;
    gap: 20px;
    line-height: 3;
    font-size: 26px;
    position: relative;
    top: 130px;
    left: 0;
    opacity: 0;
}
.line.active{
    animation: lightSpeedInRight 1s forwards;
}

@keyframes lightSpeedInRight {

    from{
        opacity: 0;
        transform: translateX(-100px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }
}


/* -------page6------ */
.page6{
  min-height: 700px;
  height: auto;
  width: 100%;
  background-image: url(../images/bachimg.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pg6-op{
  min-height: 700px;
  height: auto;
  width: 100%;
  background-color: rgba(8, 8, 8, 0.873);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.money-img{
    width: 100%;
    max-width: 650px;
    height: auto;
}
.pg6-btn{
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    color: rgb(97, 208, 97);
    font-size: 15px;
    font-weight: bold;
    background-color: rgba(245, 245, 220, 0);
    border: 2px solid rgb(97, 208, 97);
}
.pg6-box{
  position: relative;
  top: 70px;
  min-height: 600px;
  height: auto;
  max-width: 500px;
  width: 100%;
}
.pg6-boxx{
  height: 150px;
  width: 150px;
  border: 2px solid white;
  border-radius: 10px;
  padding: 10px;
  margin: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 5px 5px 20px rgba(255, 255, 255, 0.623);
  opacity: 0;
}
.pg6-boxx.active{
    animation: lightSpeedInRight 1s forwards;

}
.pg6-boxx:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.pg6-para{
  font-size: 18px;

}
.pg6-box1{
  display: flex; 
}
#some-div{
    margin-left: 100px;
}

/* ---------------------page 7--------------- */
.page7{
    min-height: 500px;
    height: auto;
    width: 100%;
}
.pg7-head{
    font-size: 28px;
}
.blocks{
    height: auto;
    padding: 40px 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.block{
    height: 430px;
    width: 300px;
    max-width: 100%;
    height: auto;
    text-align: left;
    font-size: 17px;
    line-height: 2.1;
    padding: 10px;
}
.wh{
    font-size: 20px;
}

span:hover {
    color: rgb(247, 232, 123);
}
.ser-anchor{
    color: white;
    text-decoration: none;
}

/* ===============responsive============== */

/* ---------large laptop-------- */
@media (max-width:1440px) {
    .bgimg,.text{
        height: 80vh;
        min-height: 80vh ;
    }
    .pg-4{
        height:1000px;
    }

    .pg4-op{
        height:1000px;
    }
    
}

/* -----Large Tablet -----*/
@media (max-width:1024px){

    .pg-4{
        height:1000px;
    }

    .pg4-op{
        height:1000px;
    }

    .page6{
        height:1200px;
    }
    .pg6-op{
        height: 1200px;
    }
    .pg6-box1{
        justify-content:center;
    }
    #some-div{
        margin-left: auto;
        margin-right: auto;
    }
    .line{
        font-size: 24px;
    }
}
@media (min-width:902px) and (max-width:990px){

    .bgimg{
        min-height:65vh ;
        height:65vh ;
    }
}
@media (min-width:769px) and (max-width:900px){

    .bgimg{
        min-height:500px ;
        height:500px ;
    }
    .text{
        min-height: auto;
        height: auto;
    }

    #head{
        font-size:2.8rem;
        line-height:1.2;
    }

    #slogan{
        font-size:16px;
        line-height:1.6;
    }

    /* Page 4 */

    .pg-4,
    .pg4-op{
        min-height:1200px ;
        height:auto ;
    }

    /* Page 5 */

    .page5,
    .pg5-op{
        min-height:900px;
        height:auto ;
    }

}

/* ----------tablet------------ */
@media (max-width:768px) {

    .bgimg,.text{
        height: 70vh ;
        min-height:70vh  ;
    }
    .logo-img{
        width: 150px;
    }

    #head{
        font-size:2.5rem;
    }

    .points,
    #slogan{
        font-size:16px;
    }

    .head1,
    .pg4-head,
    .pg5-head{
        font-size:30px;
        text-align:center;
    }

    .detail{
        padding:20px;
        text-align: center;
    }

    .d-head{
        font-size:24px;
    }

    .d-para{
        font-size:16px;
    }

    .skill-top{
        font-size:16px;
    }

    .line{
        font-size:18px;
    }
    .pg-4{
        height: 1400px;
    }
    .page5,.pg5-op{
        height: 500px;
        min-height: 500px;
    }
    .page6,.pg6-op{
        height: 1100px;
    }

    .pg6-box1{
        justify-content:center;
    }

    .pg6-boxx{
        width:120px;
        height:120px;
    }
    #some-div{
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width:601px) and (max-width:767px){

    .page5,
    .pg5-op{
        min-height:780px;
        height:auto;
    }
    .bgimg,
    .text{
        height:380px;
        min-height:380px;
    }   

}

/* Large Mobile */
@media (max-width:600px){
    .bgimg,.text{
        height: 60vh;
        min-height: 60vh;
    }
    
    #head{
        font-size:2.3rem;
    }
    .points,
    #slogan{
        font-size:15px;
    }
    #btn{
        min-height: 33px;
        width:130px;
        font-size:16px;
    }
    .pg-4{
        height:1400px;
    }

    .pg4-op{
        height:1400px;
    }
    .page5{
        min-height: 750px;
        height: 750px;
    }
    .pg5-op{
        min-height: 750px;
        height: 750px;
    }
    .page6{
        height:1200px;
    }
    .pg6-op{
        height: 1200px;
    }
}
/* BlackBerry PlayBook */
@media (min-width:590px) and (max-width:599px){

    .bgimg,
    .text{
        height:60vh;
        min-height:60vh;
    }

}
/* Surface Duo */
@media (min-width:535px) and (max-width:545px){

    .bgimg,
    .text{
        height:55vh;
        min-height:55vh;
    }

    .pg-4,
    .pg4-op{
        height:2100px;
        min-height:2100px;
    }

} 
@media (min-width:481px) and (max-width:530px){

    .bgimg,
    .text{
        min-height:48vh;
        height:48vh ;
    }

}

@media (max-width:480px){
    .bgimg,.text{
        height: 48vh ;
        min-height:48vh ;
    }
    .logo-img{
        width: 120px;
    }
    #head{
        font-size:1.5rem;
    }

    .points,
    #slogan{
        font-size:12px;
    }
    #btn{
        min-height: 28px;
        width:100px;
        font-size:13px;
    }

    .box-in{
        min-height:auto;
    }

    .box-head{
        font-size:20px;
    }

    .para{
        font-size:15px;
    }

    .line{
        font-size:15px;
        gap:12px;
    }

    .pg7-head{
        font-size:22px;
    }
    
    .pg-4{
        height:2200px;
    }

    .pg4-op{
        height:2200px;
    }
    .page5{
        height: 680px;
    }
    .pg5-op{
        height: 680px;
    }

    .page6{
        height:1000px;
    }
}

@media (min-width:400px) and (max-width:429px){

    .bgimg,
    .text{
        min-height:40vh;
        height:40vh ;
    }

}
@media (min-width:375px) and (max-width:399px){

    .bgimg,.text{
        height: 38vh ;
        min-height:38vh ;
    }

    #head{
        font-size:1.3rem;
        line-height:1.2;
    }

    #slogan{
        font-size:11px;
        line-height:1.5;
    }

    #btn{
        width:105px;
        height:25px;
        font-size:12px;
    }

}

@media (min-width:320px) and (max-width:374px){
    .bgimg,.text{
        height: 36vh ;
        min-height:36vh ;
    }

    #head{
        font-size:1.15rem;
        line-height:1.2;
    }

    #slogan{
        font-size:10px;
        line-height:1.4;
    }

    #btn{
        width:100px;
        height:24px;
        font-size:11px;
    }

}

@media (min-width:590px) and (max-width:610px) {
    .bgimg,.text{
        padding-top: 10px;
    }
}
