*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: Poppins;
}

.navbar{
    display:flex;
    align-items: center;
    justify-content: space-between;
    background:rgb(43, 71, 125);  
    padding:10px 30px;
    position:fixed;
    width:100%;
    top:0;
    z-index: 10;
}

.logo{
    color:white;
    font-size:4vw;
    font-weight:bold;
    transition: 0.3s;
}
.logo:hover{
    text-shadow: 0 2px 30px rgb(39, 135, 220,0.9);
}


/* 
.search{
    display: flex;
    align-items: center;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    padding:5px 10px;
    width:500px;   :#edede9  #f1faee;   #0077b6;
}

.search input{
    border:none;
    outline:none;
    width:460px;
    padding:8px 10px;
    background: transparent;
    color:white;
    font-size:0.95rem;

}

.search button{
    background:rgb(93, 163, 224);
    border:none;
    outline:none;
    border-radius:20px;
    padding:7px 14px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;

}

.search input::placeholder{
    color:#ddd;
}

.search button:hover{
    background-color:rgb(39, 135, 220);
} */


.navlinks{
    display: flex;
    gap:20px;
    list-style:none;
    font-weight:bold;
}

.navlinks a{
    color:white;
    text-decoration: none;
    transition:0.3s
}
.navlinks a:hover{
    color: rgba(39,135,220);
}

.menu-btn{
    display:none;
    position:absolute;
    top:18px;
    right:30px;
    width:40px;
    cursor:pointer;
    color: white;

}

.hero{
    background:linear-gradient(to top,rgba(0,0,0, 0.5)50%,rgba(0,0,0,0.5)50%), url("IMAGES/bgvetra.jpg");
    background-position: center;
    border-radius: 0 0 20px 20px;
    background-size: cover;
    height:100vh;
    display:flex;
    align-items: flex-end;
    justify-content: center;
    
}

.container{
    background: rgb(0,0,0,0.6);
    margin-bottom: 200px;
    display: flex;
    border-radius: 20px;
    transition: 0.3s ease;
}
.container:hover{
    box-shadow: 0 0 50px rgb(39, 135, 220,0.3);
}

.logoimage{
    width:20vw;
    border-radius:20px 0 0 20px;
}

.content {
    color:whitesmoke;
    text-align:center;
    padding:10px 20px;
}

.content h2{
    margin-top: 20px;
    font-size:4vmin;
}

.line{
    width:200px;
    height:4px;
    background-color: rgb(43, 71, 125);
    margin:10px auto;
    border-radius: 5px;
}
.content h1{
    font-size:7vmin;
    margin-top:30px;
    margin-bottom:30px;

}

.lmbtn {
    padding:8px 15px;
    background:rgb(43, 71, 125);
    border-radius:30px;
    color:whitesmoke;
    cursor: pointer;
    outline: none;
    border:none;

}

.lmbtn a{
    color:white;
    text-decoration: none;
}



.slidecontainer{
    display:flex;
    background:#fafafa;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    padding: 20px;
    /* margin: 20px auto;
    padding:80px 100px;
    border:1px solid #ccc;
    border-radius: 50px;
    max-width: 100%;
    transition: 0.3s; */
}



.slideimg  img{
    max-width:500px;
    width: 100%;
    /* float:left;
    margin-right:30px; */
    border-radius: 20px;
    box-shadow:rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    animation-name: myAnimation1;
    animation-duration: 4s;
    animation-delay: 0.1s;
    animation-timeline: view();
    transition: 0.5s ease;
    
}
.slideimg  img:hover{
    box-shadow: 0 8px 30px rgb(43, 71, 125,0.8);
    cursor:pointer;
    transform: translateY(-8px);
}
@keyframes myAnimation1 {
  0%   {background-color:red; left:-90px; top:-0px;}
  100% {background-color:red; left:0px; top:0px;}
}

.slideinf {
    max-width: 600px;
}

.slideinf h2{
    color: rgb(43, 71, 125);
    word-wrap: break-word;
    font-size:32px;
}
.slideinf p{
    line-height: 1.6;
    color:#333;
    font-size: 1.3rem;
}






