*{
    margin: 0;
    padding: 0;
    box-sizing:border-box
}
.homepage{
    position:relative;
    color: #fff;
    width: 100%;
    min-height: 100vh;
    background-image: url(image/img1.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 20s linear;
    animation:bAnimation 11s linear infinite ;
}


.homepage{
    position:relative;
    color: #fff;
    width: 100%;
    min-height: 100vh;
    background-image: url(image/img1.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 20s linear;
    animation:bAnimation 11s linear infinite ;
}
header{
    width: 100%;
    height: 100vh;
    background-size: cover;
}
.logo img{
    margin-top: 10px;
    float: left;
    width: 150px;
    height: auto;
    margin-left: 60px;
}
nav{
    
    width: 100%;
}
nav ul{
    list-style: none;
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: white;
    padding: hidden;
    text-align: center;
    margin: 0;
    transition: 1s;
}
nav ul li{
    display: inline-block;
    padding: 20px;
    
}
nav ul li a{
    margin-top: 20px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}




/*dropdown menu*/
.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    height: 0;
    top: 60px;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
} 
.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}
.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown_menu .open{
    height: 240px;
}
/* Responsive design*/
@media(max-width:992px){
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }
    
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
}
@media(max-width:576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}


.image_slider{
    width: 430px;
    position:absolute;
    top:50%;
    right: 60px;
    transform:translateX(-50%);
    padding: 5px;
    overflow: hidden;
    animation:imganime  120s ease linear infinite ;
}
.image_conatiner{
    display: flex;
    gap:20px;
    transition: all 120s linear;
    animation:imganime  120s ease linear infinite;
}
.image_conatiner img{
    width:200px;
    height:250px;
    object-fit: cover;
    object-position: center;
    border: 2px solid #fff;
    border-radius: 20px;
}
@keyframes imganime {
    0%{
        transform:translateX(0);
    }
    5%{
        transform: translateX(0);
    }
    10%{
        transform: translateX(0);
    }
    15%{
        transform: translateX(0);
    }
    20%{
        transform:translateX(-220PX);
    }
    25%{
        transform: translateX(-220px);
    }
    30%{
        transform: translateX(-220PX);
    }
    35%{
        transform: translateX(-220PX);
    }
    40%{
        transform: translateX(-220PX);
    }
    45%{
        transform: translateX(-220PX);
    }
   
    50%{
        transform:translateX(-440px);
    }
    55%{
        transform: translateX(-440PX);;
    }
    60%{
        transform: translateX(-440PX);;
    }
    65%{
        transform: translateX(-440PX);;
    }
    70%{
        transform: translateX(-440PX);;
    }
    75%{
       transform: translateX(-650px);
    }
    80%{
        transform: translateX(-650px);
     }
     85%{
        transform: translateX(-650px);
     }
     90%{
        transform: translateX(-650px);
     }
     95%{
        transform: translateX(-650px);
     }
    
    
    100%{
        transform:translateX(0);
    }
    
}
@keyframes bAnimation {
    0%{
        background-image: url(image/img2.jpg) ;
    }
    5%{
        background-image: url(image/img2.jpg) ;
    }
    10%{
        background-image: url(image/img1.jpg) ;
    }
    15%{
        background-image: url(image/img1.jpg) ;
    }
    20%{
        background-image: url(image/img1.jpg) ;
    }
    25%{
        background-image: url(image/img1.jpg) ;
    }
    30%{
        background-image: url(image/img1.jpg);
    }
    35%{
        background-image: url(image/img1.jpg) ;
    }
    40%{
        background-image: url(image/img1.jpg);
    }
    45%{
        background-image: url(image/img3.jpg) ;
    }
   
    50%{
        background-image: url(image/img3.jpg) ;
    }
    55%{
        background-image: url(image/img3.jpg) ;
    }
    60%{
        background-image: url(image/img3.jpg);
    }
    65%{
        background-image: url(image/img3.jpg);
    }
    70%{
        background-image: url(image/img3.jpg);
    }
    75%{
       background-image: url(image/img4.jpg);
    }
    80%{
        background-image: url(image/img4.jpg);
     }
     85%{
        background-image: url(image/img4.jpg);
     }
     90%{
        background-image: url(image/img4.jpg);
     }
     95%{
        background-image: url(image/img4.jpg);
     }
    
    
    100%{
        background-image: url(image/img4.jpg);
    }
    0%{
        background-image: url(image/img4.jpg);
    }
    20%{
        background-image: url(image/img4.jpg);
    }
    50%{
        background-image: url(image/img4.jpg);
    }
    100%{
        background-image: url(image/img1.jpg);
    }
    
}
@media(max-width:768px){

}

