* {
  margin: 0;
  padding: 0;
}
body{
    font-family: 'Source Sans Pro', "Roboto", sans-serif;
}
#home{
    height: 100vh;
    background-image: url(images/background1.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: darken;    

}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.8; 
  z-index: 1;
}

#home .navbar{
    
     display: flex;
     justify-content: space-between;
    align-items: center;
      padding-left: 5%;
     padding-right: 5%;
     padding-top: 5px; 
}
#home .navbar .links ul li {
list-style-type: none;
display: inline-block;
padding: 10px 10px;
}
#home .navbar .links ul li span{
    color: #FF305B;
}
#home .navbar .links ul li a:hover{
   color: #FF305B;
    transition: 2s;
}
#home .navbar .links ul li a{
    text-decoration: none;
    font-size: 16px;
    color: white;
    position: relative;
    z-index: 2;
}
#home .navbar .logo{
     color: transparent;
     font-size: 24px;
     position: relative;
     z-index: 2;
}
#home .caption{
    
     text-align: center;
     margin-top: 220px;   
     
}
#home .caption h1{
    font-size: 70px;
    color: #FF305B;
    position: relative;
    z-index: 2;
}
#home .caption h3{
    color: white;
    font-size: 24px;
    position: relative;
    z-index: 2;
}
#home .caption h4{
    color: white;
    font-size: 26px;
    position: relative;
  z-index: 2;
  display: inline-block;
   white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  padding-right: 5px;
  animation: typing 4s steps(10, end) infinite;
  font-weight: lighter;
}
#home .caption h4 span{
   position: relative;   
  z-index: 2;
  display: inline-block;
  animation: erase-retype 4s steps(10, end) infinite;

}
@keyframes typing {
  0%, 100% { border-color: white; }
  50% { border-color: white; }
}
@keyframes erase-retype {
  0%, 30% {
    width: 100%;
  }
  40%, 60% {
    width: 0;
  }
  70%, 100% {
    width: 100%;
  }
}
#page1{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  margin-top: 80px;
  font-size: large;
  padding-bottom: 100px;
}
#page1 .profile{
  display: flex;
  width: 50%;
  justify-content: center;
  position: relative;
}
#page1 .profile .behind{
  position: absolute;
  border: #555 solid 8px;
  width: 339px;
  height: 438px;
  top: -21px;
  left: 90px;
  border-radius: 10px;
  z-index: 0;
  
}
#page1 .profile .image{
  width: 70%;
 position: relative;
    display: flex;
    border-radius: 10px;
    height: fit-content;
    
}
#page1 .profile .image img{
  display: block;
  border-radius: 10px;  
  position: relative;
  z-index: 1;    
    width: 360px;
    height: 440px;
    transition: 0.5s ease; 
    padding-left: 30px;
    padding-top: 10px;
}
#page1 .profile .image .overlay-icons {
    position: absolute;
    top: 3px;
    left: 30px;
    width: 100%;
    height: 440px;
    border-radius: 10px; 
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}
#page1 .profile .image .overlay-icons a {
    color: white;
    font-size: 20px;
    background: transparent;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

#page1 .profile .image .overlay-icons a:hover {
    color: #ff305b;
}

#page1 .profile .image:hover img {
    filter: brightness(70%);
}

#page1 .profile .image:hover .overlay-icons {
    opacity: 1;
}

#page1 .caption {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 20px;
}
#page1 .caption p {
  color: #555;
  display:inline;
}
#page1 .caption ul {
  display: flex;
  flex-wrap: wrap;     
  gap: 8px 20px;       
  list-style: none;
}
#page1 .caption ul li {
  width: 45%;
}
#page1 .buttons {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 20px;
}
#page1 .buttons button {
  padding: 15px 15px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  background: crimson;
  color: #fff;
}
#page1 .buttons button:hover {
  background: rgb(255, 34, 0);
  color: #fff;
}
#page1 .caption h2{
  font-size: xx-large;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px; 
}
#page1 .caption h2::before{
  content: "";
  width: 5px;     
  height: 27px;       
  background: crimson; 
}
#page1 .caption p.block::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px dashed #ccc;
  margin: 30px 0 15px;
}

