<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.marquee-sibling {
    background: linear-gradient(90deg, #33691e 0%, #8bc34a 100%);
}

.marquee, *[class^="marquee"] {
    background-color: green;
	display: inline-block;
    white-space: nowrap;
	color: #ffffff;
    text-decoration: none;
	padding: 8px 12px;
}


.header {
    background: #0056a6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5em;
}


.navbar ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    padding: 8px 12px;
    transition: background 0.3s;
}

.navbar ul li a:hover {
    background: #ffffff;
    color: #0056a6;
    border-radius: 5px;
}
   

.banner {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.application {
    text-align: center;
    margin: 20px 0;
}

.apply-button {
    background-color: #0056a6;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-button:hover {
    background-color: #003d73;
}

.notice-board {
    background: #e9f5ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.notice-board h2 {
    font-size: 1.8em;
    color: #0056a6;
    margin-bottom: 10px;
}

.notice-board ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1.1em;
}

.about, .fees, .contact {
    margin: 20px 0;
    padding: 20px;
    background: #e9f5ff;
    border-radius: 8px;
}

.about h2, .fees h2, .contact h2 {
    font-size: 1.8em;
    color: #0056a6;
    margin-bottom: 10px;
}

.fees table {
    width: 100%;
    border-collapse: collapse;
}

.fees table, .fees th, .fees td {
    border: 1px solid #ccc;
}

.fees th, .fees td {
    padding: 10px;
    text-align: center;
}

.fees th {
    background-color: #0056a6;
    color: #ffffff;
}

.fees tr {
	color: #ffffff;
}

.p {
	text-align: center;
    padding: 10px;
}

.footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #ffffff;
    margin-top: 20px;
}

.developer {
	text-align: center;
    color: gold;
	font-size: 10px;
}
/* application form design */
		label {
            font-size: 16px;
            color: #555;
            display: block;
            margin-bottom: 5px;
        }
        input, select, textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
		 button {
            width: 100%;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
        }
        button:hover {
            background-color: #45a049;

/* Responsive Design for Tablets and Mobile Devices */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.3em;
        margin-top: 5px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 5px;
    }

    .navbar ul li a {
        font-size: 0.9em;
        padding: 5px 10px;
    }

    .notice-board h2, .about h2, .fees h2, .contact h2 {
        font-size: 1.5em;
    }

    .apply-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .fees table, .fees th, .fees td {
        font-size: 0.9em;
    }
}

/* Further Adjustments for Small Mobile Devices */
@media (max-width: 480px) {
    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 1.2em;
    }

    .navbar ul {
        flex-direction: column;
        gap: 5px;
    }

    .apply-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }

    .notice-board, .about, .fees, .contact {
        padding: 15px;
    }

    .notice-board h2, .about h2, .fees h2, .contact h2 {
        font-size: 1.4em;
    }

    .fees th, .fees td {
        padding: 8px;
    } */
}

</pre></body></html>