.slidecontainer2{
    background:#fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    /* padding:80px 100px;
    height:auto;
    max-width:100%;
    border:1px solid #ccc;
    border-radius:50px;
    max-width:100%;
    margin:20px auto; */
    
}

.slideimg2 img{
    max-width:500px;
    width:100%;
    /* float:right;
    margin-left:30px;*/
    border-radius: 20px; 
    box-shadow:rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    animation-name: myAnimation2;
    animation-duration: 4s;
    animation-delay: 0.1s;
    animation-timeline: view();
    transition: 0.5s ease;

}
.slideimg2  img:hover{
    box-shadow: 0 8px 30px rgb(43, 71, 125,0.8);
    cursor:pointer;
    transform: translateY(-8px);
}


@keyframes myAnimation2 {
  0%   { right:-90px; top:-0px;}
  100% { right:0px; top:0px;}
}

.slideinf2 {
    /* float:right;
    margin:0 100px; */
    max-width: 600px;
}

.slideinf2 h2{
    color:rgb(43, 71, 125);
    margin-bottom: 30px;
    font-size:32px;
}

.slideinf2 p{
    line-height:1.6;
    color:#333;
    font-size:1.3rem;
}


.aboutcontainer{
    background:#fafafa;
    border-radius:20px;
    padding:30px;
    margin:0 auto;
    text-align: justify;
    word-wrap: break-word;

}

.aboutcontainer h2{
    font-size:2.0rem;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color:rgb(43, 71, 125);
    margin-bottom:20px;
}

.aboutcontainer p{
    font-size:1.6rem;
    line-height: 1.5;
}




.contactcontainer{
    background: rgb(43, 71, 125);
    text-align:center;
    padding: 20px 20px;
    border-radius: 80px 80px 0 0;
    color:white;

}

.cardbg{
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content:center;
    align-content: center;
    
    padding:20px;    
    border-radius:80px;
    margin-top: 20px;
}

.card{
    background: rgb(43, 71, 125);
    margin:10px;
    padding:25px 20px;   
    border-radius: 60px;
    transition: 0.3s ease;
    
}

.card:hover{
    box-shadow: 0 8px 20px rgb(43, 71, 125,0.8);
    transform: translateY(-8px);
}
.card p{
    font-size: 0.95rem;
    
}























@media screen and (max-width:750px){
    .navbar{
      padding:0;
      background-color: rgb(43, 71, 125);
      
    }
    .navbar:hover{
        background-color: rgb(43, 71, 125);
        padding:40px;
        background-position: fixed;
    }

    .logo{
        position:absolute;
        top:20px;
        left:30px;
        font-size: 30px;

    }

    .search{
        display:none;
    }

    .menu-btn{
        display:block;
    }

    .navlinks{
        flex-direction: column;
        align-items: center;
        width:100%;
        height: 100vh;
        justify-content: center;
        margin-top:-900px;
        transition: all 0.5s ease
        
    }

    .mobile-menu{
        margin-top:0px;
    }

    .navlinks li{
        margin: 30px auto;
    }
    .container{
        margin-bottom:250px;
    }
    .logoimage{
       width:40vw;
    }


    



}


@media screen and (max-width:1000px){


    
    .slidecontainer{
        flex-direction: column;
        text-align: justify;
        /* align-items: center;
        width:100%;
        padding-right:0; */
    }
    .slideimg img{
        max-width:90%;
        /* margin-bottom: 50px;
        margin-right:0; */
    }
    .slideinf{
        max-width: 100%;
        /* float:left;
        margin:0;
        padding-right: ;
        display: block; */
    }


    .slidecontainer2{
        flex-direction: column-reverse;
        text-align: justify;
        /* align-items: center; */
        /* width:100%;
        padding-left:0; */
        
    }

    .slideimg2 img{
        max-width: 90%;
        /* margin-bottom: 80px;
        margin-left: 0; */
    }

 
    .slideinf2{
        /* margin-left:80px;
        margin-right: 0px;
        display: block;
        float: right; */
        max-width: 100%;
    }

}





@media screen and (max-width:1000px){

    .cardbg{
        background: none;
    }
    .contactcontainer h2,
    .contactcontainer h3
    .contactcontainer p{

        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.5;
        }
}