body {
    margin: 0;
}

marquee {
    color: blue;
    text-transform: uppercase;
}

nav {
    background-color: rgb(180, 213, 228);

    text-align: center;
    margin-top: auto;
}

nav ul {
    list-style: none;
    display: inline-flex;
    gap: 30pt;

}

nav ul li a {
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(17, 0, 255);
    text-decoration: none;
}

nav ul li a:hover {
    color: #1b5980;
}

.head {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 900;

}

.h-color {
    color: rgb(202, 160, 160);
}

.head img {
    width: 80px;
    height: 40px;
    object-fit: cover;
    margin-left: 50px;
    border-radius: 30%;
    align-items: center;

}

.c-item {
    height: 480px;
    

}

.c-img {
    height: 100%;
    background-size: cover;
}

.grid-head {
    text-align: center;
    color: rgb(76, 76, 188);
    text-transform: uppercase;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* grid section  */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10pt;
}

.grid-item {
    background-color: rgb(185, 214, 227);
}

.grid-item img {
    fade-out: 30s;
    box-shadow: 3px 5px 7px rgb(9, 110, 210);
}

.grid-item img:hover {
    transform: scale(1.05);
    transition: transform 0.5 ease;
}

.grid-item h3 {
    text-transform: capitalize;
    color: #000000; 
    font-weight: bold;
    text-align: center;

}
/* gallery section  */
.gallery-heading{
    text-transform: uppercase;
    color: #0a1f44;
    font-weight: 900;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* about page  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #003366;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 32px;
}

.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
}

.about-section {
    background: #fff;
    padding: 40px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section h2 {

    margin-bottom: 15px;
}
v
.about-section p {
    margin-bottom: 15px;
    color: #333;
}

.highlight {
    background: #417ab2;
    color: #fff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
}

.highlight h3 {
    margin-bottom: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* login page  */
h1 {
    text-align: center;
    text-transform: capitalize;
}

#login-form {
    text-align: left;
    background-color: rgb(79, 149, 235);
    padding: 50px;

}

#login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    margin: auto;
}

#login-form label { 
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(0, 0, 0);

}

#login-form input,
#login-form textarea {
    padding: 10px;
    border: 3px solid rgb(104, 89, 89);
    border-radius: 5px;
    font-size: 14pt;
    background-color: rgb(255, 255, 255);
}

#login-form button {
    text-transform: uppercase;
    padding: 20px;

}

#login-form button:hover {
    background-color: rgb(230, 145, 145);
}

.form {
    color: rgb(208, 88, 88);
    text-align: center;

}

/* footer sectipn  */
.footer {
    background: #0a1f44;
    color: #fff;
    padding: 0px 20px 20px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-box {
    flex: 1;
    min-width: 250px;
    margin: 15px;
}

.footer h2,
.footer h3 {
    margin-bottom: 15px;
    color: #f4b400;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #f4b400;
    padding-left: 5px;
}



.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
}