@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}
body{
    background: #081b29;
    color: #ededed;
}
.container{
       position: sticky;
       width: 100%;
         top: 0;
}

.logo{
    position: relative;
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
  }

  .logo::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #114B5F;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
  }
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 10px 10px;
    background-color: #114B5F;
    backdrop-filter: blur(10px);
    gap: 40px;
}
.navbar h2{
    letter-spacing: 5px;
    color: #fff;
}
.navbar ul{
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar{
    display: flex;
    align-items: center;
    padding: 20px 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.navbar li{
    list-style: none;
    margin: 0 10px;
    text-align: center;
}
.navbar li a{
    position: relative;
    color: #081b29;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 0;
    text-decoration: none;
}
.navbar li a::before{
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 3px;
width: 0%;
background: #00abf0;
border-radius: 12px;
transition: all 0.4s ease;
}
.navbar li a:hover::before{
    width: 100%;
}
.nav-link li.center a:before{
    left: 50%;
    transform: translateX(-50%);
}
.navbar li.upward a:before{
    width: 100%;
    bottom: -5px;
    opacity: 0;
}
.navbar li.upward a:hover:before{
    bottom: 0px;
    opacity: 1;
}
.navbar li.forward a:before{
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.navbar li.forward a:hover:before{
    transform: scaleX(1);
    transform-origin: left;
}

.navbar li a i{
    margin-right: 8px;
}


section{
    min-height: 100vh;
    padding: 10rem 12%;
}
.home{
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
  }
  
  .img img{
     width: 32vw;
     height: 32vw;
    border-radius: 100%;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    transition:  0.4s ease-in-out;
    margin-left: 50px;
    text-align: right;
  }

.img img:hover{
    box-shadow: 0 0 25px #00abf0,
                0 0 50px #00abf0,
                0 0 100px #00abf0;
}

  
  .home-content{
    max-width: 600px;
  }
  
  .home-content h1{
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
  }

  
  .home-content h3{
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #00abf0;
  }
  
  .home-content p{
    font-size: 16px;
    margin: 20px 0 40px;
    text-decoration: none;
  }

  .home-content a{
    color: #00abf0;
  }

  .home-content .btn-box{
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
  }
  
  .btn-box a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
  }
  
  .btn-box a:hover{
    color: #00abf0;
  }
  
  .btn-box a:nth-child(2){
    background: transparent;
    color: #00abf0;
  }
  
  .btn-box a:nth-child(2):hover{
    color: #081b29;
  }
  
  .btn-box a:nth-child(2)::before{
    background: #00abf0;
  }
  
  .btn-box a::before{
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 0;
       height: 100%;
       background: #081b29;
       z-index: -1;
       transition: .5s;
  }
  
  .btn-box a:hover:before{
    width: 100%;
  }
  
  
  @keyframes showRight{
    100%{
      width: 0;
    }
  }

  .about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    line-height: 55px
  }

  .about-container h2{
    font-size: 7rem;
    text-align: left;
    letter-spacing: 8px;
  }

  .about-container{
    font-size: 1.8rem;
  }

  .about-container a{
    text-decoration: none;
    color: #114B5F;
    scroll-behavior: smooth;
  }
  
  .about-container a:hover{
    color: #00abf0;
  }

::-webkit-scrollbar{
  width: 20px;
}

::-webkit-scrollbar-thumb{
  background-color: #114B5F;
}

::-webkit-scrollbar-track{
  background-color: #081b29
}

  .heading{
    text-align: center;
    font-size: 7rem;
    margin: 5rem 0;
    
  }

  .services{
    color: black;
  }
  .services h2{
    color: white;
  }
  .services-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 2.5rem;
  }

  .service-box{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00abf0;
    height: 400px;
    border-radius: 3rem;
    cursor: pointer;
    border: 5px solid transparent;
    transition: 0.4s ease-in-out;
  }
  .service-box h4{
    text-align: center;
    font-size: 30px;
  }
  .service-box:hover{
    background-color: #333230;
    color: #00abf0;
    border: 5px solid #00abf0;
    transform: scale(1.03);
  }
  .service-info{
    text-align: center;
  }
  .service-info i{
    font-size: 50px;
    margin-bottom: 1rem;
  }

   .footer{
    padding: 40px 0;
    background-color:  #114B5F;
   }
   .footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: black;
   }
   .footer .social a{
    font-size: 24px;
    color: inherit;
    border: 1px solid #00abf0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
   }

   .footer .social a:hover{
    opacity: 0.9;
   }

   .footer ul{
    margin-top: 0;
    padding: 0;
    list-style: none;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
   }

   .footer ul li a{
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
  }
  
  .footer ul li{
    display: inline-block;
    padding: 0 15px;
  }
  
  .footer ul li a:hover{
     color: #00abf0;
    opacity: 5;
   }

   .footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #001005;
   }

   #toTop{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #00abf0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px  0  rgb(8, 181, 181);
    transition: 
                transform 0.3s,
                box-shadow 0.3s;
    font-size: 20px;
    text-align: center;
   }
   #toTop{
    transform: translateY(10px);
    box-shadow: none;
   } 

   .more-text {
    display: none;
}

.read-more {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}
