body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}
body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

contact-section {
    color: maroon;
    font-size: 17px;
    text-align: center;
    font-weight: 550;
}

header {
    background-image: url('college.jpg');
    background-size: cover;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    height: 500px;
    background-blend-mode: color-burn;
}

section {
    padding: 30px;
    background-color: #ffffff;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    font-weight: 550;
}

footer {
    background-color: maroon;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

h1,
h2,
h3 {
    color: maroon;
    text-align: center;
    font-size: 28px;
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

ul li:before {
    content: "•";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.top-students {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 20px;
}

.student-card {
    width: 150px;
    text-align: center;
    margin: 10px;
}

.student-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.student-card p {
    font-weight: bold;
    color: #343a40;
}
.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}
.join-section {
    display: flex;
    justify-content: space-around;
    background-color: #2c3e50;
    padding: 20px;
    color: #ecf0f1;
    animation: fadeInScale 1.5s ease-out;
}

.join-box {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    border: 1px solid #34495e;
    background-color: #3498db;
    opacity: 0;
    animation: fadeInScale 1.5s ease-out forwards;
}

.join-box h3 {
    color: #ecf0f1;
}

.join-box.neet {
    background-color: #2ecc71;
}

.join-box.iit {
    background-color: #e67e22;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.more {
    color: blue;
    background-color: yellow;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    height: 45px;
    cursor: pointer;

}

.register-btn {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding as needed */
    color: white;
    background-color: green;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    height: 40px; /* Set height as needed */
    line-height: 45px; /* Match the height to vertically center text */
    text-decoration: none;
    text-align: center;
}

.register-btn:hover {
    background-color: darkgreen; /* Adjust hover color as needed */
}



.new-opening-section {
    background-color: #3498db;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.counting-section {
    background-color: maroon;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.counting-item {
    flex-basis: calc(33.33% - 20px);
    margin: 10px;
    text-align: center;
}

.counting-number {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
    counter-reset: neet iit faculty jee-advanced;
}

.counting-label {
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .counting-item {
        flex-basis: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .counting-item {
        flex-basis: 100%;
    }
}

.faq-section {
    padding: 30px;
    background-color: #ffffff;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    font-weight: 550;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: black;
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #343a40;
}
@media screen and (max-width: 768px) {
    .faq-item {
        margin-bottom: 15px;
    }
}
details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    font-weight: bold;
    color: #28a745;
}
/* Add these styles for the new buttons */
.login-register-buttons .btn {
    margin-right: 10px;
    background-color: #007bff; /* Adjust the color as needed */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.login-register-buttons .btn:hover {
    background-color: #0056b3; /* Adjust the hover color as needed */
}

/* Add these styles for the new achievements section */
.achievements-section {
    padding: 30px;
    background-color: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    font-weight: 550;
}

.achievement-item {
    margin-bottom: 20px;
}

.achievement-item h3 {
    color: maroon;
    font-size: 20px;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #343a40;
}

.achievement-item ul {
    list-style-type: none;
    padding: 0;
}

.achievement-item ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.achievement-item ul li:before {
    content: "•";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Add these styles for the new buttons */
.login-register-buttons .btn {
    margin-right: 10px;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.login-register-buttons .btn:hover {
    background-color: #0056b3;
}

/* Add these styles for the new sections */
.more {
    color: blue;
    background-color: yellow;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    height: 45px;
}

.register-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: green;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    height: 40px;
    line-height: 45px;
    text-decoration: none;
    text-align: center;
}

.register-btn:hover {
    background-color: darkgreen;
}
.mission-vision-section {
    display: flex;
    justify-content: space-around;
}

.mission, .vision {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* margin-bottom: 50px; */
    font-weight: 550;
}

.mission h2, .vision h2 {
    color: maroon;
    text-align: center;
    font-size: 28px;
    text-decoration: underline;
}

.mission p, .vision p {
    font-family: 'Roboto', sans-serif;
}

