*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:  Helvetica, sans-serif, sans-serif;
    background-color: rgb(17, 23, 40);
    color: white;
    
}
.allhead{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: url('https://images.unsplash.com/photo-1489875347897-49f64b51c1f8?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-repeat: no-repeat;
    background-size: cover; 
}
.navbar{
    width: 100vw;
    height: 7vh;
    background-color: rgba(23, 32,61, 0.6);
    display: flex;
    flex-direction: row;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 100;
     
}
.logo{
    width: 25%;
    height: 7vh;
    display: flex;
    justify-content: center;
}

.navULdiv{
    height: 7vh;
    width: 75%;
    display: flex;
    justify-content: center;
    
}
.logoTitle{
    font-size: 30px;
    font-family: Garamond;
    color: rgb(255, 255, 255);
    padding: 10px;
}
.logoimg{
    width: 100px;
    height: 7vh;
}
.navbar ul{
    padding: 10px;
    list-style: none;
    gap: 30px;
    font-size: 20px;
}
.navbarlist{
    float: left;
    padding-right: 50px;
    padding-top: 5px;

}
.navbarlist a{
    color: rgb(255, 255, 255);
    text-decoration: none;

}
.navbarlist a:hover{
    color: orange;
    text-decoration: underline;
}
header{
    text-align: center;
    
    
}
.h1class{
    display: inline-block;
}
#h1{
    font-family: monospace;
    font-size: 60px;
    border-right: 5px solid;
    color: orange;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: 
    typing 3s steps(38),
    cursor .4s step-end infinite alternate;

}
#Headpara{
    opacity: 0;
    font-size: 25px;
    color: rgb(255, 255, 255);
    text-decoration: solid;
    animation: hidden 2s forwards;
    animation-delay: 3s;
}
@keyframes cursor{
    50% { border-color: transparent}
} 
@keyframes typing{
     from { width: 0 }
}
@keyframes hidden{
    to{ opacity:1; }
}

hr{
    border: none;
    height: 4px;
    background: linear-gradient(to right, #96260b, #e1af88); 
    width: 90%;
    margin: 20px auto;
}

#spacebetween1{
    height: 9vh;
    width: 100vw;
}

/* About us Section */
.aboutUs{
    width: 100vw;
    height: 100vh;
}

.aboutHead{                              /*title + lines*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.abouth2{                                /*title*/
    text-align: center;
}

.abouth2{
    font-size: 30px;
    color: rgb(45, 122, 45);
}
.aboutp{
    background-color: rgb(36, 47, 78);
    width: 60%;
    color: rgb(217, 207, 207);
    height: 190px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    text-align: center;
    
}
.aboutContents{
    display: flex;
    justify-content: center;
    flex-direction: row;
    
}
.aboutelements{

    
    
    border-radius: 5px;
    padding: 0px;
    height: 200px;
    box-shadow: 0 4px 8px rgba(240, 240, 240, 1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 50%;
    margin: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    
   
}

.aboutelements:hover{
    transform: translateY(-10px);
    box-shadow: 1px 1px 10px 5px rgb(51, 54, 113);
    opacity: 1;
}


.aboutelements img{
    position: absolute;
    width: 285px;
    height: 197px;
    object-fit: cover;
    z-index: 1;
}
.content-head{
    z-index: 100;
    font-size: 35px;
    color: rgb(5, 5, 5);
    font-weight: 600;
}






#spacebetween2{
    height: 9vh;
    width: 100vw;
}


