#first-main{
    background-color: #070617;
}

section{
    position: relative;
    width:95%;
    margin:2px auto;
    /* border:solid 1px grey; */
    display:flex;
    gap:5px;
    justify-content: center;
    align-items: flex-start;
    flex-flow:wrap;
}
.section1 > div,.section3 > div{
    margin:5px;
    padding:10px;
    width:45%;
    /* border:solid 1px pink; */
}
.intro-div-main{
    /* width:55%; */
}
.person-div{
    /* width:40%; */
    display: flex;
    justify-content: flex-end;
    background-image: radial-gradient(circle, #1E414B, #132633, #161335, #070617, #070617);
}
#person1{
    width:80%;
    aspect-ratio: 4/5;
    /* mix-blend-mode: color-burn; */
}
h1{
    font-size:60px;
    font-weight: bold;
    margin:0px;
    padding:3px;
}

.animated{
    position: relative;
    font-size:44px;
    margin:5px auto;
    text-align: center;
    top:-80px;
}


.subtitle{
    color:#66FCF1;
}
.intro-btn{
    font-size:20px;
    padding:12px 25px;
    border:none;
    border-radius: 25px;
    font-weight: bold;
    margin:5px 15px;
}
.intro-btn:first-child{
    background-color: #66FCF1;
    border:solid 3px transparent;
    color:#070617
}
.intro-btn:first-child:hover{
    background-color: pink;
}
.intro-btn:last-child{
    background-color: transparent;
    border:solid 3px #66FCF1;
    color:#66FCF1;
}
.intro-btn:last-child:hover{
    background-color: #66FCF1;
    border:solid 3px transparent;
    color:#070617
}

#dots{
    color:#66FCF1;
}
#dots div{
    position: relative;
    display:inline-block;
    height:5px;
    top:-2px;
    width:150px;
    border-radius: 3px;
    background-color: #66FCF1;
    margin:0px 5px;
}
/* ........................adding animation .....................*/
#intro-div{
    position:relative;
    /* box-shadow:0px 0px 3px 0px teal; */
    animation:wdiv forwards 2s;
  }
@-webkit-keyframes wdiv{
    from{left:-700px;transform:rotate(-45deg)}
    to{left:0px;transform:rotate(0deg)}
}
@keyframes wdiv{
    from{left:-700px;transform:rotate(-45deg)}
    to{left:0px;transform:rotate(0deg)}
}

#intro-btns-div{
    position:relative;
    /* box-shadow:0px 0px 3px 0px teal; */
    animation:introbtndiv forwards 2s;
}
@-webkit-keyframes introbtndiv{
    from{bottom:-500px;transform:rotate(-45deg)}
    to{bottom:0px;transform:rotate(0deg)}
}
@keyframes introbtndiv{
    from{bottom:-500px;transform:rotate(-45deg)}
    to{bottom:0px;transform:rotate(0deg)}
}

#price-note{
    color:#66FCF1;
    animation: pblink forwards 0.6s infinite;
}
@-webkit-keyframes pblink{
    from{opacity: 0.5;}
    to{opacity: 1;}
}
@keyframes pblink{
    from{opacity: 0.5;}
    to{opacity: 1;}
}

  /* ........................................2nd section starts ............................*/
.section2{
    width:85%;
    background-color: #121212;
    top:-100px;
    z-index: 10;
    box-shadow:0 0 30px 10px #000;
    display: flex;
    justify-content: center;
    gap:5px;
    align-items: flex-start;
    padding:40px 5px;
    border-radius: 10px;
}
.section2 > div{
    border-radius: 10px;
    margin:5px;
    padding:10px 30px;
    width:25%;
}
.section2 > p{
    font-weight: normal;
}
#middle-div{
    border:solid 4px #66FCF1;
}



  /* ........................................3rd section starts ............................*/
#service-div{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap:wrap;
}
#experience{
   color:#070617;
   display:flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   padding:20px 25px;
   margin:10px;
   background-color: #66FCF1;
   border-radius: 15px;
}
#experience b{
    padding:0px;
    margin:0px;
    font-size:35px;
}
#service-list-div i{
  margin-right: 5px;
}
#service-list{
    list-style-type: none;
  overflow-wrap: break-word; /* Also allows breaking within words */
  white-space: normal; /* Allows wrapping of content */
}

#pdiv2{
  display: flex;
  justify-content: flex-end;
  padding-bottom:50px;
  background-image: radial-gradient(circle,transparent, transparent);
}
#pdiv2 > img{
    position: relative;
    border-radius: 10px;
}
#person2{
    width:50%;
    z-index:10;
    left:0px;
    aspect-ratio: 3/4;
    border:solid 10px #132633;
}
#person3{
    z-index:20;
    left:120px;
    top:180px;
    /* width:500px; */
    height: 250px;
    border:solid 10px #132633;
}



/* ..............................section4 started .....................*/
.section4{
    background-color: #121212;
    width:90%;
    flex-direction: column;
    padding:10px 30px;
    border-radius: 10px;
    box-shadow:0 0 30px 10px #000;
}

.service-items{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow:wrap;
}
.service-items > div{
    background-color: #04000B;
    width:20%;
    margin:15px;
    padding:10px 30px 20px 30px;
    border-radius: 10px;
    overflow: hidden;
}

.service-items h3{
    position: relative;
    background-color: #142134;
    padding:2px 8px;
    left:-30px;
    border-radius: 1px;
}

.service-items p{
    color:#dadadada;
}


/*......................................................for mobile...................................................*/




@media only screen and (max-width: 700px) {

.section1 > div,.section3 > div{
    margin:5px;
    padding:10px;
    width:100%;
}
h1{
    font-size:30px;
    font-weight: bold;
    margin:0px;
    padding:3px;
}
.animated{
    position: relative;
    font-size:30px;
    margin:5px auto;
    text-align: center;
    top:0px;
}
.section2{
    width:98%;
    top:-20px;
    box-shadow:0 0 30px 10px #000;
    display: flex;
    justify-content: center;
    gap:5px;
    align-items: flex-start;
    padding:20px 0px;
    margin:2px auto;
}

.section2 > div{
    border-radius: 10px;
    margin:5px 2px;
    padding:10px;
    width:100%;
}

.section3{
    width:98%;
}
#pdiv2{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    gap:5px;
    padding-bottom:50px;
    background-image: radial-gradient(circle,transparent, transparent);
  }
#person3{
    all:revert;
    z-index:20;
    left:0px;
    top:0px;
    width:98%;
    border:solid 10px #132633;
}
#person2{
    all:revert;
    width:98%;
    z-index:10;
    left:0px;
    border:solid 10px #132633;
    display:none;
}
#service-div{
    justify-content: center;
}
#experience{
    width:40%;
 }


.section4{
    background-color: #121212;
    width:92%;
    flex-direction: column;
    padding:10px;
    border-radius: 10px;
    box-shadow:none;
}

.service-items > div{
    background-color: #04000B;
    width:90%;
    margin:10px;
    padding:10px;
    border-radius: 10px;
}
.service-items h3{
    position: relative;
    background-color: #142134;
    padding:2px 8px;
    left:-10px;
    border-radius: 1px;
}


}