
  @import url('https://fonts.googleapis.com/css2?family=Courgette&family=Noto+Sans+Old+Permic&family=Playfair+Display:wght@600&family=Poppins:wght@100;200;300;400&family=Ubuntu&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
:root{
   
    background-color: #323946;
    -moz-border-right-colors:#1f343d ;
    --second-bg-color:#323946;
    -webkit-text-fill-color: #fff;
    
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background:  var(#1f343d);
    color:var(#ffffff);
}

section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background-color: #323946;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 2.5rem;
    color:  #fff;
    font-weight: 600;
    cursor: default;
}

.navbar a {
    font-size: 1.7rem;
    color: #fff;
    margin-left: 4rem;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active{
    color: #0ef;
}

#menuicon{
    font-size: 3.6rem;
    color: #fff;
    display: none;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img{
    width: 35vw;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(-2.4rem);
    }
    
    100% {
        transform: translateY(0);
    }
}

.home-content h3{
    font-size: 3.2rem;
    font-weight: 700;
}

.home-content h3:nth-of-type(2){
    margin-bottom: 2rem;
}

#front{
    color: #0ef;
}

.home-content h1{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3 ;
    color: aqua;
}

.home-content p{
    font-size: 1.6rem;

}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid  #0ef;
    border-radius: 50%;
    color: #0ef;
    font-size: large;
    margin: 1.0rem 1.5rem 3rem 0;
    transition: .5s ease;
}


.social-media a:hover{
    background: #0ef;
    color: #323946;
    box-shadow: 0 0 1rem #0ef;
}

.btn{
    display: inline-block;
    padding:1rem 2.8rem;
    background: #0ef;
    border-radius: 4rem;
    box-shadow: 0 0 1rem #0ef;
    font-size: 1.6rem;
    color: #323946;
    letter-spacing: .1rem;
    font-weight: 600;
}

.btn:hover{
    box-shadow: none;
}
.about{
    display: flex;
    justify-content: left;
    
    align-items: center;
    gap: 2rem;
    background: #323946;
}
.about h2{
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-decoration: underline;
    
}
.about-content h2{
    text-align: left;
    line-height: 1.2rem;
}

.about-content h3{
    font-size: 2.6rem;
}

.about-content p{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}




.about-img{
    width: 40vw;

}

.services .heading{
    padding-left:  40%;
}
.services h2{
    margin-bottom: 5rem;
    font-size: 3.5rem;
}

.service-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-container .service-box{
    flex: 1 1 30rem;
    background:#1f343d;
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid #1f343d;
    transition: 0.5s ease;
}

.service-container .service-box:hover{
    border-color: #0ef;
    transform: scale(1.02);
}

.service-box  i {
    font-size: 7rem;
    color: #0ef;
}
.service-box h3{
    font-size: 2.6rem;
}
.service-box p{
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}


.contact h2{
    margin-bottom: 3rem;
    position: relative;
    left: 50rem;
    font-size: 3.5rem;
    
}

.contact form{
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
    
    
}

.contact form .input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #fff;
    background: #1f343d;
    border-radius: .8rem;
    margin: .7rem 0;
    resize: none;
}

.contact form .input-box input{
    width: 49%;
}

.contact form .btn{
    margin-top: 2rem;
    cursor: pointer;
}


.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: #1f343d;
}


.footer-text{
    font-size: 1.6rem;
}

.footer-icontop a{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem;
    position: relative;
    left: 50rem;
    background: #0ef;
    border-radius: .8rem;
    transition: .5s ease;

}

.footer-icontop a:hover{
    box-shadow: 0 0 1rem #0ef;
}


.footer-icontop a i{
    font-size: 2.4rem;
    color: #1f343d;

}

/* Break points */
@media (max-width: 1200px){
    html{
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header{
        padding: 2rem 3%;
    }

    section{
        padding: 10rem 3% 2rem;
    }

    .footer{
        padding: 2rem 3%;
    }
}
/* Custom scrollbar styles for webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Adjust width as needed */
}

::-webkit-scrollbar-track {
    background: #1f343d; /* Track background color */
}

::-webkit-scrollbar-thumb {
    background-color: #0ef; /* Scrollbar color */
    border-radius: 10px; /* Rounded corners */
    border: 3px solid #1f343d; /* Optional: Adds space around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #09d; /* Darker shade on hover (optional) */
}

/* For Firefox */
* {
    scrollbar-width: thin; /* Makes the scrollbar thinner */
    scrollbar-color: #0ef #1f343d; /* Thumb color and track color */
}
