*{
    margin: 0;
    padding: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*.......coding the navigation section*/
.header{
    min-height: 80vh;
    width: 100%;
    background-image:linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(../images/price1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    transition: opacity 1s ease-in-out, background-image 1s ease-in-out;
}

nav{
    background: linear-gradient(rgba(27, 27, 27, 0.7)100%, rgba(197, 197, 211, 0.7));
    position:fixed;
    width: 100%;
    /* height: 5vh; */
    display: flex;
    align-items: center;
    padding: 2% 6%;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 2PX 2PX 10px 10px rgba(0, 0, 0, 0.19);
}
/*this is the image in the nav bar*/
nav img{
    width: 50px;
}

.nav-links{
    flex: 1;
    text-align: center;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 2%;
}

.nav-links ul li a{
    text-decoration: none;
    text-align: center;
    color:#fff;
    font-size: 13px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li a:hover{
    font-weight: bolder;

}

.nav-links ul li:hover::after{
    width: 100%;
}

/*...now i a coding the body.....textbox*/

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left:50% ;
    bottom: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    padding: 5% 0;
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 15px;
    color: #fff;
}

/*hiding the icons from font awesome......*/

nav .fa{
    display: none;

}

/*-----coding the popping section---*/
#section {
    opacity: 0;
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
}

#section.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

/*responsive part for small screens like smart phones and tablets......*/

@media(max-width: 700px){
    .text-box h1{
        font-size: 30px;
    }
    .course h2{
        font-size: 20px;
    } 

}

/*now coding the pictures section*/

/*services we offer coding --*/
.services{
    width: 100%;
    text-align: center;
    margin:auto;
    padding-top: 100px;
    
}

.services h1{
    font-size: 22px;
    font-weight: 600;
    color: #777;
}

.services p{
    font-size: 14px;
    color: #777;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    }

.services .fea-base{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
    height: 70%;
    width: 100%;
    

}
.services .fea-box {
    text-align: start;
    
}

.services .fea-box img{
    
    width: 100%;
    height: 80%;
    font-size: 2.3rem;
    color: rgb(4, 0,5, 0.5);
    
}
.services .fea-box h3{
    font-weight: 600;
    font-size: 1rem;
    color: #777;
    padding: 13px 0 7px 0;
}
.services .fea-box p{
    font-weight: 100;
    font-size: 1rem;
    color: #777;
        
}

@media(max-width:700px){

    .services .fea-base{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
        grid-gap: 1rem;
        margin-top: 50px;
        height: 70%;
        width: 80%;
        
    }

    .services .fea-box {
        text-align: start;  
        padding-left: 80px; 
    }

    .text-box h1{
        padding: 5% 0;
        display: none;
    }

    .text-box p{
        padding: 5% 0;
       
    }
}






/*-----coding the footer section--------*/

.footer{
    text-align: center;
    width: 100%;
    padding: 30px 0;
    margin-top: 90px;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 80px;
    font-weight: 600;
}

.icons .fa{
    color: #f44336;
   
    cursor: pointer;
    padding-top: 18px;
}

p img{
    height: 15px;
   

}

p a{
   
    text-decoration: none;
    transition: 1.5s ease-in-out;
}

p a:hover{
    text-shadow: #f44336;
    font-size: larger;
    color: brown;
}

.icons a{
    text-decoration: none;
}

.icons p{
    padding-top: 30px;
}