*{
    margin: 0;
    padding: 0;
    
}

.header{
   
   background-color: rgb(184, 235, 235);
   display: flex;
   align-items: center;
   margin-top: 5px;
   border: 2px solid;
   border-radius: 20px;
   box-shadow: 10px 10px 15px 10px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
}

.logo-container{
    width: 100px;
    height: 100px;
   
    display: flex;
    padding: 5px;
    border-radius: 50%;
    background-color: yellow;
    box-shadow: 10px 10px 15px 10px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
   
}
.logo{
    width: 100px;
  border-radius: 50%;
    
    
}



.nav_bar{
 
    display: flex;
    flex-grow: 1;
    padding: 10px;
    align-items: center;
    justify-content: space-around;
    font-size: large;
    flex-wrap: wrap;
    text-align: center;
    text-decoration: none;
    background-color: blanchedalmond;
    border-radius: 20px;
    box-shadow: 10px 10px 15px 10px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
}
.title{
   

    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    background-color: blanchedalmond;
    background-image: url("img5.PNG");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 15px 10px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
    
}
.mobile-view{
    display: none;
}

.heading{
   
    color: rgb(16, 17, 16);
    text-decoration: underline;
    
    box-shadow: 10px 10px 15px 10px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
    font-size: 50px;
    word-spacing:40px;

        font-family: 'Poppins', sans-serif;
        font-weight: 900;
    
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, yellow, green);
    padding: 10px;
    
}

.nav-links {
    display: flex;
    gap: 15px;
    justify-content: space-around;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

.nav-links a:hover {
    color: green;
}


.menu-toggle {
    display: none;
    font-size: 24px;
    background: white;
    border: none;
    cursor: pointer;
   
    box-shadow: 5px 5px 5px 5px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
    transition: background-color 0.3s ease;
    padding: 5px;
    border-radius: 10%;
    
    margin-left: 1px;
    height: auto !important;    
}

.container1{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: darkseagreen;

}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #f0f0f0;
    
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.main-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  
    padding: 10px;
    background-color: rgb(203, 235, 191);
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(219, 63, 63, 0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.article {
    width: 45%;
    min-width: 300px;
   
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(139, 122, 236), 0 6px 6px rgb(196, 229, 158);
    text-align: justify;
    background-color: rgb(197, 249, 234);


}

.guideline{
    
    
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(139, 122, 236), 0 6px 6px rgb(196, 229, 158);
    background-color: rgb(218, 232, 228);
    text-align: center;
    color: rgb(2, 15, 7);
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    margin: 5px;
   
}

.footer{
   
    background-color: rgb(202, 171, 242);
    color: rgb(167, 237, 194);
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(181, 38, 38), 0 6px 6px rgb(184, 53, 108);
   
    border-radius: 20px;
}

.footer-item{
   
    display: flex;
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(139, 122, 236), 0 6px 6px rgb(196, 229, 158);
    background-color: rgb(197, 249, 234);
    text-align: center;
    color: rgb(167, 237, 194);
    font-size: 20px;
 
   flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 5px;

    
}

.article img {
    width: 100%; /* Adjust as needed */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transform: translateX(-20px) rotate(0deg); /* Initial position shifted left */
    opacity: 0;
    animation: rotateIn 1s ease-in-out forwards, continuousRotate 5s linear ;
}

/* Move image to original position on hover */
img:hover {
    transform: translateX(0) rotate(0deg);
    opacity: 0.8;
}

/* Rotation animation on load */
@keyframes rotateIn {
    from {
        transform: translateX(-20px) rotate(-360deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Continuous rotation effect with 5-second interval */
@keyframes continuousRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.footer-box{

    width: 400px;
    background-color: rgb(229, 224, 236);
    color: rgb(1, 21, 9);
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(153, 124, 231), 0 6px 6px rgb(142, 119, 227);
    text-align: left;
    padding-left: 10px;
    margin: 5px;
 
    
}

.footer-bottom{

   
    background-color: rgb(202, 171, 242);
    color: rgb(17, 2, 18);
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(105, 203, 162), 0 6px 6px rgb(184, 53, 108);
    padding: 5px;
    height: 70px;
    text-align: center;
    font-weight: 800;
   
}


@media screen and (max-width: 790px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #f4f4f4;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        z-index: 2;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        
    }

    .nav-active {
        display: flex;
    }

    

    
.article {
    width: 100%;
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 10px 10px 15px 10px rgb(139, 122, 236), 0 6px 6px rgb(196, 229, 158);
    text-align: justify;
    background-color: rgb(197, 249, 234);


}

.nav_bar{

    display: none;
}
.nav_bar1{
    display: flex;
    flex-direction: row-reverse;
}
.heading{
    box-shadow: none;
    font-weight: bolder;
   
    
}

.mobile-view{
   display: block;
}
}