* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow:hidden; */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: black;
}

.menu-icon {
    display: none;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 5px;
    transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover {
    color: cyan;
    background-color: black;
    border-radius: 5px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #fff;
}
/* log */

.Log {
    position: fixed;
    z-index: 10000000;
    background-color:rgba(0, 0, 0, 0.8);
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    animation: animate 5s linear infinite;
}


@keyframes animate {
    100%{
        filter: hue-rotate(360deg);
    }
    
}
.ic{
    position: fixed;
    right:7%;
    top:2%;
    font-size: 3rem;
    color: #fff;
}
.fa-sharp:hover{
    cursor: pointer;
    color:red;
}

.login-box{
    position: relative;
    width: 450px;
    height: 450px;
    background: rgb(0, 0, 0);
    border: 1px solid rgb(222, 222, 17);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(50px);
}

h2{
    font-size: 2em;
    color:#fff;
    text-align: center;
}

.input-box{
    position: relative;
    width: 310px;
    margin:30px 0;
    border-bottom: 8px solid #ad23dc;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color:#fff;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label{
    top:-5px;
}
.input-box input{
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #fff;
    padding: 0 35px 0 5px;
}

.input-box .icon{
    position: absolute;
    right: 8px;
    color:#fff;
    font-size: 1.2em;
    line-height: 57px;
}

.rememeber-forget{
    margin: -15px 0 15px;
    font-size: .9em;
    color:#fff;
    display: flex;
    justify-content: space-between;
}

.rememeber-forget a{
    color:#fff;
    text-decoration: none;
}

.rememeber-forget a:hover{
    text-decoration: underline;
    color: aqua;
}


button{
    width: 100%;
    height: 40px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 1em;
    color:#000;
    font-weight: 500;
    border: 4px solid #ad23dc;
}
button:hover{
    cursor: pointer;
    
}

.register-link{
    font-size: .9em;
    color:#fff;
    text-align: center;
    margin: 25px 0 10px;
}

.register-link p a{
    color:#fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover{
    text-decoration: underline;
}

@media (max-width:360px){
    .login-box{
        width: 100%;
        height: 100vh;
        border: none;
        border-radius: 0;
    }


    .input-box{
        width: 290px;
    }


}
/* log */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.header {
    background-color: #000;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0;
}

.col-2 {
    flex: 1;
    margin: 20px;
    padding: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
} 

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.col-3 {
    flex: 1;
    margin: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

p {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.1rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    background: #000;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

ul li:hover {
    background-color: #f4f4f4;
    color: cyan;
}

.footer {
    background: #000;
    color: #8a8a8a;
    font-size: 10px;
    padding: 25px 0 20px;
}

.footer p {
    color: #8a8a8a;
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-col-1 {
    flex-basis: 30%;
}

.footer-col-2 {
    flex: 1;
    text-align: center;
}

.footer-col-2 img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-3,
.footer-col-4 {
    flex-basis: 12%;
    text-align: center;
}

.app-logo {
    margin-top: 20px;
}

.app-logo img {
    width: 140px;
}

.footer hr {
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}

.copyright {
    text-align: center;
}
 
.slideshow-container {
    position: relative;
    max-width: 450px; 
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}


.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 800px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        background: #fff;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }

    nav ul li {
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    nav ul li a {
        text-decoration: none;
        color: #fff;
        padding: 5px 10px;
        transition: color 0.3s, background-color 0.3s;
    }

    nav ul li a:hover {
        color: cyan;
        background-color: black;
        border-radius: 5px;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
    }
} 

@media only screen and (max-width: 600px) {
    .row {
        text-align: center;
    }

    .col-2,
    .col-3,
    .col-4 {
        flex-basis: 100%;
    }
}