#services {
     background-color: #F1F1F1;
     height: 70%; 
}
#services .head .our {
     padding-bottom: 10px;
     padding-top: 70px;


}
#services .head .our h2 {
  text-align: center;
   color: #333333;
   font-size: 40px;
}
#services .head .line{
    background-color: #FF305B;
     width: 120px;
     height: 1px;
     margin: auto;
     position: relative;
 
}
#services .head .line::before{
      content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      left: 20px;
      bottom: 4px;
      background-color: #FF305B;
}
#services .head .line::after{
      content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      top: 4px;
      left: 20px;
      background-color: #FF305B;
}
#services .cont {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
     padding-bottom: 60px;
     margin-top: 70px;
     background-color: #F1F1F1 ;
}
#services .cont h3 {
      text-align: center;
      font-size: 24px;
      color: #333333;
}
#services .cont p {
     text-align: center;
      font-size: 16px;
      color: #555555;
      
}
#services .cont i {
      font-size: 30px;
      display: block;
       text-align: center;
}
#services .cont .ui {
     width: 20%;
     padding-top: 20px;
     padding-bottom: 20px;
      position: relative;
      overflow: hidden;
      transition:  1s ; 
}
#services .cont .app {
    width: 20%;
     position: relative;
      overflow: hidden;
       padding-top: 20px;
     padding-bottom: 20px;
      transition:  1s ;
}
#services .cont .product {
    width: 20%;
     position: relative;
      overflow: hidden;
       padding-top: 20px;
     padding-bottom: 20px;
      transition:  1s ;
}
#services .cont .ux {
    width: 20%;
     position: relative;
      overflow: hidden;
       padding-top: 20px;
     padding-bottom: 20px;
      transition:  1s ;
}
#services .cont .ui:hover{
    background-color: #FFFFFF;
    
}
#services .cont .app:hover{
    background-color: #FFFFFF;
    
}
#services .cont .product:hover{
    background-color: #FFFFFF;
    
}
#services .cont .ux:hover{
    background-color: #FFFFFF;
    
}
#portfolio {
      
      
      
}
#portfolio .main{
     padding-bottom: 10px;
     padding-top: 70px;

}
#portfolio .main h2 {
    font-size: 40px;
    color: #333333;
    text-align: center;
    padding-bottom: 10PX;
}
#portfolio .main .line2 {
    background-color: #FF305B;
     width: 120px;
     height: 1px;
     margin: auto;
     position: relative;
}
#portfolio .main .line2::before{
      content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      left: 20px;
      bottom: 4px;
      background-color: #FF305B;
}
#portfolio .main .line2::after{
      content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      top: 4px;
      left: 20px;
      background-color: #FF305B;
}
#portfolio .nv  ul {
      display: flex;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding-top: 30px;
}
#portfolio .nv li a {
    text-decoration: none;
    color: #333;
    
}
#portfolio .nv li span{
    color: #FF305B;


}
#portfolio .imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 70px;
}
#portfolio .imgs div {
    flex: 0 0 calc(30% - 10px); 
    box-sizing: border-box;
}
#portfolio .imgs img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}
#portfolio .imgs img:hover {
    filter: brightness(70%);
}
#iconn{
  background-color: #F1F1F1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 180px;
    padding-top: 90px;
    padding-bottom: 90px;
}
#iconn i  {
    font-size: 26px;
      display: block;
       text-align: center;
     
    
}
#iconn h3{
    text-align: center;
    font-size: 26px;
    color: #333333;
    padding-bottom: 10px;
    padding-top: 10px;
}
#iconn h5{
  font-size: 16px;
  color: #555555;
}
#testimonial{
   color: #555;
}
#testimonial .head2 {
        padding-bottom: 30px;
     padding-top: 70px;
}
#testimonial .head2 h2 {
     font-size: 40px;
    color: #333333;
    text-align: center;
    padding-bottom: 10PX;

}
#testimonial .line3 {
     background-color: #FF305B;
     width: 120px;
     height: 1px;
     margin: auto;
     position: relative;
}
#testimonial .line3::before{
      content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      left: 20px;
      bottom: 4px;
      background-color: #FF305B;
}
#testimonial .line3::after{
      content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      top: 4px;
      left: 20px;
      background-color: #FF305B;
}
#testimonial  .feedback{
  display: flex;
  max-width: 800px;
  margin: auto;
  border-radius: 6px;
  padding: 50px;
  margin-bottom: 80px;
   background: linear-gradient(315deg,#f1f1f1 82% ,#ff305b 1% );

}
#testimonial .feedback .left {
  margin-right: 30px;
}
#testimonial .feedback  .left  img {
  border-radius:50% ;
  height: 107px;

}
#testimonial .feedback  .right{
 display: flex;
  flex-direction: column;
  gap: 10px;


}
#testimonial .feedback  .right h3{
 text-transform: capitalize;
  color: #333333;
  font-size: 26px;
  font-weight: 600;
}
#testimonial .feedback  .right h4 a {
     text-decoration: none;
  padding: 5px;
  color: inherit;
}
#testimonial .feedback  .right h4 a:visited{
  color: inherit;

}
#blog{
    background-color: #F1F1F1;

}
#blog .our h2{
        font-size: 40px;
    color: #333333;
    text-align: center;
    padding-bottom: 10PX;
    padding-top: 40px;

}
#blog .our .line4 {
     background-color: #FF305B;
     width: 120px;
     height: 1px;
     margin: auto;
     position: relative;


}
#blog .our .line4::before{
   content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      left: 20px;
      bottom: 4px;
      background-color: #FF305B;


}
#blog .our .line4::after{
        content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      top: 4px;
      left: 20px;
      background-color: #FF305B;
  
  
}
#blog .items{
  width: 98%;
 display: flex;
 justify-content: center;
 gap: 40px;
 flex-wrap: wrap;
 margin: 10px;
 background-color: #F1F1F1;
 padding-top: 40px;
 padding-bottom: 70px;
}
#blog .items .item {
    background-color: #fff;
    width: 350px; 
    display: flex;
    flex-direction: column;
}
#blog  .items .item iframe{
 width: 100%;
 height: 200px;
}
#blog  .items  .item  .content{
 display: flex;
 flex-direction: column;
 gap: 10px;
 padding: 10px 15px 25px ;
 color: #555;
}
#blog   .items  .item  .content h3{
 text-transform: capitalize;
 color: #333333;
 font-weight: 600;
 font-size: 24px;
}
#blog .items .item .content h3 a{
  text-decoration: none;
  transition: 0.3s ease;
  color: inherit;
}
#blog .items .item .content h3 a:visited{
  color: inherit;
}
#blog  .items .item .content h3 a:hover {
 color: crimson;
}
#blog  .items .item .content .date {
 text-transform: capitalize;
}
#blog  .items .item .content div {
 text-transform: uppercase;
}
#blog  .items .item .content div a {
  text-decoration: none;
  transition: 0.3s ease;
  color: #333333;
}
#blog  .items .item .content div a:visited {
  color: #333333;
}
#blog .items .item .content div a:hover {
 color: crimson;
}
#contact{
    height: 100vh;
}
#contact .con h2 {
  font-size: 40px;
    color: #333333;
    text-align: center;
    padding-bottom: 10PX;
    padding-top: 40px;
}
#contact .con .line5{
    background-color: #FF305B;
     width: 120px;
     height: 1px;
     margin: auto;
     position: relative;
  
}
#contact .con .line5::before{
     content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      left: 20px;
      bottom: 4px;
      background-color: #FF305B;

}
#contact .con .line5::after{
       content: '';
      width:80px ;
      height:1px ;
      position: absolute;
      top: 4px;
      left: 20px;
      background-color: #FF305B;
  

}
#contact .cont{
  width: 50%;
  display: flex;
  justify-content: center;
  margin: auto;
  height: fit-content;
  padding-top: 50px;
}
#contact .cont form{
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
#contact .cont .row{
  display: flex;
  gap: 30px;
}
#contact .cont .row input{
  width: 100%;
}
#contact .cont input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}
#contact .cont form textarea {
  height: 120px;
}
#contact .cont .btn{
   display: flex;
   justify-content: flex-start;
}
#contact .cont .btn button{
    background-color: crimson;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}
#contact .cont .btn button:hover{
    background-color: rgb(255, 34, 0);
}
footer{
  background-color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 60px 0;
}
footer ul{
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
}
footer ul li a{
  transition: 0.3s ease;
}
footer a{
  text-decoration: none;
  color: inherit;
}
footer ul a:visited{
  color: inherit;
}
footer ul li a:hover{
  color: #ff305b;
}
footer p {
  margin-top: 10px;
}
footer p a{
  color: #ff305b;
}
footer p a:visited{
  color: #ff305b;
}
footer p a:hover{
  text-decoration: underline;
}