/*About us*/
#about{
    margin-top: 40px;
}
body{
    background-color: #f2f2f2;
}
.heading{
    width:90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading h1{
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}
.heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #4caf50;
}
.heading p{
    font-size: 18px;
    color:#666;
    margin-bottom: 35px;
}
.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-image{
    flex:1;
    margin-right: 40px;
    overflow: hidden;
}
.about-image img{
    max-width: 500px;
    height: auto;
    display: block;
    transition: 0.5s ease;
    margin-bottom: 70px;
    margin-left: 150px;

}

.about-content{
 flex: 1;
}
.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
}
.about-content p{
        font-size: 18px;
        line-height: 1.5;
        color:#666
}
.about-content .read-more{
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}
.about-content .read-more:hover{
    background-color: #3e8e41;
}
@media screen and (max-width:768px){
    .heading{
        padding: 0px 20px;
    }
    .heading h1{
        font-size: 36px;
    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container{
        padding: 0px                                                                                                                                                                                    ;
    }     
    .about{
        padding: 20px;
        flex-direction: column;
    }    
    .about-image{
        margin-right:0px;
        margin-bottom: 20px;
    }       
    .about-content p{
          padding: 0px;  
          font-size: 16px;

    }    
    .about-content .read-more{
        font-size: 16px;
    }                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
}
#about{
    margin-bottom: 70px;
}
/*service section*/
/*service section*/
#services{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f2f2f2;
}
#services h1{
    font-size: 50px;
}
#services h4{
    font-size: 30px;
    color: #000;
    font-weight: 600px;
    margin: 25px;
}
.content-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}
.card{
    min-height:220px;
    width:320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px 4px;
    box-shadow: 0px 15px 30px rgba(0, 0,0, 0.2);
}
/* changes*/
.image__title{
    font-size: 2em;
    font-weight: bold;
}
.image__description{
    font-size: 1.25em;
    margin-top: 0.25em;

}
.image__overlay:hover{
    opacity: 1;
}
.image__overlay{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-family: 'Quicksand',sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.card:nth-child(1):hover{
    background: linear-gradient(45deg,rgba(88,70,159,0.7)0%,rgba(136,113,199,0.7)100%,);
}
@media(max-width:768px){
 .wrapper{
    padding: 25px;
 }
 .wrapper h4{
    font-size: 20px;
    color: #000;
    font-weight: 600px;
    margin: 25px;
 }
 .content-box{
    flex-direction: column;
    width: 100%;
 }
 .card{
    min-height: 300px;
    margin: 10px auto;
 }
}
.hero{
    background-color: #f8f8f8;
    overflow: hidden;
}
.media h1{
    color: #ff6347;
    font-size: 55px;
    text-align: center;
    margin-top: 35px;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 65px auto;
}
.hero-content{
    flex:1;
    width:600px;
    margin: 0px 25px;
}
.hero-content p{
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    color:#666
}
.hero-image{
    flex: 1;
    width: 600px;
    margin: auto;
    margin-left: 50px;
}
.image{
    width: 500px;
    height: auto;
    border-radius: 10px;
}
.hero-content h2{
    font-size: 38px;
    margin-bottom: 20px;
    color:#000;
    margin-left: 80px;
    
}
@media screen and (max-width:768px) {
    .heading h1{
        font-size: 45px;
        margin-top: 30px;
    }
    .hero{
        margin: 0px;
    }
    .container{
        width: 100%;
        flex-direction: column;
        margin: 0px;
        padding: 0px 40px;
    }
    .hero-content{
        width: 100%;
        margin: 35px 0px;
    }
    .hero-content h2{
        font-size: 30px;
    }
    .hero-content p{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .hero-image{
        width: 100%;
    }
}
/*contact page*/
.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(image/bg.jpg);
    background-size: cover;
}
.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content h2{
    font-size: 36px;
    font-weight: 600;
    color:#1b3a49;
    margin-bottom: 20px;
}
.contact .content p{
    font-weight: 500;
    color:#1b3a49;
   font-size: 25px;

}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}
.container .contactInfo .box .text h3{
    display: flex;
    margin-left: 20px;
    font-size: 20px;
    font-weight: 500;
    color: rgb(217, 255, 0);
    /* flex-direction: column; */
    font-weight: 500;
}
.container .contactInfo .box .text p{
    display: flex;
    margin-left: 20px;
    font-size: 18px;
    color: #1b3a49(255, 255, 255);
    /* flex-direction: column; */
    font-weight: 300;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background: #fff;

}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactForm{
    margin-left: 40px;
}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
   
}
.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
    color: #ff0000;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactForm .inputBox input[type="submit"]{
    width: 100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}