.service-section{
    width: 100vw;
    height: 100vh;
    background-color: rgb(40, 48, 70);
}
.service-head{
    display: flex;
    justify-content: center;
    flex-direction: column;

}
#service-h2{
    text-align: center;
    font-size: 30px;
    padding: 20px;
    color: green;
    
}
#service-para{
    text-align: center;
    color: yellowgreen;
    padding: 20px;
    font-size: 20px;
}
.service-element-list{
    display: flex;
    justify-content: center;
    flex-direction: row;
    
    
    

}
.service-element{
    width: 20%;
    background-color: rgb(109, 123, 161);
    padding: 20px;
    margin: 20px;
    height: 40%;
    border-radius: 20px;
    text-align: center;
    transition: background-color 0.5s ease, transform 0.5s ease;
}
.service-element:hover{
    background-color: rgb(8, 24, 67);
    transform: scale(1.15);
    color: orange;
}
.service-table-section{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.service-h3{
    text-align: center;
    margin: 20px;
    font-size: 30px;
}
.service-table{
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1.9em;
    border-radius: 10px 10px 0 0; 
    overflow: hidden;
    box-shadow: 0 0 10px 1px rgb(66, 42, 153);
}
.service-table thead tr{
    background-color: #009879;
    color: #ffff;
    text-align: left;
    font-weight: bold;
}
.service-table th,
.service-table td{
    padding: 12px 15px;
}

.service-table tbody tr{
    border-bottom: 1px solid gray;

}
.service-table tbody tr:last-of-type{
    border-bottom: 5px solid #009879;
}
.service-table tbody tr:nth-child(even){
    background-color: rgb(109, 123, 161);
    color: white;
}
.service-table tbody tr:nth-child(odd){
    background-color: rgb(23, 32, 59);
    color: white;
}
.service-table tbody tr.active-row{
    font-weight: bold;
    color: #009879;
}

.gallery-page{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.gallery-page div{
    margin: 20px;
}
.gallery{
    width: 50vw;
    background-color: rgb(73, 83, 110);
    border-right: 5px rgb(246, 240, 240) solid;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.Vid-Aud{
    background-color: rgb(99, 112, 146);
    width: 50vw;
    border-left: 5px solid white;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
}
.galleryhead{
    font-size: 30px;
    color: greenyellow;
    text-align: center;
}
.gall-p{
    text-align: center;
    font-size: 25px;
    color: #e1af88;
}
.gallery-page img{
    width: 500px;
    height: 250px;
    object-fit: cover;
}
.video{
    height: 75%;
    width: 100%;

}
.vidh2{
    font-size: 30px ;
    color: greenyellow;
    margin-left: 250px;
    margin-bottom: 50px;
    
    
    
}
.audh2{
    color: greenyellow;
    margin-left: 110px;
    font-size: 30px;
}
.audio{
    border-radius: 2px;
}
video{
    margin-left: 150px;
    
    height: 350px;
    width: 550px;
}
audio{
    height: 150px;
    width: 550px;
}

#spacebetween3{
    height: 11vh;
    width: 100vw;
}





.form{
    width: 100vw;
    height: 100vh;
    display: flex;
    width: 80%;
    justify-content: center;
    margin: 20px;
    align-items: center;
    flex-direction: column;
    
}
.contact-us{
    font-size: 30px;
    text-align: center;
    padding: 30px;
    color: greenyellow;
}
.field{
    border-radius: 10px;
    padding: 20px; 
    border: 2px solid #009879;
    font-size: 20px;
    width: 80vw;
    color: bisque;
    
    
    
}
legend{
    color: aqua;
}
.input{
    width: 300px;
    height: 30px;
    border-radius: 10px;
}


.sub-btn{
    margin-left: 550px;
    width: 100px;
    height: 40px;
    border-radius:10px ;
    font-size: 20px;
    background-color: lightgreen;
    border-style: none;
}
.sub-btn:hover{
    background-color: green;
    color: white;
}
.dropdown{
    width: 200px;
    height: 30px;
    border-radius: 5px;
    background-color: black;
    color: aqua;
}

#spacebetween{
    height: 9vh;
}


.aside{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    

}
.events{
    background-color: rgb(30, 30, 83);
    margin: 20px;
    padding: 90px;
    width: 100vw;
    height: 80vh;
    text-align: center;
    

}
.aside h2{
    font-size: 30px;
    color: aqua;
}
.aside p{
    font-size: 20px;
}
.aside li{
    font-size: 20px;
}
.aside ul{
    list-style-type: none;
}
.latest{
    height: 50px;
    margin: 50px;
}
.footer{
    width: 100vw;
    height: 20vh;
    text-align: center;
    font-size: 20px;
}